2000-02-17 20:38:33 +01:00
|
|
|
/* tty.cc
|
|
|
|
|
2001-03-18 04:34:05 +01:00
|
|
|
Copyright 1997, 1998, 2000, 2001 Red Hat, Inc.
|
2000-02-17 20:38:33 +01: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. */
|
|
|
|
|
2000-08-02 18:28:18 +02:00
|
|
|
#include "winsup.h"
|
2000-02-17 20:38:33 +01:00
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <utmp.h>
|
2000-07-27 19:30:51 +02:00
|
|
|
#include <wingdi.h>
|
|
|
|
#include <winuser.h>
|
2000-09-08 04:56:55 +02:00
|
|
|
#include <sys/cygwin.h>
|
2000-08-22 07:10:20 +02:00
|
|
|
#include "cygerrno.h"
|
2001-07-26 21:22:24 +02:00
|
|
|
#include "security.h"
|
2000-08-22 07:10:20 +02:00
|
|
|
#include "fhandler.h"
|
2001-10-01 06:10:07 +02:00
|
|
|
#include "path.h"
|
2000-08-12 07:35:42 +02:00
|
|
|
#include "dtable.h"
|
2001-04-18 23:10:15 +02:00
|
|
|
#include "cygheap.h"
|
2000-08-22 07:10:20 +02:00
|
|
|
#include "sync.h"
|
|
|
|
#include "sigproc.h"
|
2000-08-12 07:35:42 +02:00
|
|
|
#include "pinfo.h"
|
2000-09-07 18:23:51 +02:00
|
|
|
#include "shared_info.h"
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
extern fhandler_tty_master *tty_master;
|
|
|
|
|
|
|
|
extern "C"
|
|
|
|
int
|
2001-04-24 17:25:31 +02:00
|
|
|
grantpt (int fd)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C"
|
|
|
|
int
|
2001-04-24 17:25:31 +02:00
|
|
|
unlockpt (int fd)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C"
|
|
|
|
int
|
|
|
|
ttyslot (void)
|
|
|
|
{
|
|
|
|
if (NOTSTATE (myself, PID_USETTY))
|
|
|
|
return -1;
|
|
|
|
return myself->ctty;
|
|
|
|
}
|
|
|
|
|
|
|
|
void __stdcall
|
|
|
|
tty_init (void)
|
|
|
|
{
|
|
|
|
if (NOTSTATE (myself, PID_USETTY))
|
|
|
|
return;
|
|
|
|
if (myself->ctty == -1)
|
|
|
|
if (NOTSTATE (myself, PID_CYGPARENT))
|
|
|
|
myself->ctty = attach_tty (myself->ctty);
|
|
|
|
else
|
|
|
|
return;
|
|
|
|
if (myself->ctty == -1)
|
|
|
|
termios_printf ("Can't attach to tty");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create session's master tty */
|
|
|
|
|
|
|
|
void __stdcall
|
|
|
|
create_tty_master (int ttynum)
|
|
|
|
{
|
2001-04-18 23:10:15 +02:00
|
|
|
tty_master = (fhandler_tty_master *) cygheap->fdtab.build_fhandler (-1, FH_TTYM,
|
2000-02-17 20:38:33 +01:00
|
|
|
"/dev/ttym", ttynum);
|
|
|
|
if (tty_master->init (ttynum))
|
|
|
|
api_fatal ("Can't create master tty");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Log utmp entry */
|
|
|
|
struct utmp our_utmp;
|
|
|
|
|
|
|
|
bzero ((char *) &our_utmp, sizeof (utmp));
|
|
|
|
(void) time (&our_utmp.ut_time);
|
|
|
|
strncpy (our_utmp.ut_name, getlogin (), sizeof (our_utmp.ut_name));
|
|
|
|
cygwin_gethostname (our_utmp.ut_host, sizeof (our_utmp.ut_host));
|
|
|
|
__small_sprintf (our_utmp.ut_line, "tty%d", ttynum);
|
|
|
|
our_utmp.ut_type = USER_PROCESS;
|
|
|
|
myself->ctty = ttynum;
|
|
|
|
login (&our_utmp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void __stdcall
|
|
|
|
tty_terminate (void)
|
|
|
|
{
|
|
|
|
if (NOTSTATE (myself, PID_USETTY))
|
|
|
|
return;
|
|
|
|
cygwin_shared->tty.terminate ();
|
|
|
|
}
|
|
|
|
|
|
|
|
int __stdcall
|
|
|
|
attach_tty (int num)
|
|
|
|
{
|
|
|
|
if (num != -1)
|
|
|
|
{
|
|
|
|
return cygwin_shared->tty.connect_tty (num);
|
|
|
|
}
|
|
|
|
if (NOTSTATE (myself, PID_USETTY))
|
|
|
|
return -1;
|
|
|
|
return cygwin_shared->tty.allocate_tty (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tty_list::terminate (void)
|
|
|
|
{
|
|
|
|
int ttynum = myself->ctty;
|
|
|
|
|
|
|
|
/* Keep master running till there are connected clients */
|
|
|
|
if (ttynum != -1 && ttys[ttynum].master_pid == GetCurrentProcessId ())
|
|
|
|
{
|
|
|
|
tty *t = ttys + ttynum;
|
|
|
|
CloseHandle (t->from_master);
|
|
|
|
CloseHandle (t->to_master);
|
|
|
|
/* Wait for children which rely on tty handling in this process to
|
|
|
|
go away */
|
|
|
|
for (int i = 0; ; i++)
|
|
|
|
{
|
|
|
|
if (!t->slave_alive ())
|
|
|
|
break;
|
|
|
|
if (i >= 100)
|
|
|
|
{
|
|
|
|
small_printf ("waiting for children using tty%d to terminate\n",
|
|
|
|
ttynum);
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
Sleep (200);
|
|
|
|
}
|
|
|
|
|
|
|
|
termios_printf ("tty %d master about to finish", ttynum);
|
2000-10-17 03:42:04 +02:00
|
|
|
ForceCloseHandle1 (t->to_slave, to_pty);
|
|
|
|
ForceCloseHandle1 (t->from_slave, from_pty);
|
2001-03-19 19:27:37 +01:00
|
|
|
CloseHandle (tty_master->inuse);
|
2000-02-17 20:38:33 +01:00
|
|
|
WaitForSingleObject (tty_master->hThread, INFINITE);
|
|
|
|
t->init ();
|
|
|
|
|
|
|
|
char buf[20];
|
|
|
|
__small_sprintf (buf, "tty%d", ttynum);
|
|
|
|
logout (buf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
tty_list::connect_tty (int ttynum)
|
|
|
|
{
|
|
|
|
if (ttynum < 0 || ttynum >= NTTYS)
|
|
|
|
{
|
|
|
|
termios_printf ("ttynum (%d) out of range", ttynum);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (!ttys[ttynum].exists ())
|
|
|
|
{
|
|
|
|
termios_printf ("tty %d was not allocated", ttynum);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ttynum;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tty_list::init (void)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < NTTYS; i++)
|
|
|
|
{
|
|
|
|
ttys[i].init ();
|
|
|
|
ttys[i].setntty (i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Search for tty class for our console. Allocate new tty if our process is
|
|
|
|
the only cygwin process in the current console.
|
|
|
|
Return tty number or -1 if error.
|
|
|
|
If flag == 0, just find a free tty.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
tty_list::allocate_tty (int with_console)
|
|
|
|
{
|
|
|
|
HWND console;
|
|
|
|
|
|
|
|
/* FIXME: This whole function needs a protective mutex. */
|
|
|
|
|
|
|
|
if (!with_console)
|
|
|
|
console = NULL;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char *oldtitle = new char [TITLESIZE];
|
|
|
|
|
|
|
|
if (!oldtitle)
|
|
|
|
{
|
|
|
|
termios_printf ("Can't *allocate console title buffer");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (!GetConsoleTitle (oldtitle, TITLESIZE))
|
|
|
|
{
|
|
|
|
termios_printf ("Can't read console title");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (WaitForSingleObject (title_mutex, INFINITE) == WAIT_FAILED)
|
|
|
|
termios_printf ("WFSO for title_mutext %p failed, %E", title_mutex);
|
|
|
|
|
|
|
|
char buf[40];
|
|
|
|
|
|
|
|
__small_sprintf (buf, "cygwin.find.console.%d", myself->pid);
|
|
|
|
SetConsoleTitle (buf);
|
|
|
|
Sleep (40);
|
|
|
|
console = FindWindow (NULL, buf);
|
|
|
|
SetConsoleTitle (oldtitle);
|
|
|
|
Sleep (40);
|
|
|
|
ReleaseMutex (title_mutex);
|
|
|
|
if (console == NULL)
|
|
|
|
{
|
|
|
|
termios_printf ("Can't find console window");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Is a tty allocated for console? */
|
|
|
|
|
|
|
|
int freetty = -1;
|
|
|
|
for (int i = 0; i < NTTYS; i++)
|
|
|
|
{
|
|
|
|
if (!ttys[i].exists ())
|
|
|
|
{
|
|
|
|
if (freetty < 0) /* Scanning? */
|
|
|
|
freetty = i; /* Yes. */
|
|
|
|
if (!with_console) /* Do we want to attach this to a console? */
|
|
|
|
break; /* No. We've got one. */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (with_console && ttys[i].gethwnd () == console)
|
|
|
|
{
|
|
|
|
termios_printf ("console %x already associated with tty%d",
|
|
|
|
console, i);
|
|
|
|
/* Is the master alive? */
|
|
|
|
HANDLE hMaster;
|
|
|
|
hMaster = OpenProcess (PROCESS_DUP_HANDLE, FALSE, ttys[i].master_pid);
|
|
|
|
if (hMaster)
|
|
|
|
{
|
|
|
|
CloseHandle (hMaster);
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
/* Master is dead */
|
|
|
|
freetty = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* There is no tty allocated to console, allocate the first free found */
|
|
|
|
if (freetty == -1)
|
|
|
|
{
|
|
|
|
system_printf ("No free ttys available");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
tty *t = ttys + freetty;
|
|
|
|
t->init ();
|
|
|
|
t->setsid (-1);
|
|
|
|
t->setpgid (myself->pgid);
|
|
|
|
t->sethwnd (console);
|
|
|
|
|
|
|
|
if (with_console)
|
|
|
|
{
|
|
|
|
termios_printf ("console %x associated with tty%d", console, freetty);
|
|
|
|
create_tty_master (freetty);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
termios_printf ("tty%d allocated", freetty);
|
|
|
|
return freetty;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL
|
|
|
|
tty::slave_alive ()
|
|
|
|
{
|
|
|
|
return alive (TTY_SLAVE_ALIVE);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL
|
|
|
|
tty::master_alive ()
|
|
|
|
{
|
|
|
|
return alive (TTY_MASTER_ALIVE);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL
|
|
|
|
tty::alive (const char *fmt)
|
|
|
|
{
|
|
|
|
HANDLE ev;
|
|
|
|
char buf[sizeof (TTY_MASTER_ALIVE) + 16];
|
|
|
|
|
|
|
|
__small_sprintf (buf, fmt, ntty);
|
2001-09-06 06:41:59 +02:00
|
|
|
if ((ev = OpenEvent (EVENT_ALL_ACCESS, FALSE, buf)))
|
2000-02-17 20:38:33 +01:00
|
|
|
CloseHandle (ev);
|
|
|
|
return ev != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE
|
2001-09-01 07:38:46 +02:00
|
|
|
tty::create_inuse (const char *fmt)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
HANDLE h;
|
|
|
|
char buf[sizeof (TTY_MASTER_ALIVE) + 16];
|
|
|
|
|
|
|
|
__small_sprintf (buf, fmt, ntty);
|
2001-09-01 07:38:46 +02:00
|
|
|
h = CreateEvent (&sec_all, TRUE, FALSE, buf);
|
2000-02-17 20:38:33 +01:00
|
|
|
termios_printf ("%s = %p", buf, h);
|
|
|
|
if (!h)
|
|
|
|
termios_printf ("couldn't open inuse event, %E", buf);
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tty::init (void)
|
|
|
|
{
|
2001-04-29 01:48:28 +02:00
|
|
|
output_stopped = 0;
|
2000-02-17 20:38:33 +01:00
|
|
|
setsid (0);
|
|
|
|
pgid = 0;
|
|
|
|
hwnd = NULL;
|
|
|
|
to_slave = NULL;
|
|
|
|
from_slave = NULL;
|
|
|
|
was_opened = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE
|
2001-09-01 07:17:34 +02:00
|
|
|
tty::get_event (const char *fmt, BOOL manual_reset)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
HANDLE hev;
|
|
|
|
char buf[40];
|
|
|
|
|
|
|
|
__small_sprintf (buf, fmt, ntty);
|
2001-09-01 07:17:34 +02:00
|
|
|
if (!(hev = CreateEvent (&sec_all, manual_reset, FALSE, buf)))
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
termios_printf ("couldn't create %s", buf);
|
|
|
|
set_errno (ENOENT); /* FIXME this can't be the right errno */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
termios_printf ("created event %s", buf);
|
|
|
|
return hev;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
tty::make_pipes (fhandler_pty_master *ptym)
|
|
|
|
{
|
|
|
|
/* Create communication pipes */
|
|
|
|
|
|
|
|
/* FIXME: should this be sec_none_nih? */
|
|
|
|
if (CreatePipe (&from_master, &to_slave, &sec_all, 0) == FALSE)
|
|
|
|
{
|
|
|
|
termios_printf ("can't create input pipe");
|
|
|
|
set_errno (ENOENT);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2000-10-17 03:42:04 +02:00
|
|
|
ProtectHandle1 (to_slave, to_pty);
|
2000-02-17 20:38:33 +01:00
|
|
|
if (CreatePipe (&from_slave, &to_master, &sec_all, 0) == FALSE)
|
|
|
|
{
|
|
|
|
termios_printf ("can't create output pipe");
|
|
|
|
set_errno (ENOENT);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2000-10-17 03:42:04 +02:00
|
|
|
ProtectHandle1 (from_slave, from_pty);
|
2000-02-17 20:38:33 +01:00
|
|
|
termios_printf ("tty%d from_slave %p, to_slave %p", ntty, from_slave,
|
|
|
|
to_slave);
|
2001-04-27 08:27:28 +02:00
|
|
|
|
|
|
|
DWORD pipe_mode = PIPE_NOWAIT;
|
|
|
|
if (!SetNamedPipeHandleState (to_slave, &pipe_mode, NULL, NULL))
|
|
|
|
termios_printf ("can't set to_slave to non-blocking mode");
|
2000-02-17 20:38:33 +01:00
|
|
|
ptym->set_io_handle (from_slave);
|
|
|
|
ptym->set_output_handle (to_slave);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL
|
|
|
|
tty::common_init (fhandler_pty_master *ptym)
|
|
|
|
{
|
|
|
|
/* Set termios information. Force initialization. */
|
|
|
|
ptym->tcinit (this, TRUE);
|
|
|
|
|
|
|
|
if (!make_pipes (ptym))
|
|
|
|
return FALSE;
|
2000-03-12 07:29:54 +01:00
|
|
|
ptym->need_nl = 0;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
/* Save our pid */
|
|
|
|
|
|
|
|
master_pid = GetCurrentProcessId ();
|
|
|
|
|
|
|
|
/* Allow the others to open us (for handle duplication) */
|
|
|
|
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
if (wincap.has_security () &&
|
2000-02-17 20:38:33 +01:00
|
|
|
(SetKernelObjectSecurity (hMainProc, DACL_SECURITY_INFORMATION,
|
|
|
|
get_null_sd ()) == FALSE))
|
|
|
|
small_printf ("Can't set process security, %E");
|
|
|
|
|
|
|
|
/* Create synchronisation events */
|
|
|
|
|
|
|
|
if (ptym->get_device () != FH_TTYM)
|
|
|
|
{
|
|
|
|
ptym->output_done_event = ptym->ioctl_done_event =
|
|
|
|
ptym->ioctl_request_event = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-09-01 07:17:34 +02:00
|
|
|
if (!(ptym->output_done_event = get_event (OUTPUT_DONE_EVENT)))
|
2000-02-17 20:38:33 +01:00
|
|
|
return FALSE;
|
2001-09-01 07:17:34 +02:00
|
|
|
if (!(ptym->ioctl_done_event = get_event (IOCTL_DONE_EVENT)))
|
2000-02-17 20:38:33 +01:00
|
|
|
return FALSE;
|
2001-09-01 07:17:34 +02:00
|
|
|
if (!(ptym->ioctl_request_event = get_event (IOCTL_REQUEST_EVENT)))
|
2000-02-17 20:38:33 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2001-09-01 07:17:34 +02:00
|
|
|
if (!(ptym->input_available_event = get_event (INPUT_AVAILABLE_EVENT, TRUE)))
|
2001-03-04 16:34:25 +01:00
|
|
|
return FALSE;
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
char buf[40];
|
|
|
|
__small_sprintf (buf, OUTPUT_MUTEX, ntty);
|
|
|
|
if (!(ptym->output_mutex = CreateMutex (&sec_all, FALSE, buf)))
|
|
|
|
{
|
|
|
|
termios_printf ("can't create %s", buf);
|
|
|
|
set_errno (ENOENT);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2001-03-04 16:34:25 +01:00
|
|
|
__small_sprintf (buf, INPUT_MUTEX, ntty);
|
|
|
|
if (!(ptym->input_mutex = CreateMutex (&sec_all, FALSE, buf)))
|
|
|
|
{
|
|
|
|
termios_printf ("can't create %s", buf);
|
|
|
|
set_errno (ENOENT);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
ProtectHandle1 (ptym->output_mutex, output_mutex);
|
2001-03-04 16:34:25 +01:00
|
|
|
ProtectHandle1 (ptym->input_mutex, input_mutex);
|
2000-02-17 20:38:33 +01:00
|
|
|
winsize.ws_col = 80;
|
|
|
|
winsize.ws_row = 25;
|
|
|
|
|
2001-03-18 22:11:25 +01:00
|
|
|
termios_printf ("tty%d opened", ntty);
|
2000-02-17 20:38:33 +01:00
|
|
|
return TRUE;
|
|
|
|
}
|