[netconf] a comment on draft-ietf-netconf-tls-client-server-15

Martin Bjorklund <mbj@tail-f.com> Wed, 23 October 2019 07:37 UTC

Return-Path: <mbj@tail-f.com>
X-Original-To: netconf@ietfa.amsl.com
Delivered-To: netconf@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 5C182120058 for <netconf@ietfa.amsl.com>; Wed, 23 Oct 2019 00:37:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.9
X-Spam-Level:
X-Spam-Status: No, score=-1.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_PASS=-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 7dgdYLo0sYVM for <netconf@ietfa.amsl.com>; Wed, 23 Oct 2019 00:37:19 -0700 (PDT)
Received: from mail.tail-f.com (mail.tail-f.com [46.21.102.45]) by ietfa.amsl.com (Postfix) with ESMTP id 00BA4120024 for <netconf@ietf.org>; Wed, 23 Oct 2019 00:37:18 -0700 (PDT)
Received: from localhost (h-4-44.A165.priv.bahnhof.se [158.174.4.44]) by mail.tail-f.com (Postfix) with ESMTPSA id 8F97F1AE018B for <netconf@ietf.org>; Wed, 23 Oct 2019 09:37:16 +0200 (CEST)
Date: Wed, 23 Oct 2019 09:37:15 +0200
Message-Id: <20191023.093715.2094043256766716320.mbj@tail-f.com>
To: netconf@ietf.org
From: Martin Bjorklund <mbj@tail-f.com>
X-Mailer: Mew version 6.8 on Emacs 25.2
Mime-Version: 1.0
Content-Type: Text/Plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Archived-At: <https://mailarchive.ietf.org/arch/msg/netconf/7paQfM7q9QFRWnkH-3Am13Fs8Js>
Subject: [netconf] a comment on draft-ietf-netconf-tls-client-server-15
X-BeenThere: netconf@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: NETCONF WG list <netconf.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/netconf>, <mailto:netconf-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/netconf/>
List-Post: <mailto:netconf@ietf.org>
List-Help: <mailto:netconf-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/netconf>, <mailto:netconf-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 23 Oct 2019 07:37:20 -0000

Hi,

This is not a full review, just one thing that I stubmled upon.

The model has (pruned to illustrate my point):

       container server-authentication {
         nacm:default-deny-write;
         must 'ca-certs or server-certs';
         container ca-certs {
           if-feature "ts:x509-certificates";
           presence ...;
           ...
         }
         container server-certs {
           if-feature "ts:x509-certificates";
           presence ...;
           ...
         }
       }

1.  If a server doesn't implement the feature ts:x509-certificates,
    the model effectively becomes:

       container server-authentication {
         nacm:default-deny-write;
         must 'ca-certs or server-certs';
       }

    This must expression will never be true, which means that it is
    not possible to configure anything!


2.  When this grouping is used in ietf-https-notifs, it looks like
    this:

  +--rw receivers
     +--rw receiver* [name]
        +--rw name           string
        ...
        |  +--rw server-authentication
        |  |  +--rw ca-certs! {ts:x509-certificates}?
                 ...            
        |  |  +--rw server-certs! {ts:x509-certificates}?
                 ...

   Now, the container 'server-authentication' has
   nacm:default-deny-write, and its contents is mandatory (due to the
   must expression).  This means that it is not possible to configure
   a single receiver without explicit NACM rules for this container.  Is
   that really the intention?


/martin