<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.7 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-opsawg-ol-01" category="std" consensus="true" submissionType="IETF" updates="8520" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.3 -->
  <front>
    <title abbrev="Owner and Licensing Statements">Ownership and licensing statements in YANG</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-opsawg-ol-01"/>
    <author initials="E." surname="Lear" fullname="Eliot Lear">
      <organization>Cisco Systems</organization>
      <address>
        <postal>
          <street>Richtistrasse 7</street>
          <city>Wallisellen</city>
          <code>8304</code>
          <country>Switzerland</country>
        </postal>
        <phone>+41 44 878 9200</phone>
        <email>lear@cisco.com</email>
      </address>
    </author>
    <author initials="C." surname="Bormann" fullname="Carsten Bormann">
      <organization>Universität Bremen TZI</organization>
      <address>
        <postal>
          <street>Postfach 330440</street>
          <city>Bremen</city>
          <code>D-28359</code>
          <country>Germany</country>
        </postal>
        <email>cabo@tzi.org</email>
      </address>
    </author>
    <date year="2022" month="April" day="24"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This memo provides for an extension to RFC 8520 that allows
MUD file authors to specify ownership and licensing of MUD
files themselves.  This memo updates RFC 8520.  However, it
can also be used for purposes outside of MUD, and the grouping
is structured as such.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t><xref target="RFC8520"/> Manufacturer Usage Descriptions (MUD) can be used to
describe devices and their requirements to the network infrastructure.
The original version of the specification does not provide for a
means to specify ownership and licensing of the MUD file itself.  This
can hinder those wishing to use, modify, or adapt MUD files for the
purpose of offering them, when the manufacturer is not involved.</t>
      <ul spacing="normal">
        <li>
          <strong>Issue</strong>: Should this be an owner or an originator?</li>
      </ul>
      <t>To avoid any confusion, we define an extension that allows for
specifying of owners and licensing terms for MUD files.</t>
      <t>Those generating MUD files <bcp14>SHOULD</bcp14> use this extension, and
thus this extension updates RFC 8520.</t>
      <t>There are two ways to specify a license: a URL pointing to the license
itself or an SPDX tag <xref target="SPDX"/>.  If an SPDX tag is supplied consumers
<bcp14>MUST</bcp14> interpret that tag through its meaning as specified by <xref target="SPDX"/>.</t>
      <ul spacing="normal">
        <li>
          <strong>Issue</strong>: Should we simply say that a URI contains a colon and SPDX
license identifier doesn't?</li>
      </ul>
      <t>This grouping may be used for other YANG models that reside as
static objects.</t>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
    </section>
    <section anchor="the-owner-license-extension-and-model">
      <name>The owner-license extension and model</name>
      <t>Because the model is primarily motivated by MUD, and based
on the way that YANG trees are formed, the model appears as
an augmentation for MUD.</t>
      <artwork><![CDATA[
module: ietf-ol

  augment /mud:mud:
    +--rw ol
       +--rw owners*               string
       +--rw (license-type)?
          +--:(spdx-lt)
          |  +--rw spdx-tag?       string
          +--:(url)
             +--rw license-info?   inet:uri

]]></artwork>
      <ul spacing="normal">
        <li>
          <strong>Issue</strong>: Should different owners possibly have their own license
types?  (Logical and, derived works.)</li>
        <li>
          <strong>Issue</strong>: Should a single owner possibly have multiple license
types?  (Logical or, multi-licensing.)</li>
      </ul>
    </section>
    <section anchor="the-yang-schema-for-ownership-and-licensing">
      <name>The YANG schema for ownership and licensing</name>
      <t>The following grouping and augmentation are proposed.</t>
      <sourcecode markers="true"><![CDATA[file "ietf-ol@2021-05-21.yang"
module ietf-ol {
  yang-version 1.1;
  namespace "urn:ietf:params:xml:ns:yang:ietf-ol";
  prefix ol;

  import ietf-inet-types {
    prefix inet;
  }
  
  import ietf-mud {
    prefix mud;
  }


  organization
    "IETF OPSAWG (Ops Area) Working Group";
  contact
    "WG
     Web: http://tools.ietf.org/wg/opsawg/
     WG List: opsawg@ietf.org
     Author: Eliot Lear lear@cisco.com
     Author: Carsten Bormann <cabo@tzi.org>";
  description
    "This YANG module to indicate ownership and licensing.

     Copyright (c) 2021 IETF Trust and the persons identified as
     authors of the code.  All rights reserved.

     Redistribution and use in source and binary forms, with or
     without modification, is permitted pursuant to, and subject to
     the license terms contained in, the Simplified BSD License set
     forth in Section 4.c of the IETF Trust's Legal Provisions
     Relating to IETF Documents
     (https://trustee.ietf.org/license-info).

     This version of this YANG module is part of RFC XXXX
     (https://www.rfc-editor.org/info/rfcXXXX);
     see the RFC itself for full legal notices.

     The key words 'MUST', 'MUST NOT', 'REQUIRED', 'SHALL', 'SHALL
     NOT', 'SHOULD', 'SHOULD NOT', 'RECOMMENDED', 'NOT RECOMMENDED',
     'MAY', and 'OPTIONAL' in this document are to be interpreted as
     described in BCP 14 (RFC 2119) (RFC 8174) when, and only when,
     they appear in all capitals, as shown here.  ";

  revision 2021-05-21 {
    description
      "Initial proposed standard.";
    reference
      "RFC XXXX: Extension for ownership and licensing";
  }

  grouping ol-extension {
    description
      "OL extension grouping";
    container ol {
      description
        "container relating to ownership and licensing.";
      leaf-list owners {
      type string;
        description
          "A list of owners, may be in the form of a copyright
           Example: Copyright (c) Jane Smith.  All rights Reserved.";
        }
      choice license-type {
        description "Either choose a standard license type or point
                     to one of your own.";
        case spdx-lt {
          leaf spdx-tag {
            type string;
            description "SPDX License Identifier, as indicated at
                         https://spdx.org/licenses/";
          }
        }
        case url {
          leaf license-info {
            type inet:uri;
            description "A URL pointing to licensing information.";
          }
        }
      }
    }
  }

  augment "/mud:mud" {
    description
      "Add extension for Ownership and licensing.";
    uses ol-extension;
  }
}
]]></sourcecode>
    </section>
    <section anchor="extension-for-mud">
      <name>Extension for MUD</name>
      <t>MUD files using this extension <bcp14>MUST</bcp14> include "ol" in the extensions
array, as specified by <xref target="RFC8520"/>.</t>
    </section>
    <section anchor="example">
      <name>Example</name>
      <t>In this example, the Frobmaster company is using the 0BSD SPDX
tag to indicate a relatively open license.  The "ol" extension
and container are present.  There is a single owner listed.</t>
      <artwork><![CDATA[
{
  "ietf-mud:mud": {
    "mud-version": 1,
    "extensions": [
      "ol"
    ],
    "ol": {
      "owners": [
        "Copyright (c) FrobMaster 2021. All Rights Reserved"
      ],
      "spdx-tag": "0BSD"
    },
    "mud-url": "https://frobs.example.com/mud/Frob.json",
    "mud-signature": "https://frobs.example.com/mud/Frob.p7s",
    "last-update": "2021-05-24T11:26:04+00:00",
    "cache-validity": 48,
    "is-supported": true,
    "systeminfo": "This device helps produce frobs",
    "mfg-name": "FrobMaster",
    "documentation": "https://frobs.example.com/doc",
    "model-name": "Frobinator"
    }
}
]]></artwork>
      <ul spacing="normal">
        <li>
          <strong>Task</strong>: need Makefile for validating this against MUD.
(Probably put this into a separate file, too.)</li>
        <li>
          <strong>Issue</strong>: Should we give an example for usage outside yang?</li>
      </ul>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The security considerations of <xref section="16" sectionFormat="of" target="RFC8520"/> with respect to
obtaining validation for information claimed in a MUD file do apply.
While the information described in this specification is not intended
to directly influence the behavior of protective infrastructure, it
may be used by an aggregator as input for deciding the legal basis
that enables providing aggregated information; depending on the
juridical environment, false information in the MUD file may thus
expose the aggregator to additional legal risk.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="mud-extension">
        <name>MUD Extension</name>
        <t>The IANA is requested to add "ol" to the
<xref section="MUD extensions registry" relative="#mud-extensions" sectionFormat="bare" target="IANA.mud"/> of <xref target="IANA.mud"/>
as follows:</t>
        <dl newline="true">
          <dt>Extension Name:</dt>
          <dd>
            <t>ol</t>
          </dd>
          <dt>Standard reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>Normative References</name>
      <reference anchor="RFC8520" target="https://www.rfc-editor.org/info/rfc8520">
        <front>
          <title>Manufacturer Usage Description Specification</title>
          <author fullname="E. Lear" initials="E." surname="Lear">
            <organization/>
          </author>
          <author fullname="R. Droms" initials="R." surname="Droms">
            <organization/>
          </author>
          <author fullname="D. Romascanu" initials="D." surname="Romascanu">
            <organization/>
          </author>
          <date month="March" year="2019"/>
          <abstract>
            <t>This memo specifies a component-based architecture for Manufacturer Usage Descriptions (MUDs).  The goal of MUD is to provide a means for end devices to signal to the network what sort of access and network functionality they require to properly function.  The initial focus is on access control.  Later work can delve into other aspects.</t>
            <t>This memo specifies two YANG modules, IPv4 and IPv6 DHCP options, a Link Layer Discovery Protocol (LLDP) TLV, a URL, an X.509 certificate extension, and a means to sign and verify the descriptions.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="8520"/>
        <seriesInfo name="DOI" value="10.17487/RFC8520"/>
      </reference>
      <reference anchor="IANA.mud" target="https://www.iana.org/assignments/mud">
        <front>
          <title>Manufacturer Usage Description (MUD)</title>
          <author>
            <organization>IANA</organization>
          </author>
          <date/>
        </front>
      </reference>
      <reference anchor="SPDX">
        <front>
          <title>SPDX Specification 2.1</title>
          <author>
            <organization>The Linux Foundation</organization>
          </author>
          <date year="2016"/>
        </front>
      </reference>
      <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119">
        <front>
          <title>Key words for use in RFCs to Indicate Requirement Levels</title>
          <author fullname="S. Bradner" initials="S." surname="Bradner">
            <organization/>
          </author>
          <date month="March" year="1997"/>
          <abstract>
            <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
          </abstract>
        </front>
        <seriesInfo name="BCP" value="14"/>
        <seriesInfo name="RFC" value="2119"/>
        <seriesInfo name="DOI" value="10.17487/RFC2119"/>
      </reference>
      <reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174">
        <front>
          <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
          <author fullname="B. Leiba" initials="B." surname="Leiba">
            <organization/>
          </author>
          <date month="May" year="2017"/>
          <abstract>
            <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
          </abstract>
        </front>
        <seriesInfo name="BCP" value="14"/>
        <seriesInfo name="RFC" value="8174"/>
        <seriesInfo name="DOI" value="10.17487/RFC8174"/>
      </reference>
    </references>
    <section anchor="changes-from-earlier-versions">
      <name>Changes from Earlier Versions</name>
      <t>Draft -01:</t>
      <ul spacing="normal">
        <li>Format IANA considerations</li>
        <li>Discuss security considerations</li>
      </ul>
      <t>Draft -00:</t>
      <ul spacing="normal">
        <li>Resubmit unchanged</li>
      </ul>
      <t>Individual Draft -01:</t>
      <ul spacing="normal">
        <li>Add some issues</li>
        <li>correct spacing</li>
      </ul>
      <t>Individual Draft -00:</t>
      <ul spacing="normal">
        <li>Initial revision</li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
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
Z6orihVOaqO7ufvoI7vYX8WmjP0PP5l6K2IhAAA=

-->

</rfc>
