2000-02-18 03:38:33 +08:00
|
|
|
/* fhandler_tty.cc
|
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2000-08-03 00:28:18 +08:00
|
|
|
#include "winsup.h"
|
2000-02-18 03:38:33 +08:00
|
|
|
#include <stdlib.h>
|
2012-03-08 17:36:11 +08:00
|
|
|
#include <sys/param.h>
|
2016-01-07 01:41:36 +08:00
|
|
|
#include <cygwin/acl.h>
|
2006-07-03 23:29:10 +08:00
|
|
|
#include <cygwin/kd.h>
|
2000-08-22 13:10:20 +08:00
|
|
|
#include "cygerrno.h"
|
2001-07-27 03:22:24 +08:00
|
|
|
#include "security.h"
|
2001-10-01 12:10:07 +08:00
|
|
|
#include "path.h"
|
* devices.cc: New file.
* devices.gperf: New file.
* devices.shilka: New file.
* cygwin-gperf: New file.
* cygwin-shilka: New file.
* fhandler_fifo.cc: New file.
* fhandler_nodevice.cc : New file. Reorganize headers so that path.h precedes
fhandler.h throughout. Remove device argument and unit arguments from fhandler
constructors throughout. Remove pc arguments to fhandler functions and use
internal pc element instead, throughout. Use dev element in pc throughout.
Use major/minor elements rather than units and device numbers previously in
fhandler class. Use correct methods for fhandler file names rather than
directly accessing file name variables, throughout.
* Makefile.in (DLL_OFILES): Add devices.o, fhandler_fifo.o
* dcrt0.cc (dll_crt0_1): Call device::init.
* devices.h: Renumber devices based on more Linux-like major/minor numbers.
Add more devices. Declare standard device storage.
(device): Declare struct.
* dir.cc (opendir): Use new 'build_fh_name' to construct a fhandler_* type.
* dtable.cc (dtable::get_debugger_info): Ditto.
(cygwin_attach_handle_to_fd): Ditto.
(dtable::release): Remove special FH_SOCKET case in favor of generic
"need_fixup_before" test.
(dtable::init_std_file_from_handle): Use either build_fh_dev or build_fh_name
to build standard fhandler.
(dtable::build_fh_name): Renamed from dtable::build_fhandler_from_name. Move
out of dtable class. Don't accept a path_conv argument. Just build it here
and pass it to:
(build_fh_pc): Renamed from dtable::build_fhandler. Move out of dtable class.
Use intrinsic device type in path_conv to create new fhandler.
(build_fh_dev): Renamed from dtable::build_fhandler. Move out of dtable class.
Simplify arguments to just take new 'device' type and a name. Just return
pointer to fhandler rather than trying to insert into dtable.
(dtable::dup_worker): Accommodate above build_fh name changes.
(dtable::find_fifo): New (currently broken) function.
(handle_to_fn): Use strechr for efficiency.
* dtable.h: Reflect above build_fh name changes and argument differences.
(fhandler_base *&operator []): Return self rather than copy of self.
* fhandler.cc (fhandler_base::operator =): Use pc element to set normalized
path.
(fhandler_base::set_name): Ditto.
(fhandler_base::raw_read): Use method to access name.
(fhandler_base::write): Correctly use get_output_handle rather than get_handle.
(handler_base::device_access_denied): New function.
(fhandler_base::open): Eliminate pc argument and use pc element of
fhandler_base throughout.
(fhandler_base::fstat): Detect if device is based in filesystem and use
fstat_fs to calculate stat, if so.
(fhandler_base::fhandler_base): Eliminate handling of file names and, instead,
just free appropriate component from pc.
(fhandler_base::opendir): Remove path_conv parameter.
* fhandler.h: Remove all device flags.
(fhandler_base::pc): New element.
(fhandler_base::set_name): Change argument to path_conv.
(fhandler_base::error): New function.
(fhandler_base::exists): New function.
(fhandler_base::pc_binmode): New function.
(fhandler_base::dev): New function.
(fhandler_base::open_fs): New function.
(fhandler_base::fstat_fs): New function.
(fhandler_base::fstat_by_name): New function.
(fhandler_base::fstat_by_handle): New function.
(fhandler_base::isfifo): New function.
(fhandler_base::is_slow): New function.
(fhandler_base::is_auto_device): New function.
(fhandler_base::is_fs_special): New function.
(fhandler_base::device_access_denied): New function.
(fhandler_base::operator DWORD&): New operator.
(fhandler_base::get_name): Return normalized path from pc.
(fhandler_base::get_win32_name): Return windows path from pc.
(fhandler_base::isdevice): Renamed from is_device.
(fhandler_base::get_native_name): Return device format.
(fhandler_fifo): New class.
(fhandler_nodevice): New class.
(select_stuff::device_specific): Remove array.
(select_stuff::device_specific_pipe): New class element.
(select_stuff::device_specific_socket): New class element.
(select_stuff::device_specific_serial): New class element.
(select_stuff::select_stuff): Initialize new elements.
* fhandler_disk_file.cc (fhandler_base::fstat_by_handle): Move to base class
from fhandler_disk_file.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_disk_file::open): Move most functionality into
fhandler_base::open_fs.
(fhandler_base::open_fs): New function.
(fhandler_disk_file::close): Move most functionality into
fhandler_base::close_fs.
(fhandler_base::close_fs): New function.
* fhandler_mem.cc (fhandler_dev_mem::open): Use device name in debugging
output.
* fhandler_socket.cc (fhandler_socket::set_connect_secret): Copy standard
urandom device into appropriate place.
(fhandler_socket::accept): Reflect change in fdsock return value.
* fhandler_tty.cc: See "throughouts" above.
* net.cc: Accommodate fdsock change throughout.
(fdsock): Return success or failure, accept fd argument and device argument.
* path.cc (symlink_info::major): New element.
(symlink_info::minor): New element.
(symlink_info::parse_device): Declare new function.
(fs_info::update): Accommodate changes in path_conv class.
(path_conv::fillin): Ditto.
(path_conv::return_and_clear_normalized_path): Eliminate.
(path_conv::set_normalized_path): New function.
(path_conv::path_conv): Set info in dev element. Use path_conv methods Check
for FH_FS rather than FH_BAD to indicate when to fill in filesystem stuff.
where appropriate rather than direct access. Use set_normalized_path to set
normalized path.
(windows_device_names): Eliminate.
(get_dev): Ditto.
(get_raw_device_number): Ditto.
(get_device_number): Ditto.
(win32_device_name): Call new device name parser to do most of the heavy
lifting.
(mount_info::conv_to_win32_path): Fill in dev field as appropriate.
(symlink_worker): Handle new device files.
(symlink_info::check): Ditto.
(symlink_info::parse_device): Define new function.
* path.h (executable_states): Move here from fhandler.h.
(fs_info): Rename variables to *_storage and create methods for accessing same.
(path_conv): Add dev element, remove devn and unit and adjust inline methods to
accommodate.
(set_normalized_path): Declare new function.
* pinfo.cc (_pinfo::commune_recv): Add broken support for handling fifos.
(_pinfo::commune_send): Ditto.
* pipe.cc (fhandler_pipe::close): check for existence of handle before closing
it.
(handler_pipe::create): Rename from make_pipe. Change arguments to accept
fhandler_pipe array. Accommodate fifos.
(pipe): Rework to deal with fhandler_pipe::create changes.
(_pipe): Ditto.
* select.cc: Use individual device_specific types throughout rather than
indexing with obsolete device number.
(set_bits): Use is_socket call rather than checking device number.
* shared_info.h (CURR_MOUNT_MAGIC): Update.
(conv_to_win32_path): Reflect addition of device argument.
* syscalls.cc (mknod_worker): New function.
(open): Use build_fh_name to build fhandler.
(chown_worker): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(chmod_device): New function.
(chmod): Detect if this is an 'auto' device rather than an on-filesystem device
and handle appropriately. Use chmod_device to set mode of in-filesystem
devices.
(stat_worker): Eliminate path_conv argument. Call build_fh_name to construct
fhandler. Use fh->error() rather than pc->error to detect errors in fhandler
construction.
(access_worker): New function pulled from access. Accommodate in-filesystem
devices.
(access): Use access_worker.
(fpathconf): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(mknod_worker): New function.
(mknod32): New function.
(chroot): Free normalized path -- assuming it was actually cmalloced.
* tty.cc (create_tty_master): Tweak for new device class.
(tty::common_init): Ditto.
* winsup.h (stat_worker): Remove.
(symlink_worker): Declare.
* exceptions.cc (set_process_mask): Just call sig_dispatch_pending and don't
worry about pending_signals since sig_dispatch_pending should always do the
right thing now.
(sig_handle): Reorganize SIGCONT handling to more closely conform to SUSv3.
* pinfo.h: Move __SIG enum to sigproc.h.
(PICOM_FIFO): New enum element.
(_pinfo): Remove 'thread2signal' stuff throughout class.
(_pinfo::commune_send): Make varargs.
(_pinfo::sigtodo): Eliminate.
(_pinfo::thread2signal): Ditto.
* signal.cc (kill_worker): Eliminate call to setthread2signal.
* sigproc.cc (local_sigtodo): Eliminate.
(getlocal_sigtodo): Ditto.
(sigelem): New class.
(pending_signals): New class.
(sigqueue): New variable, start of sigqueue linked list.
(sigcatch_nonmain): Eliminate.
(sigcatch_main): Eliminate.
(sigcatch_nosync): Eliminate.
(sigcomplete_nonmain): Eliminate.
(pending_signals): Eliminate.
(sig_clear): Call signal thread to clear pending signals, unless already in
signal thread.
(sigpending): Call signal thread to get pending signals.
(sig_dispatch_pending): Eliminate use of pending_signals and just check
sigqueue.
(sigproc_terminate): Eliminate all of the obsolete semaphore stuff. Close
signal pipe handle.
(sig_send): Eliminate all of the obsolete semaphore stuff and use pipe to send
signals.
(getevent): Eliminate.
(pending_signals::add): New function.
(pending_signals::del): New function.
(pending_signals::next): New function.
(wait_sig): Eliminate all of the obsolete semaphore stuff. Use pipe to
communicate and maintain a linked list of signals.
* sigproc.h: Move __SIG defines here. Add __SIGPENDING.
(sig_dispatch_pending): Remove "C" specifier.
(sig_handle): Accept a mask argument.
* thread.cc: Remove signal handling considerations throughout.
2003-09-25 08:37:18 +08:00
|
|
|
#include "fhandler.h"
|
2000-08-12 13:35:42 +08:00
|
|
|
#include "dtable.h"
|
2000-08-22 13:10:20 +08:00
|
|
|
#include "sigproc.h"
|
2000-08-12 13:47:12 +08:00
|
|
|
#include "pinfo.h"
|
2010-04-20 03:52:43 +08:00
|
|
|
#include "ntdll.h"
|
2000-09-03 12:16:35 +08:00
|
|
|
#include "cygheap.h"
|
2000-09-08 00:23:51 +08:00
|
|
|
#include "shared_info.h"
|
2002-08-02 00:20:31 +08:00
|
|
|
#include "cygthread.h"
|
2006-06-02 23:41:34 +08:00
|
|
|
#include "child_info.h"
|
2011-07-23 02:50:42 +08:00
|
|
|
#include <asm/socket.h>
|
2012-06-18 04:50:24 +08:00
|
|
|
#include "cygwait.h"
|
2019-11-07 00:29:29 +08:00
|
|
|
#include "registry.h"
|
2020-09-09 23:27:59 +08:00
|
|
|
#include "tls_pbuf.h"
|
2021-01-28 11:26:13 +08:00
|
|
|
#include "winf.h"
|
2019-08-28 02:04:02 +08:00
|
|
|
|
|
|
|
#ifndef PROC_THREAD_ATTRIBUTE_PSEUDOCONSOLE
|
|
|
|
#define PROC_THREAD_ATTRIBUTE_PSEUDOCONSOLE 0x00020016
|
|
|
|
#endif /* PROC_THREAD_ATTRIBUTE_PSEUDOCONSOLE */
|
|
|
|
|
|
|
|
extern "C" int sscanf (const char *, const char *, ...);
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2019-09-15 18:55:44 +08:00
|
|
|
extern "C" {
|
|
|
|
HRESULT WINAPI CreatePseudoConsole (COORD, HANDLE, HANDLE, DWORD, HPCON *);
|
|
|
|
HRESULT WINAPI ResizePseudoConsole (HPCON, COORD);
|
|
|
|
VOID WINAPI ClosePseudoConsole (HPCON);
|
|
|
|
}
|
|
|
|
|
2010-04-20 03:52:43 +08:00
|
|
|
#define close_maybe(h) \
|
|
|
|
do { \
|
|
|
|
if (h && h != INVALID_HANDLE_VALUE) \
|
|
|
|
CloseHandle (h); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/* pty master control pipe messages */
|
|
|
|
struct pipe_request {
|
|
|
|
DWORD pid;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pipe_reply {
|
|
|
|
HANDLE from_master;
|
2019-08-28 02:04:02 +08:00
|
|
|
HANDLE from_master_cyg;
|
2010-04-20 03:52:43 +08:00
|
|
|
HANDLE to_master;
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
HANDLE to_master_cyg;
|
2021-01-28 11:26:11 +08:00
|
|
|
HANDLE to_slave;
|
|
|
|
HANDLE to_slave_cyg;
|
2010-04-20 03:52:43 +08:00
|
|
|
DWORD error;
|
|
|
|
};
|
|
|
|
|
2021-01-18 21:10:57 +08:00
|
|
|
extern HANDLE attach_mutex; /* Defined in fhandler_console.cc */
|
|
|
|
|
2021-01-28 11:26:14 +08:00
|
|
|
DWORD
|
|
|
|
fhandler_pty_common::get_console_process_id (DWORD pid, bool match,
|
|
|
|
bool cygwin, bool stub_only)
|
2021-01-18 21:10:57 +08:00
|
|
|
{
|
|
|
|
tmp_pathbuf tp;
|
2021-01-20 08:57:00 +08:00
|
|
|
DWORD *list = (DWORD *) tp.c_get ();
|
|
|
|
const DWORD buf_size = NT_MAX_PATH / sizeof (DWORD);
|
2021-01-18 21:10:57 +08:00
|
|
|
|
|
|
|
DWORD num = GetConsoleProcessList (list, buf_size);
|
|
|
|
if (num == 0 || num > buf_size)
|
|
|
|
return 0;
|
|
|
|
|
2021-01-28 11:26:14 +08:00
|
|
|
DWORD res_pri = 0, res = 0;
|
2021-01-18 21:10:57 +08:00
|
|
|
/* Last one is the oldest. */
|
|
|
|
/* https://github.com/microsoft/terminal/issues/95 */
|
|
|
|
for (int i = (int) num - 1; i >= 0; i--)
|
|
|
|
if ((match && list[i] == pid) || (!match && list[i] != pid))
|
|
|
|
{
|
2021-01-28 11:26:14 +08:00
|
|
|
if (!cygwin)
|
|
|
|
{
|
|
|
|
res_pri = list[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pinfo p (cygwin_pid (list[i]));
|
|
|
|
if (!!p && p->dwProcessId && p->exec_dwProcessId
|
|
|
|
&& p->dwProcessId != p->exec_dwProcessId)
|
|
|
|
{
|
|
|
|
res_pri = list[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!!p && !res)
|
|
|
|
res = list[i];
|
|
|
|
}
|
2021-01-18 21:10:57 +08:00
|
|
|
}
|
2021-01-28 11:26:14 +08:00
|
|
|
if (stub_only)
|
|
|
|
return res_pri;
|
|
|
|
else
|
|
|
|
return res_pri ?: res;
|
2021-01-18 21:10:57 +08:00
|
|
|
}
|
|
|
|
|
2019-08-28 02:04:02 +08:00
|
|
|
static bool isHybrid;
|
2021-01-28 11:26:13 +08:00
|
|
|
static HANDLE h_gdb_process;
|
2020-02-09 22:47:30 +08:00
|
|
|
|
2019-08-28 02:04:02 +08:00
|
|
|
static void
|
2021-01-28 11:26:13 +08:00
|
|
|
set_switch_to_pcon (HANDLE *in, HANDLE *out, HANDLE *err, bool iscygwin)
|
2019-08-28 02:04:02 +08:00
|
|
|
{
|
|
|
|
cygheap_fdenum cfd (false);
|
2019-09-14 05:48:14 +08:00
|
|
|
int fd;
|
2021-01-28 11:26:13 +08:00
|
|
|
fhandler_base *replace_in = NULL, *replace_out = NULL, *replace_err = NULL;
|
|
|
|
fhandler_pty_slave *ptys_pcon = NULL;
|
2019-09-14 05:48:14 +08:00
|
|
|
while ((fd = cfd.next ()) >= 0)
|
2021-01-28 11:26:13 +08:00
|
|
|
{
|
|
|
|
if (*in == cfd->get_handle () ||
|
|
|
|
(fd == 0 && *in == GetStdHandle (STD_INPUT_HANDLE)))
|
|
|
|
replace_in = (fhandler_base *) cfd;
|
|
|
|
if (*out == cfd->get_output_handle () ||
|
|
|
|
(fd == 1 && *out == GetStdHandle (STD_OUTPUT_HANDLE)))
|
|
|
|
replace_out = (fhandler_base *) cfd;
|
|
|
|
if (*err == cfd->get_output_handle () ||
|
|
|
|
(fd == 2 && *err == GetStdHandle (STD_ERROR_HANDLE)))
|
|
|
|
replace_err = (fhandler_base *) cfd;
|
2021-02-11 17:09:42 +08:00
|
|
|
if (cfd->get_device () == (dev_t) myself->ctty)
|
2021-01-28 11:26:13 +08:00
|
|
|
{
|
|
|
|
fhandler_base *fh = cfd;
|
|
|
|
fhandler_pty_slave *ptys = (fhandler_pty_slave *) fh;
|
|
|
|
if (*in == ptys->get_handle ())
|
|
|
|
ptys_pcon = ptys;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!iscygwin && ptys_pcon)
|
|
|
|
ptys_pcon->set_switch_to_pcon ();
|
|
|
|
if (replace_in)
|
|
|
|
{
|
|
|
|
if (iscygwin && ptys_pcon->pcon_activated ())
|
|
|
|
*in = replace_in->get_handle_cyg ();
|
|
|
|
else
|
|
|
|
*in = replace_in->get_handle ();
|
|
|
|
}
|
|
|
|
if (replace_out)
|
|
|
|
*out = replace_out->get_output_handle ();
|
|
|
|
if (replace_err)
|
|
|
|
*err = replace_err->get_output_handle ();
|
2020-05-19 18:55:23 +08:00
|
|
|
}
|
|
|
|
|
2019-08-28 02:04:02 +08:00
|
|
|
#define DEF_HOOK(name) static __typeof__ (name) *name##_Orig
|
2019-09-18 22:29:18 +08:00
|
|
|
/* CreateProcess() is hooked for GDB etc. */
|
|
|
|
DEF_HOOK (CreateProcessA);
|
|
|
|
DEF_HOOK (CreateProcessW);
|
2021-02-11 17:09:42 +08:00
|
|
|
DEF_HOOK (exit);
|
2019-08-28 02:04:02 +08:00
|
|
|
|
2019-09-18 22:29:18 +08:00
|
|
|
static BOOL WINAPI
|
|
|
|
CreateProcessA_Hooked
|
|
|
|
(LPCSTR n, LPSTR c, LPSECURITY_ATTRIBUTES pa, LPSECURITY_ATTRIBUTES ta,
|
|
|
|
BOOL inh, DWORD f, LPVOID e, LPCSTR d,
|
|
|
|
LPSTARTUPINFOA si, LPPROCESS_INFORMATION pi)
|
|
|
|
{
|
2021-01-28 11:26:13 +08:00
|
|
|
STARTUPINFOEXA siex = {0, };
|
|
|
|
if (si->cb == sizeof (STARTUPINFOEXA))
|
|
|
|
siex = *(STARTUPINFOEXA *)si;
|
|
|
|
else
|
|
|
|
siex.StartupInfo = *si;
|
|
|
|
STARTUPINFOA *siov = &siex.StartupInfo;
|
|
|
|
if (!(si->dwFlags & STARTF_USESTDHANDLES))
|
2020-08-19 19:25:21 +08:00
|
|
|
{
|
2021-01-28 11:26:13 +08:00
|
|
|
siov->dwFlags |= STARTF_USESTDHANDLES;
|
|
|
|
siov->hStdInput = GetStdHandle (STD_INPUT_HANDLE);
|
|
|
|
siov->hStdOutput = GetStdHandle (STD_OUTPUT_HANDLE);
|
|
|
|
siov->hStdError = GetStdHandle (STD_ERROR_HANDLE);
|
2020-08-19 19:25:21 +08:00
|
|
|
}
|
2021-01-28 11:26:13 +08:00
|
|
|
path_conv path;
|
|
|
|
tmp_pathbuf tp;
|
|
|
|
char *prog =tp.c_get ();
|
|
|
|
if (n)
|
|
|
|
__small_sprintf (prog, "%s", n);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
__small_sprintf (prog, "%s", c);
|
|
|
|
char *p = prog;
|
|
|
|
char *p1;
|
|
|
|
do
|
|
|
|
if ((p1 = strstr (p, ".exe")) || (p1 = strstr (p, ".com")))
|
|
|
|
{
|
|
|
|
p = p1 + 4;
|
|
|
|
if (*p == ' ')
|
|
|
|
{
|
|
|
|
*p = '\0';
|
|
|
|
path.check (prog);
|
|
|
|
*p = ' ';
|
|
|
|
}
|
|
|
|
else if (*p == '\0')
|
|
|
|
path.check (prog);
|
|
|
|
}
|
|
|
|
while (!path.exists() && p1);
|
|
|
|
}
|
|
|
|
const char *argv[] = {"", NULL}; /* Dummy */
|
|
|
|
av av1;
|
|
|
|
av1.setup ("", path, "", 1, argv, false);
|
|
|
|
set_switch_to_pcon (&siov->hStdInput, &siov->hStdOutput, &siov->hStdError,
|
|
|
|
path.iscygexec ());
|
|
|
|
BOOL ret = CreateProcessA_Orig (n, c, pa, ta, inh, f, e, d, siov, pi);
|
|
|
|
h_gdb_process = pi->hProcess;
|
|
|
|
DuplicateHandle (GetCurrentProcess (), h_gdb_process,
|
|
|
|
GetCurrentProcess (), &h_gdb_process,
|
|
|
|
0, 0, DUPLICATE_SAME_ACCESS);
|
|
|
|
return ret;
|
2019-09-18 22:29:18 +08:00
|
|
|
}
|
|
|
|
static BOOL WINAPI
|
|
|
|
CreateProcessW_Hooked
|
|
|
|
(LPCWSTR n, LPWSTR c, LPSECURITY_ATTRIBUTES pa, LPSECURITY_ATTRIBUTES ta,
|
|
|
|
BOOL inh, DWORD f, LPVOID e, LPCWSTR d,
|
|
|
|
LPSTARTUPINFOW si, LPPROCESS_INFORMATION pi)
|
|
|
|
{
|
2021-01-28 11:26:13 +08:00
|
|
|
STARTUPINFOEXW siex = {0, };
|
|
|
|
if (si->cb == sizeof (STARTUPINFOEXW))
|
|
|
|
siex = *(STARTUPINFOEXW *)si;
|
|
|
|
else
|
|
|
|
siex.StartupInfo = *si;
|
|
|
|
STARTUPINFOW *siov = &siex.StartupInfo;
|
|
|
|
if (!(si->dwFlags & STARTF_USESTDHANDLES))
|
2020-08-19 19:25:21 +08:00
|
|
|
{
|
2021-01-28 11:26:13 +08:00
|
|
|
siov->dwFlags |= STARTF_USESTDHANDLES;
|
|
|
|
siov->hStdInput = GetStdHandle (STD_INPUT_HANDLE);
|
|
|
|
siov->hStdOutput = GetStdHandle (STD_OUTPUT_HANDLE);
|
|
|
|
siov->hStdError = GetStdHandle (STD_ERROR_HANDLE);
|
2020-08-19 19:25:21 +08:00
|
|
|
}
|
2021-01-28 11:26:13 +08:00
|
|
|
path_conv path;
|
|
|
|
tmp_pathbuf tp;
|
|
|
|
char *prog =tp.c_get ();
|
|
|
|
if (n)
|
|
|
|
__small_sprintf (prog, "%W", n);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
__small_sprintf (prog, "%W", c);
|
|
|
|
char *p = prog;
|
|
|
|
char *p1;
|
|
|
|
do
|
|
|
|
if ((p1 = strstr (p, ".exe")) || (p1 = strstr (p, ".com")))
|
|
|
|
{
|
|
|
|
p = p1 + 4;
|
|
|
|
if (*p == ' ')
|
|
|
|
{
|
|
|
|
*p = '\0';
|
|
|
|
path.check (prog);
|
|
|
|
*p = ' ';
|
|
|
|
}
|
|
|
|
else if (*p == '\0')
|
|
|
|
path.check (prog);
|
|
|
|
}
|
|
|
|
while (!path.exists() && p1);
|
|
|
|
}
|
|
|
|
const char *argv[] = {"", NULL}; /* Dummy */
|
|
|
|
av av1;
|
|
|
|
av1.setup ("", path, "", 1, argv, false);
|
|
|
|
set_switch_to_pcon (&siov->hStdInput, &siov->hStdOutput, &siov->hStdError,
|
|
|
|
path.iscygexec ());
|
|
|
|
BOOL ret = CreateProcessW_Orig (n, c, pa, ta, inh, f, e, d, siov, pi);
|
|
|
|
h_gdb_process = pi->hProcess;
|
|
|
|
DuplicateHandle (GetCurrentProcess (), h_gdb_process,
|
|
|
|
GetCurrentProcess (), &h_gdb_process,
|
|
|
|
0, 0, DUPLICATE_SAME_ACCESS);
|
|
|
|
return ret;
|
2019-09-18 22:29:18 +08:00
|
|
|
}
|
2019-08-28 02:04:02 +08:00
|
|
|
|
2021-02-11 17:09:42 +08:00
|
|
|
void
|
|
|
|
exit_Hooked (int e)
|
|
|
|
{
|
|
|
|
if (isHybrid)
|
|
|
|
{
|
|
|
|
cygheap_fdenum cfd (false);
|
|
|
|
while (cfd.next () >= 0)
|
|
|
|
if (cfd->get_device () == (dev_t) myself->ctty)
|
|
|
|
{
|
|
|
|
fhandler_base *fh = cfd;
|
|
|
|
fhandler_pty_slave *ptys = (fhandler_pty_slave *) fh;
|
|
|
|
tty *ttyp = ptys->get_ttyp ();
|
|
|
|
HANDLE from = ptys->get_handle ();
|
|
|
|
HANDLE input_available_event = ptys->get_input_available_event ();
|
|
|
|
if (ttyp->getpgid () == myself->pgid
|
|
|
|
&& ttyp->pcon_input_state_eq (tty::to_nat))
|
|
|
|
{
|
|
|
|
WaitForSingleObject (ptys->input_mutex, INFINITE);
|
|
|
|
fhandler_pty_slave::transfer_input (tty::to_cyg, from, ttyp,
|
|
|
|
input_available_event);
|
|
|
|
ReleaseMutex (ptys->input_mutex);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exit_Orig (e);
|
|
|
|
}
|
|
|
|
|
2020-09-09 23:27:59 +08:00
|
|
|
static void
|
|
|
|
convert_mb_str (UINT cp_to, char *ptr_to, size_t *len_to,
|
|
|
|
UINT cp_from, const char *ptr_from, size_t len_from,
|
|
|
|
mbstate_t *mbp)
|
2019-09-18 22:29:19 +08:00
|
|
|
{
|
2020-09-09 23:27:59 +08:00
|
|
|
tmp_pathbuf tp;
|
|
|
|
wchar_t *wbuf = tp.w_get ();
|
|
|
|
int wlen = 0;
|
2020-09-11 23:37:26 +08:00
|
|
|
char *tmpbuf = tp.c_get ();
|
|
|
|
memcpy (tmpbuf, mbp->__value.__wchb, mbp->__count);
|
|
|
|
if (mbp->__count + len_from > NT_MAX_PATH)
|
|
|
|
len_from = NT_MAX_PATH - mbp->__count;
|
|
|
|
memcpy (tmpbuf + mbp->__count, ptr_from, len_from);
|
|
|
|
int total_len = mbp->__count + len_from;
|
|
|
|
mbp->__count = 0;
|
|
|
|
int mblen = 0;
|
|
|
|
for (const char *p = tmpbuf; p < tmpbuf + total_len; p += mblen)
|
|
|
|
/* Max bytes in multibyte char supported is 4. */
|
|
|
|
for (mblen = 1; mblen <= 4; mblen ++)
|
|
|
|
{
|
|
|
|
/* Try conversion */
|
|
|
|
int l = MultiByteToWideChar (cp_from, MB_ERR_INVALID_CHARS,
|
|
|
|
p, mblen,
|
|
|
|
wbuf + wlen, NT_MAX_PATH - wlen);
|
|
|
|
if (l)
|
|
|
|
{ /* Conversion Success */
|
|
|
|
wlen += l;
|
|
|
|
break;
|
2020-09-09 23:27:59 +08:00
|
|
|
}
|
2020-09-11 23:37:26 +08:00
|
|
|
else if (mblen == 4)
|
|
|
|
{ /* Conversion Fail */
|
|
|
|
l = MultiByteToWideChar (cp_from, 0, p, 1,
|
|
|
|
wbuf + wlen, NT_MAX_PATH - wlen);
|
|
|
|
wlen += l;
|
|
|
|
mblen = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (p + mblen == tmpbuf + total_len)
|
|
|
|
{ /* Multibyte char incomplete */
|
|
|
|
memcpy (mbp->__value.__wchb, p, mblen);
|
|
|
|
mbp->__count = mblen;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Retry conversion with extended length */
|
|
|
|
}
|
|
|
|
*len_to = WideCharToMultiByte (cp_to, 0, wbuf, wlen,
|
|
|
|
ptr_to, *len_to, NULL, NULL);
|
2019-09-18 22:29:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2012-04-05 10:54:51 +08:00
|
|
|
bytes_available (DWORD& n, HANDLE h)
|
|
|
|
{
|
2012-05-16 09:56:41 +08:00
|
|
|
DWORD navail, nleft;
|
|
|
|
navail = nleft = 0;
|
|
|
|
bool succeeded = PeekNamedPipe (h, NULL, 0, NULL, &navail, &nleft);
|
|
|
|
if (succeeded)
|
|
|
|
/* nleft should always be the right choice unless something has written 0
|
|
|
|
bytes to the pipe. In that pathological case we return the actual number
|
|
|
|
of bytes available in the pipe. See cgf-000008 for more details. */
|
|
|
|
n = nleft ?: navail;
|
|
|
|
else
|
2012-04-05 10:54:51 +08:00
|
|
|
{
|
|
|
|
termios_printf ("PeekNamedPipe(%p) failed, %E", h);
|
|
|
|
n = 0;
|
|
|
|
}
|
2012-11-09 01:27:00 +08:00
|
|
|
debug_only_printf ("n %u, nleft %u, navail %u", n, nleft, navail);
|
2012-04-05 10:54:51 +08:00
|
|
|
return succeeded;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
fhandler_pty_common::bytes_available (DWORD &n)
|
|
|
|
{
|
2019-08-28 02:04:02 +08:00
|
|
|
return ::bytes_available (n, get_handle_cyg ());
|
2012-04-05 10:54:51 +08:00
|
|
|
}
|
|
|
|
|
2000-02-18 03:38:33 +08:00
|
|
|
#ifdef DEBUGGING
|
|
|
|
static class mutex_stack
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
const char *fn;
|
|
|
|
int ln;
|
|
|
|
const char *tname;
|
|
|
|
} ostack[100];
|
|
|
|
|
2001-09-06 12:41:59 +08:00
|
|
|
static int osi;
|
2000-02-18 03:38:33 +08:00
|
|
|
#endif /*DEBUGGING*/
|
|
|
|
|
2012-04-05 10:54:51 +08:00
|
|
|
void
|
|
|
|
fhandler_pty_master::flush_to_slave ()
|
2012-08-17 07:34:45 +08:00
|
|
|
{
|
2012-04-05 10:54:51 +08:00
|
|
|
if (get_readahead_valid () && !(get_ttyp ()->ti.c_lflag & ICANON))
|
|
|
|
accept_input ();
|
|
|
|
}
|
|
|
|
|
2000-02-18 03:38:33 +08:00
|
|
|
DWORD
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_common::__acquire_output_mutex (const char *fn, int ln,
|
2012-04-05 10:54:51 +08:00
|
|
|
DWORD ms)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2005-12-30 04:46:34 +08:00
|
|
|
if (strace.active ())
|
2011-06-15 05:48:43 +08:00
|
|
|
strace.prntf (_STRACE_TERMIOS, fn, "(%d): pty output_mutex (%p): waiting %d ms", ln, output_mutex, ms);
|
2013-07-31 23:19:18 +08:00
|
|
|
if (ms == INFINITE)
|
2013-05-08 08:10:08 +08:00
|
|
|
ms = 100;
|
2000-02-18 03:38:33 +08:00
|
|
|
DWORD res = WaitForSingleObject (output_mutex, ms);
|
|
|
|
if (res == WAIT_OBJECT_0)
|
|
|
|
{
|
2000-03-10 05:04:05 +08:00
|
|
|
#ifndef DEBUGGING
|
2005-12-30 05:10:50 +08:00
|
|
|
if (strace.active ())
|
2011-06-15 05:48:43 +08:00
|
|
|
strace.prntf (_STRACE_TERMIOS, fn, "(%d): pty output_mutex: acquired", ln, res);
|
2000-03-10 05:04:05 +08:00
|
|
|
#else
|
2000-02-18 03:38:33 +08:00
|
|
|
ostack[osi].fn = fn;
|
|
|
|
ostack[osi].ln = ln;
|
2018-01-24 16:34:23 +08:00
|
|
|
ostack[osi].tname = mythreadname ();
|
2000-02-18 03:38:33 +08:00
|
|
|
termios_printf ("acquired for %s:%d, osi %d", fn, ln, osi);
|
|
|
|
osi++;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_common::__release_output_mutex (const char *fn, int ln)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
|
|
|
if (ReleaseMutex (output_mutex))
|
|
|
|
{
|
2000-03-10 05:04:05 +08:00
|
|
|
#ifndef DEBUGGING
|
2005-12-30 05:10:50 +08:00
|
|
|
if (strace.active ())
|
2011-06-15 05:48:43 +08:00
|
|
|
strace.prntf (_STRACE_TERMIOS, fn, "(%d): pty output_mutex(%p) released", ln, output_mutex);
|
2000-03-10 05:04:05 +08:00
|
|
|
#else
|
2000-02-18 03:38:33 +08:00
|
|
|
if (osi > 0)
|
|
|
|
osi--;
|
2011-05-06 06:30:53 +08:00
|
|
|
termios_printf ("released(%p) at %s:%d, osi %d", output_mutex, fn, ln, osi);
|
2001-03-11 09:58:23 +08:00
|
|
|
termios_printf (" for %s:%d (%s)", ostack[osi].fn, ostack[osi].ln, ostack[osi].tname);
|
2000-02-18 03:38:33 +08:00
|
|
|
ostack[osi].ln = -ln;
|
|
|
|
#endif
|
|
|
|
}
|
2006-05-22 12:50:54 +08:00
|
|
|
#ifdef DEBUGGING
|
|
|
|
else if (osi > 0)
|
|
|
|
{
|
|
|
|
system_printf ("couldn't release output mutex but we seem to own it, %E");
|
|
|
|
try_to_debug ();
|
|
|
|
}
|
|
|
|
#endif
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
2011-06-15 05:48:43 +08:00
|
|
|
/* Process pty input. */
|
2000-02-18 03:38:33 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
fhandler_pty_master::doecho (const void *str, DWORD len)
|
|
|
|
{
|
2015-03-25 19:42:38 +08:00
|
|
|
ssize_t towrite = len;
|
2019-08-28 02:04:02 +08:00
|
|
|
acquire_output_mutex (INFINITE);
|
2021-01-15 16:32:13 +08:00
|
|
|
if (!process_opost_output (echo_w, str, towrite, true,
|
|
|
|
get_ttyp (), is_nonblocking ()))
|
2015-03-05 20:57:34 +08:00
|
|
|
termios_printf ("Write to echo pipe failed, %E");
|
2019-08-28 02:04:02 +08:00
|
|
|
release_output_mutex ();
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fhandler_pty_master::accept_input ()
|
|
|
|
{
|
2002-12-17 11:49:34 +08:00
|
|
|
DWORD bytes_left;
|
|
|
|
int ret = 1;
|
2001-03-04 23:34:25 +08:00
|
|
|
|
2005-07-07 04:05:03 +08:00
|
|
|
WaitForSingleObject (input_mutex, INFINITE);
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2020-06-30 19:12:50 +08:00
|
|
|
char *p = rabuf () + raixget ();
|
2002-12-17 11:49:34 +08:00
|
|
|
bytes_left = eat_readahead (-1);
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2020-08-19 19:25:21 +08:00
|
|
|
HANDLE write_to = get_output_handle ();
|
2020-09-09 23:28:00 +08:00
|
|
|
tmp_pathbuf tp;
|
2021-02-11 17:09:42 +08:00
|
|
|
if (to_be_read_from_pcon ()
|
|
|
|
&& get_ttyp ()->pcon_input_state == tty::to_nat)
|
2020-09-09 23:28:00 +08:00
|
|
|
{
|
|
|
|
write_to = to_slave;
|
2021-01-18 21:10:57 +08:00
|
|
|
|
|
|
|
UINT cp_to;
|
|
|
|
pinfo pinfo_target = pinfo (get_ttyp ()->invisible_console_pid);
|
|
|
|
DWORD target_pid = 0;
|
|
|
|
if (pinfo_target)
|
|
|
|
target_pid = pinfo_target->dwProcessId;
|
|
|
|
pinfo pinfo_resume = pinfo (myself->ppid);
|
|
|
|
DWORD resume_pid;
|
|
|
|
if (pinfo_resume)
|
|
|
|
resume_pid = pinfo_resume->dwProcessId;
|
|
|
|
else
|
|
|
|
resume_pid = get_console_process_id (myself->dwProcessId, false);
|
|
|
|
if (target_pid && resume_pid)
|
|
|
|
{
|
|
|
|
/* Slave attaches to a different console than master.
|
|
|
|
Therefore reattach here. */
|
|
|
|
WaitForSingleObject (attach_mutex, INFINITE);
|
|
|
|
FreeConsole ();
|
|
|
|
AttachConsole (target_pid);
|
|
|
|
cp_to = GetConsoleCP ();
|
|
|
|
FreeConsole ();
|
|
|
|
AttachConsole (resume_pid);
|
|
|
|
ReleaseMutex (attach_mutex);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
cp_to = GetConsoleCP ();
|
|
|
|
|
2020-09-09 23:28:00 +08:00
|
|
|
if (get_ttyp ()->term_code_page != cp_to)
|
|
|
|
{
|
|
|
|
static mbstate_t mbp;
|
|
|
|
char *mbbuf = tp.c_get ();
|
|
|
|
size_t nlen = NT_MAX_PATH;
|
|
|
|
convert_mb_str (cp_to, mbbuf, &nlen,
|
|
|
|
get_ttyp ()->term_code_page, p, bytes_left, &mbp);
|
|
|
|
p = mbbuf;
|
|
|
|
bytes_left = nlen;
|
|
|
|
}
|
|
|
|
}
|
2020-08-19 19:25:21 +08:00
|
|
|
|
|
|
|
if (!bytes_left)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2002-12-17 11:49:34 +08:00
|
|
|
termios_printf ("sending EOF to slave");
|
|
|
|
get_ttyp ()->read_retval = 0;
|
|
|
|
}
|
2020-05-31 13:53:17 +08:00
|
|
|
else
|
2002-12-17 11:49:34 +08:00
|
|
|
{
|
2021-02-11 17:09:42 +08:00
|
|
|
BOOL rc = TRUE;
|
2002-12-17 11:49:34 +08:00
|
|
|
DWORD written = 0;
|
2002-12-01 06:23:01 +08:00
|
|
|
|
2013-04-23 17:44:36 +08:00
|
|
|
paranoid_printf ("about to write %u chars to slave", bytes_left);
|
2021-02-11 17:09:42 +08:00
|
|
|
/* Write line by line for transfer input. */
|
|
|
|
char *p0 = p;
|
|
|
|
char *p1 = p;
|
|
|
|
DWORD n;
|
|
|
|
while ((p1 = (char *) memchr (p0, '\n', bytes_left - (p0 - p)))
|
|
|
|
|| (p1 = (char *) memchr (p0, '\r', bytes_left - (p0 - p))))
|
|
|
|
{
|
|
|
|
n = p1 - p0 + 1;
|
|
|
|
rc = WriteFile (write_to, p0, n, &n, NULL);
|
|
|
|
written += n;
|
|
|
|
p0 = p1 + 1;
|
|
|
|
}
|
|
|
|
if ((n = bytes_left - (p0 - p)))
|
|
|
|
{
|
|
|
|
rc = WriteFile (write_to, p0, n, &n, NULL);
|
|
|
|
written += n;
|
|
|
|
}
|
2002-12-17 11:49:34 +08:00
|
|
|
if (!rc)
|
|
|
|
{
|
2020-08-19 19:25:21 +08:00
|
|
|
debug_printf ("error writing to pipe %p %E", write_to);
|
2002-12-17 11:49:34 +08:00
|
|
|
get_ttyp ()->read_retval = -1;
|
2002-12-20 09:38:55 +08:00
|
|
|
ret = -1;
|
2002-12-17 11:49:34 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
get_ttyp ()->read_retval = 1;
|
2001-04-27 14:27:28 +08:00
|
|
|
p += written;
|
|
|
|
bytes_left -= written;
|
|
|
|
if (bytes_left > 0)
|
|
|
|
{
|
|
|
|
debug_printf ("to_slave pipe is full");
|
2002-12-17 11:49:34 +08:00
|
|
|
puts_readahead (p, bytes_left);
|
|
|
|
ret = 0;
|
2001-04-27 14:27:28 +08:00
|
|
|
}
|
|
|
|
}
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
2002-12-17 11:49:34 +08:00
|
|
|
|
2021-01-15 17:26:31 +08:00
|
|
|
if (write_to == get_output_handle ())
|
|
|
|
SetEvent (input_available_event);
|
2001-03-04 23:34:25 +08:00
|
|
|
ReleaseMutex (input_mutex);
|
2002-12-17 11:49:34 +08:00
|
|
|
return ret;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
2001-09-25 05:50:44 +08:00
|
|
|
bool
|
2000-02-18 03:38:33 +08:00
|
|
|
fhandler_pty_master::hit_eof ()
|
|
|
|
{
|
|
|
|
if (get_ttyp ()->was_opened && !get_ttyp ()->slave_alive ())
|
|
|
|
{
|
|
|
|
/* We have the only remaining open handle to this pty, and
|
|
|
|
the slave pty has been opened at least once. We treat
|
|
|
|
this as EOF. */
|
|
|
|
termios_printf ("all other handles closed");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-06-15 05:48:43 +08:00
|
|
|
/* Process pty output requests */
|
2000-02-18 03:38:33 +08:00
|
|
|
|
|
|
|
int
|
2000-03-12 14:29:54 +08:00
|
|
|
fhandler_pty_master::process_slave_output (char *buf, size_t len, int pktmode_on)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
|
|
|
size_t rlen;
|
2015-03-25 19:42:38 +08:00
|
|
|
char outbuf[OUT_BUFFER_SIZE];
|
2000-02-18 03:38:33 +08:00
|
|
|
DWORD n;
|
2015-03-05 20:57:34 +08:00
|
|
|
DWORD echo_cnt;
|
2000-03-12 12:44:37 +08:00
|
|
|
int rc = 0;
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2012-04-05 10:54:51 +08:00
|
|
|
flush_to_slave ();
|
|
|
|
|
2000-02-18 03:38:33 +08:00
|
|
|
if (len == 0)
|
2000-03-12 12:44:37 +08:00
|
|
|
goto out;
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2000-03-12 14:29:54 +08:00
|
|
|
for (;;)
|
|
|
|
{
|
2015-03-05 20:57:34 +08:00
|
|
|
n = echo_cnt = 0;
|
2012-04-05 10:54:51 +08:00
|
|
|
for (;;)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2015-03-05 20:57:34 +08:00
|
|
|
/* Check echo pipe first. */
|
|
|
|
if (::bytes_available (echo_cnt, echo_r) && echo_cnt > 0)
|
|
|
|
break;
|
2019-08-28 02:04:02 +08:00
|
|
|
if (!bytes_available (n))
|
2012-04-05 10:54:51 +08:00
|
|
|
goto err;
|
|
|
|
if (n)
|
|
|
|
break;
|
|
|
|
if (hit_eof ())
|
2015-03-25 19:42:38 +08:00
|
|
|
{
|
|
|
|
set_errno (EIO);
|
|
|
|
rc = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
2012-04-05 10:54:51 +08:00
|
|
|
/* DISCARD (FLUSHO) and tcflush can finish here. */
|
|
|
|
if ((get_ttyp ()->ti.c_lflag & FLUSHO || !buf))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (is_nonblocking ())
|
2000-03-12 14:29:54 +08:00
|
|
|
{
|
2012-04-05 10:54:51 +08:00
|
|
|
set_errno (EAGAIN);
|
|
|
|
rc = -1;
|
|
|
|
goto out;
|
2000-03-12 14:29:54 +08:00
|
|
|
}
|
2012-04-05 10:54:51 +08:00
|
|
|
pthread_testcancel ();
|
2012-08-16 03:07:42 +08:00
|
|
|
if (cygwait (NULL, 10, cw_sig_eintr) == WAIT_SIGNALED
|
2012-04-05 10:54:51 +08:00
|
|
|
&& !_my_tls.call_signal_handler ())
|
2011-05-06 06:30:53 +08:00
|
|
|
{
|
2012-04-05 10:54:51 +08:00
|
|
|
set_errno (EINTR);
|
|
|
|
rc = -1;
|
|
|
|
goto out;
|
2011-05-06 06:30:53 +08:00
|
|
|
}
|
2012-04-05 10:54:51 +08:00
|
|
|
flush_to_slave ();
|
|
|
|
}
|
|
|
|
|
2015-03-25 19:42:38 +08:00
|
|
|
/* Set RLEN to the number of bytes to read from the pipe. */
|
|
|
|
rlen = len;
|
|
|
|
|
|
|
|
char *optr;
|
|
|
|
optr = buf;
|
|
|
|
if (pktmode_on && buf)
|
|
|
|
{
|
|
|
|
*optr++ = TIOCPKT_DATA;
|
|
|
|
rlen -= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rlen == 0)
|
|
|
|
{
|
|
|
|
rc = optr - buf;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rlen > sizeof outbuf)
|
|
|
|
rlen = sizeof outbuf;
|
|
|
|
|
2015-03-05 20:57:34 +08:00
|
|
|
/* If echo pipe has data (something has been typed or pasted), prefer
|
|
|
|
it over slave output. */
|
|
|
|
if (echo_cnt > 0)
|
2020-01-21 10:22:02 +08:00
|
|
|
{
|
2015-03-05 20:57:34 +08:00
|
|
|
if (!ReadFile (echo_r, outbuf, rlen, &n, NULL))
|
|
|
|
{
|
|
|
|
termios_printf ("ReadFile on echo pipe failed, %E");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
2019-08-28 02:04:02 +08:00
|
|
|
else if (!ReadFile (get_handle (), outbuf, rlen, &n, NULL))
|
2012-04-05 10:54:51 +08:00
|
|
|
{
|
|
|
|
termios_printf ("ReadFile failed, %E");
|
|
|
|
goto err;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
2000-03-12 14:29:54 +08:00
|
|
|
termios_printf ("bytes read %u", n);
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2003-09-19 02:54:48 +08:00
|
|
|
if (get_ttyp ()->ti.c_lflag & FLUSHO || !buf)
|
2000-09-08 00:23:51 +08:00
|
|
|
continue;
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2015-03-25 19:42:38 +08:00
|
|
|
memcpy (optr, outbuf, n);
|
|
|
|
optr += n;
|
2000-03-12 14:29:54 +08:00
|
|
|
rc = optr - buf;
|
2000-03-12 12:44:37 +08:00
|
|
|
break;
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2000-03-12 12:44:37 +08:00
|
|
|
err:
|
|
|
|
if (GetLastError () == ERROR_BROKEN_PIPE)
|
|
|
|
rc = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
__seterrno ();
|
|
|
|
rc = -1;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
2000-03-12 12:44:37 +08:00
|
|
|
break;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
2000-03-12 12:44:37 +08:00
|
|
|
|
|
|
|
out:
|
|
|
|
termios_printf ("returning %d", rc);
|
|
|
|
return rc;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
2011-06-15 05:48:43 +08:00
|
|
|
/* pty slave stuff */
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_slave::fhandler_pty_slave (int unit)
|
2019-08-28 02:04:02 +08:00
|
|
|
: fhandler_pty_common (), inuse (NULL), output_handle_cyg (NULL),
|
2021-01-28 11:26:13 +08:00
|
|
|
io_handle_cyg (NULL), slave_reading (NULL), num_reader (0)
|
2011-05-06 06:30:53 +08:00
|
|
|
{
|
2011-06-14 07:49:00 +08:00
|
|
|
if (unit >= 0)
|
2011-10-20 22:02:54 +08:00
|
|
|
dev ().parse (DEV_PTYS_MAJOR, unit);
|
2011-05-06 06:30:53 +08:00
|
|
|
}
|
2000-02-18 03:38:33 +08:00
|
|
|
|
|
|
|
int
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_slave::open (int flags, mode_t)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2019-08-28 02:04:02 +08:00
|
|
|
HANDLE pty_owner;
|
|
|
|
HANDLE from_master_local, from_master_cyg_local;
|
|
|
|
HANDLE to_master_local, to_master_cyg_local;
|
2010-04-02 23:41:27 +08:00
|
|
|
HANDLE *handles[] =
|
|
|
|
{
|
|
|
|
&from_master_local, &input_available_event, &input_mutex, &inuse,
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
&output_mutex, &to_master_local, &pty_owner, &to_master_cyg_local,
|
2021-02-11 17:09:42 +08:00
|
|
|
&from_master_cyg_local, &pcon_mutex,
|
2010-04-02 23:41:27 +08:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
for (HANDLE **h = handles; *h; h++)
|
|
|
|
**h = NULL;
|
|
|
|
|
2013-04-23 17:44:36 +08:00
|
|
|
_tc = cygwin_shared->tty[get_minor ()];
|
2011-06-04 08:12:29 +08:00
|
|
|
|
|
|
|
tcinit (false);
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2013-04-23 17:44:36 +08:00
|
|
|
cygwin_shared->tty.attach (get_minor ());
|
2000-02-18 03:38:33 +08:00
|
|
|
|
|
|
|
/* Create synchronisation events */
|
2007-12-06 00:50:18 +08:00
|
|
|
char buf[MAX_PATH];
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2011-05-06 06:30:53 +08:00
|
|
|
const char *errmsg = NULL;
|
|
|
|
|
2010-04-20 03:52:43 +08:00
|
|
|
if (!(output_mutex = get_ttyp ()->open_output_mutex (MAXIMUM_ALLOWED)))
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2010-04-02 23:41:27 +08:00
|
|
|
errmsg = "open output mutex failed, %E";
|
|
|
|
goto err;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
2010-04-20 03:52:43 +08:00
|
|
|
if (!(input_mutex = get_ttyp ()->open_input_mutex (MAXIMUM_ALLOWED)))
|
2001-03-04 23:34:25 +08:00
|
|
|
{
|
2010-04-02 23:41:27 +08:00
|
|
|
errmsg = "open input mutex failed, %E";
|
|
|
|
goto err;
|
2001-03-04 23:34:25 +08:00
|
|
|
}
|
2021-02-11 17:09:42 +08:00
|
|
|
if (!(pcon_mutex = get_ttyp ()->open_mutex (PCON_MUTEX, MAXIMUM_ALLOWED)))
|
|
|
|
{
|
|
|
|
errmsg = "open pcon mutex failed, %E";
|
|
|
|
goto err;
|
|
|
|
}
|
2013-04-23 17:44:36 +08:00
|
|
|
shared_name (buf, INPUT_AVAILABLE_EVENT, get_minor ());
|
2010-04-20 03:52:43 +08:00
|
|
|
if (!(input_available_event = OpenEvent (MAXIMUM_ALLOWED, TRUE, buf)))
|
2001-03-04 23:34:25 +08:00
|
|
|
{
|
2010-04-02 23:41:27 +08:00
|
|
|
errmsg = "open input event failed, %E";
|
|
|
|
goto err;
|
2001-03-04 23:34:25 +08:00
|
|
|
}
|
2000-02-18 03:38:33 +08:00
|
|
|
|
|
|
|
/* FIXME: Needs a method to eliminate tty races */
|
|
|
|
{
|
2010-04-20 03:52:43 +08:00
|
|
|
/* Create security attribute. Default permissions are 0620. */
|
|
|
|
security_descriptor sd;
|
|
|
|
sd.malloc (sizeof (SECURITY_DESCRIPTOR));
|
2011-04-28 17:30:36 +08:00
|
|
|
RtlCreateSecurityDescriptor (sd, SECURITY_DESCRIPTOR_REVISION);
|
2010-04-20 03:52:43 +08:00
|
|
|
SECURITY_ATTRIBUTES sa = { sizeof (SECURITY_ATTRIBUTES), NULL, TRUE };
|
Reapply POSIX ACL changes.
- New, unified implementation of POSIX permission and ACL handling. The
new ACLs now store the POSIX ACL MASK/CLASS_OBJ permission mask, and
they allow to inherit the S_ISGID bit. ACL inheritance now really
works as desired, in a limited, but theoretically equivalent fashion
even for non-Cygwin processes.
To accommodate Windows default ACLs, the new code ignores SYSTEM and
Administrators group permissions when computing the MASK/CLASS_OBJ
permission mask on old ACLs, and it doesn't deny access to SYSTEM and
Administrators group based on the value of MASK/CLASS_OBJ when
creating the new ACLs.
The new code now handles the S_ISGID bit on directories as on Linux:
Setting S_ISGID on a directory causes new files and subdirs created
within to inherit its group, rather than the primary group of the user
who created the file. This only works for files and directories
created by Cygwin processes.
2015-05-29 Corinna Vinschen <corinna@vinschen.de>
Reapply POSIX ACL changes.
* utils.xml (setfacl): Show new option output.
(getfacl): Show new option output.
* sec_acl.cc (get_posix_access): Check for Cygwin "standard" ACL.
Apply umask, if so. Align comments.
* security.cc (set_created_file_access): Fix permission masking by
incoming requested file mode.
* sec_acl.cc (set_posix_access): Apply mask only in terms of execute bit
for SYSTEM and Admins group.
* sec_acl.cc (set_posix_access): Don't create DENY ACEs for USER and
GROUP entries if they are the same as USER_OBJ or GROUP_OBJ.
* fhandler.h (fhandler_pty_slave::facl): Add prototype.
* fhandler_tty.cc (fhandler_pty_slave::facl): New method.
(fhandler_pty_slave::fchown): Fix uid/gid handling.
* sec_acl.cc (set_posix_access): Drop superfluous class_idx variable.
Simplify and move around code in a few places. To improve ACL
readability, add r/w permissions to Admins ACE appended to pty ACL.
Add comment to explain Windows ACE Mask filtering being in the way of
creating a real CLASS_OBJ.
(get_posix_access): Fake CLASS_OBJ for ptys. Explain why.
* security.cc (get_object_attribute): Add S_IFCHR flag to attributes
when calling get_posix_access.
* sec_acl.cc (set_posix_access): Move merging group perms into owner
perms in case of owner == group after mask has been computed. Take
mask into account when doing so to avoid unnecessary ACCESS_DENIED_ACE.
* sec_acl.cc (get_posix_access): Only set saw_group_obj flag if we saw
the ACCESS_ALLOWED_ACE.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Deliberatly
set GROUP_OBJ and CLASS_OBJ perms to new group perms. Add comment
to explain why.
* security.cc (set_created_file_access): Ditto.
* sec_acl.cc (set_posix_access): Replace previous patch. Return
EINVAL if uid and/or guid is invalid and not backed by an actual
Windows account.
* sec_acl.cc (set_posix_access): Workaround owner/group SIDs being NULL.
* sec_acl.cc (set_posix_access): Handle files with owner == group.
Rephrase switch statement checking against unfiltered a_type value.
(get_posix_access): Handle files with owner == group.
* sec_acl.cc (get_posix_access): Don't use GROUP_OBJ access to fix up
CLASS_OBJ mask on old-style ACLs. Fix a comment.
* sec_acl.cc (set_posix_access): Always make sure Admins have
WRITE_DAC and WRITE_OWNER permissions.
* security.h (create_object_sd_from_attribute): Drop handle parameter
from prototype.
* security.cc (create_object_sd_from_attribute): Drop handle parameter.
Just create the standard POSIXy security descriptor.
(set_object_attribute): Accommodate dropped paramter in call to
create_object_sd_from_attribute.
* fhandler_tty.cc: Ditto, throughout.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Fix typo in
mask computation.
* fhandler.cc (fhandler_base::open_with_arch): Call open with mode
not umasked.
(fhandler_base::open): Explicitely umask mode on NFS here. Call new
set_created_file_access rather than set_file_attribute.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Reimplement
setting permissions on filesystems supporting ACLs using the new
set_posix_access call.
(fhandler_disk_file::fchown): Ditto.
(fhandler_disk_file::mkdir): Call new set_created_file_access rather
than set_file_attribute.
* fhandler_socket.cc (fhandler_socket::bind): Don't umask here. Add
WRITE_OWNER access to allow writing group in case of SGID bit set.
Call new set_created_file_access rather than set_file_attribute.
* path.cc (symlink_worker): Call new set_created_file_access rather
than set_file_attribute.
* sec_acl.cc (searchace): Un-staticize.
(set_posix_access): New, complementary functionality to
get_posix_access.
(setacl): Implement in terms of get_posix_access/set_posix_access.
(get_posix_access): Add handling for just created files requiring
their first Cygwin ACL. Fix new_style recognition. Handle SGID
bit. For old-style ACLs, ignore SYSTEM and Administrators when
computing the {DEF_}CLASS_OBJ perms.
* security.cc (get_file_sd): Revamp comment. Change and (hopefully)
speed up inheritance processing for just created files.
(alloc_sd): Remove.
(set_security_attribute): Call set_posix_access instead of alloc_sd.
(get_object_attribute): Fix return value.
(create_object_sd_from_attribute): Call set_posix_access instead of
alloc_sd.
(set_file_attribute): Remove.
(set_created_file_access): New function implemented in terms of
get_posix_access/set_posix_access.
* security.h (set_file_attribute): Remove prototype.
(set_created_file_access): Add prototype.
(searchace): Ditto.
(set_posix_access): Ditto.
* syscalls.cc (open): Call open_with_arch with mode not umasked.
* sec_acl.cc: Change preceeding comment explaining new-style ACLs.
Describe how to generate deny ACEs in more detail. Accommodate the
fact that a NULL deny ACE is used for {DEF_}CLASS_OBJ, rather than
a special Cygwin ACE. Improve further comments.
(CYG_ACE_NEW_STYLE): Define.
(get_posix_access): Change from Cygwin ACE to NULL deny ACE. Fix
CLASS_OBJ handling to generate CLASS_OBJ and DEF_CLASS_OBJ from a single
NULL deny ACE if the inheritance flags say so.
* sec_helper.cc (well_known_cygwin_sid): Remove.
* security.h (well_known_cygwin_sid): Drop declaration.
* sec_acl.cc (CYG_ACE_ISBITS_TO_WIN): Fix typo.
(get_posix_access): Rename index variable from i to idx. Define only
once at top level.
* security.cc (add_access_allowed_ace): Drop unused parameter "offset".
Accommodate throughout.
(add_access_denied_ace): Ditto.
* sec_acl.cc: Accommodate above change throughout.
* security.h (add_access_allowed_ace): Adjust prototype to above change.
(add_access_denied_ace): Ditto.
* sec_acl.cc (get_posix_access): Handle multiple ACEs for the
owner and primary group of the file. Handle the default primary
group ACE as DEF_GROUP_OBJ entry if the directory has the S_ISGID bit
set. Add comments. Minor code rearrangements.
Preliminary read side implementation of new permission handling.
* acl.h (MAX_ACL_ENTRIES): Raise to 2730. Add comment to explain.
* sec_acl.cc: Add leading comment to explain new ACL style.
Add definitions and macros to use for bits in new Cygwin ACL.
(DENY_RWX): New mask value for all temporary deny bits.
(getace): Add bool parameter to decide when leaving all bits intact,
rather than filtering them per the already set bits.
(get_posix_access): New function, taking over functionality to read
POSIX ACL from SECURITY_DESCRIPTOR.
(getacl): Just call get_posix_access.
* sec_helper.cc (well_known_cygwin_sid): Define.
* security.cc (get_attribute_from_acl): Remove.
(get_info_from_sd): Remove.
(get_reg_sd): Call get_posix_access instead of get_info_from_sd.
(get_file_attribute): Ditto.
(get_object_attribute): Ditto.
* security.h (well_known_cygwin_sid): Declare.
(get_posix_access): Add prototype.
* Throughout, use simpler ACE macros from Windows' accctrl.h.
* getfacl.c (main): Special-case SYSTEM and Admins group. Add comments.
* setfacl.c: Align more to Linux tool.
(delacl): New function to delete acl entries only.
(modacl): Drop delete functionality. Add handling of recomputing the
mask and default mask values.
(delallacl): Rename from delacl.
(setfacl): Call delacl in Delete case. Call delallacl in DeleteAll
and DeleteDef case.
(usage): Accommodate new options. Rearrange and rephrase slightly.
(longopts): Emit 'x' in --delete case. Add --no-mask and --mask
options.
(opts): Add -x and -n options.
(main): Handle -d and -x the same. Handle -n and --mask options.
Drop handling for -r option.
* getfacl.c (usage): Align more closely to Linux version. Add new
options -c, -e, -E. Change formatting to accommodate longer options.
(longopts): Rename --noname to --numeric. Keep --noname for backward
compatibility. Add --omit-header, --all-effective and --no-effective
options.
(opts): Add -c, -e and -E option.
(main): Handle new -c, -e, and -E options.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-06-24 17:52:29 +08:00
|
|
|
if (!create_object_sd_from_attribute (myself->uid, myself->gid,
|
2015-09-04 01:29:55 +08:00
|
|
|
S_IFCHR | S_IRUSR | S_IWUSR | S_IWGRP,
|
|
|
|
sd))
|
2010-04-20 03:52:43 +08:00
|
|
|
sa.lpSecurityDescriptor = (PSECURITY_DESCRIPTOR) sd;
|
2013-05-08 08:10:08 +08:00
|
|
|
acquire_output_mutex (INFINITE);
|
2010-04-20 03:52:43 +08:00
|
|
|
inuse = get_ttyp ()->create_inuse (&sa);
|
2003-12-08 06:37:12 +08:00
|
|
|
get_ttyp ()->was_opened = true;
|
2000-02-18 03:38:33 +08:00
|
|
|
release_output_mutex ();
|
|
|
|
}
|
|
|
|
|
2020-08-19 19:25:21 +08:00
|
|
|
if (!get_ttyp ()->from_master () || !get_ttyp ()->from_master_cyg ()
|
|
|
|
|| !get_ttyp ()->to_master () || !get_ttyp ()->to_master_cyg ())
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2011-06-15 05:48:43 +08:00
|
|
|
errmsg = "pty handles have been closed";
|
2000-02-18 03:38:33 +08:00
|
|
|
set_errno (EACCES);
|
2010-04-02 23:41:27 +08:00
|
|
|
goto err_no_errno;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
2010-04-20 03:52:43 +08:00
|
|
|
/* Three case for duplicating the pipe handles:
|
|
|
|
- Either we're the master. In this case, just duplicate the handles.
|
|
|
|
- Or, we have the right to open the master process for handle duplication.
|
|
|
|
In this case, just duplicate the handles.
|
|
|
|
- Or, we have to ask the master process itself. In this case, send our
|
|
|
|
pid to the master process and check the reply. The reply contains
|
|
|
|
either the handles, or an error code which tells us why we didn't
|
|
|
|
get the handles. */
|
|
|
|
if (myself->pid == get_ttyp ()->master_pid)
|
|
|
|
{
|
|
|
|
/* This is the most common case, just calling openpty. */
|
|
|
|
termios_printf ("dup handles within myself.");
|
2011-06-15 05:48:43 +08:00
|
|
|
pty_owner = GetCurrentProcess ();
|
2010-04-20 03:52:43 +08:00
|
|
|
}
|
|
|
|
else
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2006-06-02 23:41:34 +08:00
|
|
|
pinfo p (get_ttyp ()->master_pid);
|
|
|
|
if (!p)
|
2011-06-15 05:48:43 +08:00
|
|
|
termios_printf ("*** couldn't find pty master");
|
2010-04-12 21:28:06 +08:00
|
|
|
else
|
|
|
|
{
|
2011-06-15 05:48:43 +08:00
|
|
|
pty_owner = OpenProcess (PROCESS_DUP_HANDLE, FALSE, p->dwProcessId);
|
|
|
|
if (pty_owner)
|
2011-10-10 12:05:29 +08:00
|
|
|
termios_printf ("dup handles directly since I'm the owner");
|
2002-05-28 09:55:40 +08:00
|
|
|
}
|
2010-04-20 03:52:43 +08:00
|
|
|
}
|
2011-06-15 05:48:43 +08:00
|
|
|
if (pty_owner)
|
2010-04-20 03:52:43 +08:00
|
|
|
{
|
2013-04-23 17:44:36 +08:00
|
|
|
if (!DuplicateHandle (pty_owner, get_ttyp ()->from_master (),
|
2009-12-19 04:32:04 +08:00
|
|
|
GetCurrentProcess (), &from_master_local, 0, TRUE,
|
2002-02-28 22:30:38 +08:00
|
|
|
DUPLICATE_SAME_ACCESS))
|
2002-05-28 09:55:40 +08:00
|
|
|
{
|
2009-07-04 02:05:51 +08:00
|
|
|
termios_printf ("can't duplicate input from %u/%p, %E",
|
2013-04-23 17:44:36 +08:00
|
|
|
get_ttyp ()->master_pid, get_ttyp ()->from_master ());
|
2002-05-28 09:55:40 +08:00
|
|
|
__seterrno ();
|
2010-04-02 23:41:27 +08:00
|
|
|
goto err_no_msg;
|
2002-05-28 09:55:40 +08:00
|
|
|
}
|
2019-08-28 02:04:02 +08:00
|
|
|
if (!DuplicateHandle (pty_owner, get_ttyp ()->from_master_cyg (),
|
|
|
|
GetCurrentProcess (), &from_master_cyg_local, 0, TRUE,
|
|
|
|
DUPLICATE_SAME_ACCESS))
|
|
|
|
{
|
|
|
|
termios_printf ("can't duplicate input from %u/%p, %E",
|
|
|
|
get_ttyp ()->master_pid, get_ttyp ()->from_master_cyg ());
|
|
|
|
__seterrno ();
|
|
|
|
goto err_no_msg;
|
|
|
|
}
|
2013-04-23 17:44:36 +08:00
|
|
|
if (!DuplicateHandle (pty_owner, get_ttyp ()->to_master (),
|
2009-12-19 04:32:04 +08:00
|
|
|
GetCurrentProcess (), &to_master_local, 0, TRUE,
|
2002-02-28 22:30:38 +08:00
|
|
|
DUPLICATE_SAME_ACCESS))
|
2002-05-28 09:55:40 +08:00
|
|
|
{
|
2010-04-02 23:41:27 +08:00
|
|
|
errmsg = "can't duplicate output, %E";
|
|
|
|
goto err;
|
2002-05-28 09:55:40 +08:00
|
|
|
}
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
if (!DuplicateHandle (pty_owner, get_ttyp ()->to_master_cyg (),
|
|
|
|
GetCurrentProcess (), &to_master_cyg_local, 0, TRUE,
|
|
|
|
DUPLICATE_SAME_ACCESS))
|
|
|
|
{
|
|
|
|
errmsg = "can't duplicate output for cygwin, %E";
|
|
|
|
goto err;
|
|
|
|
}
|
2011-06-15 05:48:43 +08:00
|
|
|
if (pty_owner != GetCurrentProcess ())
|
|
|
|
CloseHandle (pty_owner);
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
2010-04-20 03:52:43 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
pipe_request req = { GetCurrentProcessId () };
|
|
|
|
pipe_reply repl;
|
|
|
|
DWORD len;
|
|
|
|
|
2011-06-15 05:48:43 +08:00
|
|
|
__small_sprintf (buf, "\\\\.\\pipe\\cygwin-%S-pty%d-master-ctl",
|
2013-04-23 17:44:36 +08:00
|
|
|
&cygheap->installation_key, get_minor ());
|
2010-04-20 03:52:43 +08:00
|
|
|
termios_printf ("dup handles via master control pipe %s", buf);
|
|
|
|
if (!CallNamedPipe (buf, &req, sizeof req, &repl, sizeof repl,
|
|
|
|
&len, 500))
|
|
|
|
{
|
|
|
|
errmsg = "can't call master, %E";
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
from_master_local = repl.from_master;
|
2019-08-28 02:04:02 +08:00
|
|
|
from_master_cyg_local = repl.from_master_cyg;
|
2010-04-20 03:52:43 +08:00
|
|
|
to_master_local = repl.to_master;
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
to_master_cyg_local = repl.to_master_cyg;
|
2020-08-19 19:25:21 +08:00
|
|
|
if (!from_master_local || !from_master_cyg_local
|
|
|
|
|| !to_master_local || !to_master_cyg_local)
|
2010-04-20 03:52:43 +08:00
|
|
|
{
|
|
|
|
SetLastError (repl.error);
|
|
|
|
errmsg = "error duplicating pipes, %E";
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
VerifyHandle (from_master_local);
|
2019-08-28 02:04:02 +08:00
|
|
|
VerifyHandle (from_master_cyg_local);
|
2010-04-20 03:52:43 +08:00
|
|
|
VerifyHandle (to_master_local);
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
VerifyHandle (to_master_cyg_local);
|
2002-02-28 22:30:38 +08:00
|
|
|
|
2011-06-15 05:48:43 +08:00
|
|
|
termios_printf ("duplicated from_master %p->%p from pty_owner",
|
2013-04-23 17:44:36 +08:00
|
|
|
get_ttyp ()->from_master (), from_master_local);
|
2019-08-28 02:04:02 +08:00
|
|
|
termios_printf ("duplicated from_master_cyg %p->%p from pty_owner",
|
|
|
|
get_ttyp ()->from_master_cyg (), from_master_cyg_local);
|
2011-06-15 05:48:43 +08:00
|
|
|
termios_printf ("duplicated to_master %p->%p from pty_owner",
|
2013-04-23 17:44:36 +08:00
|
|
|
get_ttyp ()->to_master (), to_master_local);
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
termios_printf ("duplicated to_master_cyg %p->%p from pty_owner",
|
|
|
|
get_ttyp ()->to_master_cyg (), to_master_cyg_local);
|
2002-02-28 22:30:38 +08:00
|
|
|
|
2019-03-30 15:12:02 +08:00
|
|
|
set_handle (from_master_local);
|
2019-08-28 02:04:02 +08:00
|
|
|
set_handle_cyg (from_master_cyg_local);
|
2002-02-28 22:30:38 +08:00
|
|
|
set_output_handle (to_master_local);
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
set_output_handle_cyg (to_master_cyg_local);
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2021-01-18 21:10:57 +08:00
|
|
|
if (_major (myself->ctty) == DEV_CONS_MAJOR
|
|
|
|
&& !(!pinfo (myself->ppid) && getenv ("ConEmuPID")))
|
|
|
|
/* This process is supposed to be a master process which is
|
|
|
|
running on console. Invisible console will be created in
|
|
|
|
primary slave process to prevent overriding code page
|
|
|
|
of root console by setup_locale(). */
|
|
|
|
/* ... except for ConEmu cygwin-connector in which this
|
|
|
|
code does not work as expected because it calls Win32
|
|
|
|
API directly rather than cygwin read()/write(). Due to
|
|
|
|
this behaviour, protection based on attach_mutex does
|
|
|
|
not take effect. */
|
|
|
|
get_ttyp ()->need_invisible_console = true;
|
|
|
|
else
|
|
|
|
fhandler_console::need_invisible ();
|
2019-09-04 09:45:35 +08:00
|
|
|
|
2001-04-24 10:07:58 +08:00
|
|
|
set_open_status ();
|
2000-02-18 03:38:33 +08:00
|
|
|
return 1;
|
2010-04-02 23:41:27 +08:00
|
|
|
|
|
|
|
err:
|
2011-10-10 12:05:29 +08:00
|
|
|
if (GetLastError () == ERROR_FILE_NOT_FOUND)
|
|
|
|
set_errno (ENXIO);
|
|
|
|
else
|
|
|
|
__seterrno ();
|
2010-04-02 23:41:27 +08:00
|
|
|
err_no_errno:
|
|
|
|
termios_printf (errmsg);
|
|
|
|
err_no_msg:
|
|
|
|
for (HANDLE **h = handles; *h; h++)
|
|
|
|
if (**h && **h != INVALID_HANDLE_VALUE)
|
|
|
|
CloseHandle (**h);
|
|
|
|
return 0;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
2011-05-06 06:30:53 +08:00
|
|
|
void
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_slave::open_setup (int flags)
|
2011-05-06 06:30:53 +08:00
|
|
|
{
|
|
|
|
set_flags ((flags & ~O_TEXT) | O_BINARY);
|
2011-10-16 06:37:30 +08:00
|
|
|
myself->set_ctty (this, flags);
|
2011-05-06 06:30:53 +08:00
|
|
|
report_tty_counts (this, "opened", "");
|
2013-10-24 23:26:21 +08:00
|
|
|
fhandler_base::open_setup (flags);
|
2011-05-06 06:30:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_slave::cleanup ()
|
2003-03-04 12:07:34 +08:00
|
|
|
{
|
2011-11-14 09:29:49 +08:00
|
|
|
/* This used to always call fhandler_pty_common::close when we were execing
|
|
|
|
but that caused multiple closes of the handles associated with this pty.
|
|
|
|
Since close_all_files is not called until after the cygwin process has
|
|
|
|
synced or before a non-cygwin process has exited, it should be safe to
|
|
|
|
just close this normally. cgf 2006-05-20 */
|
2006-05-20 12:59:53 +08:00
|
|
|
report_tty_counts (this, "closed", "");
|
2013-10-23 04:41:09 +08:00
|
|
|
fhandler_base::cleanup ();
|
2011-05-06 06:30:53 +08:00
|
|
|
}
|
2003-12-28 01:41:17 +08:00
|
|
|
|
2011-05-06 06:30:53 +08:00
|
|
|
int
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_slave::close ()
|
2011-05-06 06:30:53 +08:00
|
|
|
{
|
2003-12-30 09:57:16 +08:00
|
|
|
termios_printf ("closing last open %s handle", ttyname ());
|
2006-06-02 23:41:34 +08:00
|
|
|
if (inuse && !CloseHandle (inuse))
|
|
|
|
termios_printf ("CloseHandle (inuse), %E");
|
2011-12-10 00:02:56 +08:00
|
|
|
if (!ForceCloseHandle (input_available_event))
|
|
|
|
termios_printf ("CloseHandle (input_available_event<%p>), %E", input_available_event);
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
if (!ForceCloseHandle (get_output_handle_cyg ()))
|
|
|
|
termios_printf ("CloseHandle (get_output_handle_cyg ()<%p>), %E",
|
|
|
|
get_output_handle_cyg ());
|
2019-08-28 02:04:02 +08:00
|
|
|
if (!ForceCloseHandle (get_handle_cyg ()))
|
|
|
|
termios_printf ("CloseHandle (get_handle_cyg ()<%p>), %E",
|
|
|
|
get_handle_cyg ());
|
2020-08-19 19:25:21 +08:00
|
|
|
if ((unsigned) myself->ctty == FHDEV (DEV_PTYS_MAJOR, get_minor ()))
|
2012-02-08 00:54:14 +08:00
|
|
|
fhandler_console::free_console (); /* assumes that we are the last pty closer */
|
2015-05-28 22:06:49 +08:00
|
|
|
fhandler_pty_common::close ();
|
|
|
|
if (!ForceCloseHandle (output_mutex))
|
|
|
|
termios_printf ("CloseHandle (output_mutex<%p>), %E", output_mutex);
|
|
|
|
return 0;
|
2003-03-04 12:07:34 +08:00
|
|
|
}
|
|
|
|
|
2002-02-28 22:30:38 +08:00
|
|
|
int
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_slave::init (HANDLE h, DWORD a, mode_t)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
* devices.cc: New file.
* devices.gperf: New file.
* devices.shilka: New file.
* cygwin-gperf: New file.
* cygwin-shilka: New file.
* fhandler_fifo.cc: New file.
* fhandler_nodevice.cc : New file. Reorganize headers so that path.h precedes
fhandler.h throughout. Remove device argument and unit arguments from fhandler
constructors throughout. Remove pc arguments to fhandler functions and use
internal pc element instead, throughout. Use dev element in pc throughout.
Use major/minor elements rather than units and device numbers previously in
fhandler class. Use correct methods for fhandler file names rather than
directly accessing file name variables, throughout.
* Makefile.in (DLL_OFILES): Add devices.o, fhandler_fifo.o
* dcrt0.cc (dll_crt0_1): Call device::init.
* devices.h: Renumber devices based on more Linux-like major/minor numbers.
Add more devices. Declare standard device storage.
(device): Declare struct.
* dir.cc (opendir): Use new 'build_fh_name' to construct a fhandler_* type.
* dtable.cc (dtable::get_debugger_info): Ditto.
(cygwin_attach_handle_to_fd): Ditto.
(dtable::release): Remove special FH_SOCKET case in favor of generic
"need_fixup_before" test.
(dtable::init_std_file_from_handle): Use either build_fh_dev or build_fh_name
to build standard fhandler.
(dtable::build_fh_name): Renamed from dtable::build_fhandler_from_name. Move
out of dtable class. Don't accept a path_conv argument. Just build it here
and pass it to:
(build_fh_pc): Renamed from dtable::build_fhandler. Move out of dtable class.
Use intrinsic device type in path_conv to create new fhandler.
(build_fh_dev): Renamed from dtable::build_fhandler. Move out of dtable class.
Simplify arguments to just take new 'device' type and a name. Just return
pointer to fhandler rather than trying to insert into dtable.
(dtable::dup_worker): Accommodate above build_fh name changes.
(dtable::find_fifo): New (currently broken) function.
(handle_to_fn): Use strechr for efficiency.
* dtable.h: Reflect above build_fh name changes and argument differences.
(fhandler_base *&operator []): Return self rather than copy of self.
* fhandler.cc (fhandler_base::operator =): Use pc element to set normalized
path.
(fhandler_base::set_name): Ditto.
(fhandler_base::raw_read): Use method to access name.
(fhandler_base::write): Correctly use get_output_handle rather than get_handle.
(handler_base::device_access_denied): New function.
(fhandler_base::open): Eliminate pc argument and use pc element of
fhandler_base throughout.
(fhandler_base::fstat): Detect if device is based in filesystem and use
fstat_fs to calculate stat, if so.
(fhandler_base::fhandler_base): Eliminate handling of file names and, instead,
just free appropriate component from pc.
(fhandler_base::opendir): Remove path_conv parameter.
* fhandler.h: Remove all device flags.
(fhandler_base::pc): New element.
(fhandler_base::set_name): Change argument to path_conv.
(fhandler_base::error): New function.
(fhandler_base::exists): New function.
(fhandler_base::pc_binmode): New function.
(fhandler_base::dev): New function.
(fhandler_base::open_fs): New function.
(fhandler_base::fstat_fs): New function.
(fhandler_base::fstat_by_name): New function.
(fhandler_base::fstat_by_handle): New function.
(fhandler_base::isfifo): New function.
(fhandler_base::is_slow): New function.
(fhandler_base::is_auto_device): New function.
(fhandler_base::is_fs_special): New function.
(fhandler_base::device_access_denied): New function.
(fhandler_base::operator DWORD&): New operator.
(fhandler_base::get_name): Return normalized path from pc.
(fhandler_base::get_win32_name): Return windows path from pc.
(fhandler_base::isdevice): Renamed from is_device.
(fhandler_base::get_native_name): Return device format.
(fhandler_fifo): New class.
(fhandler_nodevice): New class.
(select_stuff::device_specific): Remove array.
(select_stuff::device_specific_pipe): New class element.
(select_stuff::device_specific_socket): New class element.
(select_stuff::device_specific_serial): New class element.
(select_stuff::select_stuff): Initialize new elements.
* fhandler_disk_file.cc (fhandler_base::fstat_by_handle): Move to base class
from fhandler_disk_file.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_disk_file::open): Move most functionality into
fhandler_base::open_fs.
(fhandler_base::open_fs): New function.
(fhandler_disk_file::close): Move most functionality into
fhandler_base::close_fs.
(fhandler_base::close_fs): New function.
* fhandler_mem.cc (fhandler_dev_mem::open): Use device name in debugging
output.
* fhandler_socket.cc (fhandler_socket::set_connect_secret): Copy standard
urandom device into appropriate place.
(fhandler_socket::accept): Reflect change in fdsock return value.
* fhandler_tty.cc: See "throughouts" above.
* net.cc: Accommodate fdsock change throughout.
(fdsock): Return success or failure, accept fd argument and device argument.
* path.cc (symlink_info::major): New element.
(symlink_info::minor): New element.
(symlink_info::parse_device): Declare new function.
(fs_info::update): Accommodate changes in path_conv class.
(path_conv::fillin): Ditto.
(path_conv::return_and_clear_normalized_path): Eliminate.
(path_conv::set_normalized_path): New function.
(path_conv::path_conv): Set info in dev element. Use path_conv methods Check
for FH_FS rather than FH_BAD to indicate when to fill in filesystem stuff.
where appropriate rather than direct access. Use set_normalized_path to set
normalized path.
(windows_device_names): Eliminate.
(get_dev): Ditto.
(get_raw_device_number): Ditto.
(get_device_number): Ditto.
(win32_device_name): Call new device name parser to do most of the heavy
lifting.
(mount_info::conv_to_win32_path): Fill in dev field as appropriate.
(symlink_worker): Handle new device files.
(symlink_info::check): Ditto.
(symlink_info::parse_device): Define new function.
* path.h (executable_states): Move here from fhandler.h.
(fs_info): Rename variables to *_storage and create methods for accessing same.
(path_conv): Add dev element, remove devn and unit and adjust inline methods to
accommodate.
(set_normalized_path): Declare new function.
* pinfo.cc (_pinfo::commune_recv): Add broken support for handling fifos.
(_pinfo::commune_send): Ditto.
* pipe.cc (fhandler_pipe::close): check for existence of handle before closing
it.
(handler_pipe::create): Rename from make_pipe. Change arguments to accept
fhandler_pipe array. Accommodate fifos.
(pipe): Rework to deal with fhandler_pipe::create changes.
(_pipe): Ditto.
* select.cc: Use individual device_specific types throughout rather than
indexing with obsolete device number.
(set_bits): Use is_socket call rather than checking device number.
* shared_info.h (CURR_MOUNT_MAGIC): Update.
(conv_to_win32_path): Reflect addition of device argument.
* syscalls.cc (mknod_worker): New function.
(open): Use build_fh_name to build fhandler.
(chown_worker): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(chmod_device): New function.
(chmod): Detect if this is an 'auto' device rather than an on-filesystem device
and handle appropriately. Use chmod_device to set mode of in-filesystem
devices.
(stat_worker): Eliminate path_conv argument. Call build_fh_name to construct
fhandler. Use fh->error() rather than pc->error to detect errors in fhandler
construction.
(access_worker): New function pulled from access. Accommodate in-filesystem
devices.
(access): Use access_worker.
(fpathconf): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(mknod_worker): New function.
(mknod32): New function.
(chroot): Free normalized path -- assuming it was actually cmalloced.
* tty.cc (create_tty_master): Tweak for new device class.
(tty::common_init): Ditto.
* winsup.h (stat_worker): Remove.
(symlink_worker): Declare.
* exceptions.cc (set_process_mask): Just call sig_dispatch_pending and don't
worry about pending_signals since sig_dispatch_pending should always do the
right thing now.
(sig_handle): Reorganize SIGCONT handling to more closely conform to SUSv3.
* pinfo.h: Move __SIG enum to sigproc.h.
(PICOM_FIFO): New enum element.
(_pinfo): Remove 'thread2signal' stuff throughout class.
(_pinfo::commune_send): Make varargs.
(_pinfo::sigtodo): Eliminate.
(_pinfo::thread2signal): Ditto.
* signal.cc (kill_worker): Eliminate call to setthread2signal.
* sigproc.cc (local_sigtodo): Eliminate.
(getlocal_sigtodo): Ditto.
(sigelem): New class.
(pending_signals): New class.
(sigqueue): New variable, start of sigqueue linked list.
(sigcatch_nonmain): Eliminate.
(sigcatch_main): Eliminate.
(sigcatch_nosync): Eliminate.
(sigcomplete_nonmain): Eliminate.
(pending_signals): Eliminate.
(sig_clear): Call signal thread to clear pending signals, unless already in
signal thread.
(sigpending): Call signal thread to get pending signals.
(sig_dispatch_pending): Eliminate use of pending_signals and just check
sigqueue.
(sigproc_terminate): Eliminate all of the obsolete semaphore stuff. Close
signal pipe handle.
(sig_send): Eliminate all of the obsolete semaphore stuff and use pipe to send
signals.
(getevent): Eliminate.
(pending_signals::add): New function.
(pending_signals::del): New function.
(pending_signals::next): New function.
(wait_sig): Eliminate all of the obsolete semaphore stuff. Use pipe to
communicate and maintain a linked list of signals.
* sigproc.h: Move __SIG defines here. Add __SIGPENDING.
(sig_dispatch_pending): Remove "C" specifier.
(sig_handle): Accept a mask argument.
* thread.cc: Remove signal handling considerations throughout.
2003-09-25 08:37:18 +08:00
|
|
|
int flags = 0;
|
2000-02-18 03:38:33 +08:00
|
|
|
|
|
|
|
a &= GENERIC_READ | GENERIC_WRITE;
|
|
|
|
if (a == GENERIC_READ)
|
* devices.cc: New file.
* devices.gperf: New file.
* devices.shilka: New file.
* cygwin-gperf: New file.
* cygwin-shilka: New file.
* fhandler_fifo.cc: New file.
* fhandler_nodevice.cc : New file. Reorganize headers so that path.h precedes
fhandler.h throughout. Remove device argument and unit arguments from fhandler
constructors throughout. Remove pc arguments to fhandler functions and use
internal pc element instead, throughout. Use dev element in pc throughout.
Use major/minor elements rather than units and device numbers previously in
fhandler class. Use correct methods for fhandler file names rather than
directly accessing file name variables, throughout.
* Makefile.in (DLL_OFILES): Add devices.o, fhandler_fifo.o
* dcrt0.cc (dll_crt0_1): Call device::init.
* devices.h: Renumber devices based on more Linux-like major/minor numbers.
Add more devices. Declare standard device storage.
(device): Declare struct.
* dir.cc (opendir): Use new 'build_fh_name' to construct a fhandler_* type.
* dtable.cc (dtable::get_debugger_info): Ditto.
(cygwin_attach_handle_to_fd): Ditto.
(dtable::release): Remove special FH_SOCKET case in favor of generic
"need_fixup_before" test.
(dtable::init_std_file_from_handle): Use either build_fh_dev or build_fh_name
to build standard fhandler.
(dtable::build_fh_name): Renamed from dtable::build_fhandler_from_name. Move
out of dtable class. Don't accept a path_conv argument. Just build it here
and pass it to:
(build_fh_pc): Renamed from dtable::build_fhandler. Move out of dtable class.
Use intrinsic device type in path_conv to create new fhandler.
(build_fh_dev): Renamed from dtable::build_fhandler. Move out of dtable class.
Simplify arguments to just take new 'device' type and a name. Just return
pointer to fhandler rather than trying to insert into dtable.
(dtable::dup_worker): Accommodate above build_fh name changes.
(dtable::find_fifo): New (currently broken) function.
(handle_to_fn): Use strechr for efficiency.
* dtable.h: Reflect above build_fh name changes and argument differences.
(fhandler_base *&operator []): Return self rather than copy of self.
* fhandler.cc (fhandler_base::operator =): Use pc element to set normalized
path.
(fhandler_base::set_name): Ditto.
(fhandler_base::raw_read): Use method to access name.
(fhandler_base::write): Correctly use get_output_handle rather than get_handle.
(handler_base::device_access_denied): New function.
(fhandler_base::open): Eliminate pc argument and use pc element of
fhandler_base throughout.
(fhandler_base::fstat): Detect if device is based in filesystem and use
fstat_fs to calculate stat, if so.
(fhandler_base::fhandler_base): Eliminate handling of file names and, instead,
just free appropriate component from pc.
(fhandler_base::opendir): Remove path_conv parameter.
* fhandler.h: Remove all device flags.
(fhandler_base::pc): New element.
(fhandler_base::set_name): Change argument to path_conv.
(fhandler_base::error): New function.
(fhandler_base::exists): New function.
(fhandler_base::pc_binmode): New function.
(fhandler_base::dev): New function.
(fhandler_base::open_fs): New function.
(fhandler_base::fstat_fs): New function.
(fhandler_base::fstat_by_name): New function.
(fhandler_base::fstat_by_handle): New function.
(fhandler_base::isfifo): New function.
(fhandler_base::is_slow): New function.
(fhandler_base::is_auto_device): New function.
(fhandler_base::is_fs_special): New function.
(fhandler_base::device_access_denied): New function.
(fhandler_base::operator DWORD&): New operator.
(fhandler_base::get_name): Return normalized path from pc.
(fhandler_base::get_win32_name): Return windows path from pc.
(fhandler_base::isdevice): Renamed from is_device.
(fhandler_base::get_native_name): Return device format.
(fhandler_fifo): New class.
(fhandler_nodevice): New class.
(select_stuff::device_specific): Remove array.
(select_stuff::device_specific_pipe): New class element.
(select_stuff::device_specific_socket): New class element.
(select_stuff::device_specific_serial): New class element.
(select_stuff::select_stuff): Initialize new elements.
* fhandler_disk_file.cc (fhandler_base::fstat_by_handle): Move to base class
from fhandler_disk_file.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_disk_file::open): Move most functionality into
fhandler_base::open_fs.
(fhandler_base::open_fs): New function.
(fhandler_disk_file::close): Move most functionality into
fhandler_base::close_fs.
(fhandler_base::close_fs): New function.
* fhandler_mem.cc (fhandler_dev_mem::open): Use device name in debugging
output.
* fhandler_socket.cc (fhandler_socket::set_connect_secret): Copy standard
urandom device into appropriate place.
(fhandler_socket::accept): Reflect change in fdsock return value.
* fhandler_tty.cc: See "throughouts" above.
* net.cc: Accommodate fdsock change throughout.
(fdsock): Return success or failure, accept fd argument and device argument.
* path.cc (symlink_info::major): New element.
(symlink_info::minor): New element.
(symlink_info::parse_device): Declare new function.
(fs_info::update): Accommodate changes in path_conv class.
(path_conv::fillin): Ditto.
(path_conv::return_and_clear_normalized_path): Eliminate.
(path_conv::set_normalized_path): New function.
(path_conv::path_conv): Set info in dev element. Use path_conv methods Check
for FH_FS rather than FH_BAD to indicate when to fill in filesystem stuff.
where appropriate rather than direct access. Use set_normalized_path to set
normalized path.
(windows_device_names): Eliminate.
(get_dev): Ditto.
(get_raw_device_number): Ditto.
(get_device_number): Ditto.
(win32_device_name): Call new device name parser to do most of the heavy
lifting.
(mount_info::conv_to_win32_path): Fill in dev field as appropriate.
(symlink_worker): Handle new device files.
(symlink_info::check): Ditto.
(symlink_info::parse_device): Define new function.
* path.h (executable_states): Move here from fhandler.h.
(fs_info): Rename variables to *_storage and create methods for accessing same.
(path_conv): Add dev element, remove devn and unit and adjust inline methods to
accommodate.
(set_normalized_path): Declare new function.
* pinfo.cc (_pinfo::commune_recv): Add broken support for handling fifos.
(_pinfo::commune_send): Ditto.
* pipe.cc (fhandler_pipe::close): check for existence of handle before closing
it.
(handler_pipe::create): Rename from make_pipe. Change arguments to accept
fhandler_pipe array. Accommodate fifos.
(pipe): Rework to deal with fhandler_pipe::create changes.
(_pipe): Ditto.
* select.cc: Use individual device_specific types throughout rather than
indexing with obsolete device number.
(set_bits): Use is_socket call rather than checking device number.
* shared_info.h (CURR_MOUNT_MAGIC): Update.
(conv_to_win32_path): Reflect addition of device argument.
* syscalls.cc (mknod_worker): New function.
(open): Use build_fh_name to build fhandler.
(chown_worker): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(chmod_device): New function.
(chmod): Detect if this is an 'auto' device rather than an on-filesystem device
and handle appropriately. Use chmod_device to set mode of in-filesystem
devices.
(stat_worker): Eliminate path_conv argument. Call build_fh_name to construct
fhandler. Use fh->error() rather than pc->error to detect errors in fhandler
construction.
(access_worker): New function pulled from access. Accommodate in-filesystem
devices.
(access): Use access_worker.
(fpathconf): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(mknod_worker): New function.
(mknod32): New function.
(chroot): Free normalized path -- assuming it was actually cmalloced.
* tty.cc (create_tty_master): Tweak for new device class.
(tty::common_init): Ditto.
* winsup.h (stat_worker): Remove.
(symlink_worker): Declare.
* exceptions.cc (set_process_mask): Just call sig_dispatch_pending and don't
worry about pending_signals since sig_dispatch_pending should always do the
right thing now.
(sig_handle): Reorganize SIGCONT handling to more closely conform to SUSv3.
* pinfo.h: Move __SIG enum to sigproc.h.
(PICOM_FIFO): New enum element.
(_pinfo): Remove 'thread2signal' stuff throughout class.
(_pinfo::commune_send): Make varargs.
(_pinfo::sigtodo): Eliminate.
(_pinfo::thread2signal): Ditto.
* signal.cc (kill_worker): Eliminate call to setthread2signal.
* sigproc.cc (local_sigtodo): Eliminate.
(getlocal_sigtodo): Ditto.
(sigelem): New class.
(pending_signals): New class.
(sigqueue): New variable, start of sigqueue linked list.
(sigcatch_nonmain): Eliminate.
(sigcatch_main): Eliminate.
(sigcatch_nosync): Eliminate.
(sigcomplete_nonmain): Eliminate.
(pending_signals): Eliminate.
(sig_clear): Call signal thread to clear pending signals, unless already in
signal thread.
(sigpending): Call signal thread to get pending signals.
(sig_dispatch_pending): Eliminate use of pending_signals and just check
sigqueue.
(sigproc_terminate): Eliminate all of the obsolete semaphore stuff. Close
signal pipe handle.
(sig_send): Eliminate all of the obsolete semaphore stuff and use pipe to send
signals.
(getevent): Eliminate.
(pending_signals::add): New function.
(pending_signals::del): New function.
(pending_signals::next): New function.
(wait_sig): Eliminate all of the obsolete semaphore stuff. Use pipe to
communicate and maintain a linked list of signals.
* sigproc.h: Move __SIG defines here. Add __SIGPENDING.
(sig_dispatch_pending): Remove "C" specifier.
(sig_handle): Accept a mask argument.
* thread.cc: Remove signal handling considerations throughout.
2003-09-25 08:37:18 +08:00
|
|
|
flags = O_RDONLY;
|
2000-02-18 03:38:33 +08:00
|
|
|
if (a == GENERIC_WRITE)
|
* devices.cc: New file.
* devices.gperf: New file.
* devices.shilka: New file.
* cygwin-gperf: New file.
* cygwin-shilka: New file.
* fhandler_fifo.cc: New file.
* fhandler_nodevice.cc : New file. Reorganize headers so that path.h precedes
fhandler.h throughout. Remove device argument and unit arguments from fhandler
constructors throughout. Remove pc arguments to fhandler functions and use
internal pc element instead, throughout. Use dev element in pc throughout.
Use major/minor elements rather than units and device numbers previously in
fhandler class. Use correct methods for fhandler file names rather than
directly accessing file name variables, throughout.
* Makefile.in (DLL_OFILES): Add devices.o, fhandler_fifo.o
* dcrt0.cc (dll_crt0_1): Call device::init.
* devices.h: Renumber devices based on more Linux-like major/minor numbers.
Add more devices. Declare standard device storage.
(device): Declare struct.
* dir.cc (opendir): Use new 'build_fh_name' to construct a fhandler_* type.
* dtable.cc (dtable::get_debugger_info): Ditto.
(cygwin_attach_handle_to_fd): Ditto.
(dtable::release): Remove special FH_SOCKET case in favor of generic
"need_fixup_before" test.
(dtable::init_std_file_from_handle): Use either build_fh_dev or build_fh_name
to build standard fhandler.
(dtable::build_fh_name): Renamed from dtable::build_fhandler_from_name. Move
out of dtable class. Don't accept a path_conv argument. Just build it here
and pass it to:
(build_fh_pc): Renamed from dtable::build_fhandler. Move out of dtable class.
Use intrinsic device type in path_conv to create new fhandler.
(build_fh_dev): Renamed from dtable::build_fhandler. Move out of dtable class.
Simplify arguments to just take new 'device' type and a name. Just return
pointer to fhandler rather than trying to insert into dtable.
(dtable::dup_worker): Accommodate above build_fh name changes.
(dtable::find_fifo): New (currently broken) function.
(handle_to_fn): Use strechr for efficiency.
* dtable.h: Reflect above build_fh name changes and argument differences.
(fhandler_base *&operator []): Return self rather than copy of self.
* fhandler.cc (fhandler_base::operator =): Use pc element to set normalized
path.
(fhandler_base::set_name): Ditto.
(fhandler_base::raw_read): Use method to access name.
(fhandler_base::write): Correctly use get_output_handle rather than get_handle.
(handler_base::device_access_denied): New function.
(fhandler_base::open): Eliminate pc argument and use pc element of
fhandler_base throughout.
(fhandler_base::fstat): Detect if device is based in filesystem and use
fstat_fs to calculate stat, if so.
(fhandler_base::fhandler_base): Eliminate handling of file names and, instead,
just free appropriate component from pc.
(fhandler_base::opendir): Remove path_conv parameter.
* fhandler.h: Remove all device flags.
(fhandler_base::pc): New element.
(fhandler_base::set_name): Change argument to path_conv.
(fhandler_base::error): New function.
(fhandler_base::exists): New function.
(fhandler_base::pc_binmode): New function.
(fhandler_base::dev): New function.
(fhandler_base::open_fs): New function.
(fhandler_base::fstat_fs): New function.
(fhandler_base::fstat_by_name): New function.
(fhandler_base::fstat_by_handle): New function.
(fhandler_base::isfifo): New function.
(fhandler_base::is_slow): New function.
(fhandler_base::is_auto_device): New function.
(fhandler_base::is_fs_special): New function.
(fhandler_base::device_access_denied): New function.
(fhandler_base::operator DWORD&): New operator.
(fhandler_base::get_name): Return normalized path from pc.
(fhandler_base::get_win32_name): Return windows path from pc.
(fhandler_base::isdevice): Renamed from is_device.
(fhandler_base::get_native_name): Return device format.
(fhandler_fifo): New class.
(fhandler_nodevice): New class.
(select_stuff::device_specific): Remove array.
(select_stuff::device_specific_pipe): New class element.
(select_stuff::device_specific_socket): New class element.
(select_stuff::device_specific_serial): New class element.
(select_stuff::select_stuff): Initialize new elements.
* fhandler_disk_file.cc (fhandler_base::fstat_by_handle): Move to base class
from fhandler_disk_file.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_disk_file::open): Move most functionality into
fhandler_base::open_fs.
(fhandler_base::open_fs): New function.
(fhandler_disk_file::close): Move most functionality into
fhandler_base::close_fs.
(fhandler_base::close_fs): New function.
* fhandler_mem.cc (fhandler_dev_mem::open): Use device name in debugging
output.
* fhandler_socket.cc (fhandler_socket::set_connect_secret): Copy standard
urandom device into appropriate place.
(fhandler_socket::accept): Reflect change in fdsock return value.
* fhandler_tty.cc: See "throughouts" above.
* net.cc: Accommodate fdsock change throughout.
(fdsock): Return success or failure, accept fd argument and device argument.
* path.cc (symlink_info::major): New element.
(symlink_info::minor): New element.
(symlink_info::parse_device): Declare new function.
(fs_info::update): Accommodate changes in path_conv class.
(path_conv::fillin): Ditto.
(path_conv::return_and_clear_normalized_path): Eliminate.
(path_conv::set_normalized_path): New function.
(path_conv::path_conv): Set info in dev element. Use path_conv methods Check
for FH_FS rather than FH_BAD to indicate when to fill in filesystem stuff.
where appropriate rather than direct access. Use set_normalized_path to set
normalized path.
(windows_device_names): Eliminate.
(get_dev): Ditto.
(get_raw_device_number): Ditto.
(get_device_number): Ditto.
(win32_device_name): Call new device name parser to do most of the heavy
lifting.
(mount_info::conv_to_win32_path): Fill in dev field as appropriate.
(symlink_worker): Handle new device files.
(symlink_info::check): Ditto.
(symlink_info::parse_device): Define new function.
* path.h (executable_states): Move here from fhandler.h.
(fs_info): Rename variables to *_storage and create methods for accessing same.
(path_conv): Add dev element, remove devn and unit and adjust inline methods to
accommodate.
(set_normalized_path): Declare new function.
* pinfo.cc (_pinfo::commune_recv): Add broken support for handling fifos.
(_pinfo::commune_send): Ditto.
* pipe.cc (fhandler_pipe::close): check for existence of handle before closing
it.
(handler_pipe::create): Rename from make_pipe. Change arguments to accept
fhandler_pipe array. Accommodate fifos.
(pipe): Rework to deal with fhandler_pipe::create changes.
(_pipe): Ditto.
* select.cc: Use individual device_specific types throughout rather than
indexing with obsolete device number.
(set_bits): Use is_socket call rather than checking device number.
* shared_info.h (CURR_MOUNT_MAGIC): Update.
(conv_to_win32_path): Reflect addition of device argument.
* syscalls.cc (mknod_worker): New function.
(open): Use build_fh_name to build fhandler.
(chown_worker): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(chmod_device): New function.
(chmod): Detect if this is an 'auto' device rather than an on-filesystem device
and handle appropriately. Use chmod_device to set mode of in-filesystem
devices.
(stat_worker): Eliminate path_conv argument. Call build_fh_name to construct
fhandler. Use fh->error() rather than pc->error to detect errors in fhandler
construction.
(access_worker): New function pulled from access. Accommodate in-filesystem
devices.
(access): Use access_worker.
(fpathconf): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(mknod_worker): New function.
(mknod32): New function.
(chroot): Free normalized path -- assuming it was actually cmalloced.
* tty.cc (create_tty_master): Tweak for new device class.
(tty::common_init): Ditto.
* winsup.h (stat_worker): Remove.
(symlink_worker): Declare.
* exceptions.cc (set_process_mask): Just call sig_dispatch_pending and don't
worry about pending_signals since sig_dispatch_pending should always do the
right thing now.
(sig_handle): Reorganize SIGCONT handling to more closely conform to SUSv3.
* pinfo.h: Move __SIG enum to sigproc.h.
(PICOM_FIFO): New enum element.
(_pinfo): Remove 'thread2signal' stuff throughout class.
(_pinfo::commune_send): Make varargs.
(_pinfo::sigtodo): Eliminate.
(_pinfo::thread2signal): Ditto.
* signal.cc (kill_worker): Eliminate call to setthread2signal.
* sigproc.cc (local_sigtodo): Eliminate.
(getlocal_sigtodo): Ditto.
(sigelem): New class.
(pending_signals): New class.
(sigqueue): New variable, start of sigqueue linked list.
(sigcatch_nonmain): Eliminate.
(sigcatch_main): Eliminate.
(sigcatch_nosync): Eliminate.
(sigcomplete_nonmain): Eliminate.
(pending_signals): Eliminate.
(sig_clear): Call signal thread to clear pending signals, unless already in
signal thread.
(sigpending): Call signal thread to get pending signals.
(sig_dispatch_pending): Eliminate use of pending_signals and just check
sigqueue.
(sigproc_terminate): Eliminate all of the obsolete semaphore stuff. Close
signal pipe handle.
(sig_send): Eliminate all of the obsolete semaphore stuff and use pipe to send
signals.
(getevent): Eliminate.
(pending_signals::add): New function.
(pending_signals::del): New function.
(pending_signals::next): New function.
(wait_sig): Eliminate all of the obsolete semaphore stuff. Use pipe to
communicate and maintain a linked list of signals.
* sigproc.h: Move __SIG defines here. Add __SIGPENDING.
(sig_dispatch_pending): Remove "C" specifier.
(sig_handle): Accept a mask argument.
* thread.cc: Remove signal handling considerations throughout.
2003-09-25 08:37:18 +08:00
|
|
|
flags = O_WRONLY;
|
2000-02-18 03:38:33 +08:00
|
|
|
if (a == (GENERIC_READ | GENERIC_WRITE))
|
* devices.cc: New file.
* devices.gperf: New file.
* devices.shilka: New file.
* cygwin-gperf: New file.
* cygwin-shilka: New file.
* fhandler_fifo.cc: New file.
* fhandler_nodevice.cc : New file. Reorganize headers so that path.h precedes
fhandler.h throughout. Remove device argument and unit arguments from fhandler
constructors throughout. Remove pc arguments to fhandler functions and use
internal pc element instead, throughout. Use dev element in pc throughout.
Use major/minor elements rather than units and device numbers previously in
fhandler class. Use correct methods for fhandler file names rather than
directly accessing file name variables, throughout.
* Makefile.in (DLL_OFILES): Add devices.o, fhandler_fifo.o
* dcrt0.cc (dll_crt0_1): Call device::init.
* devices.h: Renumber devices based on more Linux-like major/minor numbers.
Add more devices. Declare standard device storage.
(device): Declare struct.
* dir.cc (opendir): Use new 'build_fh_name' to construct a fhandler_* type.
* dtable.cc (dtable::get_debugger_info): Ditto.
(cygwin_attach_handle_to_fd): Ditto.
(dtable::release): Remove special FH_SOCKET case in favor of generic
"need_fixup_before" test.
(dtable::init_std_file_from_handle): Use either build_fh_dev or build_fh_name
to build standard fhandler.
(dtable::build_fh_name): Renamed from dtable::build_fhandler_from_name. Move
out of dtable class. Don't accept a path_conv argument. Just build it here
and pass it to:
(build_fh_pc): Renamed from dtable::build_fhandler. Move out of dtable class.
Use intrinsic device type in path_conv to create new fhandler.
(build_fh_dev): Renamed from dtable::build_fhandler. Move out of dtable class.
Simplify arguments to just take new 'device' type and a name. Just return
pointer to fhandler rather than trying to insert into dtable.
(dtable::dup_worker): Accommodate above build_fh name changes.
(dtable::find_fifo): New (currently broken) function.
(handle_to_fn): Use strechr for efficiency.
* dtable.h: Reflect above build_fh name changes and argument differences.
(fhandler_base *&operator []): Return self rather than copy of self.
* fhandler.cc (fhandler_base::operator =): Use pc element to set normalized
path.
(fhandler_base::set_name): Ditto.
(fhandler_base::raw_read): Use method to access name.
(fhandler_base::write): Correctly use get_output_handle rather than get_handle.
(handler_base::device_access_denied): New function.
(fhandler_base::open): Eliminate pc argument and use pc element of
fhandler_base throughout.
(fhandler_base::fstat): Detect if device is based in filesystem and use
fstat_fs to calculate stat, if so.
(fhandler_base::fhandler_base): Eliminate handling of file names and, instead,
just free appropriate component from pc.
(fhandler_base::opendir): Remove path_conv parameter.
* fhandler.h: Remove all device flags.
(fhandler_base::pc): New element.
(fhandler_base::set_name): Change argument to path_conv.
(fhandler_base::error): New function.
(fhandler_base::exists): New function.
(fhandler_base::pc_binmode): New function.
(fhandler_base::dev): New function.
(fhandler_base::open_fs): New function.
(fhandler_base::fstat_fs): New function.
(fhandler_base::fstat_by_name): New function.
(fhandler_base::fstat_by_handle): New function.
(fhandler_base::isfifo): New function.
(fhandler_base::is_slow): New function.
(fhandler_base::is_auto_device): New function.
(fhandler_base::is_fs_special): New function.
(fhandler_base::device_access_denied): New function.
(fhandler_base::operator DWORD&): New operator.
(fhandler_base::get_name): Return normalized path from pc.
(fhandler_base::get_win32_name): Return windows path from pc.
(fhandler_base::isdevice): Renamed from is_device.
(fhandler_base::get_native_name): Return device format.
(fhandler_fifo): New class.
(fhandler_nodevice): New class.
(select_stuff::device_specific): Remove array.
(select_stuff::device_specific_pipe): New class element.
(select_stuff::device_specific_socket): New class element.
(select_stuff::device_specific_serial): New class element.
(select_stuff::select_stuff): Initialize new elements.
* fhandler_disk_file.cc (fhandler_base::fstat_by_handle): Move to base class
from fhandler_disk_file.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_disk_file::open): Move most functionality into
fhandler_base::open_fs.
(fhandler_base::open_fs): New function.
(fhandler_disk_file::close): Move most functionality into
fhandler_base::close_fs.
(fhandler_base::close_fs): New function.
* fhandler_mem.cc (fhandler_dev_mem::open): Use device name in debugging
output.
* fhandler_socket.cc (fhandler_socket::set_connect_secret): Copy standard
urandom device into appropriate place.
(fhandler_socket::accept): Reflect change in fdsock return value.
* fhandler_tty.cc: See "throughouts" above.
* net.cc: Accommodate fdsock change throughout.
(fdsock): Return success or failure, accept fd argument and device argument.
* path.cc (symlink_info::major): New element.
(symlink_info::minor): New element.
(symlink_info::parse_device): Declare new function.
(fs_info::update): Accommodate changes in path_conv class.
(path_conv::fillin): Ditto.
(path_conv::return_and_clear_normalized_path): Eliminate.
(path_conv::set_normalized_path): New function.
(path_conv::path_conv): Set info in dev element. Use path_conv methods Check
for FH_FS rather than FH_BAD to indicate when to fill in filesystem stuff.
where appropriate rather than direct access. Use set_normalized_path to set
normalized path.
(windows_device_names): Eliminate.
(get_dev): Ditto.
(get_raw_device_number): Ditto.
(get_device_number): Ditto.
(win32_device_name): Call new device name parser to do most of the heavy
lifting.
(mount_info::conv_to_win32_path): Fill in dev field as appropriate.
(symlink_worker): Handle new device files.
(symlink_info::check): Ditto.
(symlink_info::parse_device): Define new function.
* path.h (executable_states): Move here from fhandler.h.
(fs_info): Rename variables to *_storage and create methods for accessing same.
(path_conv): Add dev element, remove devn and unit and adjust inline methods to
accommodate.
(set_normalized_path): Declare new function.
* pinfo.cc (_pinfo::commune_recv): Add broken support for handling fifos.
(_pinfo::commune_send): Ditto.
* pipe.cc (fhandler_pipe::close): check for existence of handle before closing
it.
(handler_pipe::create): Rename from make_pipe. Change arguments to accept
fhandler_pipe array. Accommodate fifos.
(pipe): Rework to deal with fhandler_pipe::create changes.
(_pipe): Ditto.
* select.cc: Use individual device_specific types throughout rather than
indexing with obsolete device number.
(set_bits): Use is_socket call rather than checking device number.
* shared_info.h (CURR_MOUNT_MAGIC): Update.
(conv_to_win32_path): Reflect addition of device argument.
* syscalls.cc (mknod_worker): New function.
(open): Use build_fh_name to build fhandler.
(chown_worker): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(chmod_device): New function.
(chmod): Detect if this is an 'auto' device rather than an on-filesystem device
and handle appropriately. Use chmod_device to set mode of in-filesystem
devices.
(stat_worker): Eliminate path_conv argument. Call build_fh_name to construct
fhandler. Use fh->error() rather than pc->error to detect errors in fhandler
construction.
(access_worker): New function pulled from access. Accommodate in-filesystem
devices.
(access): Use access_worker.
(fpathconf): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(mknod_worker): New function.
(mknod32): New function.
(chroot): Free normalized path -- assuming it was actually cmalloced.
* tty.cc (create_tty_master): Tweak for new device class.
(tty::common_init): Ditto.
* winsup.h (stat_worker): Remove.
(symlink_worker): Declare.
* exceptions.cc (set_process_mask): Just call sig_dispatch_pending and don't
worry about pending_signals since sig_dispatch_pending should always do the
right thing now.
(sig_handle): Reorganize SIGCONT handling to more closely conform to SUSv3.
* pinfo.h: Move __SIG enum to sigproc.h.
(PICOM_FIFO): New enum element.
(_pinfo): Remove 'thread2signal' stuff throughout class.
(_pinfo::commune_send): Make varargs.
(_pinfo::sigtodo): Eliminate.
(_pinfo::thread2signal): Ditto.
* signal.cc (kill_worker): Eliminate call to setthread2signal.
* sigproc.cc (local_sigtodo): Eliminate.
(getlocal_sigtodo): Ditto.
(sigelem): New class.
(pending_signals): New class.
(sigqueue): New variable, start of sigqueue linked list.
(sigcatch_nonmain): Eliminate.
(sigcatch_main): Eliminate.
(sigcatch_nosync): Eliminate.
(sigcomplete_nonmain): Eliminate.
(pending_signals): Eliminate.
(sig_clear): Call signal thread to clear pending signals, unless already in
signal thread.
(sigpending): Call signal thread to get pending signals.
(sig_dispatch_pending): Eliminate use of pending_signals and just check
sigqueue.
(sigproc_terminate): Eliminate all of the obsolete semaphore stuff. Close
signal pipe handle.
(sig_send): Eliminate all of the obsolete semaphore stuff and use pipe to send
signals.
(getevent): Eliminate.
(pending_signals::add): New function.
(pending_signals::del): New function.
(pending_signals::next): New function.
(wait_sig): Eliminate all of the obsolete semaphore stuff. Use pipe to
communicate and maintain a linked list of signals.
* sigproc.h: Move __SIG defines here. Add __SIGPENDING.
(sig_dispatch_pending): Remove "C" specifier.
(sig_handle): Accept a mask argument.
* thread.cc: Remove signal handling considerations throughout.
2003-09-25 08:37:18 +08:00
|
|
|
flags = O_RDWR;
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2011-05-06 06:30:53 +08:00
|
|
|
int ret = open_with_arch (flags);
|
2010-09-21 04:25:50 +08:00
|
|
|
|
2010-09-21 06:28:57 +08:00
|
|
|
if (ret && !cygwin_finished_initializing && !being_debugged ())
|
2010-04-22 03:36:40 +08:00
|
|
|
{
|
|
|
|
/* This only occurs when called from dtable::init_std_file_from_handle
|
|
|
|
We have been started from a non-Cygwin process. So we should become
|
2011-06-15 05:48:43 +08:00
|
|
|
pty process group leader.
|
2010-04-22 03:36:40 +08:00
|
|
|
TODO: Investigate how SIGTTIN should be handled with pure-windows
|
|
|
|
programs. */
|
2011-06-04 08:12:29 +08:00
|
|
|
pinfo p (tc ()->getpgid ());
|
2010-09-21 06:28:57 +08:00
|
|
|
/* We should only grab this when the process group owner for this
|
2011-06-15 05:48:43 +08:00
|
|
|
pty is a non-cygwin process or we've been started directly
|
2010-09-21 06:28:57 +08:00
|
|
|
from a non-Cygwin process with no Cygwin ancestry. */
|
|
|
|
if (!p || ISSTATE (p, PID_NOTCYGWIN))
|
2010-09-29 11:57:24 +08:00
|
|
|
{
|
|
|
|
termios_printf ("Setting process group leader to %d since %W(%d) is not a cygwin process",
|
|
|
|
myself->pgid, p->progname, p->pid);
|
2011-06-04 08:12:29 +08:00
|
|
|
tc ()->setpgid (myself->pgid);
|
2010-09-29 11:57:24 +08:00
|
|
|
}
|
2010-04-22 03:36:40 +08:00
|
|
|
}
|
2010-04-20 03:52:43 +08:00
|
|
|
|
2011-05-06 06:30:53 +08:00
|
|
|
if (h != INVALID_HANDLE_VALUE)
|
|
|
|
CloseHandle (h); /* Reopened by open */
|
2010-04-20 03:52:43 +08:00
|
|
|
|
|
|
|
return ret;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
2019-08-28 02:04:02 +08:00
|
|
|
void
|
2020-08-19 19:25:21 +08:00
|
|
|
fhandler_pty_slave::set_switch_to_pcon (void)
|
2019-08-28 02:04:02 +08:00
|
|
|
{
|
2021-01-28 11:26:14 +08:00
|
|
|
if (!isHybrid)
|
2019-08-28 02:04:02 +08:00
|
|
|
{
|
2020-08-19 19:25:21 +08:00
|
|
|
isHybrid = true;
|
2021-01-28 11:26:13 +08:00
|
|
|
setup_locale ();
|
2021-02-11 17:09:42 +08:00
|
|
|
myself->exec_dwProcessId = myself->dwProcessId;
|
2021-01-28 11:26:13 +08:00
|
|
|
bool nopcon = (disable_pcon || !term_has_pcon_cap (NULL));
|
2021-02-11 17:09:42 +08:00
|
|
|
WaitForSingleObject (pcon_mutex, INFINITE);
|
|
|
|
bool pcon_enabled = setup_pseudoconsole (nopcon);
|
|
|
|
ReleaseMutex (pcon_mutex);
|
|
|
|
if (!pcon_enabled && get_ttyp ()->getpgid () == myself->pgid
|
|
|
|
&& get_ttyp ()->pcon_input_state_eq (tty::to_cyg))
|
|
|
|
{
|
|
|
|
WaitForSingleObject (input_mutex, INFINITE);
|
|
|
|
transfer_input (tty::to_nat, get_handle_cyg (), get_ttyp (),
|
|
|
|
input_available_event);
|
|
|
|
ReleaseMutex (input_mutex);
|
|
|
|
}
|
2019-09-14 05:48:14 +08:00
|
|
|
}
|
2019-08-28 02:04:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
fhandler_pty_slave::reset_switch_to_pcon (void)
|
|
|
|
{
|
2021-01-28 11:26:13 +08:00
|
|
|
if (h_gdb_process)
|
|
|
|
{
|
|
|
|
if (WaitForSingleObject (h_gdb_process, 0) == WAIT_TIMEOUT)
|
|
|
|
{
|
|
|
|
if (isHybrid)
|
|
|
|
get_ttyp ()->wait_pcon_fwd (false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CloseHandle (h_gdb_process);
|
|
|
|
h_gdb_process = NULL;
|
2021-01-28 11:26:14 +08:00
|
|
|
if (isHybrid)
|
2021-01-28 11:26:13 +08:00
|
|
|
{
|
2021-02-11 17:09:42 +08:00
|
|
|
if (get_ttyp ()->getpgid () == myself->pgid
|
|
|
|
&& get_ttyp ()->pcon_input_state_eq (tty::to_nat))
|
|
|
|
{
|
|
|
|
WaitForSingleObject (input_mutex, INFINITE);
|
|
|
|
transfer_input (tty::to_cyg, get_handle (), get_ttyp (),
|
|
|
|
input_available_event);
|
|
|
|
ReleaseMutex (input_mutex);
|
|
|
|
}
|
|
|
|
if (get_ttyp ()->master_is_running_as_service
|
|
|
|
&& get_ttyp ()->pcon_activated)
|
2021-01-28 11:26:13 +08:00
|
|
|
/* If the master is running as service, re-attaching to
|
|
|
|
the console of the parent process will fail.
|
|
|
|
Therefore, never close pseudo console here. */
|
|
|
|
return;
|
2021-01-28 11:26:14 +08:00
|
|
|
bool need_restore_handles = get_ttyp ()->pcon_activated;
|
2021-02-11 17:09:42 +08:00
|
|
|
WaitForSingleObject (pcon_mutex, INFINITE);
|
2021-01-28 11:26:13 +08:00
|
|
|
close_pseudoconsole (get_ttyp ());
|
2021-02-11 17:09:42 +08:00
|
|
|
ReleaseMutex (pcon_mutex);
|
2021-01-28 11:26:13 +08:00
|
|
|
if (need_restore_handles)
|
|
|
|
{
|
|
|
|
pinfo p (get_ttyp ()->master_pid);
|
|
|
|
HANDLE pty_owner =
|
|
|
|
OpenProcess (PROCESS_DUP_HANDLE, FALSE, p->dwProcessId);
|
|
|
|
bool fix_in, fix_out, fix_err;
|
|
|
|
fix_in =
|
|
|
|
GetStdHandle (STD_INPUT_HANDLE) == get_handle ();
|
|
|
|
fix_out =
|
|
|
|
GetStdHandle (STD_OUTPUT_HANDLE) == get_output_handle ();
|
|
|
|
fix_err =
|
|
|
|
GetStdHandle (STD_ERROR_HANDLE) == get_output_handle ();
|
|
|
|
if (pty_owner)
|
|
|
|
{
|
|
|
|
CloseHandle (get_handle ());
|
|
|
|
DuplicateHandle (pty_owner, get_ttyp ()->from_master (),
|
|
|
|
GetCurrentProcess (), &get_handle (),
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS);
|
|
|
|
CloseHandle (get_output_handle ());
|
|
|
|
DuplicateHandle (pty_owner, get_ttyp ()->to_master (),
|
|
|
|
GetCurrentProcess (),
|
|
|
|
&get_output_handle (),
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS);
|
|
|
|
CloseHandle (pty_owner);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char pipe[MAX_PATH];
|
|
|
|
__small_sprintf (pipe,
|
|
|
|
"\\\\.\\pipe\\cygwin-%S-pty%d-master-ctl",
|
|
|
|
&cygheap->installation_key, get_minor ());
|
|
|
|
pipe_request req = { GetCurrentProcessId () };
|
|
|
|
pipe_reply repl;
|
|
|
|
DWORD len;
|
|
|
|
if (!CallNamedPipe (pipe, &req, sizeof req,
|
|
|
|
&repl, sizeof repl, &len, 500))
|
|
|
|
return; /* What can we do? */
|
|
|
|
CloseHandle (get_handle ());
|
|
|
|
set_handle (repl.from_master);
|
|
|
|
CloseHandle (get_output_handle ());
|
|
|
|
set_output_handle (repl.to_master);
|
|
|
|
}
|
|
|
|
if (fix_in)
|
|
|
|
SetStdHandle (STD_INPUT_HANDLE, get_handle ());
|
|
|
|
if (fix_out)
|
|
|
|
SetStdHandle (STD_OUTPUT_HANDLE, get_output_handle ());
|
|
|
|
if (fix_err)
|
|
|
|
SetStdHandle (STD_ERROR_HANDLE, get_output_handle ());
|
|
|
|
}
|
2021-02-11 17:09:42 +08:00
|
|
|
myself->exec_dwProcessId = 0;
|
2021-01-28 11:26:14 +08:00
|
|
|
isHybrid = false;
|
2021-01-28 11:26:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-08-19 19:25:21 +08:00
|
|
|
if (get_ttyp ()->pcon_pid && get_ttyp ()->pcon_pid != myself->pid
|
|
|
|
&& !!pinfo (get_ttyp ()->pcon_pid))
|
2019-08-28 02:04:02 +08:00
|
|
|
/* There is a process which is grabbing pseudo console. */
|
|
|
|
return;
|
2019-09-08 20:58:35 +08:00
|
|
|
if (isHybrid)
|
2020-02-09 22:46:59 +08:00
|
|
|
return;
|
2019-08-28 02:04:02 +08:00
|
|
|
get_ttyp ()->pcon_pid = 0;
|
2019-09-14 05:48:14 +08:00
|
|
|
get_ttyp ()->switch_to_pcon_in = false;
|
2021-01-28 11:26:14 +08:00
|
|
|
get_ttyp ()->pcon_activated = false;
|
2019-08-28 02:04:02 +08:00
|
|
|
}
|
|
|
|
|
2009-07-25 04:54:33 +08:00
|
|
|
ssize_t __stdcall
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_slave::write (const void *ptr, size_t len)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2013-04-23 17:44:36 +08:00
|
|
|
ssize_t towrite = len;
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2011-05-06 03:43:04 +08:00
|
|
|
bg_check_types bg = bg_check (SIGTTOU);
|
|
|
|
if (bg <= bg_eof)
|
|
|
|
return (ssize_t) bg;
|
|
|
|
|
2013-04-23 17:44:36 +08:00
|
|
|
termios_printf ("pty%d, write(%p, %lu)", get_minor (), ptr, len);
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2011-05-06 03:43:04 +08:00
|
|
|
push_process_state process_state (PID_TTYOU);
|
|
|
|
|
2019-08-28 02:04:02 +08:00
|
|
|
reset_switch_to_pcon ();
|
|
|
|
|
2020-06-04 09:43:19 +08:00
|
|
|
acquire_output_mutex (INFINITE);
|
2021-01-15 16:32:13 +08:00
|
|
|
if (!process_opost_output (get_output_handle_cyg (), ptr, towrite, false,
|
|
|
|
get_ttyp (), is_nonblocking ()))
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2015-03-25 19:42:38 +08:00
|
|
|
DWORD err = GetLastError ();
|
|
|
|
termios_printf ("WriteFile failed, %E");
|
|
|
|
switch (err)
|
2000-09-08 00:23:51 +08:00
|
|
|
{
|
2015-03-25 19:42:38 +08:00
|
|
|
case ERROR_NO_DATA:
|
|
|
|
err = ERROR_IO_DEVICE;
|
2020-08-06 03:58:22 +08:00
|
|
|
fallthrough;
|
2015-03-25 19:42:38 +08:00
|
|
|
default:
|
|
|
|
__seterrno_from_win_error (err);
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
2015-03-25 19:42:38 +08:00
|
|
|
towrite = -1;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
2019-08-28 02:04:02 +08:00
|
|
|
release_output_mutex ();
|
|
|
|
|
2000-02-18 03:38:33 +08:00
|
|
|
return towrite;
|
|
|
|
}
|
|
|
|
|
2020-02-09 22:46:00 +08:00
|
|
|
void
|
2021-01-28 11:26:14 +08:00
|
|
|
fhandler_pty_slave::mask_switch_to_pcon_in (bool mask, bool xfer)
|
2020-02-09 22:46:00 +08:00
|
|
|
{
|
2021-01-28 11:26:13 +08:00
|
|
|
char name[MAX_PATH];
|
|
|
|
shared_name (name, TTY_SLAVE_READING, get_minor ());
|
|
|
|
HANDLE masked = OpenEvent (READ_CONTROL, FALSE, name);
|
|
|
|
CloseHandle (masked);
|
|
|
|
|
|
|
|
if (mask)
|
|
|
|
{
|
|
|
|
if (InterlockedIncrement (&num_reader) == 1)
|
|
|
|
slave_reading = CreateEvent (&sec_none_nih, TRUE, FALSE, name);
|
|
|
|
}
|
|
|
|
else if (InterlockedDecrement (&num_reader) == 0)
|
|
|
|
CloseHandle (slave_reading);
|
|
|
|
|
2021-02-11 17:09:42 +08:00
|
|
|
/* In GDB, transfer input based on setpgid() does not work because
|
|
|
|
GDB may not set terminal process group properly. Therefore,
|
|
|
|
transfer input here if isHybrid is set. */
|
|
|
|
if (get_ttyp ()->switch_to_pcon_in && !!masked != mask && xfer && isHybrid)
|
|
|
|
{
|
|
|
|
if (mask && get_ttyp ()->pcon_input_state_eq (tty::to_nat))
|
2021-01-28 11:26:14 +08:00
|
|
|
{
|
2021-02-11 17:09:42 +08:00
|
|
|
WaitForSingleObject (input_mutex, INFINITE);
|
|
|
|
transfer_input (tty::to_cyg, get_handle (), get_ttyp (),
|
|
|
|
input_available_event);
|
|
|
|
ReleaseMutex (input_mutex);
|
2021-01-28 11:26:14 +08:00
|
|
|
}
|
2021-02-11 17:09:42 +08:00
|
|
|
else if (!mask && get_ttyp ()->pcon_input_state_eq (tty::to_cyg))
|
2021-01-28 11:26:14 +08:00
|
|
|
{
|
2021-02-11 17:09:42 +08:00
|
|
|
WaitForSingleObject (input_mutex, INFINITE);
|
|
|
|
transfer_input (tty::to_nat, get_handle_cyg (), get_ttyp (),
|
|
|
|
input_available_event);
|
|
|
|
ReleaseMutex (input_mutex);
|
2021-01-28 11:26:14 +08:00
|
|
|
}
|
2021-01-28 11:26:11 +08:00
|
|
|
}
|
2020-02-09 22:46:00 +08:00
|
|
|
}
|
|
|
|
|
2019-09-05 12:22:54 +08:00
|
|
|
bool
|
2020-08-19 19:25:21 +08:00
|
|
|
fhandler_pty_master::to_be_read_from_pcon (void)
|
2019-09-05 12:22:54 +08:00
|
|
|
{
|
2021-02-11 17:09:42 +08:00
|
|
|
if (!get_ttyp ()->switch_to_pcon_in)
|
|
|
|
return false;
|
|
|
|
|
2021-01-28 11:26:13 +08:00
|
|
|
char name[MAX_PATH];
|
|
|
|
shared_name (name, TTY_SLAVE_READING, get_minor ());
|
|
|
|
HANDLE masked = OpenEvent (READ_CONTROL, FALSE, name);
|
|
|
|
CloseHandle (masked);
|
|
|
|
|
2021-02-11 17:09:42 +08:00
|
|
|
if (masked) /* The foreground process is cygwin process */
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!pinfo (get_ttyp ()->getpgid ()))
|
|
|
|
/* GDB may set invalid process group for non-cygwin process. */
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return get_ttyp ()->pcon_fg (get_ttyp ()->getpgid ());
|
2019-09-05 12:22:54 +08:00
|
|
|
}
|
|
|
|
|
2013-05-01 09:20:37 +08:00
|
|
|
void __reg3
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_slave::read (void *ptr, size_t& len)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2013-04-23 17:44:36 +08:00
|
|
|
ssize_t totalread = 0;
|
2002-10-16 12:54:08 +08:00
|
|
|
int vmin = 0;
|
2000-02-18 03:38:33 +08:00
|
|
|
int vtime = 0; /* Initialized to prevent -Wuninitialized warning */
|
2001-03-04 23:34:25 +08:00
|
|
|
size_t readlen;
|
|
|
|
DWORD bytes_in_pipe;
|
2000-02-18 03:38:33 +08:00
|
|
|
char buf[INP_BUFFER_SIZE];
|
2001-03-04 23:34:25 +08:00
|
|
|
DWORD time_to_wait;
|
2021-01-28 11:26:14 +08:00
|
|
|
char *ptr0 = (char *) ptr;
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2011-05-06 03:43:04 +08:00
|
|
|
bg_check_types bg = bg_check (SIGTTIN);
|
|
|
|
if (bg <= bg_eof)
|
|
|
|
{
|
|
|
|
len = (size_t) bg;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-08-28 02:04:02 +08:00
|
|
|
termios_printf ("read(%p, %lu) handle %p", ptr, len, get_handle_cyg ());
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2011-05-06 03:43:04 +08:00
|
|
|
push_process_state process_state (PID_TTYIN);
|
|
|
|
|
2019-08-28 02:04:02 +08:00
|
|
|
if (ptr) /* Indicating not tcflush(). */
|
|
|
|
{
|
2021-01-28 11:26:14 +08:00
|
|
|
mask_switch_to_pcon_in (true, true);
|
2020-02-09 22:46:02 +08:00
|
|
|
reset_switch_to_pcon ();
|
2019-08-28 02:04:02 +08:00
|
|
|
}
|
|
|
|
|
2011-05-03 15:58:13 +08:00
|
|
|
if (is_nonblocking () || !ptr) /* Indicating tcflush(). */
|
2003-09-19 02:54:48 +08:00
|
|
|
time_to_wait = 0;
|
|
|
|
else if ((get_ttyp ()->ti.c_lflag & ICANON))
|
2002-10-16 12:54:08 +08:00
|
|
|
time_to_wait = INFINITE;
|
|
|
|
else
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2002-05-19 04:27:49 +08:00
|
|
|
vmin = get_ttyp ()->ti.c_cc[VMIN];
|
|
|
|
if (vmin > INP_BUFFER_SIZE)
|
|
|
|
vmin = INP_BUFFER_SIZE;
|
2000-02-18 03:38:33 +08:00
|
|
|
vtime = get_ttyp ()->ti.c_cc[VTIME];
|
2002-08-31 11:35:50 +08:00
|
|
|
if (vmin < 0)
|
|
|
|
vmin = 0;
|
|
|
|
if (vtime < 0)
|
|
|
|
vtime = 0;
|
2002-10-16 12:54:08 +08:00
|
|
|
if (!vmin && !vtime)
|
|
|
|
time_to_wait = 0;
|
|
|
|
else
|
|
|
|
time_to_wait = !vtime ? INFINITE : 100 * vtime;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
2001-03-04 23:34:25 +08:00
|
|
|
|
2021-01-28 22:11:33 +08:00
|
|
|
wait_retry:
|
2000-02-18 03:38:33 +08:00
|
|
|
while (len)
|
|
|
|
{
|
2011-12-10 00:02:56 +08:00
|
|
|
switch (cygwait (input_available_event, time_to_wait))
|
2004-11-26 12:15:10 +08:00
|
|
|
{
|
2011-05-03 15:58:13 +08:00
|
|
|
case WAIT_OBJECT_0:
|
2004-11-26 12:15:10 +08:00
|
|
|
break;
|
2012-06-18 04:50:24 +08:00
|
|
|
case WAIT_SIGNALED:
|
2011-05-03 15:58:13 +08:00
|
|
|
if (totalread > 0)
|
|
|
|
goto out;
|
|
|
|
termios_printf ("wait catched signal");
|
|
|
|
set_sig_errno (EINTR);
|
|
|
|
totalread = -1;
|
|
|
|
goto out;
|
2012-06-18 04:50:24 +08:00
|
|
|
case WAIT_CANCELED:
|
2011-05-06 03:43:04 +08:00
|
|
|
process_state.pop ();
|
2011-05-03 15:58:13 +08:00
|
|
|
pthread::static_cancel_self ();
|
|
|
|
/*NOTREACHED*/
|
|
|
|
case WAIT_TIMEOUT:
|
|
|
|
termios_printf ("wait timed out, time_to_wait %u", time_to_wait);
|
2015-02-26 00:46:57 +08:00
|
|
|
/* No error condition when called from tcflush. */
|
|
|
|
if (!totalread && ptr)
|
2011-05-03 15:58:13 +08:00
|
|
|
{
|
|
|
|
set_sig_errno (EAGAIN);
|
|
|
|
totalread = -1;
|
|
|
|
}
|
|
|
|
goto out;
|
|
|
|
default:
|
2002-10-16 12:54:08 +08:00
|
|
|
termios_printf ("wait for input event failed, %E");
|
2011-05-03 15:58:13 +08:00
|
|
|
if (!totalread)
|
|
|
|
{
|
|
|
|
__seterrno ();
|
|
|
|
totalread = -1;
|
|
|
|
}
|
|
|
|
goto out;
|
2002-10-16 12:54:08 +08:00
|
|
|
}
|
2011-05-03 15:58:13 +08:00
|
|
|
/* Now that we know that input is available we have to grab the
|
|
|
|
input mutex. */
|
2011-12-10 00:02:56 +08:00
|
|
|
switch (cygwait (input_mutex, 1000))
|
2001-03-11 09:58:23 +08:00
|
|
|
{
|
2011-05-03 15:58:13 +08:00
|
|
|
case WAIT_OBJECT_0:
|
|
|
|
case WAIT_ABANDONED_0:
|
|
|
|
break;
|
2012-06-18 04:50:24 +08:00
|
|
|
case WAIT_SIGNALED:
|
2001-03-11 09:58:23 +08:00
|
|
|
if (totalread > 0)
|
2011-05-03 15:58:13 +08:00
|
|
|
goto out;
|
2012-06-18 04:50:24 +08:00
|
|
|
termios_printf ("wait for mutex caught signal");
|
2001-03-11 09:58:23 +08:00
|
|
|
set_sig_errno (EINTR);
|
2011-05-03 15:58:13 +08:00
|
|
|
totalread = -1;
|
|
|
|
goto out;
|
2012-06-18 04:50:24 +08:00
|
|
|
case WAIT_CANCELED:
|
2011-05-06 03:43:04 +08:00
|
|
|
process_state.pop ();
|
2011-05-03 15:58:13 +08:00
|
|
|
pthread::static_cancel_self ();
|
|
|
|
/*NOTREACHED*/
|
|
|
|
case WAIT_TIMEOUT:
|
|
|
|
termios_printf ("failed to acquire input mutex after input event "
|
|
|
|
"arrived");
|
|
|
|
/* If we have a timeout, we can simply handle this failure to
|
|
|
|
grab the mutex as an EAGAIN situation. Otherwise, if this
|
|
|
|
is an infinitely blocking read, restart the loop. */
|
|
|
|
if (time_to_wait != INFINITE)
|
|
|
|
{
|
|
|
|
if (!totalread)
|
|
|
|
{
|
|
|
|
set_sig_errno (EAGAIN);
|
2020-08-19 19:25:21 +08:00
|
|
|
totalread = -1;
|
2020-02-09 22:46:59 +08:00
|
|
|
}
|
2020-08-19 19:25:21 +08:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
default:
|
|
|
|
termios_printf ("wait for input mutex failed, %E");
|
|
|
|
if (!totalread)
|
|
|
|
{
|
|
|
|
__seterrno ();
|
|
|
|
totalread = -1;
|
2019-08-28 02:04:02 +08:00
|
|
|
}
|
2020-02-09 22:46:59 +08:00
|
|
|
goto out;
|
|
|
|
}
|
2021-01-28 22:11:33 +08:00
|
|
|
if (!IsEventSignalled (input_available_event))
|
|
|
|
{ /* Maybe another thread has processed input. */
|
|
|
|
ReleaseMutex (input_mutex);
|
|
|
|
goto wait_retry;
|
|
|
|
}
|
2019-09-04 09:45:35 +08:00
|
|
|
|
2012-04-05 10:54:51 +08:00
|
|
|
if (!bytes_available (bytes_in_pipe))
|
2015-06-08 20:07:42 +08:00
|
|
|
{
|
|
|
|
ReleaseMutex (input_mutex);
|
|
|
|
set_errno (EIO);
|
|
|
|
totalread = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
2002-10-16 12:54:08 +08:00
|
|
|
|
2005-05-02 08:17:45 +08:00
|
|
|
if (ptr && !bytes_in_pipe && !vmin && !time_to_wait)
|
2002-10-16 12:54:08 +08:00
|
|
|
{
|
|
|
|
ReleaseMutex (input_mutex);
|
2021-01-28 11:26:14 +08:00
|
|
|
mask_switch_to_pcon_in (false, false);
|
2003-09-08 02:27:54 +08:00
|
|
|
len = (size_t) bytes_in_pipe;
|
2002-12-14 12:01:32 +08:00
|
|
|
return;
|
2002-10-16 12:54:08 +08:00
|
|
|
}
|
|
|
|
|
2016-06-06 21:09:34 +08:00
|
|
|
readlen = bytes_in_pipe ? MIN (len, sizeof (buf)) : 0;
|
|
|
|
if (get_ttyp ()->ti.c_lflag & ICANON && ptr)
|
|
|
|
readlen = MIN (bytes_in_pipe, readlen);
|
2002-10-16 12:54:08 +08:00
|
|
|
|
2014-11-14 02:37:15 +08:00
|
|
|
#if 0
|
|
|
|
/* Why on earth is the read length reduced to vmin, even if more bytes
|
|
|
|
are available *and* len is bigger *and* the local buf is big enough?
|
|
|
|
Disable this code for now, it looks like a remnant of old. */
|
2003-09-19 02:54:48 +08:00
|
|
|
if (ptr && vmin && readlen > (unsigned) vmin)
|
2002-10-16 12:54:08 +08:00
|
|
|
readlen = vmin;
|
2014-11-14 02:37:15 +08:00
|
|
|
#endif
|
2002-10-16 12:54:08 +08:00
|
|
|
|
|
|
|
DWORD n = 0;
|
2001-03-11 09:58:23 +08:00
|
|
|
if (readlen)
|
|
|
|
{
|
2013-04-23 17:44:36 +08:00
|
|
|
termios_printf ("reading %lu bytes (vtime %d)", readlen, vtime);
|
2019-08-28 02:04:02 +08:00
|
|
|
if (!ReadFile (get_handle_cyg (), buf, readlen, &n, NULL))
|
2001-03-11 09:58:23 +08:00
|
|
|
{
|
2001-03-04 23:34:25 +08:00
|
|
|
termios_printf ("read failed, %E");
|
2015-06-08 20:07:42 +08:00
|
|
|
ReleaseMutex (input_mutex);
|
|
|
|
set_errno (EIO);
|
|
|
|
totalread = -1;
|
|
|
|
goto out;
|
2001-03-19 02:05:01 +08:00
|
|
|
}
|
2011-12-10 00:02:56 +08:00
|
|
|
else
|
2001-03-11 09:58:23 +08:00
|
|
|
{
|
2011-12-10 00:02:56 +08:00
|
|
|
/* MSDN states that 5th prameter can be used to determine total
|
|
|
|
number of bytes in pipe, but for some reason this number doesn't
|
|
|
|
change after successful read. So we have to peek into the pipe
|
|
|
|
again to see if input is still available */
|
2012-04-05 10:54:51 +08:00
|
|
|
if (!bytes_available (bytes_in_pipe))
|
2015-06-08 20:07:42 +08:00
|
|
|
{
|
|
|
|
ReleaseMutex (input_mutex);
|
|
|
|
set_errno (EIO);
|
|
|
|
totalread = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
2011-12-10 00:02:56 +08:00
|
|
|
if (n)
|
|
|
|
{
|
2016-06-06 21:09:34 +08:00
|
|
|
if (!(!ptr && len == UINT_MAX)) /* not tcflush() */
|
|
|
|
len -= n;
|
2011-12-10 00:02:56 +08:00
|
|
|
totalread += n;
|
|
|
|
if (ptr)
|
|
|
|
{
|
|
|
|
memcpy (ptr, buf, n);
|
|
|
|
ptr = (char *) ptr + n;
|
|
|
|
}
|
2003-09-19 02:54:48 +08:00
|
|
|
}
|
2001-03-11 09:58:23 +08:00
|
|
|
}
|
|
|
|
}
|
2001-03-04 23:34:25 +08:00
|
|
|
|
2001-03-19 02:05:01 +08:00
|
|
|
if (!bytes_in_pipe)
|
|
|
|
ResetEvent (input_available_event);
|
2001-03-04 23:34:25 +08:00
|
|
|
|
|
|
|
ReleaseMutex (input_mutex);
|
2000-03-12 14:29:54 +08:00
|
|
|
|
2003-09-19 02:54:48 +08:00
|
|
|
if (!ptr)
|
|
|
|
{
|
|
|
|
if (!bytes_in_pipe)
|
|
|
|
break;
|
|
|
|
continue;
|
2004-05-29 03:50:07 +08:00
|
|
|
}
|
2003-09-19 02:54:48 +08:00
|
|
|
|
2000-02-18 03:38:33 +08:00
|
|
|
if (get_ttyp ()->read_retval < 0) // read error
|
|
|
|
{
|
|
|
|
set_errno (-get_ttyp ()->read_retval);
|
|
|
|
totalread = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (get_ttyp ()->read_retval == 0) //EOF
|
|
|
|
{
|
|
|
|
termios_printf ("saw EOF");
|
|
|
|
break;
|
|
|
|
}
|
2001-08-15 15:49:15 +08:00
|
|
|
if (get_ttyp ()->ti.c_lflag & ICANON || is_nonblocking ())
|
2000-02-18 03:38:33 +08:00
|
|
|
break;
|
2002-10-16 12:54:08 +08:00
|
|
|
if (vmin && totalread >= vmin)
|
2001-03-11 09:58:23 +08:00
|
|
|
break;
|
2001-03-04 23:34:25 +08:00
|
|
|
|
2001-03-11 09:58:23 +08:00
|
|
|
/* vmin == 0 && vtime == 0:
|
2001-03-04 23:34:25 +08:00
|
|
|
* we've already read all input, if any, so return immediately
|
|
|
|
* vmin == 0 && vtime > 0:
|
|
|
|
* we've waited for input 10*vtime ms in WFSO(input_available_event),
|
|
|
|
* no matter whether any input arrived, we shouldn't wait any longer,
|
2001-03-11 09:58:23 +08:00
|
|
|
* so return immediately
|
2001-03-04 23:34:25 +08:00
|
|
|
* vmin > 0 && vtime == 0:
|
|
|
|
* here, totalread < vmin, so continue waiting until more data
|
|
|
|
* arrive
|
|
|
|
* vmin > 0 && vtime > 0:
|
|
|
|
* similar to the previous here, totalread < vmin, and timer
|
|
|
|
* hadn't expired -- WFSO(input_available_event) != WAIT_TIMEOUT,
|
|
|
|
* so "restart timer" and wait until more data arrive
|
|
|
|
*/
|
|
|
|
|
2001-03-11 09:58:23 +08:00
|
|
|
if (vmin == 0)
|
|
|
|
break;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
2011-05-03 15:58:13 +08:00
|
|
|
out:
|
2018-07-24 13:31:58 +08:00
|
|
|
termios_printf ("%d = read(%p, %lu)", totalread, ptr, len);
|
2003-09-08 02:27:54 +08:00
|
|
|
len = (size_t) totalread;
|
2021-01-28 11:26:14 +08:00
|
|
|
mask_switch_to_pcon_in (false, totalread > 0 && ptr0[totalread - 1] == '\n');
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
2003-03-04 12:07:34 +08:00
|
|
|
int
|
2011-10-16 06:37:30 +08:00
|
|
|
fhandler_pty_slave::dup (fhandler_base *child, int flags)
|
2003-03-04 12:07:34 +08:00
|
|
|
{
|
2012-03-04 05:35:30 +08:00
|
|
|
/* This code was added in Oct 2001 for some undisclosed reason.
|
|
|
|
However, setting the controlling tty on a dup causes rxvt to
|
|
|
|
hang when the parent does a dup since the controlling pgid changes.
|
|
|
|
Specifically testing for -2 (ctty has been setsid'ed) works around
|
|
|
|
this problem. However, it's difficult to see scenarios in which you
|
|
|
|
have a dup'able fd, no controlling tty, and not having run setsid.
|
|
|
|
So, we might want to consider getting rid of the set_ctty in tty-like dup
|
|
|
|
methods entirely at some point */
|
|
|
|
if (myself->ctty != -2)
|
|
|
|
myself->set_ctty (this, flags);
|
2011-05-06 06:30:53 +08:00
|
|
|
report_tty_counts (child, "duped slave", "");
|
2003-12-11 14:12:41 +08:00
|
|
|
return 0;
|
2003-03-04 12:07:34 +08:00
|
|
|
}
|
|
|
|
|
2000-02-18 03:38:33 +08:00
|
|
|
int
|
2011-10-16 06:37:30 +08:00
|
|
|
fhandler_pty_master::dup (fhandler_base *child, int)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2006-06-02 23:41:34 +08:00
|
|
|
report_tty_counts (child, "duped master", "");
|
2000-02-18 03:38:33 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_slave::tcgetattr (struct termios *t)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2019-08-28 02:04:02 +08:00
|
|
|
reset_switch_to_pcon ();
|
2000-02-18 03:38:33 +08:00
|
|
|
*t = get_ttyp ()->ti;
|
2021-01-19 17:27:02 +08:00
|
|
|
|
2020-12-14 16:26:47 +08:00
|
|
|
/* Workaround for rlwrap */
|
2021-01-19 17:27:02 +08:00
|
|
|
cygheap_fdenum cfd (false);
|
|
|
|
while (cfd.next () >= 0)
|
|
|
|
if (cfd->get_major () == DEV_PTYM_MAJOR
|
|
|
|
&& cfd->get_minor () == get_minor ())
|
|
|
|
{
|
|
|
|
if (get_ttyp ()->pcon_start)
|
|
|
|
t->c_lflag &= ~(ICANON | ECHO);
|
2021-01-28 11:26:14 +08:00
|
|
|
if (get_ttyp ()->pcon_activated)
|
2021-01-19 17:27:02 +08:00
|
|
|
t->c_iflag &= ~ICRNL;
|
|
|
|
break;
|
|
|
|
}
|
2000-02-18 03:38:33 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_slave::tcsetattr (int, const struct termios *t)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2019-08-28 02:04:02 +08:00
|
|
|
reset_switch_to_pcon ();
|
2000-02-18 03:38:33 +08:00
|
|
|
acquire_output_mutex (INFINITE);
|
|
|
|
get_ttyp ()->ti = *t;
|
|
|
|
release_output_mutex ();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_slave::tcflush (int queue)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2003-09-19 02:54:48 +08:00
|
|
|
int ret = 0;
|
|
|
|
|
2019-08-28 02:04:02 +08:00
|
|
|
termios_printf ("tcflush(%d) handle %p", queue, get_handle_cyg ());
|
|
|
|
|
|
|
|
reset_switch_to_pcon ();
|
2003-09-19 02:54:48 +08:00
|
|
|
|
|
|
|
if (queue == TCIFLUSH || queue == TCIOFLUSH)
|
|
|
|
{
|
|
|
|
size_t len = UINT_MAX;
|
|
|
|
read (NULL, len);
|
2005-08-06 00:11:21 +08:00
|
|
|
ret = ((int) len) >= 0 ? 0 : -1;
|
2003-09-19 02:54:48 +08:00
|
|
|
}
|
|
|
|
if (queue == TCOFLUSH || queue == TCIOFLUSH)
|
|
|
|
{
|
|
|
|
/* do nothing for now. */
|
|
|
|
}
|
|
|
|
|
|
|
|
termios_printf ("%d=tcflush(%d)", ret, queue);
|
|
|
|
return ret;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_slave::ioctl (unsigned int cmd, void *arg)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
|
|
|
termios_printf ("ioctl (%x)", cmd);
|
2019-08-28 02:04:02 +08:00
|
|
|
reset_switch_to_pcon ();
|
2011-10-16 06:37:30 +08:00
|
|
|
int res = fhandler_termios::ioctl (cmd, arg);
|
2011-10-12 07:20:38 +08:00
|
|
|
if (res <= 0)
|
|
|
|
return res;
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2002-08-31 11:35:50 +08:00
|
|
|
if (myself->pgid && get_ttyp ()->getpgid () != myself->pgid
|
2013-04-23 17:44:36 +08:00
|
|
|
&& (unsigned) myself->ctty == FHDEV (DEV_PTYS_MAJOR, get_minor ())
|
2011-05-29 02:17:09 +08:00
|
|
|
&& (get_ttyp ()->ti.c_lflag & TOSTOP))
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
|
|
|
/* background process */
|
2005-11-14 12:28:45 +08:00
|
|
|
termios_printf ("bg ioctl pgid %d, tpgid %d, %s", myself->pgid,
|
|
|
|
get_ttyp ()->getpgid (), myctty ());
|
2002-10-20 12:15:50 +08:00
|
|
|
raise (SIGTTOU);
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
2000-05-12 13:06:43 +08:00
|
|
|
|
2003-10-24 09:13:22 +08:00
|
|
|
int retval;
|
2000-02-18 03:38:33 +08:00
|
|
|
switch (cmd)
|
|
|
|
{
|
|
|
|
case TIOCGWINSZ:
|
|
|
|
case TIOCSWINSZ:
|
|
|
|
break;
|
2010-10-24 02:07:08 +08:00
|
|
|
case TIOCGPGRP:
|
|
|
|
{
|
|
|
|
pid_t pid = this->tcgetpgrp ();
|
|
|
|
if (pid < 0)
|
|
|
|
retval = -1;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*((pid_t *) arg) = pid;
|
|
|
|
retval = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
goto out;
|
|
|
|
case TIOCSPGRP:
|
2013-04-23 17:44:36 +08:00
|
|
|
retval = this->tcsetpgrp ((pid_t) (intptr_t) arg);
|
2010-10-24 02:07:08 +08:00
|
|
|
goto out;
|
2011-07-23 02:50:42 +08:00
|
|
|
case FIONREAD:
|
|
|
|
{
|
2012-04-05 10:54:51 +08:00
|
|
|
DWORD n;
|
|
|
|
if (!bytes_available (n))
|
2011-07-23 02:50:42 +08:00
|
|
|
{
|
2011-07-25 23:19:35 +08:00
|
|
|
set_errno (EINVAL);
|
2011-07-23 02:50:42 +08:00
|
|
|
retval = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-04-05 10:54:51 +08:00
|
|
|
*(int *) arg = (int) n;
|
2011-07-23 02:50:42 +08:00
|
|
|
retval = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
goto out;
|
2000-02-18 03:38:33 +08:00
|
|
|
default:
|
2011-07-22 04:21:46 +08:00
|
|
|
return fhandler_base::ioctl (cmd, arg);
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
2000-05-12 13:06:43 +08:00
|
|
|
|
|
|
|
acquire_output_mutex (INFINITE);
|
|
|
|
|
|
|
|
get_ttyp ()->cmd = cmd;
|
|
|
|
get_ttyp ()->ioctl_retval = 0;
|
|
|
|
switch (cmd)
|
|
|
|
{
|
|
|
|
case TIOCGWINSZ:
|
|
|
|
get_ttyp ()->arg.winsize = get_ttyp ()->winsize;
|
2002-11-04 09:10:38 +08:00
|
|
|
*(struct winsize *) arg = get_ttyp ()->arg.winsize;
|
2000-05-12 13:06:43 +08:00
|
|
|
get_ttyp ()->winsize = get_ttyp ()->arg.winsize;
|
|
|
|
break;
|
|
|
|
case TIOCSWINSZ:
|
2002-11-04 09:10:38 +08:00
|
|
|
if (get_ttyp ()->winsize.ws_row != ((struct winsize *) arg)->ws_row
|
|
|
|
|| get_ttyp ()->winsize.ws_col != ((struct winsize *) arg)->ws_col)
|
|
|
|
{
|
2021-01-28 11:26:14 +08:00
|
|
|
if (get_ttyp ()->pcon_activated && get_ttyp ()->pcon_pid)
|
2020-08-19 19:25:21 +08:00
|
|
|
resize_pseudo_console ((struct winsize *) arg);
|
2004-01-21 14:28:35 +08:00
|
|
|
get_ttyp ()->arg.winsize = *(struct winsize *) arg;
|
2011-06-15 05:48:43 +08:00
|
|
|
get_ttyp ()->winsize = *(struct winsize *) arg;
|
2013-01-31 13:26:47 +08:00
|
|
|
get_ttyp ()->kill_pgrp (SIGWINCH);
|
2002-11-04 09:10:38 +08:00
|
|
|
}
|
2000-05-12 13:06:43 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
release_output_mutex ();
|
2003-10-24 09:13:22 +08:00
|
|
|
retval = get_ttyp ()->ioctl_retval;
|
2003-09-27 11:14:07 +08:00
|
|
|
if (retval < 0)
|
|
|
|
{
|
|
|
|
set_errno (-retval);
|
|
|
|
retval = -1;
|
|
|
|
}
|
2003-10-24 09:13:22 +08:00
|
|
|
|
|
|
|
out:
|
2011-12-04 05:43:27 +08:00
|
|
|
termios_printf ("%d = ioctl(%x)", retval, cmd);
|
2003-09-27 11:14:07 +08:00
|
|
|
return retval;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
2013-01-21 12:34:52 +08:00
|
|
|
int __reg2
|
2013-04-23 17:44:36 +08:00
|
|
|
fhandler_pty_slave::fstat (struct stat *st)
|
2010-04-20 03:52:43 +08:00
|
|
|
{
|
|
|
|
fhandler_base::fstat (st);
|
|
|
|
|
|
|
|
bool to_close = false;
|
|
|
|
if (!input_available_event)
|
|
|
|
{
|
|
|
|
char buf[MAX_PATH];
|
2013-04-23 17:44:36 +08:00
|
|
|
shared_name (buf, INPUT_AVAILABLE_EVENT, get_minor ());
|
2010-04-20 03:52:43 +08:00
|
|
|
input_available_event = OpenEvent (READ_CONTROL, TRUE, buf);
|
|
|
|
if (input_available_event)
|
|
|
|
to_close = true;
|
|
|
|
}
|
2015-09-04 01:29:55 +08:00
|
|
|
st->st_mode = S_IFCHR;
|
2010-04-20 03:52:43 +08:00
|
|
|
if (!input_available_event
|
|
|
|
|| get_object_attribute (input_available_event, &st->st_uid, &st->st_gid,
|
|
|
|
&st->st_mode))
|
|
|
|
{
|
|
|
|
/* If we can't access the ACL, or if the tty doesn't actually exist,
|
2011-06-06 13:02:13 +08:00
|
|
|
then fake uid and gid to strict, system-like values. */
|
2010-04-20 03:52:43 +08:00
|
|
|
st->st_mode = S_IFCHR | S_IRUSR | S_IWUSR;
|
|
|
|
st->st_uid = 18;
|
|
|
|
st->st_gid = 544;
|
|
|
|
}
|
|
|
|
if (to_close)
|
|
|
|
CloseHandle (input_available_event);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
Reapply POSIX ACL changes.
- New, unified implementation of POSIX permission and ACL handling. The
new ACLs now store the POSIX ACL MASK/CLASS_OBJ permission mask, and
they allow to inherit the S_ISGID bit. ACL inheritance now really
works as desired, in a limited, but theoretically equivalent fashion
even for non-Cygwin processes.
To accommodate Windows default ACLs, the new code ignores SYSTEM and
Administrators group permissions when computing the MASK/CLASS_OBJ
permission mask on old ACLs, and it doesn't deny access to SYSTEM and
Administrators group based on the value of MASK/CLASS_OBJ when
creating the new ACLs.
The new code now handles the S_ISGID bit on directories as on Linux:
Setting S_ISGID on a directory causes new files and subdirs created
within to inherit its group, rather than the primary group of the user
who created the file. This only works for files and directories
created by Cygwin processes.
2015-05-29 Corinna Vinschen <corinna@vinschen.de>
Reapply POSIX ACL changes.
* utils.xml (setfacl): Show new option output.
(getfacl): Show new option output.
* sec_acl.cc (get_posix_access): Check for Cygwin "standard" ACL.
Apply umask, if so. Align comments.
* security.cc (set_created_file_access): Fix permission masking by
incoming requested file mode.
* sec_acl.cc (set_posix_access): Apply mask only in terms of execute bit
for SYSTEM and Admins group.
* sec_acl.cc (set_posix_access): Don't create DENY ACEs for USER and
GROUP entries if they are the same as USER_OBJ or GROUP_OBJ.
* fhandler.h (fhandler_pty_slave::facl): Add prototype.
* fhandler_tty.cc (fhandler_pty_slave::facl): New method.
(fhandler_pty_slave::fchown): Fix uid/gid handling.
* sec_acl.cc (set_posix_access): Drop superfluous class_idx variable.
Simplify and move around code in a few places. To improve ACL
readability, add r/w permissions to Admins ACE appended to pty ACL.
Add comment to explain Windows ACE Mask filtering being in the way of
creating a real CLASS_OBJ.
(get_posix_access): Fake CLASS_OBJ for ptys. Explain why.
* security.cc (get_object_attribute): Add S_IFCHR flag to attributes
when calling get_posix_access.
* sec_acl.cc (set_posix_access): Move merging group perms into owner
perms in case of owner == group after mask has been computed. Take
mask into account when doing so to avoid unnecessary ACCESS_DENIED_ACE.
* sec_acl.cc (get_posix_access): Only set saw_group_obj flag if we saw
the ACCESS_ALLOWED_ACE.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Deliberatly
set GROUP_OBJ and CLASS_OBJ perms to new group perms. Add comment
to explain why.
* security.cc (set_created_file_access): Ditto.
* sec_acl.cc (set_posix_access): Replace previous patch. Return
EINVAL if uid and/or guid is invalid and not backed by an actual
Windows account.
* sec_acl.cc (set_posix_access): Workaround owner/group SIDs being NULL.
* sec_acl.cc (set_posix_access): Handle files with owner == group.
Rephrase switch statement checking against unfiltered a_type value.
(get_posix_access): Handle files with owner == group.
* sec_acl.cc (get_posix_access): Don't use GROUP_OBJ access to fix up
CLASS_OBJ mask on old-style ACLs. Fix a comment.
* sec_acl.cc (set_posix_access): Always make sure Admins have
WRITE_DAC and WRITE_OWNER permissions.
* security.h (create_object_sd_from_attribute): Drop handle parameter
from prototype.
* security.cc (create_object_sd_from_attribute): Drop handle parameter.
Just create the standard POSIXy security descriptor.
(set_object_attribute): Accommodate dropped paramter in call to
create_object_sd_from_attribute.
* fhandler_tty.cc: Ditto, throughout.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Fix typo in
mask computation.
* fhandler.cc (fhandler_base::open_with_arch): Call open with mode
not umasked.
(fhandler_base::open): Explicitely umask mode on NFS here. Call new
set_created_file_access rather than set_file_attribute.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Reimplement
setting permissions on filesystems supporting ACLs using the new
set_posix_access call.
(fhandler_disk_file::fchown): Ditto.
(fhandler_disk_file::mkdir): Call new set_created_file_access rather
than set_file_attribute.
* fhandler_socket.cc (fhandler_socket::bind): Don't umask here. Add
WRITE_OWNER access to allow writing group in case of SGID bit set.
Call new set_created_file_access rather than set_file_attribute.
* path.cc (symlink_worker): Call new set_created_file_access rather
than set_file_attribute.
* sec_acl.cc (searchace): Un-staticize.
(set_posix_access): New, complementary functionality to
get_posix_access.
(setacl): Implement in terms of get_posix_access/set_posix_access.
(get_posix_access): Add handling for just created files requiring
their first Cygwin ACL. Fix new_style recognition. Handle SGID
bit. For old-style ACLs, ignore SYSTEM and Administrators when
computing the {DEF_}CLASS_OBJ perms.
* security.cc (get_file_sd): Revamp comment. Change and (hopefully)
speed up inheritance processing for just created files.
(alloc_sd): Remove.
(set_security_attribute): Call set_posix_access instead of alloc_sd.
(get_object_attribute): Fix return value.
(create_object_sd_from_attribute): Call set_posix_access instead of
alloc_sd.
(set_file_attribute): Remove.
(set_created_file_access): New function implemented in terms of
get_posix_access/set_posix_access.
* security.h (set_file_attribute): Remove prototype.
(set_created_file_access): Add prototype.
(searchace): Ditto.
(set_posix_access): Ditto.
* syscalls.cc (open): Call open_with_arch with mode not umasked.
* sec_acl.cc: Change preceeding comment explaining new-style ACLs.
Describe how to generate deny ACEs in more detail. Accommodate the
fact that a NULL deny ACE is used for {DEF_}CLASS_OBJ, rather than
a special Cygwin ACE. Improve further comments.
(CYG_ACE_NEW_STYLE): Define.
(get_posix_access): Change from Cygwin ACE to NULL deny ACE. Fix
CLASS_OBJ handling to generate CLASS_OBJ and DEF_CLASS_OBJ from a single
NULL deny ACE if the inheritance flags say so.
* sec_helper.cc (well_known_cygwin_sid): Remove.
* security.h (well_known_cygwin_sid): Drop declaration.
* sec_acl.cc (CYG_ACE_ISBITS_TO_WIN): Fix typo.
(get_posix_access): Rename index variable from i to idx. Define only
once at top level.
* security.cc (add_access_allowed_ace): Drop unused parameter "offset".
Accommodate throughout.
(add_access_denied_ace): Ditto.
* sec_acl.cc: Accommodate above change throughout.
* security.h (add_access_allowed_ace): Adjust prototype to above change.
(add_access_denied_ace): Ditto.
* sec_acl.cc (get_posix_access): Handle multiple ACEs for the
owner and primary group of the file. Handle the default primary
group ACE as DEF_GROUP_OBJ entry if the directory has the S_ISGID bit
set. Add comments. Minor code rearrangements.
Preliminary read side implementation of new permission handling.
* acl.h (MAX_ACL_ENTRIES): Raise to 2730. Add comment to explain.
* sec_acl.cc: Add leading comment to explain new ACL style.
Add definitions and macros to use for bits in new Cygwin ACL.
(DENY_RWX): New mask value for all temporary deny bits.
(getace): Add bool parameter to decide when leaving all bits intact,
rather than filtering them per the already set bits.
(get_posix_access): New function, taking over functionality to read
POSIX ACL from SECURITY_DESCRIPTOR.
(getacl): Just call get_posix_access.
* sec_helper.cc (well_known_cygwin_sid): Define.
* security.cc (get_attribute_from_acl): Remove.
(get_info_from_sd): Remove.
(get_reg_sd): Call get_posix_access instead of get_info_from_sd.
(get_file_attribute): Ditto.
(get_object_attribute): Ditto.
* security.h (well_known_cygwin_sid): Declare.
(get_posix_access): Add prototype.
* Throughout, use simpler ACE macros from Windows' accctrl.h.
* getfacl.c (main): Special-case SYSTEM and Admins group. Add comments.
* setfacl.c: Align more to Linux tool.
(delacl): New function to delete acl entries only.
(modacl): Drop delete functionality. Add handling of recomputing the
mask and default mask values.
(delallacl): Rename from delacl.
(setfacl): Call delacl in Delete case. Call delallacl in DeleteAll
and DeleteDef case.
(usage): Accommodate new options. Rearrange and rephrase slightly.
(longopts): Emit 'x' in --delete case. Add --no-mask and --mask
options.
(opts): Add -x and -n options.
(main): Handle -d and -x the same. Handle -n and --mask options.
Drop handling for -r option.
* getfacl.c (usage): Align more closely to Linux version. Add new
options -c, -e, -E. Change formatting to accommodate longer options.
(longopts): Rename --noname to --numeric. Keep --noname for backward
compatibility. Add --omit-header, --all-effective and --no-effective
options.
(opts): Add -c, -e and -E option.
(main): Handle new -c, -e, and -E options.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-06-24 17:52:29 +08:00
|
|
|
int __reg3
|
|
|
|
fhandler_pty_slave::facl (int cmd, int nentries, aclent_t *aclbufp)
|
|
|
|
{
|
|
|
|
int res = -1;
|
|
|
|
bool to_close = false;
|
|
|
|
security_descriptor sd;
|
|
|
|
mode_t attr = S_IFCHR;
|
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
{
|
|
|
|
case SETACL:
|
|
|
|
if (!aclsort32 (nentries, 0, aclbufp))
|
|
|
|
set_errno (ENOTSUP);
|
|
|
|
break;
|
|
|
|
case GETACL:
|
|
|
|
if (!aclbufp)
|
|
|
|
{
|
|
|
|
set_errno (EFAULT);
|
|
|
|
break;
|
|
|
|
}
|
2020-08-06 03:58:22 +08:00
|
|
|
fallthrough;
|
Reapply POSIX ACL changes.
- New, unified implementation of POSIX permission and ACL handling. The
new ACLs now store the POSIX ACL MASK/CLASS_OBJ permission mask, and
they allow to inherit the S_ISGID bit. ACL inheritance now really
works as desired, in a limited, but theoretically equivalent fashion
even for non-Cygwin processes.
To accommodate Windows default ACLs, the new code ignores SYSTEM and
Administrators group permissions when computing the MASK/CLASS_OBJ
permission mask on old ACLs, and it doesn't deny access to SYSTEM and
Administrators group based on the value of MASK/CLASS_OBJ when
creating the new ACLs.
The new code now handles the S_ISGID bit on directories as on Linux:
Setting S_ISGID on a directory causes new files and subdirs created
within to inherit its group, rather than the primary group of the user
who created the file. This only works for files and directories
created by Cygwin processes.
2015-05-29 Corinna Vinschen <corinna@vinschen.de>
Reapply POSIX ACL changes.
* utils.xml (setfacl): Show new option output.
(getfacl): Show new option output.
* sec_acl.cc (get_posix_access): Check for Cygwin "standard" ACL.
Apply umask, if so. Align comments.
* security.cc (set_created_file_access): Fix permission masking by
incoming requested file mode.
* sec_acl.cc (set_posix_access): Apply mask only in terms of execute bit
for SYSTEM and Admins group.
* sec_acl.cc (set_posix_access): Don't create DENY ACEs for USER and
GROUP entries if they are the same as USER_OBJ or GROUP_OBJ.
* fhandler.h (fhandler_pty_slave::facl): Add prototype.
* fhandler_tty.cc (fhandler_pty_slave::facl): New method.
(fhandler_pty_slave::fchown): Fix uid/gid handling.
* sec_acl.cc (set_posix_access): Drop superfluous class_idx variable.
Simplify and move around code in a few places. To improve ACL
readability, add r/w permissions to Admins ACE appended to pty ACL.
Add comment to explain Windows ACE Mask filtering being in the way of
creating a real CLASS_OBJ.
(get_posix_access): Fake CLASS_OBJ for ptys. Explain why.
* security.cc (get_object_attribute): Add S_IFCHR flag to attributes
when calling get_posix_access.
* sec_acl.cc (set_posix_access): Move merging group perms into owner
perms in case of owner == group after mask has been computed. Take
mask into account when doing so to avoid unnecessary ACCESS_DENIED_ACE.
* sec_acl.cc (get_posix_access): Only set saw_group_obj flag if we saw
the ACCESS_ALLOWED_ACE.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Deliberatly
set GROUP_OBJ and CLASS_OBJ perms to new group perms. Add comment
to explain why.
* security.cc (set_created_file_access): Ditto.
* sec_acl.cc (set_posix_access): Replace previous patch. Return
EINVAL if uid and/or guid is invalid and not backed by an actual
Windows account.
* sec_acl.cc (set_posix_access): Workaround owner/group SIDs being NULL.
* sec_acl.cc (set_posix_access): Handle files with owner == group.
Rephrase switch statement checking against unfiltered a_type value.
(get_posix_access): Handle files with owner == group.
* sec_acl.cc (get_posix_access): Don't use GROUP_OBJ access to fix up
CLASS_OBJ mask on old-style ACLs. Fix a comment.
* sec_acl.cc (set_posix_access): Always make sure Admins have
WRITE_DAC and WRITE_OWNER permissions.
* security.h (create_object_sd_from_attribute): Drop handle parameter
from prototype.
* security.cc (create_object_sd_from_attribute): Drop handle parameter.
Just create the standard POSIXy security descriptor.
(set_object_attribute): Accommodate dropped paramter in call to
create_object_sd_from_attribute.
* fhandler_tty.cc: Ditto, throughout.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Fix typo in
mask computation.
* fhandler.cc (fhandler_base::open_with_arch): Call open with mode
not umasked.
(fhandler_base::open): Explicitely umask mode on NFS here. Call new
set_created_file_access rather than set_file_attribute.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Reimplement
setting permissions on filesystems supporting ACLs using the new
set_posix_access call.
(fhandler_disk_file::fchown): Ditto.
(fhandler_disk_file::mkdir): Call new set_created_file_access rather
than set_file_attribute.
* fhandler_socket.cc (fhandler_socket::bind): Don't umask here. Add
WRITE_OWNER access to allow writing group in case of SGID bit set.
Call new set_created_file_access rather than set_file_attribute.
* path.cc (symlink_worker): Call new set_created_file_access rather
than set_file_attribute.
* sec_acl.cc (searchace): Un-staticize.
(set_posix_access): New, complementary functionality to
get_posix_access.
(setacl): Implement in terms of get_posix_access/set_posix_access.
(get_posix_access): Add handling for just created files requiring
their first Cygwin ACL. Fix new_style recognition. Handle SGID
bit. For old-style ACLs, ignore SYSTEM and Administrators when
computing the {DEF_}CLASS_OBJ perms.
* security.cc (get_file_sd): Revamp comment. Change and (hopefully)
speed up inheritance processing for just created files.
(alloc_sd): Remove.
(set_security_attribute): Call set_posix_access instead of alloc_sd.
(get_object_attribute): Fix return value.
(create_object_sd_from_attribute): Call set_posix_access instead of
alloc_sd.
(set_file_attribute): Remove.
(set_created_file_access): New function implemented in terms of
get_posix_access/set_posix_access.
* security.h (set_file_attribute): Remove prototype.
(set_created_file_access): Add prototype.
(searchace): Ditto.
(set_posix_access): Ditto.
* syscalls.cc (open): Call open_with_arch with mode not umasked.
* sec_acl.cc: Change preceeding comment explaining new-style ACLs.
Describe how to generate deny ACEs in more detail. Accommodate the
fact that a NULL deny ACE is used for {DEF_}CLASS_OBJ, rather than
a special Cygwin ACE. Improve further comments.
(CYG_ACE_NEW_STYLE): Define.
(get_posix_access): Change from Cygwin ACE to NULL deny ACE. Fix
CLASS_OBJ handling to generate CLASS_OBJ and DEF_CLASS_OBJ from a single
NULL deny ACE if the inheritance flags say so.
* sec_helper.cc (well_known_cygwin_sid): Remove.
* security.h (well_known_cygwin_sid): Drop declaration.
* sec_acl.cc (CYG_ACE_ISBITS_TO_WIN): Fix typo.
(get_posix_access): Rename index variable from i to idx. Define only
once at top level.
* security.cc (add_access_allowed_ace): Drop unused parameter "offset".
Accommodate throughout.
(add_access_denied_ace): Ditto.
* sec_acl.cc: Accommodate above change throughout.
* security.h (add_access_allowed_ace): Adjust prototype to above change.
(add_access_denied_ace): Ditto.
* sec_acl.cc (get_posix_access): Handle multiple ACEs for the
owner and primary group of the file. Handle the default primary
group ACE as DEF_GROUP_OBJ entry if the directory has the S_ISGID bit
set. Add comments. Minor code rearrangements.
Preliminary read side implementation of new permission handling.
* acl.h (MAX_ACL_ENTRIES): Raise to 2730. Add comment to explain.
* sec_acl.cc: Add leading comment to explain new ACL style.
Add definitions and macros to use for bits in new Cygwin ACL.
(DENY_RWX): New mask value for all temporary deny bits.
(getace): Add bool parameter to decide when leaving all bits intact,
rather than filtering them per the already set bits.
(get_posix_access): New function, taking over functionality to read
POSIX ACL from SECURITY_DESCRIPTOR.
(getacl): Just call get_posix_access.
* sec_helper.cc (well_known_cygwin_sid): Define.
* security.cc (get_attribute_from_acl): Remove.
(get_info_from_sd): Remove.
(get_reg_sd): Call get_posix_access instead of get_info_from_sd.
(get_file_attribute): Ditto.
(get_object_attribute): Ditto.
* security.h (well_known_cygwin_sid): Declare.
(get_posix_access): Add prototype.
* Throughout, use simpler ACE macros from Windows' accctrl.h.
* getfacl.c (main): Special-case SYSTEM and Admins group. Add comments.
* setfacl.c: Align more to Linux tool.
(delacl): New function to delete acl entries only.
(modacl): Drop delete functionality. Add handling of recomputing the
mask and default mask values.
(delallacl): Rename from delacl.
(setfacl): Call delacl in Delete case. Call delallacl in DeleteAll
and DeleteDef case.
(usage): Accommodate new options. Rearrange and rephrase slightly.
(longopts): Emit 'x' in --delete case. Add --no-mask and --mask
options.
(opts): Add -x and -n options.
(main): Handle -d and -x the same. Handle -n and --mask options.
Drop handling for -r option.
* getfacl.c (usage): Align more closely to Linux version. Add new
options -c, -e, -E. Change formatting to accommodate longer options.
(longopts): Rename --noname to --numeric. Keep --noname for backward
compatibility. Add --omit-header, --all-effective and --no-effective
options.
(opts): Add -c, -e and -E option.
(main): Handle new -c, -e, and -E options.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-06-24 17:52:29 +08:00
|
|
|
case GETACLCNT:
|
|
|
|
if (!input_available_event)
|
|
|
|
{
|
|
|
|
char buf[MAX_PATH];
|
|
|
|
shared_name (buf, INPUT_AVAILABLE_EVENT, get_minor ());
|
|
|
|
input_available_event = OpenEvent (READ_CONTROL, TRUE, buf);
|
|
|
|
if (input_available_event)
|
|
|
|
to_close = true;
|
|
|
|
}
|
|
|
|
if (!input_available_event
|
|
|
|
|| get_object_sd (input_available_event, sd))
|
|
|
|
{
|
|
|
|
res = get_posix_access (NULL, &attr, NULL, NULL, aclbufp, nentries);
|
|
|
|
if (aclbufp && res == MIN_ACL_ENTRIES)
|
|
|
|
{
|
|
|
|
aclbufp[0].a_perm = S_IROTH | S_IWOTH;
|
|
|
|
aclbufp[0].a_id = 18;
|
|
|
|
aclbufp[1].a_id = 544;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (cmd == GETACL)
|
|
|
|
res = get_posix_access (sd, &attr, NULL, NULL, aclbufp, nentries);
|
|
|
|
else
|
|
|
|
res = get_posix_access (sd, &attr, NULL, NULL, NULL, 0);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
set_errno (EINVAL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (to_close)
|
|
|
|
CloseHandle (input_available_event);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2010-04-20 03:52:43 +08:00
|
|
|
/* Helper function for fchmod and fchown, which just opens all handles
|
|
|
|
and signals success via bool return. */
|
|
|
|
bool
|
2014-08-27 19:42:17 +08:00
|
|
|
fhandler_pty_slave::fch_open_handles (bool chown)
|
2010-04-20 03:52:43 +08:00
|
|
|
{
|
|
|
|
char buf[MAX_PATH];
|
2014-08-27 19:42:17 +08:00
|
|
|
DWORD write_access = WRITE_DAC | (chown ? WRITE_OWNER : 0);
|
2010-04-20 03:52:43 +08:00
|
|
|
|
2013-04-23 17:44:36 +08:00
|
|
|
_tc = cygwin_shared->tty[get_minor ()];
|
|
|
|
shared_name (buf, INPUT_AVAILABLE_EVENT, get_minor ());
|
2014-08-27 19:42:17 +08:00
|
|
|
input_available_event = OpenEvent (READ_CONTROL | write_access,
|
2010-04-20 03:52:43 +08:00
|
|
|
TRUE, buf);
|
2014-08-27 19:42:17 +08:00
|
|
|
output_mutex = get_ttyp ()->open_output_mutex (write_access);
|
|
|
|
input_mutex = get_ttyp ()->open_input_mutex (write_access);
|
2021-02-11 17:09:42 +08:00
|
|
|
pcon_mutex = get_ttyp ()->open_mutex (PCON_MUTEX, write_access);
|
2014-08-27 19:42:17 +08:00
|
|
|
inuse = get_ttyp ()->open_inuse (write_access);
|
2010-04-20 03:52:43 +08:00
|
|
|
if (!input_available_event || !output_mutex || !input_mutex || !inuse)
|
|
|
|
{
|
|
|
|
__seterrno ();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Helper function for fchmod and fchown, which sets the new security
|
2011-06-15 05:48:43 +08:00
|
|
|
descriptor on all objects representing the pty. */
|
2010-04-20 03:52:43 +08:00
|
|
|
int
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_slave::fch_set_sd (security_descriptor &sd, bool chown)
|
2010-04-20 03:52:43 +08:00
|
|
|
{
|
|
|
|
security_descriptor sd_old;
|
|
|
|
|
|
|
|
get_object_sd (input_available_event, sd_old);
|
2010-04-20 04:00:18 +08:00
|
|
|
if (!set_object_sd (input_available_event, sd, chown)
|
2010-04-20 03:52:43 +08:00
|
|
|
&& !set_object_sd (output_mutex, sd, chown)
|
|
|
|
&& !set_object_sd (input_mutex, sd, chown)
|
2011-06-15 05:48:43 +08:00
|
|
|
&& !set_object_sd (inuse, sd, chown))
|
2010-04-20 03:52:43 +08:00
|
|
|
return 0;
|
|
|
|
set_object_sd (input_available_event, sd_old, chown);
|
|
|
|
set_object_sd (output_mutex, sd_old, chown);
|
|
|
|
set_object_sd (input_mutex, sd_old, chown);
|
|
|
|
set_object_sd (inuse, sd_old, chown);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Helper function for fchmod and fchown, which closes all object handles in
|
2011-06-15 05:48:43 +08:00
|
|
|
the pty. */
|
2010-04-20 03:52:43 +08:00
|
|
|
void
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_slave::fch_close_handles ()
|
2010-04-20 03:52:43 +08:00
|
|
|
{
|
|
|
|
close_maybe (input_available_event);
|
|
|
|
close_maybe (output_mutex);
|
|
|
|
close_maybe (input_mutex);
|
|
|
|
close_maybe (inuse);
|
|
|
|
}
|
|
|
|
|
2013-05-01 09:20:37 +08:00
|
|
|
int __reg1
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_slave::fchmod (mode_t mode)
|
2010-04-20 03:52:43 +08:00
|
|
|
{
|
|
|
|
int ret = -1;
|
|
|
|
bool to_close = false;
|
|
|
|
security_descriptor sd;
|
2013-04-23 17:44:36 +08:00
|
|
|
uid_t uid;
|
|
|
|
gid_t gid;
|
2015-09-04 01:29:55 +08:00
|
|
|
mode_t orig_mode = S_IFCHR;
|
2010-04-20 03:52:43 +08:00
|
|
|
|
|
|
|
if (!input_available_event)
|
|
|
|
{
|
|
|
|
to_close = true;
|
2014-08-27 19:42:17 +08:00
|
|
|
if (!fch_open_handles (false))
|
2010-04-20 03:52:43 +08:00
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
sd.malloc (sizeof (SECURITY_DESCRIPTOR));
|
2011-04-28 17:30:36 +08:00
|
|
|
RtlCreateSecurityDescriptor (sd, SECURITY_DESCRIPTOR_REVISION);
|
2015-09-04 01:29:55 +08:00
|
|
|
if (!get_object_attribute (input_available_event, &uid, &gid, &orig_mode)
|
|
|
|
&& !create_object_sd_from_attribute (uid, gid, S_IFCHR | mode, sd))
|
2010-04-20 03:52:43 +08:00
|
|
|
ret = fch_set_sd (sd, false);
|
|
|
|
errout:
|
|
|
|
if (to_close)
|
|
|
|
fch_close_handles ();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-05-01 09:20:37 +08:00
|
|
|
int __reg2
|
2013-04-23 17:44:36 +08:00
|
|
|
fhandler_pty_slave::fchown (uid_t uid, gid_t gid)
|
2010-04-20 03:52:43 +08:00
|
|
|
{
|
|
|
|
int ret = -1;
|
|
|
|
bool to_close = false;
|
2015-09-04 01:29:55 +08:00
|
|
|
security_descriptor sd;
|
2013-04-23 17:44:36 +08:00
|
|
|
uid_t o_uid;
|
|
|
|
gid_t o_gid;
|
2015-09-04 01:29:55 +08:00
|
|
|
mode_t mode = S_IFCHR;
|
2010-04-20 03:52:43 +08:00
|
|
|
|
|
|
|
if (uid == ILLEGAL_UID && gid == ILLEGAL_GID)
|
|
|
|
return 0;
|
|
|
|
if (!input_available_event)
|
|
|
|
{
|
|
|
|
to_close = true;
|
2014-08-27 19:42:17 +08:00
|
|
|
if (!fch_open_handles (true))
|
2010-04-20 03:52:43 +08:00
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
sd.malloc (sizeof (SECURITY_DESCRIPTOR));
|
2011-04-28 17:30:36 +08:00
|
|
|
RtlCreateSecurityDescriptor (sd, SECURITY_DESCRIPTOR_REVISION);
|
2010-04-20 03:52:43 +08:00
|
|
|
if (!get_object_attribute (input_available_event, &o_uid, &o_gid, &mode))
|
|
|
|
{
|
Reapply POSIX ACL changes.
- New, unified implementation of POSIX permission and ACL handling. The
new ACLs now store the POSIX ACL MASK/CLASS_OBJ permission mask, and
they allow to inherit the S_ISGID bit. ACL inheritance now really
works as desired, in a limited, but theoretically equivalent fashion
even for non-Cygwin processes.
To accommodate Windows default ACLs, the new code ignores SYSTEM and
Administrators group permissions when computing the MASK/CLASS_OBJ
permission mask on old ACLs, and it doesn't deny access to SYSTEM and
Administrators group based on the value of MASK/CLASS_OBJ when
creating the new ACLs.
The new code now handles the S_ISGID bit on directories as on Linux:
Setting S_ISGID on a directory causes new files and subdirs created
within to inherit its group, rather than the primary group of the user
who created the file. This only works for files and directories
created by Cygwin processes.
2015-05-29 Corinna Vinschen <corinna@vinschen.de>
Reapply POSIX ACL changes.
* utils.xml (setfacl): Show new option output.
(getfacl): Show new option output.
* sec_acl.cc (get_posix_access): Check for Cygwin "standard" ACL.
Apply umask, if so. Align comments.
* security.cc (set_created_file_access): Fix permission masking by
incoming requested file mode.
* sec_acl.cc (set_posix_access): Apply mask only in terms of execute bit
for SYSTEM and Admins group.
* sec_acl.cc (set_posix_access): Don't create DENY ACEs for USER and
GROUP entries if they are the same as USER_OBJ or GROUP_OBJ.
* fhandler.h (fhandler_pty_slave::facl): Add prototype.
* fhandler_tty.cc (fhandler_pty_slave::facl): New method.
(fhandler_pty_slave::fchown): Fix uid/gid handling.
* sec_acl.cc (set_posix_access): Drop superfluous class_idx variable.
Simplify and move around code in a few places. To improve ACL
readability, add r/w permissions to Admins ACE appended to pty ACL.
Add comment to explain Windows ACE Mask filtering being in the way of
creating a real CLASS_OBJ.
(get_posix_access): Fake CLASS_OBJ for ptys. Explain why.
* security.cc (get_object_attribute): Add S_IFCHR flag to attributes
when calling get_posix_access.
* sec_acl.cc (set_posix_access): Move merging group perms into owner
perms in case of owner == group after mask has been computed. Take
mask into account when doing so to avoid unnecessary ACCESS_DENIED_ACE.
* sec_acl.cc (get_posix_access): Only set saw_group_obj flag if we saw
the ACCESS_ALLOWED_ACE.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Deliberatly
set GROUP_OBJ and CLASS_OBJ perms to new group perms. Add comment
to explain why.
* security.cc (set_created_file_access): Ditto.
* sec_acl.cc (set_posix_access): Replace previous patch. Return
EINVAL if uid and/or guid is invalid and not backed by an actual
Windows account.
* sec_acl.cc (set_posix_access): Workaround owner/group SIDs being NULL.
* sec_acl.cc (set_posix_access): Handle files with owner == group.
Rephrase switch statement checking against unfiltered a_type value.
(get_posix_access): Handle files with owner == group.
* sec_acl.cc (get_posix_access): Don't use GROUP_OBJ access to fix up
CLASS_OBJ mask on old-style ACLs. Fix a comment.
* sec_acl.cc (set_posix_access): Always make sure Admins have
WRITE_DAC and WRITE_OWNER permissions.
* security.h (create_object_sd_from_attribute): Drop handle parameter
from prototype.
* security.cc (create_object_sd_from_attribute): Drop handle parameter.
Just create the standard POSIXy security descriptor.
(set_object_attribute): Accommodate dropped paramter in call to
create_object_sd_from_attribute.
* fhandler_tty.cc: Ditto, throughout.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Fix typo in
mask computation.
* fhandler.cc (fhandler_base::open_with_arch): Call open with mode
not umasked.
(fhandler_base::open): Explicitely umask mode on NFS here. Call new
set_created_file_access rather than set_file_attribute.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Reimplement
setting permissions on filesystems supporting ACLs using the new
set_posix_access call.
(fhandler_disk_file::fchown): Ditto.
(fhandler_disk_file::mkdir): Call new set_created_file_access rather
than set_file_attribute.
* fhandler_socket.cc (fhandler_socket::bind): Don't umask here. Add
WRITE_OWNER access to allow writing group in case of SGID bit set.
Call new set_created_file_access rather than set_file_attribute.
* path.cc (symlink_worker): Call new set_created_file_access rather
than set_file_attribute.
* sec_acl.cc (searchace): Un-staticize.
(set_posix_access): New, complementary functionality to
get_posix_access.
(setacl): Implement in terms of get_posix_access/set_posix_access.
(get_posix_access): Add handling for just created files requiring
their first Cygwin ACL. Fix new_style recognition. Handle SGID
bit. For old-style ACLs, ignore SYSTEM and Administrators when
computing the {DEF_}CLASS_OBJ perms.
* security.cc (get_file_sd): Revamp comment. Change and (hopefully)
speed up inheritance processing for just created files.
(alloc_sd): Remove.
(set_security_attribute): Call set_posix_access instead of alloc_sd.
(get_object_attribute): Fix return value.
(create_object_sd_from_attribute): Call set_posix_access instead of
alloc_sd.
(set_file_attribute): Remove.
(set_created_file_access): New function implemented in terms of
get_posix_access/set_posix_access.
* security.h (set_file_attribute): Remove prototype.
(set_created_file_access): Add prototype.
(searchace): Ditto.
(set_posix_access): Ditto.
* syscalls.cc (open): Call open_with_arch with mode not umasked.
* sec_acl.cc: Change preceeding comment explaining new-style ACLs.
Describe how to generate deny ACEs in more detail. Accommodate the
fact that a NULL deny ACE is used for {DEF_}CLASS_OBJ, rather than
a special Cygwin ACE. Improve further comments.
(CYG_ACE_NEW_STYLE): Define.
(get_posix_access): Change from Cygwin ACE to NULL deny ACE. Fix
CLASS_OBJ handling to generate CLASS_OBJ and DEF_CLASS_OBJ from a single
NULL deny ACE if the inheritance flags say so.
* sec_helper.cc (well_known_cygwin_sid): Remove.
* security.h (well_known_cygwin_sid): Drop declaration.
* sec_acl.cc (CYG_ACE_ISBITS_TO_WIN): Fix typo.
(get_posix_access): Rename index variable from i to idx. Define only
once at top level.
* security.cc (add_access_allowed_ace): Drop unused parameter "offset".
Accommodate throughout.
(add_access_denied_ace): Ditto.
* sec_acl.cc: Accommodate above change throughout.
* security.h (add_access_allowed_ace): Adjust prototype to above change.
(add_access_denied_ace): Ditto.
* sec_acl.cc (get_posix_access): Handle multiple ACEs for the
owner and primary group of the file. Handle the default primary
group ACE as DEF_GROUP_OBJ entry if the directory has the S_ISGID bit
set. Add comments. Minor code rearrangements.
Preliminary read side implementation of new permission handling.
* acl.h (MAX_ACL_ENTRIES): Raise to 2730. Add comment to explain.
* sec_acl.cc: Add leading comment to explain new ACL style.
Add definitions and macros to use for bits in new Cygwin ACL.
(DENY_RWX): New mask value for all temporary deny bits.
(getace): Add bool parameter to decide when leaving all bits intact,
rather than filtering them per the already set bits.
(get_posix_access): New function, taking over functionality to read
POSIX ACL from SECURITY_DESCRIPTOR.
(getacl): Just call get_posix_access.
* sec_helper.cc (well_known_cygwin_sid): Define.
* security.cc (get_attribute_from_acl): Remove.
(get_info_from_sd): Remove.
(get_reg_sd): Call get_posix_access instead of get_info_from_sd.
(get_file_attribute): Ditto.
(get_object_attribute): Ditto.
* security.h (well_known_cygwin_sid): Declare.
(get_posix_access): Add prototype.
* Throughout, use simpler ACE macros from Windows' accctrl.h.
* getfacl.c (main): Special-case SYSTEM and Admins group. Add comments.
* setfacl.c: Align more to Linux tool.
(delacl): New function to delete acl entries only.
(modacl): Drop delete functionality. Add handling of recomputing the
mask and default mask values.
(delallacl): Rename from delacl.
(setfacl): Call delacl in Delete case. Call delallacl in DeleteAll
and DeleteDef case.
(usage): Accommodate new options. Rearrange and rephrase slightly.
(longopts): Emit 'x' in --delete case. Add --no-mask and --mask
options.
(opts): Add -x and -n options.
(main): Handle -d and -x the same. Handle -n and --mask options.
Drop handling for -r option.
* getfacl.c (usage): Align more closely to Linux version. Add new
options -c, -e, -E. Change formatting to accommodate longer options.
(longopts): Rename --noname to --numeric. Keep --noname for backward
compatibility. Add --omit-header, --all-effective and --no-effective
options.
(opts): Add -c, -e and -E option.
(main): Handle new -c, -e, and -E options.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-06-24 17:52:29 +08:00
|
|
|
if (uid == ILLEGAL_UID)
|
|
|
|
uid = o_uid;
|
|
|
|
if (gid == ILLEGAL_GID)
|
|
|
|
gid = o_gid;
|
|
|
|
if (uid == o_uid && gid == o_gid)
|
2010-04-20 03:52:43 +08:00
|
|
|
ret = 0;
|
Reapply POSIX ACL changes.
- New, unified implementation of POSIX permission and ACL handling. The
new ACLs now store the POSIX ACL MASK/CLASS_OBJ permission mask, and
they allow to inherit the S_ISGID bit. ACL inheritance now really
works as desired, in a limited, but theoretically equivalent fashion
even for non-Cygwin processes.
To accommodate Windows default ACLs, the new code ignores SYSTEM and
Administrators group permissions when computing the MASK/CLASS_OBJ
permission mask on old ACLs, and it doesn't deny access to SYSTEM and
Administrators group based on the value of MASK/CLASS_OBJ when
creating the new ACLs.
The new code now handles the S_ISGID bit on directories as on Linux:
Setting S_ISGID on a directory causes new files and subdirs created
within to inherit its group, rather than the primary group of the user
who created the file. This only works for files and directories
created by Cygwin processes.
2015-05-29 Corinna Vinschen <corinna@vinschen.de>
Reapply POSIX ACL changes.
* utils.xml (setfacl): Show new option output.
(getfacl): Show new option output.
* sec_acl.cc (get_posix_access): Check for Cygwin "standard" ACL.
Apply umask, if so. Align comments.
* security.cc (set_created_file_access): Fix permission masking by
incoming requested file mode.
* sec_acl.cc (set_posix_access): Apply mask only in terms of execute bit
for SYSTEM and Admins group.
* sec_acl.cc (set_posix_access): Don't create DENY ACEs for USER and
GROUP entries if they are the same as USER_OBJ or GROUP_OBJ.
* fhandler.h (fhandler_pty_slave::facl): Add prototype.
* fhandler_tty.cc (fhandler_pty_slave::facl): New method.
(fhandler_pty_slave::fchown): Fix uid/gid handling.
* sec_acl.cc (set_posix_access): Drop superfluous class_idx variable.
Simplify and move around code in a few places. To improve ACL
readability, add r/w permissions to Admins ACE appended to pty ACL.
Add comment to explain Windows ACE Mask filtering being in the way of
creating a real CLASS_OBJ.
(get_posix_access): Fake CLASS_OBJ for ptys. Explain why.
* security.cc (get_object_attribute): Add S_IFCHR flag to attributes
when calling get_posix_access.
* sec_acl.cc (set_posix_access): Move merging group perms into owner
perms in case of owner == group after mask has been computed. Take
mask into account when doing so to avoid unnecessary ACCESS_DENIED_ACE.
* sec_acl.cc (get_posix_access): Only set saw_group_obj flag if we saw
the ACCESS_ALLOWED_ACE.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Deliberatly
set GROUP_OBJ and CLASS_OBJ perms to new group perms. Add comment
to explain why.
* security.cc (set_created_file_access): Ditto.
* sec_acl.cc (set_posix_access): Replace previous patch. Return
EINVAL if uid and/or guid is invalid and not backed by an actual
Windows account.
* sec_acl.cc (set_posix_access): Workaround owner/group SIDs being NULL.
* sec_acl.cc (set_posix_access): Handle files with owner == group.
Rephrase switch statement checking against unfiltered a_type value.
(get_posix_access): Handle files with owner == group.
* sec_acl.cc (get_posix_access): Don't use GROUP_OBJ access to fix up
CLASS_OBJ mask on old-style ACLs. Fix a comment.
* sec_acl.cc (set_posix_access): Always make sure Admins have
WRITE_DAC and WRITE_OWNER permissions.
* security.h (create_object_sd_from_attribute): Drop handle parameter
from prototype.
* security.cc (create_object_sd_from_attribute): Drop handle parameter.
Just create the standard POSIXy security descriptor.
(set_object_attribute): Accommodate dropped paramter in call to
create_object_sd_from_attribute.
* fhandler_tty.cc: Ditto, throughout.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Fix typo in
mask computation.
* fhandler.cc (fhandler_base::open_with_arch): Call open with mode
not umasked.
(fhandler_base::open): Explicitely umask mode on NFS here. Call new
set_created_file_access rather than set_file_attribute.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Reimplement
setting permissions on filesystems supporting ACLs using the new
set_posix_access call.
(fhandler_disk_file::fchown): Ditto.
(fhandler_disk_file::mkdir): Call new set_created_file_access rather
than set_file_attribute.
* fhandler_socket.cc (fhandler_socket::bind): Don't umask here. Add
WRITE_OWNER access to allow writing group in case of SGID bit set.
Call new set_created_file_access rather than set_file_attribute.
* path.cc (symlink_worker): Call new set_created_file_access rather
than set_file_attribute.
* sec_acl.cc (searchace): Un-staticize.
(set_posix_access): New, complementary functionality to
get_posix_access.
(setacl): Implement in terms of get_posix_access/set_posix_access.
(get_posix_access): Add handling for just created files requiring
their first Cygwin ACL. Fix new_style recognition. Handle SGID
bit. For old-style ACLs, ignore SYSTEM and Administrators when
computing the {DEF_}CLASS_OBJ perms.
* security.cc (get_file_sd): Revamp comment. Change and (hopefully)
speed up inheritance processing for just created files.
(alloc_sd): Remove.
(set_security_attribute): Call set_posix_access instead of alloc_sd.
(get_object_attribute): Fix return value.
(create_object_sd_from_attribute): Call set_posix_access instead of
alloc_sd.
(set_file_attribute): Remove.
(set_created_file_access): New function implemented in terms of
get_posix_access/set_posix_access.
* security.h (set_file_attribute): Remove prototype.
(set_created_file_access): Add prototype.
(searchace): Ditto.
(set_posix_access): Ditto.
* syscalls.cc (open): Call open_with_arch with mode not umasked.
* sec_acl.cc: Change preceeding comment explaining new-style ACLs.
Describe how to generate deny ACEs in more detail. Accommodate the
fact that a NULL deny ACE is used for {DEF_}CLASS_OBJ, rather than
a special Cygwin ACE. Improve further comments.
(CYG_ACE_NEW_STYLE): Define.
(get_posix_access): Change from Cygwin ACE to NULL deny ACE. Fix
CLASS_OBJ handling to generate CLASS_OBJ and DEF_CLASS_OBJ from a single
NULL deny ACE if the inheritance flags say so.
* sec_helper.cc (well_known_cygwin_sid): Remove.
* security.h (well_known_cygwin_sid): Drop declaration.
* sec_acl.cc (CYG_ACE_ISBITS_TO_WIN): Fix typo.
(get_posix_access): Rename index variable from i to idx. Define only
once at top level.
* security.cc (add_access_allowed_ace): Drop unused parameter "offset".
Accommodate throughout.
(add_access_denied_ace): Ditto.
* sec_acl.cc: Accommodate above change throughout.
* security.h (add_access_allowed_ace): Adjust prototype to above change.
(add_access_denied_ace): Ditto.
* sec_acl.cc (get_posix_access): Handle multiple ACEs for the
owner and primary group of the file. Handle the default primary
group ACE as DEF_GROUP_OBJ entry if the directory has the S_ISGID bit
set. Add comments. Minor code rearrangements.
Preliminary read side implementation of new permission handling.
* acl.h (MAX_ACL_ENTRIES): Raise to 2730. Add comment to explain.
* sec_acl.cc: Add leading comment to explain new ACL style.
Add definitions and macros to use for bits in new Cygwin ACL.
(DENY_RWX): New mask value for all temporary deny bits.
(getace): Add bool parameter to decide when leaving all bits intact,
rather than filtering them per the already set bits.
(get_posix_access): New function, taking over functionality to read
POSIX ACL from SECURITY_DESCRIPTOR.
(getacl): Just call get_posix_access.
* sec_helper.cc (well_known_cygwin_sid): Define.
* security.cc (get_attribute_from_acl): Remove.
(get_info_from_sd): Remove.
(get_reg_sd): Call get_posix_access instead of get_info_from_sd.
(get_file_attribute): Ditto.
(get_object_attribute): Ditto.
* security.h (well_known_cygwin_sid): Declare.
(get_posix_access): Add prototype.
* Throughout, use simpler ACE macros from Windows' accctrl.h.
* getfacl.c (main): Special-case SYSTEM and Admins group. Add comments.
* setfacl.c: Align more to Linux tool.
(delacl): New function to delete acl entries only.
(modacl): Drop delete functionality. Add handling of recomputing the
mask and default mask values.
(delallacl): Rename from delacl.
(setfacl): Call delacl in Delete case. Call delallacl in DeleteAll
and DeleteDef case.
(usage): Accommodate new options. Rearrange and rephrase slightly.
(longopts): Emit 'x' in --delete case. Add --no-mask and --mask
options.
(opts): Add -x and -n options.
(main): Handle -d and -x the same. Handle -n and --mask options.
Drop handling for -r option.
* getfacl.c (usage): Align more closely to Linux version. Add new
options -c, -e, -E. Change formatting to accommodate longer options.
(longopts): Rename --noname to --numeric. Keep --noname for backward
compatibility. Add --omit-header, --all-effective and --no-effective
options.
(opts): Add -c, -e and -E option.
(main): Handle new -c, -e, and -E options.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-06-24 17:52:29 +08:00
|
|
|
else if (!create_object_sd_from_attribute (uid, gid, mode, sd))
|
2010-04-20 03:52:43 +08:00
|
|
|
ret = fch_set_sd (sd, true);
|
|
|
|
}
|
|
|
|
errout:
|
|
|
|
if (to_close)
|
|
|
|
fch_close_handles ();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2000-02-18 03:38:33 +08:00
|
|
|
/*******************************************************
|
|
|
|
fhandler_pty_master
|
|
|
|
*/
|
2011-10-16 06:37:30 +08:00
|
|
|
fhandler_pty_master::fhandler_pty_master (int unit)
|
|
|
|
: fhandler_pty_common (), pktmode (0), master_ctl (NULL),
|
|
|
|
master_thread (NULL), from_master (NULL), to_master (NULL),
|
2019-08-28 02:04:02 +08:00
|
|
|
from_slave (NULL), to_slave (NULL), echo_r (NULL), echo_w (NULL),
|
|
|
|
dwProcessId (0), to_master_cyg (NULL), from_master_cyg (NULL),
|
|
|
|
master_fwd_thread (NULL)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2011-10-16 06:37:30 +08:00
|
|
|
if (unit >= 0)
|
2011-10-20 22:02:54 +08:00
|
|
|
dev ().parse (DEV_PTYM_MAJOR, unit);
|
|
|
|
set_name ("/dev/ptmx");
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
* devices.cc: New file.
* devices.gperf: New file.
* devices.shilka: New file.
* cygwin-gperf: New file.
* cygwin-shilka: New file.
* fhandler_fifo.cc: New file.
* fhandler_nodevice.cc : New file. Reorganize headers so that path.h precedes
fhandler.h throughout. Remove device argument and unit arguments from fhandler
constructors throughout. Remove pc arguments to fhandler functions and use
internal pc element instead, throughout. Use dev element in pc throughout.
Use major/minor elements rather than units and device numbers previously in
fhandler class. Use correct methods for fhandler file names rather than
directly accessing file name variables, throughout.
* Makefile.in (DLL_OFILES): Add devices.o, fhandler_fifo.o
* dcrt0.cc (dll_crt0_1): Call device::init.
* devices.h: Renumber devices based on more Linux-like major/minor numbers.
Add more devices. Declare standard device storage.
(device): Declare struct.
* dir.cc (opendir): Use new 'build_fh_name' to construct a fhandler_* type.
* dtable.cc (dtable::get_debugger_info): Ditto.
(cygwin_attach_handle_to_fd): Ditto.
(dtable::release): Remove special FH_SOCKET case in favor of generic
"need_fixup_before" test.
(dtable::init_std_file_from_handle): Use either build_fh_dev or build_fh_name
to build standard fhandler.
(dtable::build_fh_name): Renamed from dtable::build_fhandler_from_name. Move
out of dtable class. Don't accept a path_conv argument. Just build it here
and pass it to:
(build_fh_pc): Renamed from dtable::build_fhandler. Move out of dtable class.
Use intrinsic device type in path_conv to create new fhandler.
(build_fh_dev): Renamed from dtable::build_fhandler. Move out of dtable class.
Simplify arguments to just take new 'device' type and a name. Just return
pointer to fhandler rather than trying to insert into dtable.
(dtable::dup_worker): Accommodate above build_fh name changes.
(dtable::find_fifo): New (currently broken) function.
(handle_to_fn): Use strechr for efficiency.
* dtable.h: Reflect above build_fh name changes and argument differences.
(fhandler_base *&operator []): Return self rather than copy of self.
* fhandler.cc (fhandler_base::operator =): Use pc element to set normalized
path.
(fhandler_base::set_name): Ditto.
(fhandler_base::raw_read): Use method to access name.
(fhandler_base::write): Correctly use get_output_handle rather than get_handle.
(handler_base::device_access_denied): New function.
(fhandler_base::open): Eliminate pc argument and use pc element of
fhandler_base throughout.
(fhandler_base::fstat): Detect if device is based in filesystem and use
fstat_fs to calculate stat, if so.
(fhandler_base::fhandler_base): Eliminate handling of file names and, instead,
just free appropriate component from pc.
(fhandler_base::opendir): Remove path_conv parameter.
* fhandler.h: Remove all device flags.
(fhandler_base::pc): New element.
(fhandler_base::set_name): Change argument to path_conv.
(fhandler_base::error): New function.
(fhandler_base::exists): New function.
(fhandler_base::pc_binmode): New function.
(fhandler_base::dev): New function.
(fhandler_base::open_fs): New function.
(fhandler_base::fstat_fs): New function.
(fhandler_base::fstat_by_name): New function.
(fhandler_base::fstat_by_handle): New function.
(fhandler_base::isfifo): New function.
(fhandler_base::is_slow): New function.
(fhandler_base::is_auto_device): New function.
(fhandler_base::is_fs_special): New function.
(fhandler_base::device_access_denied): New function.
(fhandler_base::operator DWORD&): New operator.
(fhandler_base::get_name): Return normalized path from pc.
(fhandler_base::get_win32_name): Return windows path from pc.
(fhandler_base::isdevice): Renamed from is_device.
(fhandler_base::get_native_name): Return device format.
(fhandler_fifo): New class.
(fhandler_nodevice): New class.
(select_stuff::device_specific): Remove array.
(select_stuff::device_specific_pipe): New class element.
(select_stuff::device_specific_socket): New class element.
(select_stuff::device_specific_serial): New class element.
(select_stuff::select_stuff): Initialize new elements.
* fhandler_disk_file.cc (fhandler_base::fstat_by_handle): Move to base class
from fhandler_disk_file.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_disk_file::open): Move most functionality into
fhandler_base::open_fs.
(fhandler_base::open_fs): New function.
(fhandler_disk_file::close): Move most functionality into
fhandler_base::close_fs.
(fhandler_base::close_fs): New function.
* fhandler_mem.cc (fhandler_dev_mem::open): Use device name in debugging
output.
* fhandler_socket.cc (fhandler_socket::set_connect_secret): Copy standard
urandom device into appropriate place.
(fhandler_socket::accept): Reflect change in fdsock return value.
* fhandler_tty.cc: See "throughouts" above.
* net.cc: Accommodate fdsock change throughout.
(fdsock): Return success or failure, accept fd argument and device argument.
* path.cc (symlink_info::major): New element.
(symlink_info::minor): New element.
(symlink_info::parse_device): Declare new function.
(fs_info::update): Accommodate changes in path_conv class.
(path_conv::fillin): Ditto.
(path_conv::return_and_clear_normalized_path): Eliminate.
(path_conv::set_normalized_path): New function.
(path_conv::path_conv): Set info in dev element. Use path_conv methods Check
for FH_FS rather than FH_BAD to indicate when to fill in filesystem stuff.
where appropriate rather than direct access. Use set_normalized_path to set
normalized path.
(windows_device_names): Eliminate.
(get_dev): Ditto.
(get_raw_device_number): Ditto.
(get_device_number): Ditto.
(win32_device_name): Call new device name parser to do most of the heavy
lifting.
(mount_info::conv_to_win32_path): Fill in dev field as appropriate.
(symlink_worker): Handle new device files.
(symlink_info::check): Ditto.
(symlink_info::parse_device): Define new function.
* path.h (executable_states): Move here from fhandler.h.
(fs_info): Rename variables to *_storage and create methods for accessing same.
(path_conv): Add dev element, remove devn and unit and adjust inline methods to
accommodate.
(set_normalized_path): Declare new function.
* pinfo.cc (_pinfo::commune_recv): Add broken support for handling fifos.
(_pinfo::commune_send): Ditto.
* pipe.cc (fhandler_pipe::close): check for existence of handle before closing
it.
(handler_pipe::create): Rename from make_pipe. Change arguments to accept
fhandler_pipe array. Accommodate fifos.
(pipe): Rework to deal with fhandler_pipe::create changes.
(_pipe): Ditto.
* select.cc: Use individual device_specific types throughout rather than
indexing with obsolete device number.
(set_bits): Use is_socket call rather than checking device number.
* shared_info.h (CURR_MOUNT_MAGIC): Update.
(conv_to_win32_path): Reflect addition of device argument.
* syscalls.cc (mknod_worker): New function.
(open): Use build_fh_name to build fhandler.
(chown_worker): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(chmod_device): New function.
(chmod): Detect if this is an 'auto' device rather than an on-filesystem device
and handle appropriately. Use chmod_device to set mode of in-filesystem
devices.
(stat_worker): Eliminate path_conv argument. Call build_fh_name to construct
fhandler. Use fh->error() rather than pc->error to detect errors in fhandler
construction.
(access_worker): New function pulled from access. Accommodate in-filesystem
devices.
(access): Use access_worker.
(fpathconf): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(mknod_worker): New function.
(mknod32): New function.
(chroot): Free normalized path -- assuming it was actually cmalloced.
* tty.cc (create_tty_master): Tweak for new device class.
(tty::common_init): Ditto.
* winsup.h (stat_worker): Remove.
(symlink_worker): Declare.
* exceptions.cc (set_process_mask): Just call sig_dispatch_pending and don't
worry about pending_signals since sig_dispatch_pending should always do the
right thing now.
(sig_handle): Reorganize SIGCONT handling to more closely conform to SUSv3.
* pinfo.h: Move __SIG enum to sigproc.h.
(PICOM_FIFO): New enum element.
(_pinfo): Remove 'thread2signal' stuff throughout class.
(_pinfo::commune_send): Make varargs.
(_pinfo::sigtodo): Eliminate.
(_pinfo::thread2signal): Ditto.
* signal.cc (kill_worker): Eliminate call to setthread2signal.
* sigproc.cc (local_sigtodo): Eliminate.
(getlocal_sigtodo): Ditto.
(sigelem): New class.
(pending_signals): New class.
(sigqueue): New variable, start of sigqueue linked list.
(sigcatch_nonmain): Eliminate.
(sigcatch_main): Eliminate.
(sigcatch_nosync): Eliminate.
(sigcomplete_nonmain): Eliminate.
(pending_signals): Eliminate.
(sig_clear): Call signal thread to clear pending signals, unless already in
signal thread.
(sigpending): Call signal thread to get pending signals.
(sig_dispatch_pending): Eliminate use of pending_signals and just check
sigqueue.
(sigproc_terminate): Eliminate all of the obsolete semaphore stuff. Close
signal pipe handle.
(sig_send): Eliminate all of the obsolete semaphore stuff and use pipe to send
signals.
(getevent): Eliminate.
(pending_signals::add): New function.
(pending_signals::del): New function.
(pending_signals::next): New function.
(wait_sig): Eliminate all of the obsolete semaphore stuff. Use pipe to
communicate and maintain a linked list of signals.
* sigproc.h: Move __SIG defines here. Add __SIGPENDING.
(sig_dispatch_pending): Remove "C" specifier.
(sig_handle): Accept a mask argument.
* thread.cc: Remove signal handling considerations throughout.
2003-09-25 08:37:18 +08:00
|
|
|
fhandler_pty_master::open (int flags, mode_t)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2020-09-10 04:50:11 +08:00
|
|
|
if (!setup ())
|
|
|
|
return 0;
|
2001-04-24 10:07:58 +08:00
|
|
|
set_open_status ();
|
2011-05-06 06:30:53 +08:00
|
|
|
dwProcessId = GetCurrentProcessId ();
|
2011-10-16 06:37:30 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2011-10-16 06:37:30 +08:00
|
|
|
void
|
|
|
|
fhandler_pty_master::open_setup (int flags)
|
|
|
|
{
|
|
|
|
set_flags ((flags & ~O_TEXT) | O_BINARY);
|
|
|
|
char buf[sizeof ("opened pty master for ptyNNNNNNNNNNN")];
|
2013-04-23 17:44:36 +08:00
|
|
|
__small_sprintf (buf, "opened pty master for pty%d", get_minor ());
|
2006-06-04 04:32:07 +08:00
|
|
|
report_tty_counts (this, buf, "");
|
2013-10-24 23:26:21 +08:00
|
|
|
fhandler_base::open_setup (flags);
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
2013-04-23 17:44:36 +08:00
|
|
|
off_t
|
|
|
|
fhandler_pty_common::lseek (off_t, int)
|
2005-08-19 04:17:10 +08:00
|
|
|
{
|
|
|
|
set_errno (ESPIPE);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2000-02-18 03:38:33 +08:00
|
|
|
int
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_common::close ()
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2019-08-28 02:04:02 +08:00
|
|
|
termios_printf ("pty%d <%p,%p> closing",
|
|
|
|
get_minor (), get_handle (), get_output_handle ());
|
2001-03-04 23:34:25 +08:00
|
|
|
if (!ForceCloseHandle (input_mutex))
|
|
|
|
termios_printf ("CloseHandle (input_mutex<%p>), %E", input_mutex);
|
2021-02-11 17:09:42 +08:00
|
|
|
if (!ForceCloseHandle (pcon_mutex))
|
|
|
|
termios_printf ("CloseHandle (pcon_mutex<%p>), %E", pcon_mutex);
|
2005-08-18 00:10:48 +08:00
|
|
|
if (!ForceCloseHandle1 (get_handle (), from_pty))
|
|
|
|
termios_printf ("CloseHandle (get_handle ()<%p>), %E", get_handle ());
|
|
|
|
if (!ForceCloseHandle1 (get_output_handle (), to_pty))
|
2019-08-28 02:04:02 +08:00
|
|
|
termios_printf ("CloseHandle (get_output_handle ()<%p>), %E",
|
|
|
|
get_output_handle ());
|
2001-03-20 02:27:37 +08:00
|
|
|
|
2000-02-18 03:38:33 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-08-19 19:25:21 +08:00
|
|
|
void
|
|
|
|
fhandler_pty_common::resize_pseudo_console (struct winsize *ws)
|
|
|
|
{
|
|
|
|
COORD size;
|
|
|
|
size.X = ws->ws_col;
|
|
|
|
size.Y = ws->ws_row;
|
|
|
|
pinfo p (get_ttyp ()->pcon_pid);
|
2021-01-28 11:26:11 +08:00
|
|
|
if (p)
|
2020-08-19 19:25:21 +08:00
|
|
|
{
|
|
|
|
HPCON_INTERNAL hpcon_local;
|
|
|
|
HANDLE pcon_owner =
|
|
|
|
OpenProcess (PROCESS_DUP_HANDLE, FALSE, p->exec_dwProcessId);
|
|
|
|
DuplicateHandle (pcon_owner, get_ttyp ()->h_pcon_write_pipe,
|
|
|
|
GetCurrentProcess (), &hpcon_local.hWritePipe,
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS);
|
|
|
|
ResizePseudoConsole ((HPCON) &hpcon_local, size);
|
|
|
|
CloseHandle (pcon_owner);
|
|
|
|
CloseHandle (hpcon_local.hWritePipe);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-06 06:30:53 +08:00
|
|
|
void
|
|
|
|
fhandler_pty_master::cleanup ()
|
|
|
|
{
|
|
|
|
report_tty_counts (this, "closing master", "");
|
2011-10-16 06:37:30 +08:00
|
|
|
if (archetype)
|
2019-08-28 02:04:02 +08:00
|
|
|
from_master = from_master_cyg =
|
|
|
|
to_master = to_master_cyg = from_slave = to_slave = NULL;
|
2013-10-23 04:41:09 +08:00
|
|
|
fhandler_base::cleanup ();
|
2011-05-06 06:30:53 +08:00
|
|
|
}
|
|
|
|
|
2000-02-18 03:38:33 +08:00
|
|
|
int
|
|
|
|
fhandler_pty_master::close ()
|
|
|
|
{
|
2015-05-28 22:06:49 +08:00
|
|
|
OBJECT_BASIC_INFORMATION obi;
|
|
|
|
NTSTATUS status;
|
|
|
|
|
2019-08-28 02:04:02 +08:00
|
|
|
termios_printf ("closing from_master(%p)/from_master_cyg(%p)/to_master(%p)/to_master_cyg(%p) since we own them(%u)",
|
|
|
|
from_master, from_master_cyg,
|
|
|
|
to_master, to_master_cyg, dwProcessId);
|
2009-06-15 07:42:09 +08:00
|
|
|
if (cygwin_finished_initializing)
|
|
|
|
{
|
2011-05-06 06:30:53 +08:00
|
|
|
if (master_ctl && get_ttyp ()->master_pid == myself->pid)
|
2010-04-20 03:52:43 +08:00
|
|
|
{
|
|
|
|
char buf[MAX_PATH];
|
|
|
|
pipe_request req = { (DWORD) -1 };
|
|
|
|
pipe_reply repl;
|
|
|
|
DWORD len;
|
|
|
|
|
2011-06-15 05:48:43 +08:00
|
|
|
__small_sprintf (buf, "\\\\.\\pipe\\cygwin-%S-pty%d-master-ctl",
|
2013-04-23 17:44:36 +08:00
|
|
|
&cygheap->installation_key, get_minor ());
|
2015-03-05 21:58:03 +08:00
|
|
|
acquire_output_mutex (INFINITE);
|
|
|
|
if (master_ctl)
|
|
|
|
{
|
|
|
|
CallNamedPipe (buf, &req, sizeof req, &repl, sizeof repl, &len,
|
|
|
|
500);
|
|
|
|
CloseHandle (master_ctl);
|
|
|
|
master_thread->detach ();
|
|
|
|
get_ttyp ()->set_master_ctl_closed ();
|
|
|
|
master_ctl = NULL;
|
|
|
|
}
|
|
|
|
release_output_mutex ();
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
master_fwd_thread->terminate_thread ();
|
2021-01-18 21:10:57 +08:00
|
|
|
CloseHandle (attach_mutex);
|
2010-04-20 03:52:43 +08:00
|
|
|
}
|
2009-06-15 07:42:09 +08:00
|
|
|
}
|
2011-10-16 06:37:30 +08:00
|
|
|
|
2015-03-12 22:48:10 +08:00
|
|
|
/* Check if the last master handle has been closed. If so, set
|
|
|
|
input_available_event to wake up potentially waiting slaves. */
|
2015-05-28 22:06:49 +08:00
|
|
|
acquire_output_mutex (INFINITE);
|
|
|
|
status = NtQueryObject (get_output_handle (), ObjectBasicInformation,
|
|
|
|
&obi, sizeof obi, NULL);
|
|
|
|
fhandler_pty_common::close ();
|
|
|
|
release_output_mutex ();
|
|
|
|
if (!ForceCloseHandle (output_mutex))
|
|
|
|
termios_printf ("CloseHandle (output_mutex<%p>), %E", output_mutex);
|
|
|
|
if (!NT_SUCCESS (status))
|
|
|
|
debug_printf ("NtQueryObject: %y", status);
|
2020-01-14 12:10:54 +08:00
|
|
|
else if (obi.HandleCount == 1)
|
2015-05-28 22:06:49 +08:00
|
|
|
{
|
2019-09-15 12:36:23 +08:00
|
|
|
termios_printf ("Closing last master of pty%d", get_minor ());
|
2015-06-08 20:07:42 +08:00
|
|
|
if (get_ttyp ()->getsid () > 0)
|
|
|
|
kill (get_ttyp ()->getsid (), SIGHUP);
|
2015-05-28 22:06:49 +08:00
|
|
|
SetEvent (input_available_event);
|
|
|
|
}
|
2015-03-12 22:48:10 +08:00
|
|
|
|
2011-10-16 06:37:30 +08:00
|
|
|
if (!ForceCloseHandle (from_master))
|
|
|
|
termios_printf ("error closing from_master %p, %E", from_master);
|
2020-08-19 19:25:21 +08:00
|
|
|
if (!ForceCloseHandle (from_master_cyg))
|
|
|
|
termios_printf ("error closing from_master_cyg %p, %E", from_master_cyg);
|
2011-10-16 06:37:30 +08:00
|
|
|
if (!ForceCloseHandle (to_master))
|
2015-03-12 22:48:10 +08:00
|
|
|
termios_printf ("error closing to_master %p, %E", to_master);
|
2011-10-16 06:37:30 +08:00
|
|
|
from_master = to_master = NULL;
|
2019-08-28 02:04:02 +08:00
|
|
|
if (!ForceCloseHandle (from_slave))
|
|
|
|
termios_printf ("error closing from_slave %p, %E", from_slave);
|
|
|
|
from_slave = NULL;
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
if (!ForceCloseHandle (to_master_cyg))
|
|
|
|
termios_printf ("error closing to_master_cyg %p, %E", to_master_cyg);
|
2019-08-28 02:04:02 +08:00
|
|
|
to_master_cyg = from_master_cyg = NULL;
|
2015-03-05 20:57:34 +08:00
|
|
|
ForceCloseHandle (echo_r);
|
|
|
|
ForceCloseHandle (echo_w);
|
|
|
|
echo_r = echo_w = NULL;
|
2019-08-28 02:04:02 +08:00
|
|
|
if (to_slave)
|
|
|
|
ForceCloseHandle (to_slave);
|
|
|
|
to_slave = NULL;
|
2011-10-16 06:37:30 +08:00
|
|
|
|
2011-11-14 09:29:49 +08:00
|
|
|
if (have_execed || get_ttyp ()->master_pid != myself->pid)
|
2019-08-28 02:04:02 +08:00
|
|
|
termios_printf ("not clearing: %d, master_pid %d",
|
|
|
|
have_execed, get_ttyp ()->master_pid);
|
2011-12-10 00:02:56 +08:00
|
|
|
if (!ForceCloseHandle (input_available_event))
|
2019-08-28 02:04:02 +08:00
|
|
|
termios_printf ("CloseHandle (input_available_event<%p>), %E",
|
|
|
|
input_available_event);
|
2000-02-18 03:38:33 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-07-25 04:54:33 +08:00
|
|
|
ssize_t __stdcall
|
2000-02-18 03:38:33 +08:00
|
|
|
fhandler_pty_master::write (const void *ptr, size_t len)
|
|
|
|
{
|
2014-11-14 02:37:15 +08:00
|
|
|
ssize_t ret;
|
2002-12-06 00:24:52 +08:00
|
|
|
char *p = (char *) ptr;
|
2011-06-04 08:12:29 +08:00
|
|
|
termios ti = tc ()->ti;
|
2002-12-27 11:50:29 +08:00
|
|
|
|
2011-05-06 03:43:04 +08:00
|
|
|
bg_check_types bg = bg_check (SIGTTOU);
|
|
|
|
if (bg <= bg_eof)
|
|
|
|
return (ssize_t) bg;
|
|
|
|
|
|
|
|
push_process_state process_state (PID_TTYOU);
|
2019-08-28 02:04:02 +08:00
|
|
|
|
2021-02-11 17:09:42 +08:00
|
|
|
if (get_ttyp ()->pcon_start)
|
2019-08-28 02:04:02 +08:00
|
|
|
{
|
2021-02-11 17:09:42 +08:00
|
|
|
/* Pseudo condole support uses "CSI6n" to get cursor position.
|
|
|
|
If the reply for "CSI6n" is divided into multiple writes,
|
|
|
|
pseudo console sometimes does not recognize it. Therefore,
|
|
|
|
put them together into wpbuf and write all at once. */
|
|
|
|
static const int wpbuf_len = strlen ("\033[32768;32868R");
|
|
|
|
static char wpbuf[wpbuf_len];
|
|
|
|
static int ixput = 0;
|
|
|
|
static int state = 0;
|
2019-08-28 02:04:02 +08:00
|
|
|
|
2021-02-11 17:09:42 +08:00
|
|
|
DWORD n;
|
2020-02-09 22:46:02 +08:00
|
|
|
WaitForSingleObject (input_mutex, INFINITE);
|
2021-02-11 17:09:42 +08:00
|
|
|
for (size_t i = 0; i < len; i++)
|
2019-09-14 05:48:14 +08:00
|
|
|
{
|
2021-02-11 17:09:42 +08:00
|
|
|
if (p[i] == '\033')
|
2020-08-31 17:48:54 +08:00
|
|
|
{
|
2021-02-11 17:09:42 +08:00
|
|
|
if (ixput)
|
|
|
|
line_edit (wpbuf, ixput, ti, &ret);
|
2020-08-31 17:48:54 +08:00
|
|
|
ixput = 0;
|
2021-02-11 17:09:42 +08:00
|
|
|
state = 1;
|
2020-02-09 22:46:59 +08:00
|
|
|
}
|
2021-02-11 17:09:42 +08:00
|
|
|
if (state == 1)
|
2020-08-31 17:48:54 +08:00
|
|
|
{
|
2021-02-11 17:09:42 +08:00
|
|
|
if (ixput < wpbuf_len)
|
|
|
|
wpbuf[ixput++] = p[i];
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!get_ttyp ()->req_xfer_input)
|
|
|
|
WriteFile (to_slave, wpbuf, ixput, &n, NULL);
|
|
|
|
ixput = 0;
|
|
|
|
wpbuf[ixput++] = p[i];
|
|
|
|
}
|
2020-08-31 17:48:54 +08:00
|
|
|
}
|
2021-02-11 17:09:42 +08:00
|
|
|
else
|
|
|
|
line_edit (p + i, 1, ti, &ret);
|
|
|
|
if (state == 1 && p[i] == 'R')
|
|
|
|
state = 2;
|
|
|
|
}
|
|
|
|
if (state == 2)
|
|
|
|
{
|
|
|
|
if (!get_ttyp ()->req_xfer_input)
|
|
|
|
WriteFile (to_slave, wpbuf, ixput, &n, NULL);
|
|
|
|
ixput = 0;
|
|
|
|
state = 0;
|
|
|
|
get_ttyp ()->req_xfer_input = false;
|
|
|
|
get_ttyp ()->pcon_start = false;
|
|
|
|
}
|
|
|
|
ReleaseMutex (input_mutex);
|
|
|
|
|
|
|
|
if (!get_ttyp ()->pcon_start)
|
|
|
|
{
|
|
|
|
pinfo pp (get_ttyp ()->pcon_start_pid);
|
|
|
|
bool pcon_fg = (pp && get_ttyp ()->getpgid () == pp->pgid);
|
|
|
|
/* GDB may set WINPID rather than cygwin PID to process group
|
|
|
|
when the debugged process is a non-cygwin process.*/
|
|
|
|
pcon_fg |= !pinfo (get_ttyp ()->getpgid ());
|
|
|
|
if (get_ttyp ()->switch_to_pcon_in && pcon_fg
|
|
|
|
&& get_ttyp ()->pcon_input_state_eq (tty::to_cyg))
|
2021-01-28 11:26:11 +08:00
|
|
|
{
|
|
|
|
/* This accept_input() call is needed in order to transfer input
|
|
|
|
which is not accepted yet to non-cygwin pipe. */
|
|
|
|
if (get_readahead_valid ())
|
|
|
|
accept_input ();
|
2021-02-11 17:09:42 +08:00
|
|
|
WaitForSingleObject (input_mutex, INFINITE);
|
|
|
|
fhandler_pty_slave::transfer_input (tty::to_nat, from_master_cyg,
|
|
|
|
get_ttyp (),
|
|
|
|
input_available_event);
|
|
|
|
ReleaseMutex (input_mutex);
|
2021-01-28 11:26:11 +08:00
|
|
|
}
|
2021-02-11 17:09:42 +08:00
|
|
|
get_ttyp ()->pcon_start_pid = 0;
|
2020-08-19 19:25:21 +08:00
|
|
|
}
|
|
|
|
|
2021-02-11 17:09:42 +08:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Write terminal input to to_slave pipe instead of output_handle
|
|
|
|
if current application is native console application. */
|
|
|
|
if (to_be_read_from_pcon () && get_ttyp ()->pcon_activated
|
|
|
|
&& get_ttyp ()->pcon_input_state == tty::to_nat)
|
|
|
|
{
|
|
|
|
tmp_pathbuf tp;
|
|
|
|
char *buf = (char *) ptr;
|
|
|
|
size_t nlen = len;
|
|
|
|
if (get_ttyp ()->term_code_page != CP_UTF8)
|
|
|
|
{
|
|
|
|
static mbstate_t mbp;
|
|
|
|
buf = tp.c_get ();
|
|
|
|
nlen = NT_MAX_PATH;
|
|
|
|
convert_mb_str (CP_UTF8, buf, &nlen,
|
|
|
|
get_ttyp ()->term_code_page, (const char *) ptr, len,
|
|
|
|
&mbp);
|
|
|
|
}
|
2020-08-19 19:25:21 +08:00
|
|
|
|
2021-02-11 17:09:42 +08:00
|
|
|
WaitForSingleObject (input_mutex, INFINITE);
|
|
|
|
DWORD n;
|
|
|
|
WriteFile (to_slave, buf, nlen, &n, NULL);
|
2020-08-19 19:25:21 +08:00
|
|
|
ReleaseMutex (input_mutex);
|
2020-02-09 22:46:02 +08:00
|
|
|
|
2019-08-28 02:04:02 +08:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2020-02-04 20:25:52 +08:00
|
|
|
line_edit_status status = line_edit (p, len, ti, &ret);
|
2014-11-14 02:37:15 +08:00
|
|
|
if (status > line_edit_signalled && status != line_edit_pipe_full)
|
|
|
|
ret = -1;
|
|
|
|
return ret;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
2013-05-01 09:20:37 +08:00
|
|
|
void __reg3
|
2002-12-14 12:01:32 +08:00
|
|
|
fhandler_pty_master::read (void *ptr, size_t& len)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2011-05-06 03:43:04 +08:00
|
|
|
bg_check_types bg = bg_check (SIGTTIN);
|
|
|
|
if (bg <= bg_eof)
|
|
|
|
{
|
|
|
|
len = (size_t) bg;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
push_process_state process_state (PID_TTYIN);
|
2003-09-08 02:27:54 +08:00
|
|
|
len = (size_t) process_slave_output ((char *) ptr, len, pktmode);
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fhandler_pty_master::tcgetattr (struct termios *t)
|
|
|
|
{
|
2013-04-23 17:44:36 +08:00
|
|
|
*t = cygwin_shared->tty[get_minor ()]->ti;
|
2021-01-15 16:32:09 +08:00
|
|
|
/* Workaround for rlwrap v0.40 or later */
|
|
|
|
if (get_ttyp ()->pcon_start)
|
|
|
|
t->c_lflag &= ~(ICANON | ECHO);
|
2021-01-28 11:26:14 +08:00
|
|
|
if (get_ttyp ()->pcon_activated)
|
2021-01-15 16:32:09 +08:00
|
|
|
t->c_iflag &= ~ICRNL;
|
2000-02-18 03:38:33 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-02-21 13:20:38 +08:00
|
|
|
fhandler_pty_master::tcsetattr (int, const struct termios *t)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2013-04-23 17:44:36 +08:00
|
|
|
cygwin_shared->tty[get_minor ()]->ti = *t;
|
2000-02-18 03:38:33 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-09-19 02:54:48 +08:00
|
|
|
fhandler_pty_master::tcflush (int queue)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2003-09-19 02:54:48 +08:00
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
termios_printf ("tcflush(%d) handle %p", queue, get_handle ());
|
|
|
|
|
|
|
|
if (queue == TCIFLUSH || queue == TCIOFLUSH)
|
|
|
|
ret = process_slave_output (NULL, OUT_BUFFER_SIZE, 0);
|
|
|
|
else if (queue == TCIFLUSH || queue == TCIOFLUSH)
|
|
|
|
{
|
|
|
|
/* do nothing for now. */
|
|
|
|
}
|
|
|
|
|
|
|
|
termios_printf ("%d=tcflush(%d)", ret, queue);
|
|
|
|
return ret;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fhandler_pty_master::ioctl (unsigned int cmd, void *arg)
|
|
|
|
{
|
2011-10-16 06:37:30 +08:00
|
|
|
int res = fhandler_termios::ioctl (cmd, arg);
|
2011-10-12 07:20:38 +08:00
|
|
|
if (res <= 0)
|
|
|
|
return res;
|
|
|
|
|
2000-02-18 03:38:33 +08:00
|
|
|
switch (cmd)
|
|
|
|
{
|
2010-10-24 02:07:08 +08:00
|
|
|
case TIOCPKT:
|
|
|
|
pktmode = *(int *) arg;
|
|
|
|
break;
|
|
|
|
case TIOCGWINSZ:
|
|
|
|
*(struct winsize *) arg = get_ttyp ()->winsize;
|
|
|
|
break;
|
|
|
|
case TIOCSWINSZ:
|
|
|
|
if (get_ttyp ()->winsize.ws_row != ((struct winsize *) arg)->ws_row
|
|
|
|
|| get_ttyp ()->winsize.ws_col != ((struct winsize *) arg)->ws_col)
|
|
|
|
{
|
2021-01-28 11:26:14 +08:00
|
|
|
if (get_ttyp ()->pcon_activated && get_ttyp ()->pcon_pid)
|
2020-08-19 19:25:21 +08:00
|
|
|
resize_pseudo_console ((struct winsize *) arg);
|
2010-10-24 02:07:08 +08:00
|
|
|
get_ttyp ()->winsize = *(struct winsize *) arg;
|
2013-01-31 13:26:47 +08:00
|
|
|
get_ttyp ()->kill_pgrp (SIGWINCH);
|
2010-10-24 02:07:08 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TIOCGPGRP:
|
|
|
|
*((pid_t *) arg) = this->tcgetpgrp ();
|
|
|
|
break;
|
|
|
|
case TIOCSPGRP:
|
2013-04-23 17:44:36 +08:00
|
|
|
return this->tcsetpgrp ((pid_t) (intptr_t) arg);
|
2011-07-23 02:50:42 +08:00
|
|
|
case FIONREAD:
|
|
|
|
{
|
2012-04-05 10:54:51 +08:00
|
|
|
DWORD n;
|
2019-08-28 02:04:02 +08:00
|
|
|
if (!bytes_available (n))
|
2011-07-23 02:50:42 +08:00
|
|
|
{
|
2011-07-25 23:19:35 +08:00
|
|
|
set_errno (EINVAL);
|
2011-07-23 02:50:42 +08:00
|
|
|
return -1;
|
|
|
|
}
|
2012-05-04 11:00:43 +08:00
|
|
|
*(int *) arg = (int) n;
|
2011-07-23 02:50:42 +08:00
|
|
|
}
|
2010-10-24 02:07:08 +08:00
|
|
|
break;
|
|
|
|
default:
|
2011-07-23 02:50:42 +08:00
|
|
|
return fhandler_base::ioctl (cmd, arg);
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-11-08 04:05:49 +08:00
|
|
|
int
|
|
|
|
fhandler_pty_master::ptsname_r (char *buf, size_t buflen)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2011-11-08 04:05:49 +08:00
|
|
|
char tmpbuf[TTY_NAME_MAX];
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2013-04-23 17:44:36 +08:00
|
|
|
__ptsname (tmpbuf, get_minor ());
|
2011-11-08 04:05:49 +08:00
|
|
|
if (buflen <= strlen (tmpbuf))
|
|
|
|
{
|
|
|
|
set_errno (ERANGE);
|
|
|
|
return ERANGE;
|
|
|
|
}
|
|
|
|
strcpy (buf, tmpbuf);
|
|
|
|
return 0;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_common::set_close_on_exec (bool val)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2006-06-02 23:41:34 +08:00
|
|
|
// Cygwin processes will handle this specially on exec.
|
|
|
|
close_on_exec (val);
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
2019-09-15 12:05:52 +08:00
|
|
|
void
|
|
|
|
fhandler_pty_slave::setup_locale (void)
|
|
|
|
{
|
2020-09-08 16:36:04 +08:00
|
|
|
extern UINT __eval_codepage_from_internal_charset ();
|
2020-08-15 11:23:52 +08:00
|
|
|
|
2020-09-08 16:36:04 +08:00
|
|
|
if (!get_ttyp ()->term_code_page)
|
2020-09-11 18:54:40 +08:00
|
|
|
{
|
|
|
|
get_ttyp ()->term_code_page = __eval_codepage_from_internal_charset ();
|
|
|
|
SetConsoleCP (get_ttyp ()->term_code_page);
|
|
|
|
SetConsoleOutputCP (get_ttyp ()->term_code_page);
|
|
|
|
}
|
2019-09-15 12:05:52 +08:00
|
|
|
}
|
2019-08-28 02:04:02 +08:00
|
|
|
|
2003-03-04 12:07:34 +08:00
|
|
|
void
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_slave::fixup_after_fork (HANDLE parent)
|
2003-03-04 12:07:34 +08:00
|
|
|
{
|
2006-06-02 23:41:34 +08:00
|
|
|
// fork_fixup (parent, inuse, "inuse");
|
2011-06-15 05:48:43 +08:00
|
|
|
// fhandler_pty_common::fixup_after_fork (parent);
|
2005-11-14 12:28:45 +08:00
|
|
|
report_tty_counts (this, "inherited", "");
|
2003-03-04 12:07:34 +08:00
|
|
|
}
|
|
|
|
|
2000-02-18 03:38:33 +08:00
|
|
|
void
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_slave::fixup_after_exec ()
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2019-08-28 02:04:02 +08:00
|
|
|
reset_switch_to_pcon ();
|
2021-01-18 21:10:57 +08:00
|
|
|
create_invisible_console ();
|
2019-08-28 02:04:02 +08:00
|
|
|
|
2006-06-03 14:35:10 +08:00
|
|
|
if (!close_on_exec ())
|
2020-02-28 20:21:05 +08:00
|
|
|
fixup_after_fork (NULL); /* No parent handle required. */
|
2019-08-28 02:04:02 +08:00
|
|
|
|
|
|
|
/* Hook Console API */
|
|
|
|
#define DO_HOOK(module, name) \
|
2020-08-19 19:25:21 +08:00
|
|
|
if (!name##_Orig) \
|
|
|
|
{ \
|
|
|
|
void *api = hook_api (module, #name, (void *) name##_Hooked); \
|
|
|
|
name##_Orig = (__typeof__ (name) *) api; \
|
|
|
|
/*if (api) system_printf (#name " hooked.");*/ \
|
2019-08-28 02:04:02 +08:00
|
|
|
}
|
2020-08-19 19:25:21 +08:00
|
|
|
/* CreateProcess() is hooked for GDB etc. */
|
|
|
|
DO_HOOK (NULL, CreateProcessA);
|
|
|
|
DO_HOOK (NULL, CreateProcessW);
|
2021-02-11 17:09:42 +08:00
|
|
|
if (CreateProcessA_Orig || CreateProcessW_Orig)
|
|
|
|
DO_HOOK (NULL, exit);
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
2010-04-20 03:52:43 +08:00
|
|
|
/* This thread function handles the master control pipe. It waits for a
|
|
|
|
client to connect. Then it checks if the client process has permissions
|
|
|
|
to access the tty handles. If so, it opens the client process and
|
|
|
|
duplicates the handles into that process. If that fails, it sends a reply
|
|
|
|
with at least one handle set to NULL and an error code. Last but not
|
|
|
|
least, the client is disconnected and the thread waits for the next client.
|
|
|
|
|
|
|
|
A special case is when the master side of the tty is about to be closed.
|
|
|
|
The client side is the fhandler_pty_master::close function and it sends
|
2015-12-16 04:49:19 +08:00
|
|
|
a PID -1 in that case. A check is performed that the request to leave
|
|
|
|
really comes from the master process itself.
|
2010-04-20 03:52:43 +08:00
|
|
|
|
2010-10-25 02:50:57 +08:00
|
|
|
Since there's always only one pipe instance, there's a chance that clients
|
|
|
|
have to wait to connect to the master control pipe. Therefore the client
|
|
|
|
calls to CallNamedPipe should have a big enough timeout value. For now this
|
2010-04-20 03:52:43 +08:00
|
|
|
is 500ms. Hope that's enough. */
|
|
|
|
|
2021-01-15 16:32:13 +08:00
|
|
|
/* The function pty_master_thread() should be static because the instance
|
|
|
|
is deleted if the master is dup()'ed and the original is closed. In
|
|
|
|
this case, dup()'ed instance still exists, therefore, master thread
|
|
|
|
is also still alive even though the instance has been deleted. As a
|
|
|
|
result, accesing member variables in this function causes access
|
|
|
|
violation. */
|
|
|
|
|
2010-04-20 03:52:43 +08:00
|
|
|
DWORD
|
2021-01-15 16:32:13 +08:00
|
|
|
fhandler_pty_master::pty_master_thread (const master_thread_param_t *p)
|
2010-04-20 03:52:43 +08:00
|
|
|
{
|
|
|
|
bool exit = false;
|
|
|
|
GENERIC_MAPPING map = { EVENT_QUERY_STATE, EVENT_MODIFY_STATE, 0,
|
|
|
|
EVENT_QUERY_STATE | EVENT_MODIFY_STATE };
|
|
|
|
pipe_request req;
|
|
|
|
DWORD len;
|
|
|
|
security_descriptor sd;
|
|
|
|
HANDLE token;
|
|
|
|
PRIVILEGE_SET ps;
|
|
|
|
DWORD pid;
|
2011-04-29 17:48:25 +08:00
|
|
|
NTSTATUS status;
|
2010-04-20 03:52:43 +08:00
|
|
|
|
|
|
|
termios_printf ("Entered");
|
2021-01-15 16:32:13 +08:00
|
|
|
while (!exit && (ConnectNamedPipe (p->master_ctl, NULL)
|
2011-04-29 17:48:25 +08:00
|
|
|
|| GetLastError () == ERROR_PIPE_CONNECTED))
|
2010-04-20 03:52:43 +08:00
|
|
|
{
|
2021-01-28 11:26:11 +08:00
|
|
|
pipe_reply repl = { NULL, NULL, NULL, NULL, NULL, NULL, 0 };
|
2010-04-20 03:52:43 +08:00
|
|
|
bool deimp = false;
|
2011-04-29 17:48:25 +08:00
|
|
|
NTSTATUS allow = STATUS_ACCESS_DENIED;
|
2010-04-20 03:52:43 +08:00
|
|
|
ACCESS_MASK access = EVENT_MODIFY_STATE;
|
|
|
|
HANDLE client = NULL;
|
|
|
|
|
2021-01-15 16:32:13 +08:00
|
|
|
if (!ReadFile (p->master_ctl, &req, sizeof req, &len, NULL))
|
2011-06-06 13:02:13 +08:00
|
|
|
{
|
2010-04-20 03:52:43 +08:00
|
|
|
termios_printf ("ReadFile, %E");
|
|
|
|
goto reply;
|
|
|
|
}
|
2021-01-15 16:32:13 +08:00
|
|
|
if (!GetNamedPipeClientProcessId (p->master_ctl, &pid))
|
2010-04-20 03:52:43 +08:00
|
|
|
pid = req.pid;
|
2021-01-15 16:32:13 +08:00
|
|
|
if (get_object_sd (p->input_available_event, sd))
|
2010-04-20 03:52:43 +08:00
|
|
|
{
|
|
|
|
termios_printf ("get_object_sd, %E");
|
|
|
|
goto reply;
|
|
|
|
}
|
|
|
|
cygheap->user.deimpersonate ();
|
|
|
|
deimp = true;
|
2021-01-15 16:32:13 +08:00
|
|
|
if (!ImpersonateNamedPipeClient (p->master_ctl))
|
2010-04-20 03:52:43 +08:00
|
|
|
{
|
|
|
|
termios_printf ("ImpersonateNamedPipeClient, %E");
|
|
|
|
goto reply;
|
|
|
|
}
|
2011-04-29 17:48:25 +08:00
|
|
|
status = NtOpenThreadToken (GetCurrentThread (), TOKEN_QUERY, TRUE,
|
|
|
|
&token);
|
|
|
|
if (!NT_SUCCESS (status))
|
2010-04-20 03:52:43 +08:00
|
|
|
{
|
2013-04-23 17:44:36 +08:00
|
|
|
termios_printf ("NtOpenThreadToken, %y", status);
|
2011-04-29 17:48:25 +08:00
|
|
|
SetLastError (RtlNtStatusToDosError (status));
|
2010-04-20 03:52:43 +08:00
|
|
|
goto reply;
|
|
|
|
}
|
|
|
|
len = sizeof ps;
|
2011-04-29 17:48:25 +08:00
|
|
|
status = NtAccessCheck (sd, token, access, &map, &ps, &len, &access,
|
|
|
|
&allow);
|
|
|
|
NtClose (token);
|
|
|
|
if (!NT_SUCCESS (status))
|
2010-04-20 03:52:43 +08:00
|
|
|
{
|
2013-04-23 17:44:36 +08:00
|
|
|
termios_printf ("NtAccessCheck, %y", status);
|
2011-04-29 17:48:25 +08:00
|
|
|
SetLastError (RtlNtStatusToDosError (status));
|
2010-04-20 03:52:43 +08:00
|
|
|
goto reply;
|
|
|
|
}
|
|
|
|
if (!RevertToSelf ())
|
|
|
|
{
|
|
|
|
termios_printf ("RevertToSelf, %E");
|
|
|
|
goto reply;
|
|
|
|
}
|
|
|
|
if (req.pid == (DWORD) -1) /* Request to finish thread. */
|
|
|
|
{
|
2015-12-16 04:49:19 +08:00
|
|
|
/* Check if the requesting process is the master process itself. */
|
|
|
|
if (pid == GetCurrentProcessId ())
|
2010-04-20 03:52:43 +08:00
|
|
|
exit = true;
|
|
|
|
goto reply;
|
|
|
|
}
|
2011-04-29 17:48:25 +08:00
|
|
|
if (NT_SUCCESS (allow))
|
2010-04-20 03:52:43 +08:00
|
|
|
{
|
|
|
|
client = OpenProcess (PROCESS_DUP_HANDLE, FALSE, pid);
|
|
|
|
if (!client)
|
|
|
|
{
|
|
|
|
termios_printf ("OpenProcess, %E");
|
|
|
|
goto reply;
|
|
|
|
}
|
2021-01-15 16:32:13 +08:00
|
|
|
if (!DuplicateHandle (GetCurrentProcess (), p->from_master,
|
2010-04-20 03:52:43 +08:00
|
|
|
client, &repl.from_master,
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS))
|
|
|
|
{
|
|
|
|
termios_printf ("DuplicateHandle (from_master), %E");
|
|
|
|
goto reply;
|
|
|
|
}
|
2021-01-15 16:32:13 +08:00
|
|
|
if (!DuplicateHandle (GetCurrentProcess (), p->from_master_cyg,
|
2019-08-28 02:04:02 +08:00
|
|
|
client, &repl.from_master_cyg,
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS))
|
|
|
|
{
|
|
|
|
termios_printf ("DuplicateHandle (from_master_cyg), %E");
|
|
|
|
goto reply;
|
|
|
|
}
|
2021-01-15 16:32:13 +08:00
|
|
|
if (!DuplicateHandle (GetCurrentProcess (), p->to_master,
|
2010-04-20 03:52:43 +08:00
|
|
|
client, &repl.to_master,
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS))
|
|
|
|
{
|
|
|
|
termios_printf ("DuplicateHandle (to_master), %E");
|
|
|
|
goto reply;
|
|
|
|
}
|
2021-01-15 16:32:13 +08:00
|
|
|
if (!DuplicateHandle (GetCurrentProcess (), p->to_master_cyg,
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
client, &repl.to_master_cyg,
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS))
|
|
|
|
{
|
|
|
|
termios_printf ("DuplicateHandle (to_master_cyg), %E");
|
|
|
|
goto reply;
|
|
|
|
}
|
2021-01-28 11:26:11 +08:00
|
|
|
if (!DuplicateHandle (GetCurrentProcess (), p->to_slave,
|
|
|
|
client, &repl.to_slave,
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS))
|
|
|
|
{
|
|
|
|
termios_printf ("DuplicateHandle (to_slave), %E");
|
|
|
|
goto reply;
|
|
|
|
}
|
|
|
|
if (!DuplicateHandle (GetCurrentProcess (), p->to_slave_cyg,
|
|
|
|
client, &repl.to_slave_cyg,
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS))
|
|
|
|
{
|
|
|
|
termios_printf ("DuplicateHandle (to_slave_cyg), %E");
|
|
|
|
goto reply;
|
|
|
|
}
|
2010-04-20 03:52:43 +08:00
|
|
|
}
|
|
|
|
reply:
|
|
|
|
repl.error = GetLastError ();
|
|
|
|
if (client)
|
|
|
|
CloseHandle (client);
|
|
|
|
if (deimp)
|
|
|
|
cygheap->user.reimpersonate ();
|
|
|
|
sd.free ();
|
2013-04-23 17:44:36 +08:00
|
|
|
termios_printf ("Reply: from %p, to %p, error %u",
|
2010-04-20 03:52:43 +08:00
|
|
|
repl.from_master, repl.to_master, repl.error );
|
2021-01-15 16:32:13 +08:00
|
|
|
if (!WriteFile (p->master_ctl, &repl, sizeof repl, &len, NULL))
|
2010-04-20 03:52:43 +08:00
|
|
|
termios_printf ("WriteFile, %E");
|
2021-01-15 16:32:13 +08:00
|
|
|
if (!DisconnectNamedPipe (p->master_ctl))
|
2010-04-20 03:52:43 +08:00
|
|
|
termios_printf ("DisconnectNamedPipe, %E");
|
|
|
|
}
|
|
|
|
termios_printf ("Leaving");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DWORD WINAPI
|
2011-05-06 06:30:53 +08:00
|
|
|
pty_master_thread (VOID *arg)
|
|
|
|
{
|
2021-01-15 16:32:13 +08:00
|
|
|
fhandler_pty_master::master_thread_param_t p;
|
|
|
|
((fhandler_pty_master *) arg)->get_master_thread_param (&p);
|
|
|
|
return fhandler_pty_master::pty_master_thread (&p);
|
2011-05-06 06:30:53 +08:00
|
|
|
}
|
2006-06-02 23:41:34 +08:00
|
|
|
|
2021-01-15 16:32:13 +08:00
|
|
|
/* The function pty_master_fwd_thread() should be static because the
|
|
|
|
instance is deleted if the master is dup()'ed and the original is
|
|
|
|
closed. In this case, dup()'ed instance still exists, therefore,
|
|
|
|
master forwarding thread is also still alive even though the instance
|
|
|
|
has been deleted. As a result, accesing member variables in this
|
|
|
|
function causes access violation. */
|
|
|
|
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
DWORD
|
2021-01-15 16:32:13 +08:00
|
|
|
fhandler_pty_master::pty_master_fwd_thread (const master_fwd_thread_param_t *p)
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
{
|
|
|
|
DWORD rlen;
|
2020-09-09 23:27:59 +08:00
|
|
|
tmp_pathbuf tp;
|
|
|
|
char *outbuf = tp.c_get ();
|
|
|
|
char *mbbuf = tp.c_get ();
|
|
|
|
static mbstate_t mbp;
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
|
2019-08-28 02:04:02 +08:00
|
|
|
termios_printf ("Started.");
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
for (;;)
|
|
|
|
{
|
2021-01-15 16:32:13 +08:00
|
|
|
p->ttyp->pcon_last_time = GetTickCount ();
|
|
|
|
if (!ReadFile (p->from_slave, outbuf, NT_MAX_PATH, &rlen, NULL))
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
{
|
|
|
|
termios_printf ("ReadFile for forwarding failed, %E");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ssize_t wlen = rlen;
|
2019-08-28 02:04:02 +08:00
|
|
|
char *ptr = outbuf;
|
2021-01-28 11:26:14 +08:00
|
|
|
if (p->ttyp->pcon_activated)
|
2019-08-28 02:04:02 +08:00
|
|
|
{
|
2021-01-28 11:26:11 +08:00
|
|
|
/* Avoid setting window title to "cygwin-console-helper.exe" */
|
2019-08-28 02:04:02 +08:00
|
|
|
int state = 0;
|
|
|
|
int start_at = 0;
|
2021-01-28 11:26:11 +08:00
|
|
|
for (DWORD i=0; i<rlen; i++)
|
|
|
|
if (outbuf[i] == '\033')
|
|
|
|
{
|
|
|
|
start_at = i;
|
|
|
|
state = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if ((state == 1 && outbuf[i] == ']') ||
|
|
|
|
(state == 2 && outbuf[i] == '0') ||
|
|
|
|
(state == 3 && outbuf[i] == ';'))
|
|
|
|
{
|
|
|
|
state ++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if (state == 4 && outbuf[i] == '\a')
|
|
|
|
{
|
|
|
|
const char *helper_str = "\\bin\\cygwin-console-helper.exe";
|
|
|
|
if (memmem (&outbuf[start_at], i + 1 - start_at,
|
|
|
|
helper_str, strlen (helper_str)))
|
|
|
|
{
|
|
|
|
memmove (&outbuf[start_at], &outbuf[i+1], rlen-i-1);
|
|
|
|
rlen = wlen = start_at + rlen - i - 1;
|
|
|
|
}
|
|
|
|
state = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if (outbuf[i] == '\a')
|
|
|
|
{
|
|
|
|
state = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove CSI > Pm m */
|
|
|
|
state = 0;
|
|
|
|
start_at = 0;
|
2020-11-23 19:03:04 +08:00
|
|
|
for (DWORD i = 0; i < rlen; i++)
|
2019-08-28 02:04:02 +08:00
|
|
|
if (outbuf[i] == '\033')
|
|
|
|
{
|
|
|
|
start_at = i;
|
|
|
|
state = 1;
|
|
|
|
continue;
|
|
|
|
}
|
2020-08-19 19:25:21 +08:00
|
|
|
else if ((state == 1 && outbuf[i] == '[')
|
|
|
|
|| (state == 2 && outbuf[i] == '>'))
|
2020-06-30 19:12:13 +08:00
|
|
|
{
|
|
|
|
state ++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if (state == 3 && (isdigit (outbuf[i]) || outbuf[i] == ';'))
|
|
|
|
continue;
|
|
|
|
else if (state == 3 && outbuf[i] == 'm')
|
|
|
|
{
|
|
|
|
memmove (&outbuf[start_at], &outbuf[i+1], rlen-i-1);
|
|
|
|
rlen = wlen = start_at + rlen - i - 1;
|
|
|
|
state = 0;
|
2020-11-23 19:03:02 +08:00
|
|
|
i = start_at - 1;
|
2020-06-30 19:12:13 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
state = 0;
|
|
|
|
|
2020-11-23 19:03:03 +08:00
|
|
|
/* Remove OSC Ps ; ? BEL/ST */
|
|
|
|
for (DWORD i = 0; i < rlen; i++)
|
|
|
|
if (state == 0 && outbuf[i] == '\033')
|
|
|
|
{
|
|
|
|
start_at = i;
|
|
|
|
state = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if ((state == 1 && outbuf[i] == ']')
|
|
|
|
|| (state == 2 && outbuf[i] == ';')
|
|
|
|
|| (state == 3 && outbuf[i] == '?')
|
|
|
|
|| (state == 4 && outbuf[i] == '\033'))
|
|
|
|
{
|
|
|
|
state ++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if (state == 2 && isdigit (outbuf[i]))
|
|
|
|
continue;
|
|
|
|
else if ((state == 4 && outbuf[i] == '\a')
|
|
|
|
|| (state == 5 && outbuf[i] == '\\'))
|
|
|
|
{
|
|
|
|
memmove (&outbuf[start_at], &outbuf[i+1], rlen-i-1);
|
|
|
|
rlen = wlen = start_at + rlen - i - 1;
|
|
|
|
state = 0;
|
|
|
|
i = start_at - 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
state = 0;
|
|
|
|
|
2021-01-15 16:32:13 +08:00
|
|
|
if (p->ttyp->term_code_page != CP_UTF8)
|
2020-09-09 23:27:59 +08:00
|
|
|
{
|
|
|
|
size_t nlen = NT_MAX_PATH;
|
2021-01-15 16:32:13 +08:00
|
|
|
convert_mb_str (p->ttyp->term_code_page, mbbuf, &nlen,
|
2020-09-09 23:27:59 +08:00
|
|
|
CP_UTF8, ptr, wlen, &mbp);
|
2019-09-18 22:29:19 +08:00
|
|
|
|
2020-09-09 23:27:59 +08:00
|
|
|
ptr = mbbuf;
|
|
|
|
wlen = rlen = nlen;
|
|
|
|
}
|
2019-08-28 02:04:02 +08:00
|
|
|
|
|
|
|
/* OPOST processing was already done in pseudo console,
|
|
|
|
so just write it to to_master_cyg. */
|
|
|
|
DWORD written;
|
|
|
|
while (rlen>0)
|
|
|
|
{
|
2021-01-15 16:32:13 +08:00
|
|
|
if (!WriteFile (p->to_master_cyg, ptr, wlen, &written, NULL))
|
2019-08-28 02:04:02 +08:00
|
|
|
{
|
|
|
|
termios_printf ("WriteFile for forwarding failed, %E");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ptr += written;
|
|
|
|
wlen = (rlen -= written);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2019-09-18 22:29:20 +08:00
|
|
|
|
2021-01-18 21:10:57 +08:00
|
|
|
UINT cp_from;
|
2021-01-15 16:32:13 +08:00
|
|
|
pinfo pinfo_target = pinfo (p->ttyp->invisible_console_pid);
|
2021-01-18 21:10:57 +08:00
|
|
|
DWORD target_pid = 0;
|
|
|
|
if (pinfo_target)
|
|
|
|
target_pid = pinfo_target->dwProcessId;
|
|
|
|
pinfo pinfo_resume = pinfo (myself->ppid);
|
|
|
|
DWORD resume_pid;
|
|
|
|
if (pinfo_resume)
|
|
|
|
resume_pid = pinfo_resume->dwProcessId;
|
|
|
|
else
|
|
|
|
resume_pid = get_console_process_id (myself->dwProcessId, false);
|
|
|
|
if (target_pid && resume_pid)
|
|
|
|
{
|
|
|
|
/* Slave attaches to a different console than master.
|
|
|
|
Therefore reattach here. */
|
|
|
|
WaitForSingleObject (attach_mutex, INFINITE);
|
|
|
|
FreeConsole ();
|
|
|
|
AttachConsole (target_pid);
|
|
|
|
cp_from = GetConsoleOutputCP ();
|
|
|
|
FreeConsole ();
|
|
|
|
AttachConsole (resume_pid);
|
|
|
|
ReleaseMutex (attach_mutex);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
cp_from = GetConsoleOutputCP ();
|
|
|
|
|
2021-01-15 16:32:13 +08:00
|
|
|
if (p->ttyp->term_code_page != cp_from)
|
2020-09-09 23:27:59 +08:00
|
|
|
{
|
|
|
|
size_t nlen = NT_MAX_PATH;
|
2021-01-15 16:32:13 +08:00
|
|
|
convert_mb_str (p->ttyp->term_code_page, mbbuf, &nlen,
|
2020-09-09 23:27:59 +08:00
|
|
|
cp_from, ptr, wlen, &mbp);
|
|
|
|
|
|
|
|
ptr = mbbuf;
|
|
|
|
wlen = rlen = nlen;
|
|
|
|
}
|
|
|
|
|
2021-01-15 16:32:13 +08:00
|
|
|
WaitForSingleObject (p->output_mutex, INFINITE);
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
while (rlen>0)
|
|
|
|
{
|
2021-01-15 16:32:13 +08:00
|
|
|
if (!process_opost_output (p->to_master_cyg, ptr, wlen, false,
|
|
|
|
p->ttyp, false))
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
{
|
|
|
|
termios_printf ("WriteFile for forwarding failed, %E");
|
|
|
|
break;
|
|
|
|
}
|
2019-08-28 02:04:02 +08:00
|
|
|
ptr += wlen;
|
|
|
|
wlen = (rlen -= wlen);
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
}
|
2021-01-15 16:32:13 +08:00
|
|
|
ReleaseMutex (p->output_mutex);
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DWORD WINAPI
|
|
|
|
pty_master_fwd_thread (VOID *arg)
|
|
|
|
{
|
2021-01-15 16:32:13 +08:00
|
|
|
fhandler_pty_master::master_fwd_thread_param_t p;
|
|
|
|
((fhandler_pty_master *) arg)->get_master_fwd_thread_param (&p);
|
|
|
|
return fhandler_pty_master::pty_master_fwd_thread (&p);
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
}
|
|
|
|
|
2021-01-28 11:26:13 +08:00
|
|
|
inline static bool
|
|
|
|
is_running_as_service (void)
|
|
|
|
{
|
|
|
|
return check_token_membership (well_known_service_sid)
|
|
|
|
|| cygheap->user.saved_sid () == well_known_system_sid;
|
|
|
|
}
|
|
|
|
|
2006-06-02 23:41:34 +08:00
|
|
|
bool
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_master::setup ()
|
2006-06-02 23:41:34 +08:00
|
|
|
{
|
2008-03-23 05:04:16 +08:00
|
|
|
int res;
|
2010-04-20 03:52:43 +08:00
|
|
|
security_descriptor sd;
|
|
|
|
SECURITY_ATTRIBUTES sa = { sizeof (SECURITY_ATTRIBUTES), NULL, TRUE };
|
|
|
|
|
2011-10-16 06:37:30 +08:00
|
|
|
/* Find an unallocated pty to use. */
|
2019-08-28 02:04:02 +08:00
|
|
|
int unit = cygwin_shared->tty.allocate (from_master_cyg, get_output_handle ());
|
2011-10-16 06:37:30 +08:00
|
|
|
if (unit < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
ProtectHandle1 (get_output_handle (), to_pty);
|
|
|
|
|
|
|
|
tty& t = *cygwin_shared->tty[unit];
|
|
|
|
_tc = (tty_min *) &t;
|
2006-06-04 05:44:01 +08:00
|
|
|
|
2011-06-04 08:12:29 +08:00
|
|
|
tcinit (true); /* Set termios information. Force initialization. */
|
2006-06-02 23:41:34 +08:00
|
|
|
|
|
|
|
const char *errstr = NULL;
|
|
|
|
DWORD pipe_mode = PIPE_NOWAIT;
|
|
|
|
|
2008-07-27 03:35:21 +08:00
|
|
|
if (!SetNamedPipeHandleState (get_output_handle (), &pipe_mode, NULL, NULL))
|
|
|
|
termios_printf ("can't set output_handle(%p) to non-blocking mode",
|
|
|
|
get_output_handle ());
|
2006-06-02 23:41:34 +08:00
|
|
|
|
2019-09-15 12:36:23 +08:00
|
|
|
char pipename[sizeof ("ptyNNNN-to-master-cyg")];
|
2011-10-16 06:37:30 +08:00
|
|
|
__small_sprintf (pipename, "pty%d-to-master", unit);
|
2019-08-28 02:04:02 +08:00
|
|
|
res = fhandler_pipe::create (&sec_none, &from_slave, &to_master,
|
2011-11-24 02:56:57 +08:00
|
|
|
fhandler_pty_common::pipesize, pipename, 0);
|
2008-03-23 05:04:16 +08:00
|
|
|
if (res)
|
2006-06-02 23:41:34 +08:00
|
|
|
{
|
|
|
|
errstr = "output pipe";
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
__small_sprintf (pipename, "pty%d-to-master-cyg", unit);
|
2019-08-28 02:04:02 +08:00
|
|
|
res = fhandler_pipe::create (&sec_none, &get_handle (), &to_master_cyg,
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
fhandler_pty_common::pipesize, pipename, 0);
|
|
|
|
if (res)
|
|
|
|
{
|
|
|
|
errstr = "output pipe for cygwin";
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2021-01-15 16:32:13 +08:00
|
|
|
__small_sprintf (pipename, "pty%d-to-slave", unit);
|
2021-01-28 11:26:13 +08:00
|
|
|
/* FILE_FLAG_OVERLAPPED is specified here in order to prevent
|
|
|
|
PeekNamedPipe() from blocking in transfer_input().
|
|
|
|
Accordig to the official document, in order to access the handle
|
|
|
|
opened with FILE_FLAG_OVERLAPPED, it is mandatory to pass the
|
|
|
|
OVERLAPP structure, but in fact, it seems that the access will
|
|
|
|
fallback to the blocking access if it is not specified. */
|
2021-01-15 16:32:13 +08:00
|
|
|
res = fhandler_pipe::create (&sec_none, &from_master, &to_slave,
|
2021-01-28 11:26:13 +08:00
|
|
|
fhandler_pty_common::pipesize, pipename,
|
|
|
|
FILE_FLAG_OVERLAPPED);
|
2021-01-15 16:32:13 +08:00
|
|
|
if (res)
|
|
|
|
{
|
|
|
|
errstr = "input pipe";
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2019-08-28 02:04:02 +08:00
|
|
|
ProtectHandle1 (from_slave, from_pty);
|
2006-06-02 23:41:34 +08:00
|
|
|
|
2015-03-05 20:57:34 +08:00
|
|
|
__small_sprintf (pipename, "pty%d-echoloop", unit);
|
|
|
|
res = fhandler_pipe::create (&sec_none, &echo_r, &echo_w,
|
|
|
|
fhandler_pty_common::pipesize, pipename, 0);
|
|
|
|
if (res)
|
|
|
|
{
|
|
|
|
errstr = "echo pipe";
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2010-04-20 03:52:43 +08:00
|
|
|
/* Create security attribute. Default permissions are 0620. */
|
|
|
|
sd.malloc (sizeof (SECURITY_DESCRIPTOR));
|
2011-04-28 17:30:36 +08:00
|
|
|
RtlCreateSecurityDescriptor (sd, SECURITY_DESCRIPTOR_REVISION);
|
Reapply POSIX ACL changes.
- New, unified implementation of POSIX permission and ACL handling. The
new ACLs now store the POSIX ACL MASK/CLASS_OBJ permission mask, and
they allow to inherit the S_ISGID bit. ACL inheritance now really
works as desired, in a limited, but theoretically equivalent fashion
even for non-Cygwin processes.
To accommodate Windows default ACLs, the new code ignores SYSTEM and
Administrators group permissions when computing the MASK/CLASS_OBJ
permission mask on old ACLs, and it doesn't deny access to SYSTEM and
Administrators group based on the value of MASK/CLASS_OBJ when
creating the new ACLs.
The new code now handles the S_ISGID bit on directories as on Linux:
Setting S_ISGID on a directory causes new files and subdirs created
within to inherit its group, rather than the primary group of the user
who created the file. This only works for files and directories
created by Cygwin processes.
2015-05-29 Corinna Vinschen <corinna@vinschen.de>
Reapply POSIX ACL changes.
* utils.xml (setfacl): Show new option output.
(getfacl): Show new option output.
* sec_acl.cc (get_posix_access): Check for Cygwin "standard" ACL.
Apply umask, if so. Align comments.
* security.cc (set_created_file_access): Fix permission masking by
incoming requested file mode.
* sec_acl.cc (set_posix_access): Apply mask only in terms of execute bit
for SYSTEM and Admins group.
* sec_acl.cc (set_posix_access): Don't create DENY ACEs for USER and
GROUP entries if they are the same as USER_OBJ or GROUP_OBJ.
* fhandler.h (fhandler_pty_slave::facl): Add prototype.
* fhandler_tty.cc (fhandler_pty_slave::facl): New method.
(fhandler_pty_slave::fchown): Fix uid/gid handling.
* sec_acl.cc (set_posix_access): Drop superfluous class_idx variable.
Simplify and move around code in a few places. To improve ACL
readability, add r/w permissions to Admins ACE appended to pty ACL.
Add comment to explain Windows ACE Mask filtering being in the way of
creating a real CLASS_OBJ.
(get_posix_access): Fake CLASS_OBJ for ptys. Explain why.
* security.cc (get_object_attribute): Add S_IFCHR flag to attributes
when calling get_posix_access.
* sec_acl.cc (set_posix_access): Move merging group perms into owner
perms in case of owner == group after mask has been computed. Take
mask into account when doing so to avoid unnecessary ACCESS_DENIED_ACE.
* sec_acl.cc (get_posix_access): Only set saw_group_obj flag if we saw
the ACCESS_ALLOWED_ACE.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Deliberatly
set GROUP_OBJ and CLASS_OBJ perms to new group perms. Add comment
to explain why.
* security.cc (set_created_file_access): Ditto.
* sec_acl.cc (set_posix_access): Replace previous patch. Return
EINVAL if uid and/or guid is invalid and not backed by an actual
Windows account.
* sec_acl.cc (set_posix_access): Workaround owner/group SIDs being NULL.
* sec_acl.cc (set_posix_access): Handle files with owner == group.
Rephrase switch statement checking against unfiltered a_type value.
(get_posix_access): Handle files with owner == group.
* sec_acl.cc (get_posix_access): Don't use GROUP_OBJ access to fix up
CLASS_OBJ mask on old-style ACLs. Fix a comment.
* sec_acl.cc (set_posix_access): Always make sure Admins have
WRITE_DAC and WRITE_OWNER permissions.
* security.h (create_object_sd_from_attribute): Drop handle parameter
from prototype.
* security.cc (create_object_sd_from_attribute): Drop handle parameter.
Just create the standard POSIXy security descriptor.
(set_object_attribute): Accommodate dropped paramter in call to
create_object_sd_from_attribute.
* fhandler_tty.cc: Ditto, throughout.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Fix typo in
mask computation.
* fhandler.cc (fhandler_base::open_with_arch): Call open with mode
not umasked.
(fhandler_base::open): Explicitely umask mode on NFS here. Call new
set_created_file_access rather than set_file_attribute.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Reimplement
setting permissions on filesystems supporting ACLs using the new
set_posix_access call.
(fhandler_disk_file::fchown): Ditto.
(fhandler_disk_file::mkdir): Call new set_created_file_access rather
than set_file_attribute.
* fhandler_socket.cc (fhandler_socket::bind): Don't umask here. Add
WRITE_OWNER access to allow writing group in case of SGID bit set.
Call new set_created_file_access rather than set_file_attribute.
* path.cc (symlink_worker): Call new set_created_file_access rather
than set_file_attribute.
* sec_acl.cc (searchace): Un-staticize.
(set_posix_access): New, complementary functionality to
get_posix_access.
(setacl): Implement in terms of get_posix_access/set_posix_access.
(get_posix_access): Add handling for just created files requiring
their first Cygwin ACL. Fix new_style recognition. Handle SGID
bit. For old-style ACLs, ignore SYSTEM and Administrators when
computing the {DEF_}CLASS_OBJ perms.
* security.cc (get_file_sd): Revamp comment. Change and (hopefully)
speed up inheritance processing for just created files.
(alloc_sd): Remove.
(set_security_attribute): Call set_posix_access instead of alloc_sd.
(get_object_attribute): Fix return value.
(create_object_sd_from_attribute): Call set_posix_access instead of
alloc_sd.
(set_file_attribute): Remove.
(set_created_file_access): New function implemented in terms of
get_posix_access/set_posix_access.
* security.h (set_file_attribute): Remove prototype.
(set_created_file_access): Add prototype.
(searchace): Ditto.
(set_posix_access): Ditto.
* syscalls.cc (open): Call open_with_arch with mode not umasked.
* sec_acl.cc: Change preceeding comment explaining new-style ACLs.
Describe how to generate deny ACEs in more detail. Accommodate the
fact that a NULL deny ACE is used for {DEF_}CLASS_OBJ, rather than
a special Cygwin ACE. Improve further comments.
(CYG_ACE_NEW_STYLE): Define.
(get_posix_access): Change from Cygwin ACE to NULL deny ACE. Fix
CLASS_OBJ handling to generate CLASS_OBJ and DEF_CLASS_OBJ from a single
NULL deny ACE if the inheritance flags say so.
* sec_helper.cc (well_known_cygwin_sid): Remove.
* security.h (well_known_cygwin_sid): Drop declaration.
* sec_acl.cc (CYG_ACE_ISBITS_TO_WIN): Fix typo.
(get_posix_access): Rename index variable from i to idx. Define only
once at top level.
* security.cc (add_access_allowed_ace): Drop unused parameter "offset".
Accommodate throughout.
(add_access_denied_ace): Ditto.
* sec_acl.cc: Accommodate above change throughout.
* security.h (add_access_allowed_ace): Adjust prototype to above change.
(add_access_denied_ace): Ditto.
* sec_acl.cc (get_posix_access): Handle multiple ACEs for the
owner and primary group of the file. Handle the default primary
group ACE as DEF_GROUP_OBJ entry if the directory has the S_ISGID bit
set. Add comments. Minor code rearrangements.
Preliminary read side implementation of new permission handling.
* acl.h (MAX_ACL_ENTRIES): Raise to 2730. Add comment to explain.
* sec_acl.cc: Add leading comment to explain new ACL style.
Add definitions and macros to use for bits in new Cygwin ACL.
(DENY_RWX): New mask value for all temporary deny bits.
(getace): Add bool parameter to decide when leaving all bits intact,
rather than filtering them per the already set bits.
(get_posix_access): New function, taking over functionality to read
POSIX ACL from SECURITY_DESCRIPTOR.
(getacl): Just call get_posix_access.
* sec_helper.cc (well_known_cygwin_sid): Define.
* security.cc (get_attribute_from_acl): Remove.
(get_info_from_sd): Remove.
(get_reg_sd): Call get_posix_access instead of get_info_from_sd.
(get_file_attribute): Ditto.
(get_object_attribute): Ditto.
* security.h (well_known_cygwin_sid): Declare.
(get_posix_access): Add prototype.
* Throughout, use simpler ACE macros from Windows' accctrl.h.
* getfacl.c (main): Special-case SYSTEM and Admins group. Add comments.
* setfacl.c: Align more to Linux tool.
(delacl): New function to delete acl entries only.
(modacl): Drop delete functionality. Add handling of recomputing the
mask and default mask values.
(delallacl): Rename from delacl.
(setfacl): Call delacl in Delete case. Call delallacl in DeleteAll
and DeleteDef case.
(usage): Accommodate new options. Rearrange and rephrase slightly.
(longopts): Emit 'x' in --delete case. Add --no-mask and --mask
options.
(opts): Add -x and -n options.
(main): Handle -d and -x the same. Handle -n and --mask options.
Drop handling for -r option.
* getfacl.c (usage): Align more closely to Linux version. Add new
options -c, -e, -E. Change formatting to accommodate longer options.
(longopts): Rename --noname to --numeric. Keep --noname for backward
compatibility. Add --omit-header, --all-effective and --no-effective
options.
(opts): Add -c, -e and -E option.
(main): Handle new -c, -e, and -E options.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-06-24 17:52:29 +08:00
|
|
|
if (!create_object_sd_from_attribute (myself->uid, myself->gid,
|
2015-09-04 01:29:55 +08:00
|
|
|
S_IFCHR | S_IRUSR | S_IWUSR | S_IWGRP,
|
|
|
|
sd))
|
2010-04-20 03:52:43 +08:00
|
|
|
sa.lpSecurityDescriptor = (PSECURITY_DESCRIPTOR) sd;
|
2006-06-02 23:41:34 +08:00
|
|
|
|
2010-04-20 03:52:43 +08:00
|
|
|
/* Carefully check that the input_available_event didn't already exist.
|
|
|
|
This is a measure to make sure that the event security descriptor
|
|
|
|
isn't occupied by a malicious process. We must make sure that the
|
|
|
|
event's security descriptor is what we expect it to be. */
|
|
|
|
if (!(input_available_event = t.get_event (errstr = INPUT_AVAILABLE_EVENT,
|
|
|
|
&sa, TRUE))
|
|
|
|
|| GetLastError () == ERROR_ALREADY_EXISTS)
|
2006-06-02 23:41:34 +08:00
|
|
|
goto err;
|
|
|
|
|
2007-12-06 00:50:18 +08:00
|
|
|
char buf[MAX_PATH];
|
2011-10-16 06:37:30 +08:00
|
|
|
errstr = shared_name (buf, OUTPUT_MUTEX, unit);
|
2010-04-20 03:52:43 +08:00
|
|
|
if (!(output_mutex = CreateMutex (&sa, FALSE, buf)))
|
2006-06-02 23:41:34 +08:00
|
|
|
goto err;
|
|
|
|
|
2011-10-16 06:37:30 +08:00
|
|
|
errstr = shared_name (buf, INPUT_MUTEX, unit);
|
2010-04-20 03:52:43 +08:00
|
|
|
if (!(input_mutex = CreateMutex (&sa, FALSE, buf)))
|
2006-06-02 23:41:34 +08:00
|
|
|
goto err;
|
|
|
|
|
2021-02-11 17:09:42 +08:00
|
|
|
errstr = shared_name (buf, PCON_MUTEX, unit);
|
|
|
|
if (!(pcon_mutex = CreateMutex (&sa, FALSE, buf)))
|
|
|
|
goto err;
|
|
|
|
|
2021-01-18 21:10:57 +08:00
|
|
|
attach_mutex = CreateMutex (&sa, FALSE, NULL);
|
|
|
|
|
2010-09-28 18:13:19 +08:00
|
|
|
/* Create master control pipe which allows the master to duplicate
|
|
|
|
the pty pipe handles to processes which deserve it. */
|
2011-06-15 05:48:43 +08:00
|
|
|
__small_sprintf (buf, "\\\\.\\pipe\\cygwin-%S-pty%d-master-ctl",
|
2012-02-14 19:27:43 +08:00
|
|
|
&cygheap->installation_key, unit);
|
2013-04-23 17:44:36 +08:00
|
|
|
master_ctl = CreateNamedPipe (buf, PIPE_ACCESS_DUPLEX
|
|
|
|
| FILE_FLAG_FIRST_PIPE_INSTANCE,
|
2010-09-28 18:13:19 +08:00
|
|
|
PIPE_WAIT | PIPE_TYPE_MESSAGE
|
2013-04-23 17:44:36 +08:00
|
|
|
| PIPE_READMODE_MESSAGE
|
2015-12-15 23:02:35 +08:00
|
|
|
| PIPE_REJECT_REMOTE_CLIENTS,
|
2013-04-23 17:44:36 +08:00
|
|
|
1, 4096, 4096, 0, &sec_all_nih);
|
2010-09-28 18:13:19 +08:00
|
|
|
if (master_ctl == INVALID_HANDLE_VALUE)
|
2010-04-20 03:52:43 +08:00
|
|
|
{
|
2010-09-28 18:13:19 +08:00
|
|
|
errstr = "pty master control pipe";
|
|
|
|
goto err;
|
|
|
|
}
|
2021-01-15 16:32:13 +08:00
|
|
|
|
|
|
|
thread_param_copied_event = CreateEvent(NULL, FALSE, FALSE, NULL);
|
2011-12-04 05:43:27 +08:00
|
|
|
master_thread = new cygthread (::pty_master_thread, this, "ptym");
|
2010-09-28 18:13:19 +08:00
|
|
|
if (!master_thread)
|
|
|
|
{
|
|
|
|
errstr = "pty master control thread";
|
|
|
|
goto err;
|
2010-04-20 03:52:43 +08:00
|
|
|
}
|
2021-01-15 16:32:13 +08:00
|
|
|
WaitForSingleObject (thread_param_copied_event, INFINITE);
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
master_fwd_thread = new cygthread (::pty_master_fwd_thread, this, "ptymf");
|
|
|
|
if (!master_fwd_thread)
|
|
|
|
{
|
|
|
|
errstr = "pty master forwarding thread";
|
|
|
|
goto err;
|
|
|
|
}
|
2021-01-15 16:32:13 +08:00
|
|
|
WaitForSingleObject (thread_param_copied_event, INFINITE);
|
|
|
|
CloseHandle (thread_param_copied_event);
|
2019-08-28 02:04:02 +08:00
|
|
|
|
2013-04-23 17:44:36 +08:00
|
|
|
t.set_from_master (from_master);
|
2019-08-28 02:04:02 +08:00
|
|
|
t.set_from_master_cyg (from_master_cyg);
|
2013-04-23 17:44:36 +08:00
|
|
|
t.set_to_master (to_master);
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
t.set_to_master_cyg (to_master_cyg);
|
2021-01-28 11:26:11 +08:00
|
|
|
t.set_to_slave (to_slave);
|
|
|
|
t.set_to_slave_cyg (get_output_handle ());
|
2020-08-19 19:25:21 +08:00
|
|
|
t.winsize.ws_col = 80;
|
|
|
|
t.winsize.ws_row = 25;
|
2006-06-02 23:41:34 +08:00
|
|
|
t.master_pid = myself->pid;
|
|
|
|
|
2011-10-20 22:02:54 +08:00
|
|
|
dev ().parse (DEV_PTYM_MAJOR, unit);
|
2011-10-16 06:37:30 +08:00
|
|
|
|
2021-01-28 11:26:13 +08:00
|
|
|
t.master_is_running_as_service = is_running_as_service ();
|
|
|
|
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
termios_printf ("this %p, pty%d opened - from_pty <%p,%p>, to_pty %p",
|
2019-08-28 02:04:02 +08:00
|
|
|
this, unit, from_slave, get_handle (),
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
get_output_handle ());
|
2006-06-02 23:41:34 +08:00
|
|
|
return true;
|
|
|
|
|
|
|
|
err:
|
|
|
|
__seterrno ();
|
2019-08-28 02:04:02 +08:00
|
|
|
close_maybe (from_slave);
|
2020-08-19 19:25:21 +08:00
|
|
|
close_maybe (to_slave);
|
2019-03-30 15:12:02 +08:00
|
|
|
close_maybe (get_handle ());
|
2006-06-02 23:41:34 +08:00
|
|
|
close_maybe (get_output_handle ());
|
|
|
|
close_maybe (input_available_event);
|
|
|
|
close_maybe (output_mutex);
|
|
|
|
close_maybe (input_mutex);
|
2021-01-18 21:10:57 +08:00
|
|
|
close_maybe (attach_mutex);
|
2006-06-03 14:35:10 +08:00
|
|
|
close_maybe (from_master);
|
2019-08-28 02:04:02 +08:00
|
|
|
close_maybe (from_master_cyg);
|
2006-06-03 14:35:10 +08:00
|
|
|
close_maybe (to_master);
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
close_maybe (to_master_cyg);
|
2015-03-05 20:57:34 +08:00
|
|
|
close_maybe (echo_r);
|
|
|
|
close_maybe (echo_w);
|
2010-04-20 03:52:43 +08:00
|
|
|
close_maybe (master_ctl);
|
2011-10-16 06:37:30 +08:00
|
|
|
termios_printf ("pty%d open failed - failed to create %s", unit, errstr);
|
2006-06-02 23:41:34 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
fhandler_pty_master::fixup_after_fork (HANDLE parent)
|
|
|
|
{
|
|
|
|
DWORD wpid = GetCurrentProcessId ();
|
2011-06-15 05:48:43 +08:00
|
|
|
fhandler_pty_master *arch = (fhandler_pty_master *) archetype;
|
2006-06-02 23:41:34 +08:00
|
|
|
if (arch->dwProcessId != wpid)
|
|
|
|
{
|
|
|
|
tty& t = *get_ttyp ();
|
|
|
|
if (myself->pid == t.master_pid)
|
|
|
|
{
|
2013-04-23 17:44:36 +08:00
|
|
|
t.set_from_master (arch->from_master);
|
2019-08-28 02:04:02 +08:00
|
|
|
t.set_from_master_cyg (arch->from_master_cyg);
|
2013-04-23 17:44:36 +08:00
|
|
|
t.set_to_master (arch->to_master);
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
t.set_to_master_cyg (arch->to_master_cyg);
|
2006-06-02 23:41:34 +08:00
|
|
|
}
|
|
|
|
arch->dwProcessId = wpid;
|
|
|
|
}
|
2006-06-03 15:17:53 +08:00
|
|
|
from_master = arch->from_master;
|
2019-08-28 02:04:02 +08:00
|
|
|
from_master_cyg = arch->from_master_cyg;
|
2006-06-03 15:17:53 +08:00
|
|
|
to_master = arch->to_master;
|
Fix OPOST for non-Cygwin pty slaves
* fhandler.h (class fhandler_base): Add virtual function
get_io_handle_cyg() to get handle from which OPOST-processed output is
read on PTY master.
(class fhandler_pty_slave): Add variable output_handle_cyg to store a
handle to which OPOST-processed output is written. Add two functions,
i.e., set_output_handle_cyg() and get_output_handle_cyg(), regarding
variable output_handle_cyg. Now, output_handle is used only by native
windows program. The data before OPOST-processing is written to
output_handle and OPOST-processing is applied in the master-side. For a
cygwin process, OPOST-processing is applied in the slave-side, and the
data after OPOST-processing is written to output_handle_cyg.
(class fhandler_pty_master): Add two variables, i.e., io_handle_cyg and
to_master_cyg, to store handles of a pipe through which OPOST-processed
output passes. Add pty_master_fwd_thread and function
pty_master_fwd_thread() for a thread which applies OPOST-processing
and forwards data from io_handle to to_master_cyg. Add function
get_io_handle_cyg() regarding variable io_handle_cyg. Now, the pipe
between io_handle and to_master are used only by native windows program
for applying OPOST-processing in the master-side. For a cygwin process,
the pipe between io_handle_cyg and to_master_cyg is used for passing
through the data which is applied OPOST-processing in the slave-side.
* fhandler_tty.cc (struct pipe_reply): Add member to_master_cyg.
(fhandler_pty_master::process_slave_output): Read slave output from
io_handle_cyg rather than io_handle.
(fhandler_pty_slave::fhandler_pty_salve): Initialize output_handle_cyg.
(fhandler_pty_slave::open): Set output_handle_cyg by duplicating handle
to_master_cyg on PTY master.
(fhandler_pty_slave::close): Close handle output_handle_cyg.
(fhandler_pty_slave::write): Write data to output_handle_cyg rather
than output_handle.
(fhandler_pty_slave::fch_close_handles): Close handle output_handle_cyg.
(fhandler_pty_master::fhandler_pty_master): Initialize io_handle_cyg,
to_master_cyg and master_fwd_thread.
(fhandler_pty_master::cleanup): Clean up to_master_cyg as well.
(fhandler_pty_master::close): Print to_master_cyg as well in debug
message. Terminate master forwarding thread. Close handles
to_master_cyg and io_handle_cyg.
(fhandler_pty_master::ioctl): Use io_handle_cyg rather than to_master.
(fhandler_pty_master::pty_master_thread): Add code for duplicating
handle to_master_cyg.
(fhandler_pty_master::pty_master_fwd_thread): New function for a thread
to forward OPOST-processed data from io_handle to to_master_cyg. This
thread applies OPOST-processing to the output of native windows program.
(::pty_master_fwd_thread): Ditto.
(fhandler_pty_master::setup): Create a new pipe to pass thruegh OPOST-
processed output. Create new thread to forward data from io_handle to
to_master_cyg. Set handle to_master_cyg to tty. Print io_handle_cyg as
well in debug message. Close handles io_handle_cyg and to_master_cyg in
case of error.
(fhandler_pty_master::fixup_after_fork): Set handle to_master_cyg to
tty. Copy handle to_master_cyg from arch->to_master_cyg.
(fhandler_pty_master::fixup_after_exec): Clean up to_master_cyg.
* select.cc: Check handle returned by get_io_handle_cyg() rather than
get_handle().
* tty.h (class tty): Add variable _to_master_cyg to store a handle to
which OPOST-processed data is written. Add two functions,
to_master_cyg() and set_to_master_cyg(), regarding _to_master_cyg.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
2015-04-22 19:22:59 +08:00
|
|
|
to_master_cyg = arch->to_master_cyg;
|
2019-08-28 02:04:02 +08:00
|
|
|
#if 0 /* Not sure if this is necessary. */
|
|
|
|
from_slave = arch->from_slave;
|
|
|
|
to_slave = arch->to_slave;
|
|
|
|
#endif
|
2006-06-02 23:41:34 +08:00
|
|
|
report_tty_counts (this, "inherited master", "");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
fhandler_pty_master::fixup_after_exec ()
|
|
|
|
{
|
2006-06-03 14:35:10 +08:00
|
|
|
if (!close_on_exec ())
|
2006-06-02 23:41:34 +08:00
|
|
|
fixup_after_fork (spawn_info->parent);
|
2006-06-03 15:17:53 +08:00
|
|
|
else
|
2019-08-28 02:04:02 +08:00
|
|
|
from_master = from_master_cyg = to_master = to_master_cyg =
|
|
|
|
from_slave = to_slave = NULL;
|
2006-06-02 23:41:34 +08:00
|
|
|
}
|
2015-03-25 19:42:38 +08:00
|
|
|
|
|
|
|
BOOL
|
2021-01-15 16:32:13 +08:00
|
|
|
fhandler_pty_common::process_opost_output (HANDLE h, const void *ptr,
|
|
|
|
ssize_t& len, bool is_echo,
|
|
|
|
tty *ttyp, bool is_nonblocking)
|
2015-03-25 19:42:38 +08:00
|
|
|
{
|
|
|
|
ssize_t towrite = len;
|
|
|
|
BOOL res = TRUE;
|
|
|
|
while (towrite)
|
|
|
|
{
|
|
|
|
if (!is_echo)
|
|
|
|
{
|
2021-01-15 16:32:13 +08:00
|
|
|
if (ttyp->output_stopped && is_nonblocking)
|
2015-03-25 19:42:38 +08:00
|
|
|
{
|
|
|
|
if (towrite < len)
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
{
|
2019-09-15 12:36:23 +08:00
|
|
|
set_errno (EAGAIN);
|
2015-03-25 19:42:38 +08:00
|
|
|
len = -1;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
2021-01-15 16:32:13 +08:00
|
|
|
while (ttyp->output_stopped)
|
2015-03-25 19:42:38 +08:00
|
|
|
cygwait (10);
|
|
|
|
}
|
|
|
|
|
2021-01-15 16:32:13 +08:00
|
|
|
if (!(ttyp->ti.c_oflag & OPOST)) // raw output mode
|
2015-03-25 19:42:38 +08:00
|
|
|
{
|
|
|
|
DWORD n = MIN (OUT_BUFFER_SIZE, towrite);
|
2020-08-19 19:25:21 +08:00
|
|
|
res = WriteFile (h, ptr, n, &n, NULL);
|
2015-03-25 19:42:38 +08:00
|
|
|
if (!res)
|
|
|
|
break;
|
|
|
|
ptr = (char *) ptr + n;
|
|
|
|
towrite -= n;
|
|
|
|
}
|
|
|
|
else // post-process output
|
|
|
|
{
|
|
|
|
char outbuf[OUT_BUFFER_SIZE + 1];
|
|
|
|
char *buf = (char *)ptr;
|
|
|
|
DWORD n = 0;
|
|
|
|
ssize_t rc = 0;
|
|
|
|
while (n < OUT_BUFFER_SIZE && rc < towrite)
|
|
|
|
{
|
|
|
|
switch (buf[rc])
|
|
|
|
{
|
|
|
|
case '\r':
|
2021-01-15 16:32:13 +08:00
|
|
|
if ((ttyp->ti.c_oflag & ONOCR)
|
|
|
|
&& ttyp->column == 0)
|
2015-03-25 19:42:38 +08:00
|
|
|
{
|
|
|
|
rc++;
|
|
|
|
continue;
|
|
|
|
}
|
2021-01-15 16:32:13 +08:00
|
|
|
if (ttyp->ti.c_oflag & OCRNL)
|
2015-03-25 19:42:38 +08:00
|
|
|
{
|
|
|
|
outbuf[n++] = '\n';
|
|
|
|
rc++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
outbuf[n++] = buf[rc++];
|
2021-01-15 16:32:13 +08:00
|
|
|
ttyp->column = 0;
|
2015-03-25 19:42:38 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '\n':
|
2021-01-15 16:32:13 +08:00
|
|
|
if (ttyp->ti.c_oflag & ONLCR)
|
2015-03-25 19:42:38 +08:00
|
|
|
{
|
|
|
|
outbuf[n++] = '\r';
|
2021-01-15 16:32:13 +08:00
|
|
|
ttyp->column = 0;
|
2015-03-25 19:42:38 +08:00
|
|
|
}
|
2021-01-15 16:32:13 +08:00
|
|
|
if (ttyp->ti.c_oflag & ONLRET)
|
|
|
|
ttyp->column = 0;
|
2015-03-25 19:42:38 +08:00
|
|
|
outbuf[n++] = buf[rc++];
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
outbuf[n++] = buf[rc++];
|
2021-01-15 16:32:13 +08:00
|
|
|
ttyp->column++;
|
2015-03-25 19:42:38 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-08-19 19:25:21 +08:00
|
|
|
res = WriteFile (h, outbuf, n, &n, NULL);
|
2015-03-25 19:42:38 +08:00
|
|
|
if (!res)
|
|
|
|
break;
|
|
|
|
ptr = (char *) ptr + rc;
|
|
|
|
towrite -= rc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
len -= towrite;
|
|
|
|
return res;
|
|
|
|
}
|
2020-08-19 19:25:21 +08:00
|
|
|
|
2021-01-28 11:26:11 +08:00
|
|
|
/* Pseudo console supprot is realized using a tricky technic.
|
|
|
|
PTY need the pseudo console handles, however, they cannot
|
|
|
|
be retrieved by normal procedure. Therefore, run a helper
|
|
|
|
process in a pseudo console and get them from the helper.
|
|
|
|
Slave process will attach to the pseudo console in the
|
|
|
|
helper process using AttachConsole(). */
|
2020-08-19 19:25:21 +08:00
|
|
|
bool
|
2021-01-28 11:26:11 +08:00
|
|
|
fhandler_pty_slave::setup_pseudoconsole (bool nopcon)
|
2020-08-19 19:25:21 +08:00
|
|
|
{
|
|
|
|
/* Setting switch_to_pcon_in is necessary even if
|
|
|
|
pseudo console will not be activated. */
|
|
|
|
fhandler_base *fh = ::cygheap->fdtab[0];
|
|
|
|
if (fh && fh->get_major () == DEV_PTYS_MAJOR)
|
|
|
|
{
|
|
|
|
fhandler_pty_slave *ptys = (fhandler_pty_slave *) fh;
|
|
|
|
ptys->get_ttyp ()->switch_to_pcon_in = true;
|
|
|
|
if (ptys->get_ttyp ()->pcon_pid == 0
|
|
|
|
|| !pinfo (ptys->get_ttyp ()->pcon_pid))
|
|
|
|
ptys->get_ttyp ()->pcon_pid = myself->pid;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nopcon)
|
|
|
|
return false;
|
2021-01-28 11:26:14 +08:00
|
|
|
|
2020-08-19 19:25:21 +08:00
|
|
|
/* If the legacy console mode is enabled, pseudo console seems
|
|
|
|
not to work as expected. To determine console mode, registry
|
|
|
|
key ForceV2 in HKEY_CURRENT_USER\Console is checked. */
|
|
|
|
reg_key reg (HKEY_CURRENT_USER, KEY_READ, L"Console", NULL);
|
|
|
|
if (reg.error ())
|
|
|
|
return false;
|
|
|
|
if (reg.get_dword (L"ForceV2", 1) == 0)
|
|
|
|
{
|
|
|
|
termios_printf ("Pseudo console is disabled "
|
|
|
|
"because the legacy console mode is enabled.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-01-28 11:26:14 +08:00
|
|
|
HANDLE hpConIn, hpConOut;
|
|
|
|
if (get_ttyp ()->pcon_pid && get_ttyp ()->pcon_pid != myself->pid
|
|
|
|
&& !!pinfo (get_ttyp ()->pcon_pid) && get_ttyp ()->pcon_activated)
|
|
|
|
{
|
2021-02-11 17:09:42 +08:00
|
|
|
/* Send CSI6n just for requesting transfer input. */
|
|
|
|
DWORD n;
|
|
|
|
WaitForSingleObject (input_mutex, INFINITE);
|
|
|
|
get_ttyp ()->req_xfer_input = true;
|
|
|
|
get_ttyp ()->pcon_start = true;
|
|
|
|
get_ttyp ()->pcon_start_pid = myself->pid;
|
|
|
|
WriteFile (get_output_handle_cyg (), "\033[6n", 4, &n, NULL);
|
|
|
|
ReleaseMutex (input_mutex);
|
2021-01-28 11:26:14 +08:00
|
|
|
/* Attach to the pseudo console which already exits. */
|
|
|
|
pinfo p (get_ttyp ()->pcon_pid);
|
|
|
|
HANDLE pcon_owner =
|
|
|
|
OpenProcess (PROCESS_DUP_HANDLE, FALSE, p->exec_dwProcessId);
|
|
|
|
DuplicateHandle (pcon_owner, get_ttyp ()->h_pcon_in,
|
|
|
|
GetCurrentProcess (), &hpConIn,
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS);
|
|
|
|
DuplicateHandle (pcon_owner, get_ttyp ()->h_pcon_out,
|
|
|
|
GetCurrentProcess (), &hpConOut,
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS);
|
|
|
|
CloseHandle (pcon_owner);
|
|
|
|
FreeConsole ();
|
|
|
|
AttachConsole (p->dwProcessId);
|
|
|
|
goto skip_create;
|
|
|
|
}
|
|
|
|
|
2021-01-28 11:26:11 +08:00
|
|
|
STARTUPINFOEXW si;
|
|
|
|
PROCESS_INFORMATION pi;
|
|
|
|
HANDLE hello, goodbye;
|
|
|
|
HANDLE hr, hw;
|
2021-01-28 11:26:14 +08:00
|
|
|
HPCON hpcon;
|
2020-08-19 19:25:21 +08:00
|
|
|
|
2021-01-28 11:26:11 +08:00
|
|
|
do
|
|
|
|
{
|
|
|
|
COORD size = {
|
|
|
|
(SHORT) get_ttyp ()->winsize.ws_col,
|
|
|
|
(SHORT) get_ttyp ()->winsize.ws_row
|
|
|
|
};
|
|
|
|
const DWORD inherit_cursor = 1;
|
2021-01-28 11:26:14 +08:00
|
|
|
hpcon = NULL;
|
2021-01-28 11:26:11 +08:00
|
|
|
SetLastError (ERROR_SUCCESS);
|
|
|
|
HRESULT res = CreatePseudoConsole (size, get_handle (),
|
|
|
|
get_output_handle (),
|
2021-01-28 11:26:14 +08:00
|
|
|
inherit_cursor, &hpcon);
|
2021-01-28 11:26:11 +08:00
|
|
|
if (res != S_OK || GetLastError () == ERROR_PROC_NOT_FOUND)
|
|
|
|
{
|
|
|
|
if (res != S_OK)
|
|
|
|
system_printf ("CreatePseudoConsole() failed. %08x %08x\n",
|
|
|
|
GetLastError (), res);
|
|
|
|
goto fallback;
|
|
|
|
}
|
|
|
|
|
|
|
|
SIZE_T bytesRequired;
|
|
|
|
InitializeProcThreadAttributeList (NULL, 2, 0, &bytesRequired);
|
|
|
|
ZeroMemory (&si, sizeof (si));
|
|
|
|
si.StartupInfo.cb = sizeof (STARTUPINFOEXW);
|
|
|
|
si.lpAttributeList = (PPROC_THREAD_ATTRIBUTE_LIST)
|
|
|
|
HeapAlloc (GetProcessHeap (), 0, bytesRequired);
|
|
|
|
if (si.lpAttributeList == NULL)
|
|
|
|
goto cleanup_pseudo_console;
|
|
|
|
if (!InitializeProcThreadAttributeList (si.lpAttributeList,
|
|
|
|
2, 0, &bytesRequired))
|
|
|
|
goto cleanup_heap;
|
|
|
|
if (!UpdateProcThreadAttribute (si.lpAttributeList,
|
|
|
|
0,
|
|
|
|
PROC_THREAD_ATTRIBUTE_PSEUDOCONSOLE,
|
2021-01-28 11:26:14 +08:00
|
|
|
hpcon, sizeof (hpcon), NULL, NULL))
|
2021-01-28 11:26:11 +08:00
|
|
|
|
|
|
|
goto cleanup_heap;
|
|
|
|
|
|
|
|
hello = CreateEvent (&sec_none, true, false, NULL);
|
|
|
|
goodbye = CreateEvent (&sec_none, true, false, NULL);
|
|
|
|
CreatePipe (&hr, &hw, &sec_none, 0);
|
|
|
|
|
|
|
|
HANDLE handles_to_inherit[] = {hello, goodbye, hw};
|
|
|
|
if (!UpdateProcThreadAttribute (si.lpAttributeList,
|
|
|
|
0,
|
|
|
|
PROC_THREAD_ATTRIBUTE_HANDLE_LIST,
|
|
|
|
handles_to_inherit,
|
|
|
|
sizeof (handles_to_inherit),
|
|
|
|
NULL, NULL))
|
|
|
|
goto cleanup_event_and_pipes;
|
|
|
|
|
|
|
|
/* Execute helper process */
|
|
|
|
WCHAR cmd[MAX_PATH];
|
|
|
|
path_conv helper ("/bin/cygwin-console-helper.exe");
|
|
|
|
size_t len = helper.get_wide_win32_path_len ();
|
|
|
|
helper.get_wide_win32_path (cmd);
|
|
|
|
__small_swprintf (cmd + len, L" %p %p %p", hello, goodbye, hw);
|
|
|
|
si.StartupInfo.dwFlags = STARTF_USESTDHANDLES;
|
|
|
|
si.StartupInfo.hStdInput = NULL;
|
|
|
|
si.StartupInfo.hStdOutput = NULL;
|
|
|
|
si.StartupInfo.hStdError = NULL;
|
|
|
|
|
2021-01-28 11:26:14 +08:00
|
|
|
get_ttyp ()->pcon_activated = true;
|
2021-02-11 17:09:42 +08:00
|
|
|
get_ttyp ()->pcon_start = true;
|
|
|
|
get_ttyp ()->pcon_start_pid = myself->pid;
|
2021-01-28 11:26:11 +08:00
|
|
|
if (!CreateProcessW (NULL, cmd, &sec_none, &sec_none,
|
|
|
|
TRUE, EXTENDED_STARTUPINFO_PRESENT,
|
|
|
|
NULL, NULL, &si.StartupInfo, &pi))
|
|
|
|
goto cleanup_event_and_pipes;
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
DWORD wait_result = WaitForSingleObject (hello, 500);
|
|
|
|
if (wait_result == WAIT_OBJECT_0)
|
|
|
|
break;
|
|
|
|
if (wait_result != WAIT_TIMEOUT)
|
|
|
|
goto cleanup_helper_process;
|
|
|
|
DWORD exit_code;
|
|
|
|
if (!GetExitCodeProcess (pi.hProcess, &exit_code))
|
|
|
|
goto cleanup_helper_process;
|
|
|
|
if (exit_code == STILL_ACTIVE)
|
|
|
|
continue;
|
|
|
|
if (exit_code != 0 ||
|
|
|
|
WaitForSingleObject (hello, 500) != WAIT_OBJECT_0)
|
|
|
|
goto cleanup_helper_process;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
CloseHandle (hello);
|
|
|
|
CloseHandle (pi.hThread);
|
|
|
|
|
|
|
|
/* Duplicate pseudo console handles */
|
|
|
|
DWORD rlen;
|
|
|
|
char buf[64];
|
|
|
|
if (!ReadFile (hr, buf, sizeof (buf), &rlen, NULL))
|
|
|
|
goto cleanup_helper_process;
|
|
|
|
buf[rlen] = '\0';
|
|
|
|
sscanf (buf, "StdHandles=%p,%p", &hpConIn, &hpConOut);
|
|
|
|
if (!DuplicateHandle (pi.hProcess, hpConIn,
|
|
|
|
GetCurrentProcess (), &hpConIn, 0,
|
|
|
|
TRUE, DUPLICATE_SAME_ACCESS))
|
|
|
|
goto cleanup_helper_process;
|
|
|
|
if (!DuplicateHandle (pi.hProcess, hpConOut,
|
|
|
|
GetCurrentProcess (), &hpConOut, 0,
|
|
|
|
TRUE, DUPLICATE_SAME_ACCESS))
|
|
|
|
goto cleanup_pcon_in;
|
|
|
|
|
|
|
|
CloseHandle (hr);
|
|
|
|
CloseHandle (hw);
|
|
|
|
DeleteProcThreadAttributeList (si.lpAttributeList);
|
|
|
|
HeapFree (GetProcessHeap (), 0, si.lpAttributeList);
|
|
|
|
|
|
|
|
/* Attach to pseudo console */
|
|
|
|
FreeConsole ();
|
|
|
|
AttachConsole (pi.dwProcessId);
|
|
|
|
|
|
|
|
/* Terminate helper process */
|
|
|
|
SetEvent (goodbye);
|
|
|
|
WaitForSingleObject (pi.hProcess, INFINITE);
|
|
|
|
CloseHandle (goodbye);
|
|
|
|
CloseHandle (pi.hProcess);
|
2021-01-28 11:26:14 +08:00
|
|
|
}
|
|
|
|
while (false);
|
2021-01-28 11:26:11 +08:00
|
|
|
|
2021-01-28 11:26:14 +08:00
|
|
|
skip_create:
|
|
|
|
do
|
|
|
|
{
|
2021-01-28 11:26:11 +08:00
|
|
|
/* Set handle */
|
2021-01-28 11:26:13 +08:00
|
|
|
if (GetStdHandle (STD_INPUT_HANDLE) == get_handle ())
|
|
|
|
SetStdHandle (STD_INPUT_HANDLE, hpConIn);
|
|
|
|
if (GetStdHandle (STD_OUTPUT_HANDLE) == get_output_handle ())
|
|
|
|
SetStdHandle (STD_OUTPUT_HANDLE, hpConOut);
|
|
|
|
if (GetStdHandle (STD_ERROR_HANDLE) == get_output_handle ())
|
|
|
|
SetStdHandle (STD_ERROR_HANDLE, hpConOut);
|
|
|
|
|
|
|
|
/* Fixup handles */
|
2021-01-28 11:26:11 +08:00
|
|
|
HANDLE orig_input_handle = get_handle ();
|
|
|
|
HANDLE orig_output_handle = get_output_handle ();
|
|
|
|
cygheap_fdenum cfd (false);
|
|
|
|
while (cfd.next () >= 0)
|
|
|
|
if (cfd->get_device () == get_device ())
|
|
|
|
{
|
|
|
|
fhandler_base *fh = cfd;
|
|
|
|
fhandler_pty_slave *ptys = (fhandler_pty_slave *) fh;
|
|
|
|
if (ptys->get_handle () == orig_input_handle)
|
|
|
|
ptys->set_handle (hpConIn);
|
|
|
|
if (ptys->get_output_handle () == orig_output_handle)
|
|
|
|
ptys->set_output_handle (hpConOut);
|
|
|
|
}
|
|
|
|
CloseHandle (orig_input_handle);
|
|
|
|
CloseHandle (orig_output_handle);
|
|
|
|
}
|
|
|
|
while (false);
|
2020-08-19 19:25:21 +08:00
|
|
|
|
|
|
|
if (get_ttyp ()->pcon_pid == 0 || !pinfo (get_ttyp ()->pcon_pid))
|
|
|
|
get_ttyp ()->pcon_pid = myself->pid;
|
|
|
|
|
2021-01-28 11:26:14 +08:00
|
|
|
if (hpcon && get_ttyp ()->pcon_pid == myself->pid)
|
2020-08-19 19:25:21 +08:00
|
|
|
{
|
2021-01-28 11:26:14 +08:00
|
|
|
HPCON_INTERNAL *hp = (HPCON_INTERNAL *) hpcon;
|
2020-08-19 19:25:21 +08:00
|
|
|
get_ttyp ()->h_pcon_write_pipe = hp->hWritePipe;
|
2021-01-28 11:26:14 +08:00
|
|
|
get_ttyp ()->h_pcon_condrv_reference = hp->hConDrvReference;
|
|
|
|
get_ttyp ()->h_pcon_conhost_process = hp->hConHostProcess;
|
|
|
|
DuplicateHandle (GetCurrentProcess (), hpConIn,
|
|
|
|
GetCurrentProcess (), &get_ttyp ()->h_pcon_in,
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS);
|
|
|
|
DuplicateHandle (GetCurrentProcess (), hpConOut,
|
|
|
|
GetCurrentProcess (), &get_ttyp ()->h_pcon_out,
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS);
|
|
|
|
/* Discard the pseudo console handler container here.
|
|
|
|
Reconstruct it temporary when it is needed. */
|
|
|
|
HeapFree (GetProcessHeap (), 0, hp);
|
2020-08-19 19:25:21 +08:00
|
|
|
}
|
2021-01-28 11:26:12 +08:00
|
|
|
|
|
|
|
if (get_ttyp ()->previous_code_page)
|
|
|
|
SetConsoleCP (get_ttyp ()->previous_code_page);
|
|
|
|
if (get_ttyp ()->previous_output_code_page)
|
|
|
|
SetConsoleOutputCP (get_ttyp ()->previous_output_code_page);
|
2021-01-28 11:26:14 +08:00
|
|
|
|
2020-08-19 19:25:21 +08:00
|
|
|
return true;
|
|
|
|
|
2021-01-28 11:26:11 +08:00
|
|
|
cleanup_pcon_in:
|
|
|
|
CloseHandle (hpConIn);
|
|
|
|
cleanup_helper_process:
|
|
|
|
SetEvent (goodbye);
|
|
|
|
WaitForSingleObject (pi.hProcess, INFINITE);
|
|
|
|
CloseHandle (pi.hProcess);
|
|
|
|
goto skip_close_hello;
|
|
|
|
cleanup_event_and_pipes:
|
|
|
|
CloseHandle (hello);
|
2021-01-28 11:26:14 +08:00
|
|
|
get_ttyp ()->pcon_start = false;
|
2021-02-11 17:09:42 +08:00
|
|
|
get_ttyp ()->pcon_start_pid = 0;
|
2021-01-28 11:26:14 +08:00
|
|
|
get_ttyp ()->pcon_activated = false;
|
2021-01-28 11:26:11 +08:00
|
|
|
skip_close_hello:
|
|
|
|
CloseHandle (goodbye);
|
|
|
|
CloseHandle (hr);
|
|
|
|
CloseHandle (hw);
|
2020-08-19 19:25:21 +08:00
|
|
|
cleanup_heap:
|
2021-01-28 11:26:11 +08:00
|
|
|
HeapFree (GetProcessHeap (), 0, si.lpAttributeList);
|
2020-08-19 19:25:21 +08:00
|
|
|
cleanup_pseudo_console:
|
2021-01-28 11:26:14 +08:00
|
|
|
if (hpcon)
|
2020-08-19 19:25:21 +08:00
|
|
|
{
|
2021-01-28 11:26:14 +08:00
|
|
|
HPCON_INTERNAL *hp = (HPCON_INTERNAL *) hpcon;
|
2020-08-19 19:25:21 +08:00
|
|
|
HANDLE tmp = hp->hConHostProcess;
|
2021-01-28 11:26:14 +08:00
|
|
|
ClosePseudoConsole (hpcon);
|
2020-08-19 19:25:21 +08:00
|
|
|
CloseHandle (tmp);
|
|
|
|
}
|
|
|
|
fallback:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-01-15 16:32:11 +08:00
|
|
|
/* The function close_pseudoconsole() should be static so that it can
|
|
|
|
be called even after the fhandler_pty_slave instance is deleted. */
|
2020-08-19 19:25:21 +08:00
|
|
|
void
|
2021-01-15 16:32:11 +08:00
|
|
|
fhandler_pty_slave::close_pseudoconsole (tty *ttyp)
|
2020-08-19 19:25:21 +08:00
|
|
|
{
|
2021-01-28 11:26:14 +08:00
|
|
|
DWORD switch_to_stub = 0, switch_to = 0;
|
|
|
|
DWORD new_pcon_pid = 0;
|
|
|
|
if (ttyp->pcon_pid == myself->pid)
|
|
|
|
{
|
|
|
|
/* Search another process which attaches to the pseudo console */
|
|
|
|
DWORD current_pid = myself->exec_dwProcessId ?: myself->dwProcessId;
|
|
|
|
switch_to =
|
|
|
|
get_console_process_id (current_pid, false, true);
|
|
|
|
if (switch_to)
|
|
|
|
{
|
|
|
|
pinfo p (cygwin_pid (switch_to));
|
|
|
|
if (p)
|
|
|
|
{
|
|
|
|
if (p->exec_dwProcessId)
|
|
|
|
switch_to_stub = p->exec_dwProcessId;
|
|
|
|
new_pcon_pid = p->pid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ttyp->pcon_activated)
|
2020-08-19 19:25:21 +08:00
|
|
|
{
|
2021-01-28 11:26:12 +08:00
|
|
|
ttyp->previous_code_page = GetConsoleCP ();
|
|
|
|
ttyp->previous_output_code_page = GetConsoleOutputCP ();
|
2021-01-28 11:26:14 +08:00
|
|
|
if (ttyp->pcon_pid == myself->pid)
|
|
|
|
{
|
|
|
|
switch_to = switch_to_stub ?: switch_to;
|
|
|
|
if (switch_to)
|
|
|
|
{
|
|
|
|
/* Change pseudo console owner to another process */
|
|
|
|
HANDLE new_owner =
|
|
|
|
OpenProcess (PROCESS_DUP_HANDLE, FALSE, switch_to);
|
|
|
|
HANDLE new_write_pipe = NULL;
|
|
|
|
HANDLE new_condrv_reference = NULL;
|
|
|
|
HANDLE new_conhost_process = NULL;
|
|
|
|
HANDLE new_pcon_in = NULL, new_pcon_out = NULL;
|
|
|
|
DuplicateHandle (GetCurrentProcess (),
|
|
|
|
ttyp->h_pcon_write_pipe,
|
|
|
|
new_owner, &new_write_pipe,
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS);
|
|
|
|
DuplicateHandle (GetCurrentProcess (),
|
|
|
|
ttyp->h_pcon_condrv_reference,
|
|
|
|
new_owner, &new_condrv_reference,
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS);
|
|
|
|
DuplicateHandle (GetCurrentProcess (),
|
|
|
|
ttyp->h_pcon_conhost_process,
|
|
|
|
new_owner, &new_conhost_process,
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS);
|
|
|
|
DuplicateHandle (GetCurrentProcess (), ttyp->h_pcon_in,
|
|
|
|
new_owner, &new_pcon_in,
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS);
|
|
|
|
DuplicateHandle (GetCurrentProcess (), ttyp->h_pcon_out,
|
|
|
|
new_owner, &new_pcon_out,
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS);
|
|
|
|
CloseHandle (new_owner);
|
|
|
|
CloseHandle (ttyp->h_pcon_write_pipe);
|
|
|
|
CloseHandle (ttyp->h_pcon_condrv_reference);
|
|
|
|
CloseHandle (ttyp->h_pcon_conhost_process);
|
|
|
|
CloseHandle (ttyp->h_pcon_in);
|
|
|
|
CloseHandle (ttyp->h_pcon_out);
|
|
|
|
ttyp->pcon_pid = new_pcon_pid;
|
|
|
|
ttyp->h_pcon_write_pipe = new_write_pipe;
|
|
|
|
ttyp->h_pcon_condrv_reference = new_condrv_reference;
|
|
|
|
ttyp->h_pcon_conhost_process = new_conhost_process;
|
|
|
|
ttyp->h_pcon_in = new_pcon_in;
|
|
|
|
ttyp->h_pcon_out = new_pcon_out;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ /* Close pseudo console */
|
|
|
|
FreeConsole ();
|
|
|
|
pinfo p (myself->ppid);
|
|
|
|
if (p)
|
|
|
|
{
|
|
|
|
if (!AttachConsole (p->dwProcessId))
|
|
|
|
AttachConsole (ATTACH_PARENT_PROCESS);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
AttachConsole (ATTACH_PARENT_PROCESS);
|
|
|
|
/* Reconstruct pseudo console handler container here for close */
|
|
|
|
HPCON_INTERNAL *hp =
|
|
|
|
(HPCON_INTERNAL *) HeapAlloc (GetProcessHeap (), 0,
|
|
|
|
sizeof (*hp));
|
|
|
|
hp->hWritePipe = ttyp->h_pcon_write_pipe;
|
|
|
|
hp->hConDrvReference = ttyp->h_pcon_condrv_reference;
|
|
|
|
hp->hConHostProcess = ttyp->h_pcon_conhost_process;
|
|
|
|
/* HeapFree() will be called in ClosePseudoConsole() */
|
|
|
|
ClosePseudoConsole ((HPCON) hp);
|
|
|
|
CloseHandle (ttyp->h_pcon_conhost_process);
|
|
|
|
ttyp->pcon_activated = false;
|
|
|
|
ttyp->switch_to_pcon_in = false;
|
|
|
|
ttyp->pcon_pid = 0;
|
|
|
|
ttyp->pcon_start = false;
|
2021-02-11 17:09:42 +08:00
|
|
|
ttyp->pcon_start_pid = 0;
|
2021-01-28 11:26:14 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FreeConsole ();
|
|
|
|
pinfo p (myself->ppid);
|
|
|
|
if (p)
|
|
|
|
{
|
|
|
|
if (!AttachConsole (p->dwProcessId))
|
|
|
|
AttachConsole (ATTACH_PARENT_PROCESS);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
AttachConsole (ATTACH_PARENT_PROCESS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (ttyp->pcon_pid == myself->pid)
|
|
|
|
{
|
|
|
|
if (switch_to_stub)
|
|
|
|
ttyp->pcon_pid = new_pcon_pid;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ttyp->pcon_pid = 0;
|
|
|
|
ttyp->switch_to_pcon_in = false;
|
|
|
|
}
|
2020-08-19 19:25:21 +08:00
|
|
|
}
|
|
|
|
}
|
2020-08-31 17:48:54 +08:00
|
|
|
|
|
|
|
static bool
|
|
|
|
has_ansi_escape_sequences (const WCHAR *env)
|
|
|
|
{
|
|
|
|
/* Retrieve TERM name */
|
|
|
|
const char *term = NULL;
|
|
|
|
char term_str[260];
|
|
|
|
if (env)
|
|
|
|
{
|
|
|
|
for (const WCHAR *p = env; *p != L'\0'; p += wcslen (p) + 1)
|
|
|
|
if (swscanf (p, L"TERM=%236s", term_str) == 1)
|
|
|
|
{
|
|
|
|
term = term_str;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
term = getenv ("TERM");
|
|
|
|
|
|
|
|
if (!term)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* If cursor_home is not "\033[H", terminal is not supposed to
|
|
|
|
support ANSI escape sequences. */
|
|
|
|
char tinfo[260];
|
|
|
|
__small_sprintf (tinfo, "/usr/share/terminfo/%02x/%s", term[0], term);
|
|
|
|
path_conv path (tinfo);
|
|
|
|
WCHAR wtinfo[260];
|
|
|
|
path.get_wide_win32_path (wtinfo);
|
|
|
|
HANDLE h;
|
|
|
|
h = CreateFileW (wtinfo, GENERIC_READ, FILE_SHARE_READ,
|
|
|
|
NULL, OPEN_EXISTING, 0, NULL);
|
|
|
|
if (h == NULL)
|
|
|
|
return false;
|
|
|
|
char terminfo[4096];
|
|
|
|
DWORD n;
|
|
|
|
ReadFile (h, terminfo, sizeof (terminfo), &n, 0);
|
|
|
|
CloseHandle (h);
|
|
|
|
|
|
|
|
int num_size = 2;
|
|
|
|
if (*(int16_t *)terminfo == 01036 /* MAGIC2 */)
|
|
|
|
num_size = 4;
|
|
|
|
const int name_pos = 12; /* Position of terminal name */
|
|
|
|
const int name_size = *(int16_t *) (terminfo + 2);
|
|
|
|
const int bool_count = *(int16_t *) (terminfo + 4);
|
|
|
|
const int num_count = *(int16_t *) (terminfo + 6);
|
|
|
|
const int str_count = *(int16_t *) (terminfo + 8);
|
|
|
|
const int str_size = *(int16_t *) (terminfo + 10);
|
|
|
|
const int cursor_home = 12; /* cursor_home entry index */
|
|
|
|
if (cursor_home >= str_count)
|
|
|
|
return false;
|
|
|
|
int str_idx_pos = name_pos + name_size + bool_count + num_size * num_count;
|
|
|
|
if (str_idx_pos & 1)
|
|
|
|
str_idx_pos ++;
|
|
|
|
const int16_t *str_idx = (int16_t *) (terminfo + str_idx_pos);
|
|
|
|
const char *str_table = (const char *) (str_idx + str_count);
|
|
|
|
if (str_idx + cursor_home >= (int16_t *) (terminfo + n))
|
|
|
|
return false;
|
|
|
|
if (str_idx[cursor_home] == -1)
|
|
|
|
return false;
|
|
|
|
const char *cursor_home_str = str_table + str_idx[cursor_home];
|
|
|
|
if (cursor_home_str >= str_table + str_size)
|
|
|
|
return false;
|
|
|
|
if (cursor_home_str >= terminfo + n)
|
|
|
|
return false;
|
|
|
|
if (strcmp (cursor_home_str, "\033[H") != 0)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
fhandler_pty_slave::term_has_pcon_cap (const WCHAR *env)
|
|
|
|
{
|
|
|
|
if (get_ttyp ()->pcon_cap_checked)
|
|
|
|
return get_ttyp ()->has_csi6n;
|
|
|
|
|
|
|
|
DWORD n;
|
|
|
|
char buf[1024];
|
|
|
|
char *p;
|
|
|
|
int len;
|
2020-12-14 16:26:09 +08:00
|
|
|
int wait_cnt = 0;
|
2020-08-31 17:48:54 +08:00
|
|
|
|
|
|
|
/* Check if terminal has ANSI escape sequence. */
|
|
|
|
if (!has_ansi_escape_sequences (env))
|
|
|
|
goto maybe_dumb;
|
|
|
|
|
|
|
|
/* Check if terminal has CSI6n */
|
|
|
|
WaitForSingleObject (input_mutex, INFINITE);
|
2021-01-28 11:26:14 +08:00
|
|
|
/* Set pcon_activated and pcon_start so that the response
|
2020-08-31 17:48:54 +08:00
|
|
|
will sent to io_handle rather than io_handle_cyg. */
|
2021-01-28 11:26:14 +08:00
|
|
|
get_ttyp ()->pcon_activated = true;
|
2020-08-31 17:48:54 +08:00
|
|
|
/* pcon_start will be cleared in master write() when CSI6n is responded. */
|
|
|
|
get_ttyp ()->pcon_start = true;
|
|
|
|
WriteFile (get_output_handle_cyg (), "\033[6n", 4, &n, NULL);
|
|
|
|
ReleaseMutex (input_mutex);
|
|
|
|
p = buf;
|
|
|
|
len = sizeof (buf) - 1;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (::bytes_available (n, get_handle ()) && n)
|
|
|
|
{
|
|
|
|
ReadFile (get_handle (), p, len, &n, NULL);
|
|
|
|
p += n;
|
|
|
|
len -= n;
|
|
|
|
*p = '\0';
|
|
|
|
char *p1 = strrchr (buf, '\033');
|
2021-01-28 11:26:11 +08:00
|
|
|
int x, y;
|
2020-12-16 17:10:15 +08:00
|
|
|
char c;
|
2021-01-28 11:26:11 +08:00
|
|
|
if (p1 == NULL || sscanf (p1, "\033[%d;%d%c", &y, &x, &c) != 3
|
2020-12-16 17:10:15 +08:00
|
|
|
|| c != 'R')
|
2020-08-31 17:48:54 +08:00
|
|
|
continue;
|
2020-12-14 16:26:09 +08:00
|
|
|
wait_cnt = 0;
|
2020-08-31 17:48:54 +08:00
|
|
|
break;
|
|
|
|
}
|
2020-12-14 16:26:09 +08:00
|
|
|
else if (++wait_cnt > 100) /* Timeout */
|
2020-08-31 17:48:54 +08:00
|
|
|
goto not_has_csi6n;
|
|
|
|
else
|
|
|
|
Sleep (1);
|
|
|
|
}
|
|
|
|
while (len);
|
2021-01-28 11:26:14 +08:00
|
|
|
get_ttyp ()->pcon_activated = false;
|
2021-01-28 11:26:11 +08:00
|
|
|
get_ttyp ()->pcon_pid = 0;
|
2020-08-31 17:48:54 +08:00
|
|
|
if (len == 0)
|
|
|
|
goto not_has_csi6n;
|
|
|
|
|
|
|
|
get_ttyp ()->has_csi6n = true;
|
|
|
|
get_ttyp ()->pcon_cap_checked = true;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
not_has_csi6n:
|
|
|
|
WaitForSingleObject (input_mutex, INFINITE);
|
|
|
|
/* If CSI6n is not responded, pcon_start is not cleared
|
|
|
|
in master write(). Therefore, clear it here manually. */
|
|
|
|
get_ttyp ()->pcon_start = false;
|
2021-01-28 11:26:14 +08:00
|
|
|
get_ttyp ()->pcon_activated = false;
|
2020-08-31 17:48:54 +08:00
|
|
|
ReleaseMutex (input_mutex);
|
|
|
|
maybe_dumb:
|
|
|
|
get_ttyp ()->pcon_cap_checked = true;
|
|
|
|
return false;
|
|
|
|
}
|
2021-01-18 21:10:57 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
fhandler_pty_slave::create_invisible_console ()
|
|
|
|
{
|
|
|
|
if (get_ttyp ()->need_invisible_console)
|
|
|
|
{
|
|
|
|
/* Detach from console device and create new invisible console. */
|
|
|
|
FreeConsole();
|
|
|
|
fhandler_console::need_invisible (true);
|
|
|
|
get_ttyp ()->need_invisible_console = false;
|
|
|
|
get_ttyp ()->invisible_console_pid = myself->pid;
|
|
|
|
}
|
|
|
|
if (get_ttyp ()->invisible_console_pid
|
|
|
|
&& !pinfo (get_ttyp ()->invisible_console_pid))
|
|
|
|
/* If primary slave process does not exist anymore,
|
|
|
|
this process becomes the primary. */
|
|
|
|
get_ttyp ()->invisible_console_pid = myself->pid;
|
|
|
|
}
|
2021-01-15 16:32:13 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
fhandler_pty_master::get_master_thread_param (master_thread_param_t *p)
|
|
|
|
{
|
|
|
|
p->from_master = from_master;
|
|
|
|
p->from_master_cyg = from_master_cyg;
|
|
|
|
p->to_master = to_master;
|
|
|
|
p->to_master_cyg = to_master_cyg;
|
2021-01-28 11:26:11 +08:00
|
|
|
p->to_slave = to_slave;
|
|
|
|
p->to_slave_cyg = get_output_handle ();
|
2021-01-15 16:32:13 +08:00
|
|
|
p->master_ctl = master_ctl;
|
|
|
|
p->input_available_event = input_available_event;
|
|
|
|
SetEvent (thread_param_copied_event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
fhandler_pty_master::get_master_fwd_thread_param (master_fwd_thread_param_t *p)
|
|
|
|
{
|
|
|
|
p->to_master_cyg = to_master_cyg;
|
|
|
|
p->from_slave = from_slave;
|
|
|
|
p->output_mutex = output_mutex;
|
|
|
|
p->ttyp = get_ttyp ();
|
|
|
|
SetEvent (thread_param_copied_event);
|
|
|
|
}
|
2021-01-28 11:26:11 +08:00
|
|
|
|
|
|
|
#define ALT_PRESSED (LEFT_ALT_PRESSED | RIGHT_ALT_PRESSED)
|
|
|
|
#define CTRL_PRESSED (LEFT_CTRL_PRESSED | RIGHT_CTRL_PRESSED)
|
|
|
|
void
|
2021-02-11 17:09:42 +08:00
|
|
|
fhandler_pty_slave::transfer_input (tty::xfer_dir dir, HANDLE from, tty *ttyp,
|
|
|
|
HANDLE input_available_event)
|
2021-01-28 11:26:11 +08:00
|
|
|
{
|
|
|
|
HANDLE to;
|
2021-02-11 17:09:42 +08:00
|
|
|
if (dir == tty::to_nat)
|
2021-01-28 11:26:11 +08:00
|
|
|
to = ttyp->to_slave ();
|
|
|
|
else
|
|
|
|
to = ttyp->to_slave_cyg ();
|
|
|
|
|
|
|
|
pinfo p (ttyp->master_pid);
|
|
|
|
HANDLE pty_owner = OpenProcess (PROCESS_DUP_HANDLE, FALSE, p->dwProcessId);
|
|
|
|
if (pty_owner)
|
|
|
|
{
|
|
|
|
DuplicateHandle (pty_owner, to, GetCurrentProcess (), &to,
|
|
|
|
0, TRUE, DUPLICATE_SAME_ACCESS);
|
|
|
|
CloseHandle (pty_owner);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char pipe[MAX_PATH];
|
|
|
|
__small_sprintf (pipe,
|
|
|
|
"\\\\.\\pipe\\cygwin-%S-pty%d-master-ctl",
|
2021-02-11 17:09:42 +08:00
|
|
|
&cygheap->installation_key, ttyp->get_minor ());
|
2021-01-28 11:26:11 +08:00
|
|
|
pipe_request req = { GetCurrentProcessId () };
|
|
|
|
pipe_reply repl;
|
|
|
|
DWORD len;
|
|
|
|
if (!CallNamedPipe (pipe, &req, sizeof req,
|
|
|
|
&repl, sizeof repl, &len, 500))
|
|
|
|
return; /* What can we do? */
|
2021-02-11 17:09:42 +08:00
|
|
|
if (dir == tty::to_nat)
|
2021-01-28 11:26:11 +08:00
|
|
|
to = repl.to_slave;
|
|
|
|
else
|
|
|
|
to = repl.to_slave_cyg;
|
|
|
|
}
|
|
|
|
|
|
|
|
UINT cp_from = 0, cp_to = 0;
|
|
|
|
|
2021-02-11 17:09:42 +08:00
|
|
|
if (dir == tty::to_nat)
|
2021-01-28 11:26:11 +08:00
|
|
|
{
|
|
|
|
cp_from = ttyp->term_code_page;
|
2021-01-28 11:26:14 +08:00
|
|
|
if (ttyp->pcon_activated)
|
2021-01-28 11:26:11 +08:00
|
|
|
cp_to = CP_UTF8;
|
|
|
|
else
|
|
|
|
cp_to = GetConsoleCP ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cp_from = GetConsoleCP ();
|
|
|
|
cp_to = ttyp->term_code_page;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp_pathbuf tp;
|
|
|
|
char *buf = tp.c_get ();
|
|
|
|
|
|
|
|
bool transfered = false;
|
|
|
|
|
2021-02-11 17:09:42 +08:00
|
|
|
if (dir == tty::to_cyg && ttyp->pcon_activated)
|
2021-01-28 11:26:11 +08:00
|
|
|
{ /* from handle is console handle */
|
|
|
|
INPUT_RECORD r[INREC_SIZE];
|
|
|
|
DWORD n;
|
|
|
|
while (PeekConsoleInputA (from, r, INREC_SIZE, &n) && n)
|
|
|
|
{
|
|
|
|
ReadConsoleInputA (from, r, n, &n);
|
|
|
|
int len = 0;
|
|
|
|
char *ptr = buf;
|
|
|
|
for (DWORD i = 0; i < n; i++)
|
|
|
|
if (r[i].EventType == KEY_EVENT && r[i].Event.KeyEvent.bKeyDown)
|
|
|
|
{
|
|
|
|
DWORD ctrl_key_state = r[i].Event.KeyEvent.dwControlKeyState;
|
|
|
|
if (r[i].Event.KeyEvent.uChar.AsciiChar)
|
|
|
|
{
|
|
|
|
if ((ctrl_key_state & ALT_PRESSED)
|
|
|
|
&& r[i].Event.KeyEvent.uChar.AsciiChar <= 0x7f)
|
|
|
|
buf[len++] = '\033'; /* Meta */
|
|
|
|
buf[len++] = r[i].Event.KeyEvent.uChar.AsciiChar;
|
|
|
|
}
|
|
|
|
/* Allow Ctrl-Space to emit ^@ */
|
|
|
|
else if (r[i].Event.KeyEvent.wVirtualKeyCode == '2'
|
|
|
|
&& (ctrl_key_state & CTRL_PRESSED)
|
|
|
|
&& !(ctrl_key_state & ALT_PRESSED))
|
|
|
|
buf[len++] = '\0';
|
|
|
|
else
|
|
|
|
{ /* arrow/function keys */
|
|
|
|
/* FIXME: The current code generates cygwin terminal
|
|
|
|
sequence rather than xterm sequence. */
|
|
|
|
char tmp[16];
|
|
|
|
const char *add =
|
|
|
|
fhandler_console::get_nonascii_key (r[i], tmp);
|
|
|
|
if (add)
|
|
|
|
{
|
|
|
|
strcpy (buf + len, add);
|
|
|
|
len += strlen (add);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (cp_to != cp_from)
|
|
|
|
{
|
|
|
|
static mbstate_t mbp;
|
|
|
|
char *mbbuf = tp.c_get ();
|
|
|
|
size_t nlen = NT_MAX_PATH;
|
|
|
|
convert_mb_str (cp_to, mbbuf, &nlen, cp_from, buf, len, &mbp);
|
|
|
|
ptr = mbbuf;
|
|
|
|
len = nlen;
|
|
|
|
}
|
|
|
|
/* Call WriteFile() line by line */
|
|
|
|
char *p0 = ptr;
|
|
|
|
char *p1 = ptr;
|
|
|
|
while ((p1 = (char *) memchr (p0, '\r', len - (p0 - ptr))))
|
|
|
|
{
|
|
|
|
*p1 = '\n';
|
|
|
|
n = p1 - p0 + 1;
|
|
|
|
if (n && WriteFile (to, p0, n, &n, NULL) && n)
|
|
|
|
transfered = true;
|
|
|
|
p0 = p1 + 1;
|
|
|
|
}
|
|
|
|
n = len - (p0 - ptr);
|
|
|
|
if (n && WriteFile (to, p0, n, &n, NULL) && n)
|
|
|
|
transfered = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DWORD bytes_in_pipe;
|
|
|
|
while (::bytes_available (bytes_in_pipe, from) && bytes_in_pipe)
|
|
|
|
{
|
|
|
|
DWORD n = MIN (bytes_in_pipe, NT_MAX_PATH);
|
|
|
|
ReadFile (from, buf, n, &n, NULL);
|
|
|
|
char *ptr = buf;
|
2021-02-11 17:09:42 +08:00
|
|
|
if (dir == tty::to_nat)
|
2021-01-28 11:26:11 +08:00
|
|
|
{
|
|
|
|
char *p = buf;
|
2021-02-11 17:09:42 +08:00
|
|
|
if (ttyp->pcon_activated)
|
|
|
|
while ((p = (char *) memchr (p, '\n', n - (p - buf))))
|
|
|
|
*p = '\r';
|
|
|
|
else
|
|
|
|
while ((p = (char *) memchr (p, '\r', n - (p - buf))))
|
|
|
|
*p = '\n';
|
2021-01-28 11:26:11 +08:00
|
|
|
}
|
|
|
|
if (cp_to != cp_from)
|
|
|
|
{
|
|
|
|
static mbstate_t mbp;
|
|
|
|
char *mbbuf = tp.c_get ();
|
|
|
|
size_t nlen = NT_MAX_PATH;
|
|
|
|
convert_mb_str (cp_to, mbbuf, &nlen, cp_from, buf, n, &mbp);
|
|
|
|
ptr = mbbuf;
|
|
|
|
n = nlen;
|
|
|
|
}
|
|
|
|
if (n && WriteFile (to, ptr, n, &n, NULL) && n)
|
|
|
|
transfered = true;;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-11 17:09:42 +08:00
|
|
|
if (dir == tty::to_nat)
|
2021-01-28 11:26:11 +08:00
|
|
|
ResetEvent (input_available_event);
|
|
|
|
else if (transfered)
|
|
|
|
SetEvent (input_available_event);
|
2021-02-11 17:09:42 +08:00
|
|
|
ttyp->pcon_input_state = dir;
|
2021-01-28 11:26:11 +08:00
|
|
|
}
|