WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

Re: [Xen-devel] [RFC PATCH] allow connecting to xenconsole from remote h

To: Keir Fraser <Keir.Fraser@xxxxxxxxxxxx>
Subject: Re: [Xen-devel] [RFC PATCH] allow connecting to xenconsole from remote hosts
From: Muli Ben-Yehuda <muli@xxxxxxxxxx>
Date: Wed, 6 Sep 2006 20:22:40 +0300
Cc: Jimi Xenidis <jimix@xxxxxxxxxxxxxx>, xen-devel <xen-devel@xxxxxxxxxxxxxxxxxxx>, Orran Y Krieger <okrieg@xxxxxxxxxx>
Delivery-date: Wed, 06 Sep 2006 10:23:05 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
In-reply-to: <C124AD56.23E5%Keir.Fraser@xxxxxxxxxxxx>
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
References: <20060906075304.GA19255@xxxxxxxxxxxxxxxxxx> <C124AD56.23E5%Keir.Fraser@xxxxxxxxxxxx>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
User-agent: Mutt/1.5.11
On Wed, Sep 06, 2006 at 04:52:38PM +0100, Keir Fraser wrote:

> Possibly, yes, but this patch seems to do a fair bit more than just add
> minimal socket support. What's all the message queue stuff about? Can't you
> treat the console I/O as character streams?

A message is just a bunch of characters we've read at once. Messages
are read from one stream and written to another. After being read and
before being written, they're held on queues. The messages and queues
serve two purposes:

- they give us a place to hold characters we read from one stream
  (console pty or socket) until the other becomes writable. With
  stdout/stdin everything is always readable and writable - with a
  socket this isn't necessarily true.

- 'noecho' mode, where we discard stuff that we read back from a given
  fd after we've just written it there ourselves. Without this you get
  every console command echo'd back to you from the pty
  immediately. For what it's worth this happens without the socket
  support as well, except there we put stdout into raw mode so that
  the terminal does the 'echo cancelation'. I didn't find a way to
  have the pty not echo everything back at me and I didn't want to
  rely on the remote tty being in 'raw' mode, so I implemented it
  myself.

Cheers,
Muli

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel