Re: [Netconf] [Technical Errata Reported] RFC6536 (3862)

Jernej Tuljak <jernej.tuljak@mg-soft.si> Fri, 10 January 2014 13:59 UTC

Return-Path: <jernej.tuljak@mg-soft.si>
X-Original-To: netconf@ietfa.amsl.com
Delivered-To: netconf@ietfa.amsl.com
Received: from localhost (ietfa.amsl.com [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 301801AE064 for <netconf@ietfa.amsl.com>; Fri, 10 Jan 2014 05:59:31 -0800 (PST)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.438
X-Spam-Level:
X-Spam-Status: No, score=-2.438 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, RP_MATCHES_RCVD=-0.538] autolearn=ham
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 VgQvSCNSbwxf for <netconf@ietfa.amsl.com>; Fri, 10 Jan 2014 05:59:28 -0800 (PST)
Received: from gate.mg-soft.si (gate.mg-soft.si [212.30.73.66]) by ietfa.amsl.com (Postfix) with ESMTP id 62E9E1AE062 for <netconf@ietf.org>; Fri, 10 Jan 2014 05:59:28 -0800 (PST)
Received: from [10.0.0.222] (tp-x61t.mg-soft.si [10.0.0.222]) by gate.mg-soft.si (8.13.8/8.13.8) with ESMTP id s0ADwCrx009171; Fri, 10 Jan 2014 14:58:12 +0100
Message-ID: <52CFFC73.3010002@mg-soft.com>
Date: Fri, 10 Jan 2014 14:58:11 +0100
From: Jernej Tuljak <jernej.tuljak@mg-soft.si>
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/17.0 Thunderbird/17.0
MIME-Version: 1.0
To: Martin Bjorklund <mbj@tail-f.com>
References: <20140110133233.926097FC394@rfc-editor.org> <20140110.144038.1958728126349068530.mbj@tail-f.com>
In-Reply-To: <20140110.144038.1958728126349068530.mbj@tail-f.com>
Content-Type: text/plain; charset="windows-1252"; format="flowed"
Content-Transfer-Encoding: 8bit
Cc: joelja@bogus.com, netconf@ietf.org, rfc-editor@rfc-editor.org
Subject: Re: [Netconf] [Technical Errata Reported] RFC6536 (3862)
X-BeenThere: netconf@ietf.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: Network Configuration WG mailing list <netconf.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/netconf>, <mailto:netconf-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/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: Fri, 10 Jan 2014 13:59:31 -0000

If this is true, then it is RFC6020 that needs a clarification on this. 
Namely, that the "special character" which follows a backslash need not 
be special and that it does not represent an escape sequence in such a case.

    Within a double-quoted string (enclosed within " "), a backslash
    character introduces a special character, which depends on the
    character that immediately follows the backslash:

     \n      new line
     \t      a tab character
     \"      a double quote
     \\      a single backslash

My reading is that a backslash starts a YANG escape sequence and may 
therefore be removed during string dequoting. A "\*" ends up as *, which 
is not equivalent to '\*'.

Please move this discussion over to NETMOD it that's the case.

Jernej

Dne 10.1.2014 14:40, piše Martin Bjorklund:
> Hi,
>
> This errata should be rejected.  "\*" is equvalent to '\*'.  \* in a
> double quoted string is not an escape sequence, which means that the
> characters are interpreted literally, i.e. the two characters \
> followed by *.
>
> The same goes for errata 3863.
>
> /martin
>
> RFC Errata System <rfc-editor@rfc-editor.org> wrote:
>> The following errata report has been submitted for RFC6536,
>> "Network Configuration Protocol (NETCONF) Access Control Model".
>>
>> --------------------------------------
>> You may review the report below and at:
>> http://www.rfc-editor.org/errata_search.php?rfc=6536&eid=3862
>>
>> --------------------------------------
>> Type: Technical
>> Reported by: Jernej Tuljak <jernej.tuljak@mg-soft.com>
>>
>> Section: 3.5.2.
>>
>> Original Text
>> -------------
>>       typedef matchall-string-type {
>>         type string {
>>           pattern "\*";
>>         }
>>         description
>>           "The string containing a single asterisk '*' is used
>>            to conceptually represent all possible values
>>            for the particular leaf using this data type.";
>>       }
>>
>> Corrected Text
>> --------------
>>       typedef matchall-string-type {
>>         type string {
>>           pattern '\*';
>>         }
>>         description
>>           "The string containing a single asterisk '*' is used
>>            to conceptually represent all possible values
>>            for the particular leaf using this data type.";
>>       }
>>
>> Notes
>> -----
>> As per RFC6020, Section 6.1.3., a backslash within a double-quoted
>> string introduces a special character. The only valid escape sequences
>> inside a double-quoted YANG string are: \n, \t, \" and \. As \* is not
>> a valid escape sequence, a single quoted string should be used to
>> specify the offending pattern statement's argument. The quotes could
>> also be omitted.
>>
>> Instructions:
>> -------------
>> This errata is currently posted as "Reported". If necessary, please
>> use "Reply All" to discuss whether it should be verified or
>> rejected. When a decision is reached, the verifying party (IESG)
>> can log in to change the status and edit the report, if necessary.
>>
>> --------------------------------------
>> RFC6536 (draft-ietf-netconf-access-control-07)
>> --------------------------------------
>> Title : Network Configuration Protocol (NETCONF) Access Control Model
>> Publication Date    : March 2012
>> Author(s)           : A. Bierman, M. Bjorklund
>> Category            : PROPOSED STANDARD
>> Source              : Network Configuration
>> Area                : Operations and Management
>> Stream              : IETF
>> Verifying Party     : IESG
>>