2000-10-27 17:38:32 +02:00
|
|
|
/* tty.h: shared tty info for cygwin
|
2000-09-07 18:23:51 +02:00
|
|
|
|
|
|
|
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. */
|
|
|
|
|
2011-06-04 02:12:29 +02:00
|
|
|
#ifndef _TTY_H
|
|
|
|
#define _TTY_H
|
2000-09-07 18:23:51 +02:00
|
|
|
/* tty tables */
|
|
|
|
|
|
|
|
#define INP_BUFFER_SIZE 256
|
|
|
|
#define OUT_BUFFER_SIZE 256
|
2015-04-07 12:11:52 +02:00
|
|
|
#define NTTYS 128
|
2011-11-29 16:34:49 +01:00
|
|
|
#define real_tty_attached(p) ((p)->ctty > 0 && !iscons_dev ((p)->ctty))
|
2000-09-07 18:23:51 +02:00
|
|
|
|
|
|
|
/* Input/Output/ioctl events */
|
|
|
|
|
2004-05-12 03:44:11 +02:00
|
|
|
#define INPUT_AVAILABLE_EVENT "cygtty.input.avail"
|
|
|
|
#define OUTPUT_MUTEX "cygtty.output.mutex"
|
|
|
|
#define INPUT_MUTEX "cygtty.input.mutex"
|
|
|
|
#define TTY_SLAVE_ALIVE "cygtty.slave_alive"
|
2000-09-07 18:23:51 +02:00
|
|
|
|
|
|
|
#include <sys/termios.h>
|
|
|
|
|
|
|
|
#ifndef MIN_CTRL_C_SLOP
|
|
|
|
#define MIN_CTRL_C_SLOP 50
|
|
|
|
#endif
|
|
|
|
|
2019-08-27 20:04:02 +02:00
|
|
|
typedef void *HPCON;
|
|
|
|
|
2011-05-28 20:17:09 +02:00
|
|
|
#include <devices.h>
|
2000-09-07 18:23:51 +02:00
|
|
|
class tty_min
|
|
|
|
{
|
|
|
|
pid_t sid; /* Session ID of tty */
|
2004-04-09 14:09:45 +02:00
|
|
|
struct status_flags
|
|
|
|
{
|
2012-10-12 03:19:04 +02:00
|
|
|
unsigned initialized : 1; /* Set if tty is initialized */
|
|
|
|
unsigned rstcons : 1; /* Set if console needs to be set to "non-cooked" */
|
2004-04-09 14:09:45 +02:00
|
|
|
} status;
|
|
|
|
|
2000-09-07 18:23:51 +02:00
|
|
|
public:
|
|
|
|
pid_t pgid;
|
2012-10-12 03:19:04 +02:00
|
|
|
bool output_stopped; /* FIXME: Maybe do this with a mutex someday? */
|
2011-05-28 20:17:09 +02:00
|
|
|
fh_devices ntty;
|
2019-03-24 22:13:00 +01:00
|
|
|
ULONGLONG last_ctrl_c; /* tick count of last ctrl-c */
|
2011-06-14 23:48:43 +02:00
|
|
|
bool is_console;
|
2000-09-07 18:23:51 +02:00
|
|
|
|
2004-04-13 11:04:22 +02:00
|
|
|
IMPLEMENT_STATUS_FLAG (bool, initialized)
|
|
|
|
IMPLEMENT_STATUS_FLAG (bool, rstcons)
|
2004-04-09 14:09:45 +02:00
|
|
|
|
2000-09-07 18:23:51 +02:00
|
|
|
struct termios ti;
|
|
|
|
struct winsize winsize;
|
|
|
|
|
|
|
|
/* ioctl requests buffer */
|
|
|
|
int cmd;
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct termios termios;
|
|
|
|
struct winsize winsize;
|
|
|
|
int value;
|
|
|
|
pid_t pid;
|
|
|
|
} arg;
|
|
|
|
/* XXX_retval variables holds master's completion codes. Error are stored as
|
|
|
|
* -ERRNO
|
|
|
|
*/
|
|
|
|
int ioctl_retval;
|
2006-04-21 20:53:05 +02:00
|
|
|
|
2013-04-23 11:44:36 +02:00
|
|
|
void setntty (_major_t t, _minor_t n) {ntty = (fh_devices) FHDEV (t, n);}
|
|
|
|
dev_t getntty () const {return ntty;}
|
|
|
|
_minor_t get_minor () const {return device::minor (ntty);}
|
2011-05-28 20:17:09 +02:00
|
|
|
pid_t getpgid () const {return pgid;}
|
2006-04-21 20:53:05 +02:00
|
|
|
void setpgid (int pid) {pgid = pid;}
|
2011-05-28 20:17:09 +02:00
|
|
|
int getsid () const {return sid;}
|
2006-04-21 20:53:05 +02:00
|
|
|
void setsid (pid_t tsid) {sid = tsid;}
|
2011-05-30 08:58:00 +02:00
|
|
|
void kill_pgrp (int);
|
|
|
|
int is_orphaned_process_group (int);
|
2013-01-21 05:34:52 +01:00
|
|
|
const __reg1 char *ttyname () __attribute (());
|
2000-09-07 18:23:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class fhandler_pty_master;
|
|
|
|
|
|
|
|
class tty: public tty_min
|
|
|
|
{
|
2013-01-21 05:34:52 +01:00
|
|
|
HANDLE __reg3 get_event (const char *fmt, PSECURITY_ATTRIBUTES sa,
|
2010-04-19 21:52:43 +02:00
|
|
|
BOOL manual_reset = FALSE);
|
2000-09-07 18:23:51 +02:00
|
|
|
public:
|
2006-06-02 17:41:34 +02:00
|
|
|
pid_t master_pid; /* PID of tty master process */
|
2000-09-07 18:23:51 +02:00
|
|
|
|
2013-04-23 11:44:36 +02:00
|
|
|
private:
|
2015-04-07 12:16:07 +02:00
|
|
|
HANDLE _from_master;
|
2019-08-27 20:04:02 +02:00
|
|
|
HANDLE _from_master_cyg;
|
2015-04-07 12:16:07 +02: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 13:22:59 +02:00
|
|
|
HANDLE _to_master_cyg;
|
2019-11-16 00:27:24 +01:00
|
|
|
HPCON h_pseudo_console;
|
|
|
|
HANDLE h_helper_process;
|
|
|
|
DWORD helper_process_id;
|
|
|
|
HANDLE h_helper_goodbye;
|
2019-08-27 20:04:02 +02:00
|
|
|
bool attach_pcon_in_fork;
|
2019-09-13 23:48:14 +02:00
|
|
|
bool switch_to_pcon_in;
|
|
|
|
bool switch_to_pcon_out;
|
2019-08-27 20:04:02 +02:00
|
|
|
bool screen_alternated;
|
2019-09-13 23:48:14 +02:00
|
|
|
bool mask_switch_to_pcon_in;
|
2019-08-27 20:04:02 +02:00
|
|
|
pid_t pcon_pid;
|
|
|
|
int num_pcon_attached_slaves;
|
2019-09-15 06:05:52 +02:00
|
|
|
UINT term_code_page;
|
2019-11-12 14:00:23 +01:00
|
|
|
bool need_redraw_screen;
|
2020-01-21 03:22:02 +01:00
|
|
|
HANDLE fwd_done;
|
2020-01-27 12:22:24 +01:00
|
|
|
DWORD pcon_last_time;
|
2015-04-07 12:16:07 +02:00
|
|
|
|
2013-04-23 11:44:36 +02:00
|
|
|
public:
|
2019-08-27 20:04:02 +02:00
|
|
|
HANDLE from_master () const { return _from_master; }
|
|
|
|
HANDLE from_master_cyg () const { return _from_master_cyg; }
|
|
|
|
HANDLE to_master () const { return _to_master; }
|
|
|
|
HANDLE to_master_cyg () const { return _to_master_cyg; }
|
2013-04-23 11:44:36 +02:00
|
|
|
void set_from_master (HANDLE h) { _from_master = h; }
|
2019-08-27 20:04:02 +02:00
|
|
|
void set_from_master_cyg (HANDLE h) { _from_master_cyg = h; }
|
2013-04-23 11:44:36 +02:00
|
|
|
void set_to_master (HANDLE h) { _to_master = h; }
|
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 13:22:59 +02:00
|
|
|
void set_to_master_cyg (HANDLE h) { _to_master_cyg = h; }
|
2000-09-07 18:23:51 +02:00
|
|
|
|
|
|
|
int read_retval;
|
2003-12-07 23:37:12 +01:00
|
|
|
bool was_opened; /* True if opened at least once. */
|
2015-03-25 12:42:38 +01:00
|
|
|
int column; /* Current Column */
|
2000-09-07 18:23:51 +02:00
|
|
|
|
|
|
|
void init ();
|
2010-04-19 21:52:43 +02:00
|
|
|
HANDLE open_inuse (ACCESS_MASK access);
|
|
|
|
HANDLE create_inuse (PSECURITY_ATTRIBUTES);
|
2003-12-07 23:37:12 +01:00
|
|
|
bool slave_alive ();
|
2010-04-19 21:52:43 +02:00
|
|
|
HANDLE open_mutex (const char *mutex, ACCESS_MASK access);
|
|
|
|
inline HANDLE open_output_mutex (ACCESS_MASK access)
|
|
|
|
{ return open_mutex (OUTPUT_MUTEX, access); }
|
|
|
|
inline HANDLE open_input_mutex (ACCESS_MASK access)
|
|
|
|
{ return open_mutex (INPUT_MUTEX, access); }
|
2009-07-03 20:05:51 +02:00
|
|
|
bool exists ();
|
2011-10-16 00:37:30 +02:00
|
|
|
bool not_allocated (HANDLE&, HANDLE&);
|
2015-03-05 14:58:03 +01:00
|
|
|
void set_master_ctl_closed () {master_pid = -1;}
|
2006-06-03 22:32:07 +02:00
|
|
|
static void __stdcall create_master (int);
|
|
|
|
static void __stdcall init_session ();
|
2019-08-27 20:04:02 +02:00
|
|
|
friend class fhandler_pty_common;
|
2006-06-02 17:41:34 +02:00
|
|
|
friend class fhandler_pty_master;
|
2019-08-27 20:04:02 +02:00
|
|
|
friend class fhandler_pty_slave;
|
2000-09-07 18:23:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class tty_list
|
|
|
|
{
|
|
|
|
tty ttys[NTTYS];
|
2006-06-03 22:32:07 +02:00
|
|
|
static HANDLE mutex;
|
2000-09-07 18:23:51 +02:00
|
|
|
|
|
|
|
public:
|
2011-05-28 20:17:09 +02:00
|
|
|
tty * operator [](int n) {return ttys + device::minor (n);}
|
2011-10-16 00:37:30 +02:00
|
|
|
int allocate (HANDLE& r, HANDLE& w); /* allocate a pty */
|
2006-06-03 22:32:07 +02:00
|
|
|
int connect (int);
|
2000-09-07 18:23:51 +02:00
|
|
|
void init ();
|
2011-05-28 20:17:09 +02:00
|
|
|
tty_min *get_cttyp ();
|
2013-01-21 05:34:52 +01:00
|
|
|
int __reg2 attach (int n);
|
2006-06-03 22:32:07 +02:00
|
|
|
static void __stdcall init_session ();
|
|
|
|
friend class lock_ttys;
|
|
|
|
};
|
|
|
|
|
|
|
|
class lock_ttys
|
|
|
|
{
|
|
|
|
bool release_me;
|
|
|
|
public:
|
|
|
|
lock_ttys (DWORD = INFINITE);
|
|
|
|
static void release ();
|
|
|
|
void dont_release () {release_me = false;}
|
|
|
|
~lock_ttys ()
|
|
|
|
{
|
|
|
|
if (release_me)
|
|
|
|
release ();
|
|
|
|
}
|
2000-09-07 18:23:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern "C" int ttyslot (void);
|
2011-06-04 02:12:29 +02:00
|
|
|
#endif /*_TTY_H*/
|