Network Working Group M. Petit-Huguenin Internet-Draft Stonyfish, Inc. Intended status: Standards Track March 6, 2011 Expires: September 7, 2011 Configuration of Access Control Policy in REsource LOcation And Discovery (RELOAD) Base Protocol draft-petithuguenin-p2psip-access-control-00 Abstract This document describes an extension to the REsource LOcation And Discovery (RELOAD) base protocol to distribute the code of new Access Control Policies without having to upgrade the RELOAD implementations in an overlay. Status of this Memo This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79. This document may not be modified, and derivative works of it may not be created, except to format it for publication as an RFC or to translate it into languages other than English. 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 September 7, 2011. Copyright Notice Copyright (c) 2011 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 (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 Petit-Huguenin Expires September 7, 2011 [Page 1] Internet-Draft Access Control Configuration March 2011 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 2. Terminology . . . . . . . . . . . . . . . . . . . . . . . . . . 4 3. Processing an extended Kind . . . . . . . . . . . . . . . . . . 4 4. Security Considerations . . . . . . . . . . . . . . . . . . . . 6 5. IANA Considerations . . . . . . . . . . . . . . . . . . . . . . 6 6. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . 6 7. References . . . . . . . . . . . . . . . . . . . . . . . . . . 6 7.1. Normative References . . . . . . . . . . . . . . . . . . . 6 7.2. Informative References . . . . . . . . . . . . . . . . . . 6 Appendix A. Examples . . . . . . . . . . . . . . . . . . . . . . . 7 A.1. Standard Access Control Policies . . . . . . . . . . . . . 7 A.1.1. USER-MATCH . . . . . . . . . . . . . . . . . . . . . . 7 A.1.2. NODE-MATCH . . . . . . . . . . . . . . . . . . . . . . 7 A.1.3. USER-NODE-MATCH . . . . . . . . . . . . . . . . . . . . 7 A.1.4. NODE-MULTIPLE . . . . . . . . . . . . . . . . . . . . . 7 A.2. Service Discovery Usage . . . . . . . . . . . . . . . . . . 7 Appendix B. Release notes . . . . . . . . . . . . . . . . . . . . 8 B.1. TODO List . . . . . . . . . . . . . . . . . . . . . . . . . 8 Author's Address . . . . . . . . . . . . . . . . . . . . . . . . . 8 Petit-Huguenin Expires September 7, 2011 [Page 2] Internet-Draft Access Control Configuration March 2011 1. Introduction The RELOAD base protocol defines an Access Control Policy as "defin[ing] whether a request from a given node to operate on a given value should succeed or fail." The paragraph continues saying that "[i]t is anticipated that only a small number of generic access control policies are required", but there is indications that this assumption will not hold. On all the RELOAD Usages defined in other documents than the RELOAD base protocol, roughly 50% defines a new Access Control Policy. The problem with a new Access Control Policy is that, because they are executed when a Store request is processed, they need to be implemented by all the peers, and so require an upgrade of the software. This is something that is probably not possible in large overlays or on overlays using different implementations. For this reason, this document proposes an extension to the RELOAD configuration document that permits to transport the code of a new Access Control Policy to each peer. This extension defines a set of new elements that can be optionally added to a element in the configuration document. The most important of this elements is the element that contains JavaScript code that will be called for each StoredData object in a StoreReq processed by a peer. The code receives four parameters, corresponding to the Resource-ID, Signature, Kind and StoredDataValue of the value to store. The code returns true or false to signal to the implementation if the request should succeed or fail. For example the USER-MATCH Access Control Policy defined in the base protocol could be redefined by inserting the following code in an element: return resource.equals(signature.user_name); The parameters are also passed to the code, so the NODE- MULTIPLE Access Control Policy could be implemented like this: for (int i = 0; i < kind.params['max-node-multiple']; i++) { if (resource.equals(signature.node_id, i)) return true; } return false; Some Access Control Policies requires access to the content of the value to be stored. To permit this a element can be added to describe the content of the value. This description uses the same syntax that is used in the RELOAD base protocol to describe Petit-Huguenin Expires September 7, 2011 [Page 3] Internet-Draft Access Control Configuration March 2011 the various messages and is automatically converted to a JavaScript object accessible from the Access Control Policy code. For example ReDiR [I-D.ietf-p2psip-service-discovery] requires such mechanism so if the structure described in section 4.1. is copied in the element then the following code can be used to define the NODE-ID-MATCH Access Control Policy: return entry.key === signature.node_id && (!entry.exists || resource.equals(entry.value.data.namespace, entry.value.data.level, entry.value.data.node); 2. Terminology 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 [RFC2119]. 3. Processing an extended Kind A peer receiving a , either by retrieving it from the configuration server or in a ConfigUpdateReq message, MUST verify the signature in the kind-signature element before executing the code. If the element is present in the namespace allocated to this specification, and the Access Control Policy is not natively implemented, then the code inside the element MUST be called for each DataValue found in a received StoreReq for this Kind. For each call to the code, the following JavaScript objects, properties and functions MUST be available: resource: An opaque object representing the Resource-ID. resource.equals(Object...): Returns true if hashing the concatenation of the arguments according to the mapping function of the overlay algorithm is equal to the Resource-ID. signature.user_name: The rfc822Name stored in the certificate that was used to sign the request. signature.node_id: The Node-ID stored in the certificate that was used to sign the request. kind.id: The id of the Kind associated with the entry. kind.name: The name of the Kind associated with the entry. kind.data_model: The name of the Data Model associated with the entry. Petit-Huguenin Expires September 7, 2011 [Page 4] Internet-Draft Access Control Configuration March 2011 kind.access_control: The name of the Access Control Policy associated with the entry. kind.params: An associative array containing the parameters of the Access Control Policy as specified in the configuration file. max-count: The value of the max-count element in the configuration file. max-size: The value of the max-size element in the configuration file. max-node-multiple: If the Access Control is MULTIPLE-NODE, contains the value of the max-node-multiple element in the configuration file. If not, this property is undefined. entry.index: If the Data Model is ARRAY, contains the index of the entry. If not, this property is undefined. entry.key: If the Data Model is DICTIONARY, contains the key of the entry. If not, this property is undefined. entry.storage_time: A Date object containing the time for the storage. entry.lifetime: A number that contain the validity for the data in seconds. entry.exist: A boolean that indicates if the entry value exists. entry.value: If a extension element is present in the element, then the content of this property is automatically generated from the definition. If not, this property contains an opaque object that represent the whole data. If addition to the "max-count", "max-size" and eventually "max-node- multiple" properties in the kind.params associative array, any extension element in any namespace found in the element MUST be added to this array, using the element name as key and the content as value. The value returned by the code is evaluated to true or false, according to the JavaScript rules. If the return value of one of the call to the code is evaluated to false, then the StoreReq fails, the state MUST be rolled back and an Error_Forbidden MUST be returned. If the element is present in the namespace allocated to this specification, then its content MUST be parsed and converted in a way that will permit to parse the value in the DataValue structure and generate a JavaScript object with properties corresponding to each label. The "value" attribute MUST be filled with the label of the statement inside the element that must be used as the root of the parsing. Each statement in the content MUST be converted as follow: Petit-Huguenin Expires September 7, 2011 [Page 5] Internet-Draft Access Control Configuration March 2011 Vectors: Variable-length vectors are converted to arrays. Numbers: uint8, uint16, uint24, uint32, uint64, and uint128 are converted to a JavaScript number. Enumerateds: TBD Structures: Structures are converted to an object, which each fields being converted to a property of same name. Variants: TBD If the element is not present, the value in the DataValue structure will still be passed as an opaque object to the code. 4. Security Considerations TBD 5. IANA Considerations No IANA considerations. 6. Acknowledgements This document was written with the xml2rfc tool described in [RFC2629]. 7. References 7.1. Normative References [RFC2119] Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, March 1997. [I-D.ietf-p2psip-base] Jennings, C., Lowekamp, B., Rescorla, E., Baset, S., and H. Schulzrinne, "REsource LOcation And Discovery (RELOAD) Base Protocol", draft-ietf-p2psip-base-12 (work in progress), November 2010. 7.2. Informative References [RFC2629] Rose, M., "Writing I-Ds and RFCs using XML", RFC 2629, June 1999. [I-D.ietf-p2psip-service-discovery] Petit-Huguenin Expires September 7, 2011 [Page 6] Internet-Draft Access Control Configuration March 2011 Maenpaa, J. and G. Camarillo, "Service Discovery Usage for REsource LOcation And Discovery (RELOAD)", draft-ietf-p2psip-service-discovery-02 (work in progress), January 2011. [I-D.knauf-p2psip-disco] Knauf, A., Hege, G., Schmidt, T., and M. Waehlisch, "A RELOAD Usage for Distributed Conference Control (DisCo)", draft-knauf-p2psip-disco-01 (work in progress), December 2010. Appendix A. Examples A.1. Standard Access Control Policies This section shows the JavaScript code that could be used to implement the standard Access Control Policies defined in [I-D.ietf-p2psip-base]. A.1.1. USER-MATCH return resource.equals(signature.user_name); A.1.2. NODE-MATCH return resource.equals(signature.node_id); A.1.3. USER-NODE-MATCH return resource.equals(signature.user_name) && entry.key === signature.node_id; A.1.4. NODE-MULTIPLE for (int i = 0; i < kind.params['max-node-multiple']; i++) { if (resource.equals(signature.node_id, i)) return true; } return false; A.2. Service Discovery Usage [I-D.ietf-p2psip-service-discovery] defines a specific Access Control Policy (NODE-ID-MATCH) that need to access the content of the entry to be written. If implemented as specified by this document, the element would look something like this: Petit-Huguenin Expires September 7, 2011 [Page 7] Internet-Draft Access Control Configuration March 2011 DICTIONARY NODE-ID-MATCH 100 60 return entry.key === signature.node_id && true /* placeholder */ && (!entry.exists || (resource.equals(entry.value.data.namespace, entry.value.data.level, entry.value.data.node); struct { NodeId serviceProvider; opaque namespace<0..2^16-1>; uint16 level; uint16 node; /* This type can be extended */ } RedirServiceProviderData; struct { uint16 length; RedirServiceProviderData data; } RedirServiceProvider; Appendix B. Release notes This section must be removed before publication as an RFC. B.1. TODO List o Need to present the complete list of certificates for the DisCo [I-D.knauf-p2psip-disco] Usage USER-CHAIN-MATCH. o Add ABNF for the presentation language. Petit-Huguenin Expires September 7, 2011 [Page 8] Internet-Draft Access Control Configuration March 2011 Author's Address Marc Petit-Huguenin Stonyfish, Inc. Email: petithug@acm.org Petit-Huguenin Expires September 7, 2011 [Page 9]