<?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.17 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-opsawg-ol-02" category="std" consensus="true" submissionType="IETF" updates="8520" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.1 -->
  <front>
    <title abbrev="Owner and Licensing Statements">Ownership and licensing statements in YANG</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-opsawg-ol-02"/>
    <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="October" 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>
      <sourcecode type="json"><![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"
  }
}
]]></sourcecode>
      <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 abbrev="IANA">Internet Assigned Numbers Authority</organization>
          </author>
          <date day="27" month="June" year="2018"/>
        </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 -02:</t>
      <ul spacing="normal">
        <li>Small updates to the example</li>
      </ul>
      <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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
bPTn4oOfSpujBUDN/L1F/QNqIvnZh9nBpzd8+6w0/KCSYod/gleQHt+QQh2X
rjoC/7tVn954r/4k5wlfWVsmu7tW69yMiQlqa3avlru+t90NU9+g7zDop/zX
n+JEP3rgW5VOA3qnyetOu9XQ8efdjuqF4zdrYbXn2VXpWIbJlKheQKGEeeVD
zjdmnu6hLjcAgSvLt9MdTr7hum9+UdXGNg1DiS0IxDcgwdXDTitmIjKmdhFQ
6AB1zW1rCA7IyiNTt+BcZtRZq3ltY36nbI1iaHRdpdKnY6DSauMSLuoiGukV
LOzX0wsaG4+lA64fuhQPdKksJXZgaFMLZBKrfXY3tYMg1HL4FrOFdQGUBojk
artP8DOCUl7WV7OjcO4BhCW9pxBv4Apsz6Trjfj+OI1aaFW4ZWDzJRLGB2o4
KJ5MVEMuIsp0048C/gjj2+R8hryPtpGy9b9uit2JWnU+0Gt9bvkEKUggljBG
0Phn/G4Rurq6GleLdAT7oCFwpIjELr7R7J1nfr6RvrTSLgESU5Jb1DB57kRF
P0LNXMtaF/RtEYLZGvq/BDHoOQIYenYopXnwW4RpHpe0T+3yBnzQ6y08sjX0
m2wBi2x5f9iKMGTr/4B/bpPbGJADAm6TKggB7vhHwn8798K/xvs2/NswIKLb
5c5KeufhbfYOyfB2NqDMVyirYIdYFehgr8hElY0H3obIn1RpUxlXRI9AmmqA
11cq1yDkXd6WJZ2PWsz2IGdnpx1kF9cGpmIEgmoedrhvD+zSzqw6QfRQogvb
c0q7C1Rr0wCMSITqUIA5zxoq91EG7QPud4gd7jB2RcpDR8pYNEqdVsisXZh0
/EUgq9DBXS/v/kmgu54he636ufM85s5By9hNeEpXGjLyLtBrJOqxzwfHynVq
WEGdtmj8oc2BtJhOjqj17cO6+CMNF+5YYoM0TdJ3mUoFpUaPKjtceKU3kLI3
8oDe7zDv+umYfU+aLtVFSqxyiM8H2KZfTHDERjeDmt1Bl+7NHRUHuYB178rU
zcL3yRWB71ckO7hz3NAelTTnlLqn5/u49H9vYkjGhmIQO4rBw/F4kGWdgKSI
f+BuIPJQu2PFTqz7THATACfy7exFgKCsn0ropPMelNue9dT+iKh/mhNOS9K8
zoA7AStjnDVT0HhVldgM7zksaQ4nx8SMCzzWED4pIi034Gv+60rP1wLlFsGi
1yUdhKmWM8knhATcwYk7sunALBFy0aVErtelbNqUsS+AjveGaUbKbdOYh/CI
9cL66ZWr17eaFEo8LcTHj/8GUMbIuIOIkJ29k2DwAV4iisfHqS8/g1Z1+Phr
dAXw5x7/FmbhPWn8euCTXWc+vvVTGKnunVcd1aixS2Pn/TQ2CIsDDewRMwN2
HpBy/YybYcs/go8GYwwvQMaMg9EIPpOX7xLxMWlj0Flp1LIQdEj6jevLJyYu
zyHIyJ8k0uKm6O5fTKfJ3g/JZP+7ySSZTOL8VKDbG12KXAE7bbBk/2kYUWZE
h4DAipIMQ9ddYcS4eyeKcyLh8Js/BUflz0s6saBTd1QU4riRa7EcUSNGS1qN
x9GIYVza+LrUmNrsSScZvV39kfAghHbbt1MnfSHMZ2qkC4kweyc+S9ddUoQ7
8UM5JmnEks4crT8EAc4EAp4LarLL2voZSHyavFxSH4kgoq0QiFpTK/3ACecS
IeYPop0wjnLtrhvibQe1oS8ZAyxH+rUblNqCvldOK+ahrts33CYuSnuLqOxd
X0egP/2B3inc6JSPehPEbhn6Cz2noCYlRH2EBNjJ6DzNhVp7DCnay4RMEyrM
N2P2aUXvlHG6q3rY0ymwf7nRXAUgvjOZMSg3UxX4gs6xT14T5HO7zuVKXCoC
eAvyM0uCXcpb9yrugql75oukSodcy2UFmG/pHJxMSNYk+TKwksVE6RuBuTDK
MHeSJguYXppw7+IOMsI+TpxGyGfYB9nTzfCncew3WCRzhy6yuFSVLsjFh3wB
uNzXTygNjT7X7hivNkx+cVcqNNjhnnwvQ7xiqYitS6XMZ2RYupr8Br/x5aup
c3Rt1v68Q7mdlHHXWZLydyDrC4K/YWDX15Sv2rzsLss6JQ6rl9Qzb3aex0tT
eJ7zyfadCRPOi0zC2HVy6Q5rbjpl+L27MmYJnSuyWcSATTOQsMS3kTGNMH8R
OBfpZzwerhBXdFFV6TU/FlVOVwV/8dXlwaiKenJ39Xw02UsIojwC1qWuJ97V
hIuWENLt7GmY/dqZ2OuyH5hu+EiZtDbmoeBt95uE/VCP6H8cWF4XqZMqIzyQ
KXhmDSe4TZ5QktFrqslIR55mqiuKLE5KprO8+9ZHcrEfi00c+x/tANA6kiEA
AA==

-->

</rfc>
