netconf B. Liu Internet-Draft G. Zheng Intended status: Standards Track Huawei Technologies Expires: September 23, 2016 M. Jethanandani Cisco Systems K. Watsen Juniper Networks March 22, 2016 Processing Multiple Replies for One Request in NETCONF draft-liu-netconf-multiple-replies-02 Abstract This document discusses several scenarios that multiple replies for a single request are needed, with the ability to terminate the replies at any time. Such scenarios are not well supported by current NETCONF (Network Configuration) protocol. An extention at the NETCONF messaging layer is needed to fulfill the requirement. 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 September 23, 2016. Copyright Notice Copyright (c) 2016 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 Liu, et al. Expires September 23, 2016 [Page 1] Internet-Draft Netconf Multi-replies March 2016 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 . . . . . . . . . . . . . . . . . . . . . . . . 2 2. Requirements Language and Terminology . . . . . . . . . . . . 3 3. Scenarios and Problems . . . . . . . . . . . . . . . . . . . 3 3.1. Bulk . . . . . . . . . . . . . . . . . . . . 3 3.2. Persistent . . . . . . . . . . . . . . . . . 5 3.3. Long time . . . . . . . . . . . . . . . . . . 5 3.4. Datastore push updates . . . . . . . . . . . . . . . . . 5 4. Requriments for NETCONF . . . . . . . . . . . . . . . . . . . 6 5. Candidate Solutions . . . . . . . . . . . . . . . . . . . . . 6 5.1. Get-block Mechanism . . . . . . . . . . . . . . . . . . . 6 5.1.1. Design Requirements . . . . . . . . . . . . . . . . . 6 5.1.2. extention . . . . . . . . . . . . . . . . 7 5.2. Linked Replies . . . . . . . . . . . . . . . . . . . . . 8 6. Security Considerations . . . . . . . . . . . . . . . . . . . 8 7. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 8 8. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . 8 9. References . . . . . . . . . . . . . . . . . . . . . . . . . 9 9.1. Normative References . . . . . . . . . . . . . . . . . . 9 9.2. Informative References . . . . . . . . . . . . . . . . . 9 Appendix A. Examples of the Candidate Solutions . . . . . . . . 9 A.1. Example . . . . . . . . . . . . . . . . . . . 9 A.2. Linked-replies Example . . . . . . . . . . . . . . . . . 12 Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 12 1. Introduction The message procedures of NETCONF [RFC6241] are based on RPC (Remote Procedure Call) interactions. A NETCONF client/server sends a message to the counterpart and then receives a replying message. In some situations, it might need multiple messages for a request. For example, the the message might be very large that it needs to be fragmented into multiple small ones; or some operations (e.g. ping) need persistent replies till such time that a terminaing condition is encountered or when the operation is cancelled. This document discusses such kind of multiple replies scenarios, analyzes the issues of current NETCONF protocol in supporting these scenarios, and proposes several candidate solutions for discussion. Liu, et al. Expires September 23, 2016 [Page 2] Internet-Draft Netconf Multi-replies March 2016 2. Requirements Language and Terminology 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 [RFC2119] when they appear in ALL CAPS. When these words are not in ALL CAPS (such as "should" or "Should"), they have their usual English meanings, and are not to be interpreted as [RFC2119] key words. Terminology: CLI: Command Line interface DOM: Document Object Model, which is a cross-platform and language- independent convention for representing and interacting with objects in HTML, XHTML and XML documents. Objects in the DOM tree may be addressed and manipulated by using methods on the objects. RPC: Remote Procedure Call SAX: Simple API for XML, which is an event sequential access parser API developed by the XML-DEV mailing list for XML documents. SAX provides a mechanism for reading data from an XML document that is an alternative to that provided by the DOM. Where the DOM operates on the document as a whole, SAX parsers operate on each piece of the XML document sequentially. libxml: a software library for parsing XML documents. : a capability and operation defined in this document to handle large size messages. 3. Scenarios and Problems This section discusses several scenarios where multiple replies might be needed, and anylizes the problems of current NETCONF protocol in supporting these scenarios. 3.1. Bulk The message might be very large in following situations: o retrieving a large amount of routes in a core router o retrieving a large interface statistics list o doing a full-synchronizing with a device Liu, et al. Expires September 23, 2016 [Page 3] Internet-Draft Netconf Multi-replies March 2016 Current there are already some methods of processing bulk replies as the following. However, there are some issues as analyzed below. 1) Stream-Oriented Handling Stream-Oriented handling mainly includes the following two aspects: o The server encapsulates the large size replying data in a message and streams it to the client through transport protocol. o The client parses the received content in a stream- oriented way. More specifically, the client could utilize SAX parsing to instantly parse the received content without waiting for the whole message been transported. The problems are: o Stream-Oriented method lacks the capability of discontinuing large size processing in the server. It would cause unnecessary resource/performance cost in the devices if the NETCONF client has already got the intended portion or just canceled by the administrators. o Another problem is the implementation of SAX parsing is more complex than DOM parsing in the NETCONF client. More computing burden will be taken to support SAX parsing. 2) Requesting a Portion of Data The clients actively limit the search range of the data so that the servers only need to reply with a part of the large size data. Thus the clients could control the replies in a reasonable size. One example is that the clients get a list of the content, and provide a start offset and a max-count, to get a portion at a time. The problems are: o This method has an implication that the client needs to know the list/index of the intended large size data in advance before it starting the search request. It can't fit the scenarios of real- time on-demand data retrieving. And there is no standard to specify the list/index format in a uniform way. Thus it is only suitable for private implementation, thus multi-vendor interaction is not supported. Liu, et al. Expires September 23, 2016 [Page 4] Internet-Draft Netconf Multi-replies March 2016 o More important, it is just an indirect way to solve the problem. It could not fit the scenarios where the client just needs the whole large size data in the server. 3.2. Persistent One of the operations that CLI offers today is the ability to issue an operation that might result in multiple responses being returned, till such time that a terminaing condition is encountered or when the operation is cancelled. An example of such an operation is when the ping or a traceroute command is issued. In the former case, the operation can continue sending responses back till it is cancelled, while in the latter case there is usually a terminating condition that stops the responses. NETCONF protocol as defined today sends a single RPC request and expects a single reply to that request. The "persistent" operation defined above expects multiple responses for a single request, till such time a terminating condition is encountered. 3.3. Long time Some operations might take a long time to perform (e.g. network link performance validation), so there could be multiple responses for the request. For example, initial responses returns handle which the client uses to monitor progress till the final result. The client should be able to cancel the request at any time. 3.4. Datastore push updates In [I-D.clemm-netconf-yang-push] and [I-D.ietf-i2rs-pub-sub-requirements], it describes a scenario where client applications need to request updates from a YANG datastore, without requiring additional client requests. [I-D.clemm-netconf-yang-push] proposes to extend notification messaging to fulfill the requirement that a comprehensive subsription/publication model could be well supported. The datastore sub/pub might need specific data modeling and operation extention. However, at the NETCONF message layer, this draft considers multiple replies could be an alternative solution for sub/ pub comparing with notification messaging extention. [Open Question] Need more in-depth analysis and comparison of the two alternatives. Liu, et al. Expires September 23, 2016 [Page 5] Internet-Draft Netconf Multi-replies March 2016 4. Requriments for NETCONF Given above mentioned multiple-replies scenarios and problems, the requriments for NETCONF protocol could be summarized as a mechanism with the following abilities: o be able to generate and handle multiple messages for a given message o be able to terminate the at any time o be able to cancel the request in pipeline scenarios 5. Candidate Solutions (Editor notes: this section discusses possible solutions. The fragmentation mechanism is from the draft [I-D.liu-netconf-fragmentation]. The other one was proposed during mailing list discussion by Juergen Schoenwaelder. We include both of them for discussion and solution selection.) 5.1. Get-block Mechanism This section proposes a method of extending the NETCONF protocol to allow handling the replying data as multiple blocks. It allows the NETCONF client to terminate the block data processing momentarily by protocol interactions; and also allows the blocked messages to be instantly parsed piece by piece. Specifically, the mechanism is achieved by a newly defined capability and relevant operations. 5.1.1. Design Requirements Two essential requirements of the Get-block mechanism are: o It needs to allow the NETCONF client to terminate the data processing momentarily by protocol interactions. In the proposed mechanisms in this draft, when the NETCONF server replies the client an , it will wait the response from the client that whether it needs to send the next block. So if the initiator has got the intended portion, it could terminate the process immediately. o It needs to allow the NETCONF client to instantly parse the blocks piece by piece through the more widely supported DOM parsing. So in this document, it specifies that each block MUST be in a complete XML form. Liu, et al. Expires September 23, 2016 [Page 6] Internet-Draft Netconf Multi-replies March 2016 (Editor notes: this solution was originally designed for large size fragmentation processing. However, the rationale of this solution has the potential to fulfill the other scenarios.) 5.1.2. extention o Function The devices can only use operation when the Get-block capability was announced. The rules are: A. There should be a Max-Size for each block. [Open Question]Should there be a clear specification of the size? E.g. 64K bytes. B. When the message reaches the Max-Size, it is sent to the client and the next message could be created in advance. C. Different records from one same table could be put into different messages D. All of the fields in one record MUST be put into one message. E. XML syntax MUST be complete in each block message, so that each block could be parsed individually. F. If the record(s) of the child node(s)/table(s) and the parent node(s)/table(s) are replied in different blocks, the child node/table block MUST include the path and index information of all the ancestor node(s)/table(s) in a hierarchical mode. o Parameters : in operation, if the parameter is conveyed, it means the operation is terminated. Then it doesn't need to reply the remaining blocks. o Successful Operation Reply A message conveying a element indicates the operation is successful. If there exists a next block, then an set-id attribute MUST be included in the messge. The attribute set-id is used to identify different block sets. Liu, et al. Expires September 23, 2016 [Page 7] Internet-Draft Netconf Multi-replies March 2016 o Exception Handling After the NETCONF server replies a block, if there is no corresponding Get-block request from the client in a reasonable period (the time valued to be specified in the future), then the server release the offset of the replying data and cannot use operation anymore, and the remaining data needs to be replied. Please refer to Appendix A.1 for an example. 5.2. Linked Replies Another solution is to change or augment NETCONF at some point in time such that an can lead to a sequence of with a suitable cancel mechanism. A simple approach is to add a linked- replies capability. If a server announces "linked-replies" capablility and the client supports it as well, the client can add an additional parameter to an rpc to indicate the possible use of linked-replies. Please refer to Appendix A.2 for an example. This would address the concern of large data retrievals but would also allow long running asynchronous rpcs (the ping or traceroute example). This approach may lead to better support for asynchronous rpcs and rpcs that potentially return very large chunks of data than trying to solve this problem without enhancements of the rpc layer. Design details concerning data merging, error handling, how to send a cancel for a given link-id (e.g., by sending a new message with a matching link-id) and whether it is necessary to negotiate linked rpc-reply sizes or whether it is good enough for the server to decide freely as it likes etc. need further study. 6. Security Considerations TBD. 7. IANA Considerations This draft does not request any IANA action. 8. Acknowledgements Gang Yan and Shouchuan Yang made significant contribution to form the draft. Valuable comments were received from Andy Bierman, Juergen Schoenwaelder, Balazs Lengyel, Martin Bjorklund, Chong Feng and some other people in Netconf working group. Liu, et al. Expires September 23, 2016 [Page 8] Internet-Draft Netconf Multi-replies March 2016 This document was produced using the xml2rfc tool [RFC2629]. (initiallly prepared using 2-Word-v2.0.template.dot. ) 9. References 9.1. Normative References [RFC2119] Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, DOI 10.17487/RFC2119, March 1997, . [RFC2629] Rose, M., "Writing I-Ds and RFCs using XML", RFC 2629, DOI 10.17487/RFC2629, June 1999, . [RFC6241] Enns, R., Ed., Bjorklund, M., Ed., Schoenwaelder, J., Ed., and A. Bierman, Ed., "Network Configuration Protocol (NETCONF)", RFC 6241, DOI 10.17487/RFC6241, June 2011, . 9.2. Informative References [I-D.clemm-netconf-yang-push] Clemm, A., Prieto, A., and E. Voit, "Subscribing to YANG datastore push updates", draft-clemm-netconf-yang-push-02 (work in progress), October 2015. [I-D.ietf-i2rs-pub-sub-requirements] Voit, E., Clemm, A., and A. Prieto, "Requirements for Subscription to YANG Datastores", draft-ietf-i2rs-pub-sub- requirements-05 (work in progress), February 2016. [I-D.liu-netconf-fragmentation] Liu, B. and G. Zheng, "A NETCONF Extension for Data Fragmentation", draft-liu-netconf-fragmentation-01 (work in progress), October 2014. Appendix A. Examples of the Candidate Solutions A.1. Example Example 1: Get the next block Liu, et al. Expires September 23, 2016 [Page 9] Internet-Draft Netconf Multi-replies March 2016 root superuser Charlie Root 1 1 admin commonuser Jim Green Liu, et al. Expires September 23, 2016 [Page 10] Internet-Draft Netconf Multi-replies March 2016 9 90 Example 2: Abandon the remaining blocks Example 3: Following is an example of the rule f in Section 4.1.2. The child eTable is in a different message with the parents aTable->bTable->cTable->dTable. Then the path and index information of all the ancestors MUST included in the search data. Liu, et al. Expires September 23, 2016 [Page 11] Internet-Draft Netconf Multi-replies March 2016 A.2. Linked-replies Example Here is what a new client might do if it wants to use linked replies: The server can either simply send an rpc-reply or it starts sending linked replies, e.g.: Authors' Addresses Bing Liu Huawei Technologies Q14, Huawei Campus, No.156 Beiqing Road Hai-Dian District, Beijing, 100095 P.R. China Email: leo.liubing@huawei.com Guangying Zheng Huawei Technologies Huawei Nanjing R&D Center 101 Software Avenue, Yuhua District, Nanjing, Jiangsu, 210012 P.R. China Email: zhengguangying@huawei.com Mahesh Jethanandani Cisco Systems USA Email: mjethanandani@gmail.com Liu, et al. Expires September 23, 2016 [Page 12] Internet-Draft Netconf Multi-replies March 2016 Kent Watsen Juniper Networks Email: kwatsen@juniper.net Liu, et al. Expires September 23, 2016 [Page 13]