2000-10-27 17:38:32 +02:00
|
|
|
/* tty.h: shared tty info for cygwin
|
2000-09-07 18:23:51 +02:00
|
|
|
|
2010-04-19 21:52:43 +02:00
|
|
|
Copyright 2000, 2001, 2002, 2003, 2004, 2006, 2009, 2010 Red Hat, Inc.
|
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. */
|
|
|
|
|
|
|
|
/* tty tables */
|
|
|
|
|
|
|
|
#define INP_BUFFER_SIZE 256
|
|
|
|
#define OUT_BUFFER_SIZE 256
|
|
|
|
#define NTTYS 128
|
2001-04-29 01:48:28 +02:00
|
|
|
#define real_tty_attached(p) ((p)->ctty >= 0 && (p)->ctty != TTY_CONSOLE)
|
2000-09-07 18:23:51 +02:00
|
|
|
|
|
|
|
/* Input/Output/ioctl events */
|
|
|
|
|
2004-05-12 03:44:11 +02:00
|
|
|
#define OUTPUT_DONE_EVENT "cygtty.output.done"
|
|
|
|
#define IOCTL_REQUEST_EVENT "cygtty.ioctl.request"
|
|
|
|
#define IOCTL_DONE_EVENT "cygtty.ioctl.done"
|
|
|
|
#define RESTART_OUTPUT_EVENT "cygtty.output.restart"
|
|
|
|
#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"
|
|
|
|
#define TTY_MASTER_ALIVE "cygtty.master_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
|
|
|
|
|
|
|
|
class tty_min
|
|
|
|
{
|
|
|
|
pid_t sid; /* Session ID of tty */
|
2004-04-09 14:09:45 +02:00
|
|
|
struct status_flags
|
|
|
|
{
|
|
|
|
unsigned initialized : 1; /* Set if tty is initialized */
|
|
|
|
unsigned rstcons : 1; /* Set if console needs to be set to "non-cooked" */
|
|
|
|
} status;
|
|
|
|
|
2000-09-07 18:23:51 +02:00
|
|
|
public:
|
|
|
|
pid_t pgid;
|
2001-04-29 01:48:28 +02:00
|
|
|
int output_stopped;
|
2000-09-07 18:23:51 +02:00
|
|
|
int ntty;
|
2006-04-21 20:53:05 +02:00
|
|
|
DWORD last_ctrl_c; /* tick count of last ctrl-c */
|
|
|
|
HWND hwnd; /* Console window handle tty belongs to */
|
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;
|
|
|
|
int write_error;
|
2006-04-21 20:53:05 +02:00
|
|
|
|
|
|
|
void setntty (int n) {ntty = n;}
|
|
|
|
pid_t getpgid () {return pgid;}
|
|
|
|
void setpgid (int pid) {pgid = pid;}
|
|
|
|
int getsid () {return sid;}
|
|
|
|
void setsid (pid_t tsid) {sid = tsid;}
|
|
|
|
void kill_pgrp (int sig);
|
|
|
|
HWND gethwnd () {return hwnd;}
|
|
|
|
void sethwnd (HWND wnd) {hwnd = wnd;}
|
2000-09-07 18:23:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class fhandler_pty_master;
|
|
|
|
|
|
|
|
class tty: public tty_min
|
|
|
|
{
|
2010-04-19 21:52:43 +02:00
|
|
|
HANDLE get_event (const char *fmt, PSECURITY_ATTRIBUTES sa,
|
|
|
|
BOOL manual_reset = FALSE);
|
2003-12-27 02:59:29 +01:00
|
|
|
__attribute__ ((regparm (3)));
|
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
|
|
|
|
2006-06-02 17:41:34 +02:00
|
|
|
HANDLE from_master, to_master;
|
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. */
|
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 ();
|
2006-06-03 22:32:07 +02:00
|
|
|
void set_master_closed () {master_pid = -1;}
|
|
|
|
static void __stdcall create_master (int);
|
|
|
|
static void __stdcall init_session ();
|
2006-06-02 17:41:34 +02:00
|
|
|
friend class fhandler_pty_master;
|
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:
|
|
|
|
tty * operator [](int n) {return ttys + n;}
|
2006-06-03 22:32:07 +02:00
|
|
|
int allocate (bool); /* true if allocate a tty, pty otherwise */
|
|
|
|
int connect (int);
|
2000-09-07 18:23:51 +02:00
|
|
|
void terminate ();
|
|
|
|
void init ();
|
|
|
|
tty_min *get_tty (int n);
|
2006-06-03 22:32:07 +02:00
|
|
|
int __stdcall attach (int);
|
|
|
|
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);
|