Internet DRAFT - draft-mosko-icnrg-ccnxlabeledcontent
draft-mosko-icnrg-ccnxlabeledcontent
ICNRG M. Mosko
Internet-Draft PARC, Inc.
Intended status: Experimental June 30, 2015
Expires: January 1, 2016
Labeled Content Information
draft-mosko-icnrg-ccnxlabeledcontent-01
Abstract
This document defines an RFC3986 URI compliant identifier called a
Labeled Segment URI in which name segments carry a label. This
allows differentiation between unrelated resources with similar
identifiers. A URI scheme that specifies the use of labeled segment
URIs conforms to the encoding rules presented here. This document
also describes Labeled Content Information - a labeled segment URI
(LS-URI) representation of network data. This scheme, called "lci:",
is applicable to network protocols such as Content Centric networks
(CCN). Labeled Content Information applies specific labels to each
name segment of a URI to disambiguate between resources with similar
names. This document defines a specific set of segment labels with
label semantics.
Status of this Memo
This Internet-Draft is submitted in full conformance with the
provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering
Task Force (IETF). Note that other groups may also distribute
working documents as Internet-Drafts. The list of current Internet-
Drafts is at http://datatracker.ietf.org/drafts/current/.
Internet-Drafts are draft documents valid for a maximum of six months
and may be updated, replaced, or obsoleted by other documents at any
time. It is inappropriate to use Internet-Drafts as reference
material or to cite them other than as "work in progress."
This Internet-Draft will expire on January 1, 2016.
Copyright Notice
Copyright (c) 2015 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
Mosko Expires January 1, 2016 [Page 1]
Internet-Draft LCI June 2015
(http://trustee.ietf.org/license-info) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.1. Requirements Language . . . . . . . . . . . . . . . . . . 4
2. URI path segment grammar for label=value pairs . . . . . . . . 5
2.1. Labeled Segments . . . . . . . . . . . . . . . . . . . . . 5
2.2. URI comparison . . . . . . . . . . . . . . . . . . . . . . 7
3. Application to CCNx Names . . . . . . . . . . . . . . . . . . 8
3.1. The lci Scheme . . . . . . . . . . . . . . . . . . . . . . 8
3.2. URI Representation . . . . . . . . . . . . . . . . . . . . 8
3.2.1. Examples . . . . . . . . . . . . . . . . . . . . . . . 9
3.3. lci: URI comparison . . . . . . . . . . . . . . . . . . . 10
4. IRI Considerations . . . . . . . . . . . . . . . . . . . . . . 11
5. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . 12
6. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 13
7. Security Considerations . . . . . . . . . . . . . . . . . . . 14
8. References . . . . . . . . . . . . . . . . . . . . . . . . . . 15
8.1. Normative References . . . . . . . . . . . . . . . . . . . 15
8.2. Informative References . . . . . . . . . . . . . . . . . . 15
Author's Address . . . . . . . . . . . . . . . . . . . . . . . . . 16
Mosko Expires January 1, 2016 [Page 2]
Internet-Draft LCI June 2015
1. Introduction
A Labeled Segment is an URI [RFC3986] compliant convention that
allows an application or protocol to embed labels in name segments,
thus disambiguating the resource identified by the path. Labeled
Segment URIs also allow for query and fragment components to follow
the Labeled Segment form.
Some protocols may wish to disambiguate name segments between
different identifier spaces, such as "version" and "page". Other
protocols may wish to use a type system such as "/str=parc/int=7" and
"/str=parc/str=7". Labeled Segment URIs provide an unambiguous and
flexible representation in systems that allow resources with
otherwise similar names.
It is not sufficient to leave the determination of type to
application-specific conventions. In a networked system with
multiple applications accessing resources generated by other
applications, there needs to be a set of common conventions. For
example, if one application uses a base 64 encoding of a frame
number, e.g. base64(0xbdea), and another uses "ver=" to represent a
document version, there is an ambiguity because base64(0xbdea) is the
string "ver=".
Labeled Segments defines "ls-segment" as "label[:param]=value", where
the value only contains unreserved, percent-encoded, or certain sub-
delim characters. In the previous example, one application would say
"/frame=%BD%EA" and the other would say "/ver=".
In this document, we use URI [RFC3986] terminology, therefore a URI
and CCNx Name are both composed of a URI path, which is a collection
of name segments. We do not use the term "name component" as was
common in old CCNx. In this document, the word "segment" alone means
"name segment."
Labeled Content Information carries a label for each name segment.
The contents of each name segment must conform to the label
semantics. Example segment types are "Binary Segment", "Name", and
"KeyId".
We use Labeled Segment URIs as the canonical, human-readable
representation. There is an unambiguous, one-to-one correspondence
between an absolute LS-URI path and a Labeled Name. Relative URI
representations are removed during encoding, so no relative name ends
up in wire format. Some labels are URIs that are IRI [RFC3987]
compatible.
Labeled Names shall be used everywhere a Name is used in CCNx, such
Mosko Expires January 1, 2016 [Page 3]
Internet-Draft LCI June 2015
as in the Name of an Interest or Content Object. They are also used
in Links, KeyLocators, or any other place requiring a name. When
encoded for the wire, a binary representation is used, depending on
the specific wire format codec, which is outside the scope of this
document.
This document specifies:
o the lci scheme.
o a canonical URI representation.
Formal grammars use the ABNF [RFC5234] notation.
TODO: We have not adopted Requirements Language yet.
1.1. Requirements Language
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in RFC 2119 [RFC2119].
Mosko Expires January 1, 2016 [Page 4]
Internet-Draft LCI June 2015
2. URI path segment grammar for label=value pairs
2.1. Labeled Segments
This section describes the formal grammar for Labeled Segments using
ABNF [RFC5234] notation. We do not impose restrictions on the length
of labels or values. The semantics of values are URI scheme
specific, here we only describe the meta-structure of Labeled
Segments. We begin by reviewing some definitions from [RFC3986] that
define an absolute path URI.
URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ]
hier-part = "//" authority path-abempty
/ path-absolute
/ <other path types>
path-absolute = "/" [ segment-nz *( "/" segment ) ]
segment = *pchar
segment-nz = 1*pchar
pchar = unreserved / pct-encoded / sub-delims / ":" / "@"
query = *( pchar / "/" / "?" )
fragment = *( pchar / "/" / "?" )
pct-encoded = "%" HEXDIG HEXDIG
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
reserved = gen-delims / sub-delims
gen-delims = ":" / "/" / "?" / "#" / "[" / "]" / "@"
sub-delims = "!" / "$" / "&" / "'" / "(" / ")"
/ "*" / "+" / "," / ";" / "="
Labeled Segments defines a new segment type that provides unambiguous
representation of a segment's label and its value. We define the
top-level LS-URI as the same form as a URI, wherein each part
conforms to the Label Segment grammar, which is a subset of the URI
grammar.
Mosko Expires January 1, 2016 [Page 5]
Internet-Draft LCI June 2015
LS-URI = scheme ":" ls-hier-part ["?" ls-query]
["#" fragment]
ls-hier-part = ["//" authority] ls-path-absolute
ls-path-absolute = "/" [ ls-segment-nz *( "/" ls-segment ) ]
ls-segment-nz = lpv-segment / v-segment
lpv-segment-nz = label [":" param] "=" s-value-nz
v-segment-nz = s-value-nz
label = alpha-t / num-t
param = alpha-t / num-t
s-value-na = 1*(s-pchar)
ls-query = *1 ( lpv-component / v-component
*( "&" (lpv-component / v-component) ) )
lpv-component = label [":" param] "=" q-value
v-component = q-value
q-value = *(q-pchar)
alpha-t = ALPHA *(ALPHA / DIGIT)
num-t = dec-t / hex-t
dec-t = 1*(DIGIT)
hex-t = "0x" 1*(HEXDIG)
ls-pchar = unreserved / pct-encoded / ls-sub-delims
s-pchar = ls-pchar / ":" / "@" / "&"
q-pchar = ls-pchar / ":" / "@" / "/"
ls-sub-delims = "!" / "$" / "'" / "(" / ")"
/ "*" / "+" / "," / ";"
A Labeled Segment URI (LS-URI) contains a scheme that uses Labeled
Segments, an optional authority, a labeled segment absolute path (ls-
path-aboslute), an optional labeled segment query (ls-query), and a
fragment. The authority is URI scheme specific and the fragment is
independent of the URI scheme.
The labeled segment path is composed of zero or more labeled segments
(ls-segment). Each ls-segment may be either a label-param-value
tuple (lpv-segment) or a value singleton (v-segment). A v-segment is
an un-labeled segment. A particular LS-URI scheme MUST define how
unlabeled segments are processed, and MAY disallow them. An lpv-
segment specifies a label, an optional parameter for the label, and
the segment value.
lpv-segment values come from the s-pchar set, which excludes the "="
equal sign. This means that the only equal sign in a name segment
must be the delimiter between the label:param and the value. Within
the value, an equal sign must be percent encoded.
lpv-segment labels and values may be alpha-numeric identifiers or
numbers (decimal or hexadecimal). For example, one scheme may define
Mosko Expires January 1, 2016 [Page 6]
Internet-Draft LCI June 2015
the labels "name", "version", and "frame". A version may be of types
"date" or "serial", meaning that the version is either a date or a
monotonic serial number. Some examples of resulting LS-URIs are:
"/name=parc/name=csl/version:date=20130930" or "/name=alice_smith/
version:serial=299". The parameters may also indicate an instance of
a label, such as "/name=books/year:1=1920/year:3=1940", where there
are scheme or application semantics associated with "year:1" and
"year:3".
lpv-segment labels and parameters may also be numbers. For example,
a protocol with a binary and URI representation may not have pre-
defined all possible labels. In such cases, it could render unknown
labels as their binary value, such as "/name=marc/x2003=green".
The ls-query component is a non-hierarchical set of components
separated by "&". Each ls-query component is either a lpv-component
or a v-component, similar to segments. They are based on q-value,
which uses q-pchar that excludes "&", but includes "/". This allows
an LS-URI scheme to use type query parameters.
Labeled Segments allow for dot-segments "." and ".." in a v-segment.
They operate as normal. A single dot "." refers to the current
hierarchy level and may be elided when the URI is resolved. Double
dot ".." segments pop off the previous non-dot segment. An lpv-
segment with a value of "." or ".." is not a dot-segment. It means
that the value of the given label is "." or "..". For example
/a=parc/b=csl/.. is equivalent to "/a=parc/b=csl", but the LS-URI
"/a=parc/b=csl/c=.." does not contain a dot-segment.
2.2. URI comparison
An LS-URI scheme MUST specify the normalization rules to be used,
following the methods of Section 6 [RFC3986]. At minimum, an LS-URI
scheme SHOULD do the following:
o Normalize unrestricted percent-encodings to the unrestricted form.
o Normalize num-t to either dec-t or hex-t.
o If the scheme allows for value-only segments or query components
and interprets them as a default type, they should be normalized
to having the type specified.
o If the scheme allows for undefined labels and represents them, for
example, as num-t, then it should normalize all labels to their
corresponding num-t. If "name", for example, is known to be %x50
in a binary encoding of the URI, then all labels should be
compared using their numeric value.
Mosko Expires January 1, 2016 [Page 7]
Internet-Draft LCI June 2015
3. Application to CCNx Names
3.1. The lci Scheme
This section describes the Labeled Content Information "lci:" scheme
for Labeled Names. A Labeled Content Name assigns a semantic type or
label to each segment of the hierarchical content Name.
Unless otherwise specified, a name segment is an arbitrary sequence
of octets.
Several name segment labels are binary unsigned integers. These are
always encoded as variable length sequences of 1 or more octets in
network byte order using the shortest representation (i.e. no leading
%x00). The value of "0" is encoded as the single byte of "%x00". A
zero-length sequence must be interpreted as "not present." There is
no limit to the number of bytes in the octet sequence.
The CCNx Name segment types are:
o Name Segment: A generic name segment that includes arbitrary
octets.
o Application Type N: An application may use application-specific
parameters, numbered as integers, where N is from 0 to a system-
specific maximum, not less than 255. These are represented as
"App:1=value", for example.
It is common for an information centric networking protocol, such as
CCNx or NDN, to use a binary on-the-wire representation for messages.
Such protocols, if they use the lci: scheme, must have an appropriate
codec that unambiguously represents Labeled Content Information in
the chosen wire format. Relative dot-segments should not occur in
the wire format, they should be resolved before encoding.
3.2. URI Representation
Typed Names use a standard RFC 3986 representation following the LS-
URI convention. A name segment consists of any "unreserved"
characters plus percent-encoded characters. Reserved characters must
be percent encoded.
Within an absolute path, each segment consists of an "ls-segment"
(c.f. LS-URI). A labeled segment is a type and a name component
value, with a URI representation of "type=value". The "type="
portion may be omitted if it is type "N" (Name).
Some name types take a parameter, such as the Application types.
Mosko Expires January 1, 2016 [Page 8]
Internet-Draft LCI June 2015
They are represented as "A:nnn=value", where the "nnn" is the
application type number and value is the name component.
The Authority, Query, and Fragment sections of a URI are not used.
If provided, they are ignored.
Dot-segments (relative name components) are resolved when the URI is
converted to a Typed Name. The "." dot-segment is removed. The ".."
dot-segment is removed along with the previous non-dot-segment.
+-------------------+-------------+---------------------------------+
| Type | Display | Name |
+-------------------+-------------+---------------------------------+
| 'Name' | Hexadecimal | Name Segment |
| | | |
| 'Int Payload ID' | Hexadecimal | Interest Payload Identifier |
| | | segment |
| | | |
| 'App:0' - | Hexadecimal | Application Component |
| 'App:255' | | |
+-------------------+-------------+---------------------------------+
Table 1: Labeled Content Information Types
3.2.1. Examples
A name /foo/bar.
lci:/Name=foo/Name=bar
lci:/foo/Name=bar
lci:/foo/bar
A name /foo/bar with key %xA0.
lci:/Name=foo/Name=bar/Key=0xA0
A name /foo/bar with version %xA0 and Nonce 0x09.
lci:/foo/bar/Version=0xA0/Nonce=0x09
A name /foo/.., where the ".." is a literal name component,
not a relative dot-segment.
lci:/foo/Name=..
A name /foo/bar with applications type 0 "hello"
and application type 1 "world".
lci:/Name=foo/Name=bar/App:0=hello/App:1=world
Mosko Expires January 1, 2016 [Page 9]
Internet-Draft LCI June 2015
3.3. lci: URI comparison
While most comparisons are done using a wire format representation of
an lci: URI, some applications may compare Labeled Content
Information using their URI representation. This section defines the
rules for comparing lci: URIs using the methods of Section 6
[RFC3986]
Comparing typed name URIs must be done with:
o Syntax-based normalization
o Case normalization: normalize the representation of percent
encodings. lci: does not use the host portion of the URI, and
should be ignored if present.
o Percent encoding normalization: Percent encodings of unreserved
characters must be converted to the unreserved character.
o Path segment normalization: dot-segments must be resolved first.
o Scheme-based normalization: The authority should be removed and
the path represented as an absolute path.
o Protocol-based normalization: Should not be done. A trailing
slash indicates a zero-length terminal name component and
signifies a different name.
o typed-name-segment normalization: All segments should be presented
with their type, do not elide the "N=" for Name components.
o Binary unsigned integer normalization: remove any leading %x00
from numbers, leaving only the terminal %x00 for "0".
o type parameters: they must have their percent encodings
normalized. If they are integers, such as for the 'A' type, they
must not have leading zeros.
Mosko Expires January 1, 2016 [Page 10]
Internet-Draft LCI June 2015
4. IRI Considerations
International Resource Identifiers extend the unreserved character
set to include characters above U+07F and encode them using percent
encoding. This extension is compatible with the lci: schema. It
applies only to the "value" portion of an ls-segment.
The canonical name is determined by the URI representation of the
IRI, after applying the rules of Section 3.1 of [RFC3987] and
resolving dot-segments. The canonical name thus includes the URI
representation of language markers, including the bidirectional
components.
The value of a UTF-8 Name segment should be interpreted using IRI
rules, including bidirectional markers. They may be displayed using
localized formats.
Binary unsigned integer types are not interpreted under IRI rules,
they are specifically percent encoded numbers. They may be displayed
using a localized format.
Mosko Expires January 1, 2016 [Page 11]
Internet-Draft LCI June 2015
5. Acknowledgements
Mosko Expires January 1, 2016 [Page 12]
Internet-Draft LCI June 2015
6. IANA Considerations
This memo includes no request to IANA.
All drafts are required to have an IANA considerations section (see
Guidelines for Writing an IANA Considerations Section in RFCs
[RFC5226] for a guide). If the draft does not require IANA to do
anything, the section contains an explicit statement that this is the
case (as above). If there are no requirements for IANA, the section
will be removed during conversion into an RFC by the RFC Editor.
Mosko Expires January 1, 2016 [Page 13]
Internet-Draft LCI June 2015
7. Security Considerations
All drafts are required to have a security considerations section.
See RFC 3552 [RFC3552] for a guide.
Mosko Expires January 1, 2016 [Page 14]
Internet-Draft LCI June 2015
8. References
8.1. Normative References
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119, March 1997.
8.2. Informative References
[CCN] PARC, Inc., "CCNx Open Source", 2007,
<http://www.CCNx.org>.
[RFC3552] Rescorla, E. and B. Korver, "Guidelines for Writing RFC
Text on Security Considerations", BCP 72, RFC 3552,
July 2003.
[RFC3986] Berners-Lee, T., Fielding, R., and L. Masinter, "Uniform
Resource Identifier (URI): Generic Syntax", STD 66,
RFC 3986, January 2005.
[RFC3987] Duerst, M. and M. Suignard, "Internationalized Resource
Identifiers (IRIs)", RFC 3987, January 2005.
[RFC5226] Narten, T. and H. Alvestrand, "Guidelines for Writing an
IANA Considerations Section in RFCs", BCP 26, RFC 5226,
May 2008.
[RFC5234] Crocker, D. and P. Overell, "Augmented BNF for Syntax
Specifications: ABNF", STD 68, RFC 5234, January 2008.
Mosko Expires January 1, 2016 [Page 15]
Internet-Draft LCI June 2015
Author's Address
Marc Mosko
PARC, Inc.
Palo Alto, California 94304
USA
Phone: +01 650-812-4405
Email: marc.mosko@parc.com
Mosko Expires January 1, 2016 [Page 16]