Re: [kitten] [Technical Errata Reported] RFC6680 (4337)

Nico Williams <nico@cryptonector.com> Mon, 20 April 2015 16:42 UTC

Return-Path: <nico@cryptonector.com>
X-Original-To: kitten@ietfa.amsl.com
Delivered-To: kitten@ietfa.amsl.com
Received: from localhost (ietfa.amsl.com [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id EFAD11A7113 for <kitten@ietfa.amsl.com>; Mon, 20 Apr 2015 09:42:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.666
X-Spam-Level:
X-Spam-Status: No, score=-1.666 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, IP_NOT_FRIENDLY=0.334, RCVD_IN_DNSWL_NONE=-0.0001] autolearn=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Uozwkt6VoXYw for <kitten@ietfa.amsl.com>; Mon, 20 Apr 2015 09:42:31 -0700 (PDT)
Received: from homiemail-a33.g.dreamhost.com (sub4.mail.dreamhost.com [69.163.253.135]) by ietfa.amsl.com (Postfix) with ESMTP id 390631A19E3 for <kitten@ietf.org>; Mon, 20 Apr 2015 09:42:31 -0700 (PDT)
Received: from homiemail-a33.g.dreamhost.com (localhost [127.0.0.1]) by homiemail-a33.g.dreamhost.com (Postfix) with ESMTP id 179F159407C; Mon, 20 Apr 2015 09:42:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=cryptonector.com; h=date :from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; s=cryptonector.com; bh=W3RBIrf7zZx/U8 3et64Zp/XPR+A=; b=OEPYoQfgyG7Bo5rGxdmIGd0RXayMYC7aBKiHf8XpnrtDIL 4wXmtcLEfs5HH4RpoDDmtqhX3JVxbW0UUzsfWBHv1I6hkPJJShbFRytM0IY8fBOZ fD7V9WWPMBd4uPrhWn3JujKfIRGuIcZVqii5ACNQEa+0yBaenTqaqTeN/EbQs=
Received: from localhost (108-207-244-174.lightspeed.austtx.sbcglobal.net [108.207.244.174]) (Authenticated sender: nico@cryptonector.com) by homiemail-a33.g.dreamhost.com (Postfix) with ESMTPA id A7E3D594079; Mon, 20 Apr 2015 09:42:27 -0700 (PDT)
Date: Mon, 20 Apr 2015 11:42:26 -0500
From: Nico Williams <nico@cryptonector.com>
To: Sam Hartman <hartmans-ietf@mit.edu>
Message-ID: <20150420164225.GW13041@localhost>
References: <20150418215222.7ABFD180206@rfc-editor.org> <4268E41F-712E-425D-B514-C0023D311462@gmail.com> <tsl7ft7zx9f.fsf@mit.edu> <20150419230843.GP13041@localhost> <tsly4lmyl7i.fsf@mit.edu> <20150420155313.GQ13041@localhost> <tsl8udmyd02.fsf@mit.edu>
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Disposition: inline
In-Reply-To: <tsl8udmyd02.fsf@mit.edu>
User-Agent: Mutt/1.5.21 (2010-09-15)
Archived-At: <http://mailarchive.ietf.org/arch/msg/kitten/ixJDFE1E_Q1EUy_vFrdcOuOHNgw>
Cc: "kitten@ietf.org" <kitten@ietf.org>, Kathleen Moriarty <kathleen.moriarty.ietf@gmail.com>, RFC Errata System <rfc-editor@rfc-editor.org>, "leifj@sunet.se" <leifj@sunet.se>
Subject: Re: [kitten] [Technical Errata Reported] RFC6680 (4337)
X-BeenThere: kitten@ietf.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: Common Authentication Technologies - Next Generation <kitten.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/kitten>, <mailto:kitten-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/kitten/>
List-Post: <mailto:kitten@ietf.org>
List-Help: <mailto:kitten-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/kitten>, <mailto:kitten-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 20 Apr 2015 16:42:32 -0000

On Mon, Apr 20, 2015 at 12:34:53PM -0400, Sam Hartman wrote:
> I agree that we should write applications assuming they will be fast.
> That's very different from non-blocking for reasons including the ones I
> already explained: network swap, demand paging over the net, database
> lookups for things like nss etc that you'd expect to be fast but
> sometimes aren't.

My take is this: if reading [what should be] a local configuration file
results in slow I/O, then all is lost when it comes to being
non-blocking.  The same applies to swapping.

So, if I ask for "fast" behavior, I should get "fast" behavior given the
constraints of the running environment.  E.g., bare metal with close-by
local storage all cached in memory anyways, vs. VM guests with
all-remote "local" storage.  Using standard, portable APIs, the
implementation can't tell if reading a "local" configuration file, or a
memory allocation of some non-trivial size, will be slow, but it also
doesn't have to.

> Basically, I don't think the IETF is in a position to say something is
> non-blocking because there are many reasonable implementations where
> that's simply impossible to implement.

We don't have to be too exact.

> We can talk about whether an application should be prepared for an API
> to take a while.

That's what my I-D does.

> I think that attributes listed in the return from inquire_name are
> things an application can assume will be relatively fast compared to
> ones not in inquire_name.

Yes, but consider an attribute prefix that demands "relatively fast"
service.  A mechanism must fail if it doesn't understand that prefix.
And if it does understand it, then it must fail if it can't satisfy the
requested constraint.

Nico
--