Re: [http-state] draft-salgueiro-secure-state-management-04.txt

Adam Barth <ietf@adambarth.com> Mon, 21 February 2011 21:10 UTC

Return-Path: <ietf@adambarth.com>
X-Original-To: http-state@core3.amsl.com
Delivered-To: http-state@core3.amsl.com
Received: from localhost (localhost [127.0.0.1]) by core3.amsl.com (Postfix) with ESMTP id DCAB63A7150 for <http-state@core3.amsl.com>; Mon, 21 Feb 2011 13:10:58 -0800 (PST)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.82
X-Spam-Level:
X-Spam-Status: No, score=-2.82 tagged_above=-999 required=5 tests=[AWL=0.157, BAYES_00=-2.599, FM_FORGED_GMAIL=0.622, RCVD_IN_DNSWL_LOW=-1]
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 sfBdR4rfPZ1b for <http-state@core3.amsl.com>; Mon, 21 Feb 2011 13:10:57 -0800 (PST)
Received: from mail-wy0-f172.google.com (mail-wy0-f172.google.com [74.125.82.172]) by core3.amsl.com (Postfix) with ESMTP id 50D033A7132 for <http-state@ietf.org>; Mon, 21 Feb 2011 13:10:57 -0800 (PST)
Received: by wyb42 with SMTP id 42so709306wyb.31 for <http-state@ietf.org>; Mon, 21 Feb 2011 13:11:39 -0800 (PST)
Received: by 10.216.179.140 with SMTP id h12mr1625813wem.40.1298322698165; Mon, 21 Feb 2011 13:11:38 -0800 (PST)
Received: from mail-iw0-f172.google.com (mail-iw0-f172.google.com [209.85.214.172]) by mx.google.com with ESMTPS id t5sm2284338wes.9.2011.02.21.13.11.36 (version=SSLv3 cipher=OTHER); Mon, 21 Feb 2011 13:11:37 -0800 (PST)
Received: by iwl42 with SMTP id 42so3473837iwl.31 for <http-state@ietf.org>; Mon, 21 Feb 2011 13:11:35 -0800 (PST)
Received: by 10.231.36.75 with SMTP id s11mr1488241ibd.130.1298322695094; Mon, 21 Feb 2011 13:11:35 -0800 (PST)
MIME-Version: 1.0
Received: by 10.231.215.67 with HTTP; Mon, 21 Feb 2011 13:11:05 -0800 (PST)
In-Reply-To: <B872210E-0DA3-4721-B3C9-BF63AC0AD727@cisco.com>
References: <B872210E-0DA3-4721-B3C9-BF63AC0AD727@cisco.com>
From: Adam Barth <ietf@adambarth.com>
Date: Mon, 21 Feb 2011 13:11:05 -0800
Message-ID: <AANLkTik+O_EsiU6i5CDSRuk6Hyd_0ptppWHOhzyrS2aU@mail.gmail.com>
To: Gonzalo Salgueiro <gsalguei@cisco.com>
Content-Type: text/plain; charset="windows-1252"
Content-Transfer-Encoding: quoted-printable
Cc: http-state@ietf.org
Subject: Re: [http-state] draft-salgueiro-secure-state-management-04.txt
X-BeenThere: http-state@ietf.org
X-Mailman-Version: 2.1.9
Precedence: list
List-Id: Discuss HTTP State Management Mechanism <http-state.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/listinfo/http-state>, <mailto:http-state-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/http-state>
List-Post: <mailto:http-state@ietf.org>
List-Help: <mailto:http-state-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/http-state>, <mailto:http-state-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 21 Feb 2011 21:10:59 -0000

Overall feedback:

There are large performance problems with this proposal.  However, I
like the general idea of the user agent and the server establishing
key material that's used to authenticate various parts of the HTTP
request.

Some random detailed comments:

===
   In every request from the user agent to the server, the user agent
   MUST advertise its support for the Secure State Management
   procedures defined in this document.
===

User agent's aren't going to like this requirement because it bloats
UA => Server request for everyone.

===
      SSM-Functions = "SSM-Functions" ":" MAC-Function
                      *["," *SP MAC-Function]
===

Presumably LWS instead of SP.

===
   A client MUST NOT issue
   concurrent requests that utilize the same security association
   handle and session handle, as the server will not be able to
   differentiate between legitimate requests and requests that are, in
   fact, replay attacks.
===

This is terrible for performance.  It's extremely common to have
multiple requests in flight to a server and will only become more
common in the future.

===
   Once an association has been established, it MAY be used
   subsequently over either HTTP or HTTPS when the client issues
   requests to the server.
===

What about other protocols?  Can I use it with gopher?  What about
SPDY?  What about Future-Protocol-That's-Awesome?

===
   When using HTTPS and establishing a new security association, the
   server MUST reply to requests that contain the SSM-Functions header
   and that do not demonstrate having a valid security association with
   a 401 Unauthorized as shown below:
===

This is slow because it introduces an extra round-trip between the UA
and the server to establish the security association.  For servers
that care about latency, that's a huge hit in many common deployment
scenarios, especially mobile.

===
      GET / HTTP/1.1
      SSM-Functions: hmac-md5, hmac-sha-1
      SSM-Parameters: assoc=12345; session=1; nonce=1;
                components=Request-Line;
                mac=2aae6c35c94fcfb415dbe95f408b9ce91ee846ed
===

That's a lot of junk to send with each request.  People believe that
Cookie headers area already too long!

===
      HTTP/1.1 401 Unauthorized
      WWW-Authenticate: SSM transport=https, port=443
===

Why not just use a regular HTTP redirect?

I don't understand how the user agent chooses which components to use.
 Does the server request these?  Is the user agent just supposed to be
prescient?

Adam


On Mon, Feb 21, 2011 at 11:09 AM, Gonzalo Salgueiro <gsalguei@cisco.com> wrote:
> Folks,
> We just published a significantly revised version of the secure state
> management draft that we had been working on.  The new draft can be found
> here:
> http://tools.ietf.org/html/draft-salgueiro-secure-state-management-04
>
> We had received mixed feedback before, but it seemed there were two
> recurring themes:
> ·         We wanted to move away from cookies for secure state management,
> though perhaps continuing to use cookies as a means of identifying the
> remote user agent
> ·         We need to have a solution that works over HTTP that does not
> require the use of Diffie-Hellman
>
> We took a step back to look at the problem we were trying to solve.  What we
> want is to ensure that a request coming from a client could be trusted, even
> if transmitted over HTTP.  So, what we wanted really wasn’t a secure cookie,
> but a guarantee that the request is genuine.
>
> With this draft, we’ve moved away from cookies and focus on only providing
> message authentication.  To provide message authentication, we still
> establish an association between the client and server.  We still allow for
> Diffie-Hellman to be used, but we have a mechanism in place to allow HTTPS
> to be used for the sole purpose of establishing associations, too.  The end
> result is that, with this draft, we can provide message integrity and we can
> avoid replay of messages.
>
> We invite you to look at this revised draft and provide us with feedback.
> Warm Regards,
> Gonzalo
> _______________________________________________
> http-state mailing list
> http-state@ietf.org
> https://www.ietf.org/mailman/listinfo/http-state
>
>