Re: [hybi] More feedback on WebSockets

Greg Wilkins <gregw@webtide.com> Tue, 27 October 2009 21:12 UTC

Return-Path: <gregw@webtide.com>
X-Original-To: hybi@core3.amsl.com
Delivered-To: hybi@core3.amsl.com
Received: from localhost (localhost [127.0.0.1]) by core3.amsl.com (Postfix) with ESMTP id 2D6F43A6914 for <hybi@core3.amsl.com>; Tue, 27 Oct 2009 14:12:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.305
X-Spam-Level:
X-Spam-Status: No, score=-2.305 tagged_above=-999 required=5 tests=[AWL=0.294, BAYES_00=-2.599]
Received: from mail.ietf.org ([64.170.98.32]) by localhost (core3.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id USXlYw+NmFUU for <hybi@core3.amsl.com>; Tue, 27 Oct 2009 14:12:02 -0700 (PDT)
Received: from mail-bw0-f219.google.com (mail-bw0-f219.google.com [209.85.218.219]) by core3.amsl.com (Postfix) with ESMTP id 2582F3A67ED for <hybi@ietf.org>; Tue, 27 Oct 2009 14:12:01 -0700 (PDT)
Received: by bwz19 with SMTP id 19so182014bwz.28 for <hybi@ietf.org>; Tue, 27 Oct 2009 14:12:09 -0700 (PDT)
Received: by 10.204.34.78 with SMTP id k14mr180308bkd.106.1256677929745; Tue, 27 Oct 2009 14:12:09 -0700 (PDT)
Received: from ?10.10.1.9? (60-242-119-126.tpgi.com.au [60.242.119.126]) by mx.google.com with ESMTPS id 14sm126961bwz.9.2009.10.27.14.12.06 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 27 Oct 2009 14:12:08 -0700 (PDT)
Message-ID: <4AE76221.30908@webtide.com>
Date: Wed, 28 Oct 2009 08:12:01 +1100
From: Greg Wilkins <gregw@webtide.com>
User-Agent: Thunderbird 2.0.0.23 (X11/20090817)
MIME-Version: 1.0
To: hybi@ietf.org
References: <FDC38D4B-AB64-4F6B-B569-81D7A56DEC8D@mnot.net> <Pine.LNX.4.62.0910270912040.9145@hixie.dreamhostps.com> <4AE6C7D1.30003@webtide.com> <Pine.LNX.4.62.0910271834480.25616@hixie.dreamhostps.com> <4AE75D12.4060302@webtide.com> <Pine.LNX.4.62.0910272055390.25608@hixie.dreamhostps.com> <4AE75FEA.3090001@webtide.com> <Pine.LNX.4.62.0910272104140.25608@hixie.dreamhostps.com>
In-Reply-To: <Pine.LNX.4.62.0910272104140.25608@hixie.dreamhostps.com>
X-Enigmail-Version: 0.95.7
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 7bit
Subject: Re: [hybi] More feedback on WebSockets
X-BeenThere: hybi@ietf.org
X-Mailman-Version: 2.1.9
Precedence: list
List-Id: Server-Initiated HTTP <hybi.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/listinfo/hybi>, <mailto:hybi-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/hybi>
List-Post: <mailto:hybi@ietf.org>
List-Help: <mailto:hybi-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/hybi>, <mailto:hybi-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 27 Oct 2009 21:12:03 -0000

Ian Hickson wrote:
> On Wed, 28 Oct 2009, Greg Wilkins wrote:
>>> For the packet-forwarding ones, are we talking about inserting a 
>>> header on incoming connections (client to server) or outgoing 
>>> responses (server back to client)?
>> Again - there are a huge number of variations.
>>
>> But inserting X-forwarded-for headers on requests and Via headers on 
>> responses is common. So is setting cookies on responses so that 
>> subsequent connections can be balanced the same. Also SSL offload will 
>> want to set certificate details in the request header.
> 
> It sounds like there are some intermediaries that are harmless and would 
> work fine, and others that are harmful and which WebSocket would correctly 
> detect and prevent connections through. If someone wants to deploy a 
> WebSocket server behind the latter, they'll quickly discover the problem, 
> so it doesn't seem like it'd be a barrier to adoption. It's client-side 
> intermediaries that are the main concern (and for which TLS-based 
> WebSocket is the most obvious solution in most cases).


But they need to be able to set cookies and headers in order to work.

Setting these on the upgrade request and response should be perfectly
possible and HTTP legal.  It would allow existing intermediaries to
communicate important information to client (which node they are stuck
to) and to server (ssl and original client details).

These are just a few of many examples of why allowing an intermediary
to add meta data is an important part of a web protocol.

WS does not allow this because it is trying to do an end-run around
intermediaries rather then trying to sensibly work with them.

regards