Re: [XHR2] Feedback on sec-* headers

Probably best to follow up here.

Yes, of course it can define the specific headers it can or cannot send. 

The problem is XHR not only enumerates the headers, it also defines a prefix; by doing so, you're effectively defining a convention that *all* people who register new HTTP headers need to consider;

  * If I want to register a header and make it secure in XHR2, I have to start its name with those four characters. If another convention comes along that requires a different prefix, and I want to invoke both behaviours with my header, I'm out of luck.

  * If I'm registering a header and am completely oblivious to XHR2, I still need to know that my choice of name makes a difference in some contexts.

Cheers,



On 22/02/2011, at 10:09 AM, Adam Barth wrote:

> I replied on HTTPbis, but I can reply here too.  It seems like the
> XMLHttpRequest API is free to decide which headers can and can't be
> set using the XMLHttpRequest API.  For example, the XMLHttpRequest API
> could decide that it can or cannot be used to set the Banana HTTP
> header as the designers of that API see fit.
> 
> Adam
> 
> 
> On Mon, Feb 21, 2011 at 2:38 PM, Mark Nottingham <mnot@mnot.net> wrote:
>> Hello,
>> 
>> A HTTPbis WG member noticed that the XHR2 draft gives special status to HTTP headers starting with Sec-* and Proxy-*:
>> 
>> <http://www.w3.org/TR/XMLHttpRequest2/#the-setrequestheader-method>
>> 
>> """
>> Terminate these steps if header is a case-insensitive match for one of the following headers … or if the start of header is a case-insensitive match for Proxy- or Sec- (including when header is just Proxy- or Sec-).
>> """
>> 
>> This is problematic. XHR2 is effectively reserving a name space in the range of possible HTTP header field names. Future applications with similar requirements will use this as precedence, and will mint their own header prefixes. When those prefixes need to be combined, we'll see fragmentation (e.g., the Sec-Private-Special-ID header, with all of the associated parsing and special handling of the field name that this entails).
>> 
>> Instead, it would be much better to use an approach somewhat like the Connection header does; i.e., have the sender declare what headers it isn't allowing the client to modify in a separate header. E.g.,
>> 
>>  XHR2-Secure: Foo, Bar, Baz
>> 
>> This way, another application can still talk about existing headers without changing their names; e.g.,
>> 
>>  FooAPI-Private: Bar, Boo
>> 
>> Cheers,
>> 
>> 
>> --
>> Mark Nottingham   http://www.mnot.net/
>> 
>> 
>> 
>> 
>> 

--
Mark Nottingham   http://www.mnot.net/

Received on Monday, 21 February 2011 23:53:38 UTC