From 7b03b0d8cee0ab8ef442d0d1ed2031f77207557a Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Thu, 5 Apr 2012 02:54:51 +0000 Subject: [PATCH] * fhandler.h (fhandler_pty_common::bytes_available): Declare new function. (fhandler_pty_master::flush_to_slave): Ditto. * fhandler_tty.cc (bytes_available): Define new function. (fhandler_pty_common::bytes_available): Ditto. (handler_pty_master::flush_to_slave): Ditto. (fhandler_pty_master::process_slave_output): Call flush_to_slave () here. Use bytes_available () rather than PeekNamedPipe. Cleanup sloppy logic. (fhandler_pty_slave::read): Use bytes_available () rather than PeekNamedPipe. (fhandler_pty_slave::ioctl): Ditto. (fhandler_pty_master::ioctl): Ditto. (fhandler_pty_master::cleanup): Remove ancient #if 0. * select.cc (peek_pipe): Call flush_to_slave whenever we're checking for a pty master. --- winsup/cygwin/ChangeLog | 19 +++++ winsup/cygwin/fhandler.h | 2 + winsup/cygwin/fhandler_tty.cc | 133 +++++++++++++++++----------------- winsup/cygwin/select.cc | 14 ++-- 4 files changed, 98 insertions(+), 70 deletions(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 57f411250..2bbf5f6dc 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,22 @@ +2012-04-04 Christopher Faylor + + * fhandler.h (fhandler_pty_common::bytes_available): Declare new + function. + (fhandler_pty_master::flush_to_slave): Ditto. + * fhandler_tty.cc (bytes_available): Define new function. + (fhandler_pty_common::bytes_available): Ditto. + (handler_pty_master::flush_to_slave): Ditto. + (fhandler_pty_master::process_slave_output): Call flush_to_slave () + here. Use bytes_available () rather than PeekNamedPipe. Cleanup + sloppy logic. + (fhandler_pty_slave::read): Use bytes_available () rather than + PeekNamedPipe. + (fhandler_pty_slave::ioctl): Ditto. + (fhandler_pty_master::ioctl): Ditto. + (fhandler_pty_master::cleanup): Remove ancient #if 0. + * select.cc (peek_pipe): Call flush_to_slave whenever we're checking + for a pty master. + 2012-04-04 Corinna Vinschen * fhandler_nodevice.cc (fhandler_nodevice::open): Convert EROFS to diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h index cad30189f..06fa7c4c4 100644 --- a/winsup/cygwin/fhandler.h +++ b/winsup/cygwin/fhandler.h @@ -1433,6 +1433,7 @@ class fhandler_pty_common: public fhandler_termios int close (); _off64_t lseek (_off64_t, int); + bool bytes_available (DWORD& n); void set_close_on_exec (bool val); select_record *select_read (select_stuff *); select_record *select_write (select_stuff *); @@ -1549,6 +1550,7 @@ public: void fixup_after_fork (HANDLE parent); void fixup_after_exec (); int tcgetpgrp (); + void flush_to_slave (); fhandler_pty_master (void *) {} ~fhandler_pty_master (); diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc index 6189046b9..1145bd14f 100644 --- a/winsup/cygwin/fhandler_tty.cc +++ b/winsup/cygwin/fhandler_tty.cc @@ -50,6 +50,25 @@ fhandler_pty_slave::get_unit () return dev ().get_minor (); } +bool +bytes_available (DWORD& n, HANDLE h) +{ + bool succeeded = PeekNamedPipe (h, NULL, 0, NULL, &n, NULL); + if (!succeeded) + { + termios_printf ("PeekNamedPipe(%p) failed, %E", h); + n = 0; + } + debug_only_printf ("%u bytes available", n); + return succeeded; +} + +bool +fhandler_pty_common::bytes_available (DWORD &n) +{ + return ::bytes_available (n, get_handle ()); +} + #ifdef DEBUGGING static class mutex_stack { @@ -62,9 +81,16 @@ public: static int osi; #endif /*DEBUGGING*/ +void +fhandler_pty_master::flush_to_slave () +{ + if (get_readahead_valid () && !(get_ttyp ()->ti.c_lflag & ICANON)) + accept_input (); +} + DWORD fhandler_pty_common::__acquire_output_mutex (const char *fn, int ln, - DWORD ms) + DWORD ms) { if (strace.active ()) strace.prntf (_STRACE_TERMIOS, fn, "(%d): pty output_mutex (%p): waiting %d ms", ln, output_mutex, ms); @@ -194,6 +220,8 @@ fhandler_pty_master::process_slave_output (char *buf, size_t len, int pktmode_on int column = 0; int rc = 0; + flush_to_slave (); + if (len == 0) goto out; @@ -210,7 +238,6 @@ fhandler_pty_master::process_slave_output (char *buf, size_t len, int pktmode_on goto out; } - for (;;) { /* Set RLEN to the number of bytes to read from the pipe. */ @@ -226,50 +253,40 @@ fhandler_pty_master::process_slave_output (char *buf, size_t len, int pktmode_on if (rlen > sizeof outbuf) rlen = sizeof outbuf; - HANDLE handle = get_io_handle (); - - n = 0; // get_readahead_into_buffer (outbuf, len); - if (!n) + n = 0; + for (;;) { - /* Doing a busy wait like this is quite inefficient, but nothing - else seems to work completely. Windows should provide some sort - of overlapped I/O for pipes, or something, but it doesn't. */ - while (1) + if (!bytes_available (n)) + goto err; + if (n) + break; + if (hit_eof ()) + goto out; + /* DISCARD (FLUSHO) and tcflush can finish here. */ + if ((get_ttyp ()->ti.c_lflag & FLUSHO || !buf)) + goto out; + + if (is_nonblocking ()) { - if (!PeekNamedPipe (handle, NULL, 0, NULL, &n, NULL)) - { - termios_printf ("PeekNamedPipe(%p) failed, %E", handle); - goto err; - } - if (n > 0) - break; - if (hit_eof ()) - goto out; - /* DISCARD (FLUSHO) and tcflush can finish here. */ - if ((get_ttyp ()->ti.c_lflag & FLUSHO || !buf)) - goto out; - - if (is_nonblocking ()) - { - set_errno (EAGAIN); - rc = -1; - goto out; - } - pthread_testcancel (); - if (WaitForSingleObject (signal_arrived, 10) == WAIT_OBJECT_0 - && !_my_tls.call_signal_handler ()) - { - set_errno (EINTR); - rc = -1; - goto out; - } + set_errno (EAGAIN); + rc = -1; + goto out; } - - if (!ReadFile (handle, outbuf, rlen, &n, NULL)) + pthread_testcancel (); + if (WaitForSingleObject (signal_arrived, 10) == WAIT_OBJECT_0 + && !_my_tls.call_signal_handler ()) { - termios_printf ("ReadFile failed, %E"); - goto err; + set_errno (EINTR); + rc = -1; + goto out; } + flush_to_slave (); + } + + if (!ReadFile (get_handle (), outbuf, rlen, &n, NULL)) + { + termios_printf ("ReadFile failed, %E"); + goto err; } termios_printf ("bytes read %u", n); @@ -668,7 +685,6 @@ fhandler_pty_slave::read (void *ptr, size_t& len) size_t readlen; DWORD bytes_in_pipe; char buf[INP_BUFFER_SIZE]; - char peek_buf[INP_BUFFER_SIZE]; DWORD time_to_wait; bg_check_types bg = bg_check (SIGTTIN); @@ -785,12 +801,8 @@ fhandler_pty_slave::read (void *ptr, size_t& len) } goto out; } - if (!PeekNamedPipe (get_handle (), peek_buf, sizeof (peek_buf), &bytes_in_pipe, NULL, NULL)) - { - termios_printf ("PeekNamedPipe failed, %E"); - raise (SIGHUP); - bytes_in_pipe = 0; - } + if (!bytes_available (bytes_in_pipe)) + raise (SIGHUP); /* On first peek determine no. of bytes to flush. */ if (!ptr && len == UINT_MAX) @@ -826,12 +838,8 @@ fhandler_pty_slave::read (void *ptr, size_t& len) 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 */ - if (!PeekNamedPipe (get_handle (), peek_buf, 1, &bytes_in_pipe, NULL, NULL)) - { - termios_printf ("PeekNamedPipe failed, %E"); - raise (SIGHUP); - bytes_in_pipe = 0; - } + if (!bytes_available (bytes_in_pipe)) + raise (SIGHUP); if (n) { len -= n; @@ -999,15 +1007,15 @@ fhandler_pty_slave::ioctl (unsigned int cmd, void *arg) goto out; case FIONREAD: { - int n; - if (!PeekNamedPipe (get_handle (), NULL, 0, NULL, (DWORD *) &n, NULL)) + DWORD n; + if (!bytes_available (n)) { set_errno (EINVAL); retval = -1; } else { - *(int *) arg = n; + *(int *) arg = (int) n; retval = 0; } } @@ -1265,11 +1273,6 @@ fhandler_pty_master::cleanup () int fhandler_pty_master::close () { -#if 0 - while (accept_input () > 0) - continue; -#endif - termios_printf ("closing from_master(%p)/to_master(%p) since we own them(%d)", from_master, to_master, dwProcessId); if (cygwin_finished_initializing) @@ -1420,13 +1423,13 @@ fhandler_pty_master::ioctl (unsigned int cmd, void *arg) return this->tcsetpgrp ((pid_t) arg); case FIONREAD: { - int n; - if (!PeekNamedPipe (to_master, NULL, 0, NULL, (DWORD *) &n, NULL)) + DWORD n; + if (!::bytes_available (n, to_master)) { set_errno (EINVAL); return -1; } - *(int *) arg = n; + *(int *) arg = (DWORD) n; } break; default: diff --git a/winsup/cygwin/select.cc b/winsup/cygwin/select.cc index 72900866e..85753e817 100644 --- a/winsup/cygwin/select.cc +++ b/winsup/cygwin/select.cc @@ -552,11 +552,15 @@ peek_pipe (select_record *s, bool from_select) switch (fh->get_major ()) { case DEV_PTYM_MAJOR: - if (((fhandler_pty_master *) fh)->need_nl) - { - gotone = s->read_ready = true; - goto out; - } + { + fhandler_pty_master *fhm = (fhandler_pty_master *) fh; + fhm->flush_to_slave (); + if (fhm->need_nl) + { + gotone = s->read_ready = true; + goto out; + } + } break; default: if (fh->get_readahead_valid ()) -- 2.43.5