Re: [Anima] ANIMA-WG: pls chime in: early allocation for otherName code points (draft-ietf-anima-autonomic-control-plane)

Michael Richardson <mcr+ietf@sandelman.ca> Thu, 02 July 2020 23:46 UTC

Return-Path: <mcr+ietf@sandelman.ca>
X-Original-To: anima@ietfa.amsl.com
Delivered-To: anima@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0140D3A086C for <anima@ietfa.amsl.com>; Thu, 2 Jul 2020 16:46:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.899
X-Spam-Level:
X-Spam-Status: No, score=-1.899 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=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 xIaMmpEFRief for <anima@ietfa.amsl.com>; Thu, 2 Jul 2020 16:46:41 -0700 (PDT)
Received: from tuna.sandelman.ca (tuna.sandelman.ca [209.87.249.19]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 842503A082D for <anima@ietf.org>; Thu, 2 Jul 2020 16:46:41 -0700 (PDT)
Received: from localhost (localhost [127.0.0.1]) by tuna.sandelman.ca (Postfix) with ESMTP id 5F968389D4; Thu, 2 Jul 2020 19:43:51 -0400 (EDT)
Received: from tuna.sandelman.ca ([127.0.0.1]) by localhost (localhost [127.0.0.1]) (amavisd-new, port 10024) with LMTP id nYE8BveNC-p8; Thu, 2 Jul 2020 19:43:50 -0400 (EDT)
Received: from sandelman.ca (obiwan.sandelman.ca [IPv6:2607:f0b0:f:2::247]) by tuna.sandelman.ca (Postfix) with ESMTP id 9E56C389C7; Thu, 2 Jul 2020 19:43:50 -0400 (EDT)
Received: from localhost (localhost [IPv6:::1]) by sandelman.ca (Postfix) with ESMTP id 8251B5C5; Thu, 2 Jul 2020 19:46:39 -0400 (EDT)
From: Michael Richardson <mcr+ietf@sandelman.ca>
To: Toerless Eckert <tte@cs.fau.de>, anima@ietf.org
In-Reply-To: <20200702204334.GA43996@faui48f.informatik.uni-erlangen.de>
References: <20200702132922.GA11404@faui48f.informatik.uni-erlangen.de> <91A85F2F-D9D7-4D64-8672-50DF942A063C@cisco.com> <25042.1593710947@localhost> <20200702204334.GA43996@faui48f.informatik.uni-erlangen.de>
X-Mailer: MH-E 8.6+git; nmh 1.7+dev; GNU Emacs 26.1
X-Face: $\n1pF)h^`}$H>Hk{L"x@)JS7<%Az}5RyS@k9X%29-lHB$Ti.V>2bi.~ehC0; <'$9xN5Ub# z!G,p`nR&p7Fz@^UXIn156S8.~^@MJ*mMsD7=QFeq%AL4m<nPbLgmtKK-5dC@#:k
MIME-Version: 1.0
Content-Type: multipart/signed; boundary="=-=-="; micalg="pgp-sha512"; protocol="application/pgp-signature"
Date: Thu, 02 Jul 2020 19:46:39 -0400
Message-ID: <26790.1593733599@localhost>
Archived-At: <https://mailarchive.ietf.org/arch/msg/anima/oku_bo0JGPe1-zxZPZNLqemDpJ8>
Subject: Re: [Anima] ANIMA-WG: pls chime in: early allocation for otherName code points (draft-ietf-anima-autonomic-control-plane)
X-BeenThere: anima@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Autonomic Networking Integrated Model and Approach <anima.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/anima>, <mailto:anima-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/anima/>
List-Post: <mailto:anima@ietf.org>
List-Help: <mailto:anima-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/anima>, <mailto:anima-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 02 Jul 2020 23:46:44 -0000

Toerless Eckert <tte@cs.fau.de> wrote:
    > UTF8 ? ;-))

    > AcpNodeName ::= IA5String (SIZE (1..MAX))

    >> # the OID: 1.3.6.1.4.1.46930.1 is a Private Enterprise Number OID:
    >> #    iso.org.dod.internet.private.enterprise . SANDELMAN=46930 . 1
    >> @idevid.add_extension(extension_factory.create_extension(
    >> "subjectAltName",
    >> sprintf("otherName:1.3.6.1.4.1.46930.1;UTF8:%s",
    >> self.sanitized_eui64),
    >> false))

I think it's just:

 @idevid.add_extension(extension_factory.create_extension(
    "subjectAltName",
    sprintf("otherName:1.3.6.1.4.1.46930.1;IA5STRING:%s",
    self.sanitized_eui64),
    false))

Although I think "IA5" and "IA5STRING" are equvivalent here.

    >> The hardest part was figuring out the ";UTF8:" part, as I had to read the C
    >> code underneath to learn how that worked.
    >> (false, is I think, whether it is critical)

The table is at: openssl/crypto/asn1/asn1_gen.c.  If it's in a document
somewhere, I never found it.

--
Michael Richardson <mcr+IETF@sandelman.ca>, Sandelman Software Works
 -= IPv6 IoT consulting =-