blob: fc01fe4fff44e70bbf052e9193bffb9f3b66cc0b [file] [log] [blame]
Aaron Kruglikovbc26a522017-02-21 11:27:49 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Aaron Kruglikovbc26a522017-02-21 11:27:49 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.netconf.client.impl;
18
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +053019import com.google.common.annotations.Beta;
Aaron Kruglikovbc26a522017-02-21 11:27:49 -080020import org.onosproject.cluster.NodeId;
21import org.onosproject.net.DeviceId;
Aaron Kruglikovbc26a522017-02-21 11:27:49 -080022import org.onosproject.netconf.NetconfController;
23import org.onosproject.netconf.NetconfDevice;
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +053024import org.onosproject.netconf.NetconfException;
Aaron Kruglikovbc26a522017-02-21 11:27:49 -080025import org.onosproject.netconf.NetconfSession;
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +053026import org.onosproject.netconf.client.NetconfTranslator;
27import org.onosproject.yang.model.DataNode;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070028import org.onosproject.yang.model.DefaultResourceData;
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +053029import org.onosproject.yang.model.InnerNode;
Aaron Kruglikovbc26a522017-02-21 11:27:49 -080030import org.onosproject.yang.model.KeyLeaf;
Aaron Kruglikovbc26a522017-02-21 11:27:49 -080031import org.onosproject.yang.model.LeafListKey;
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +053032import org.onosproject.yang.model.LeafNode;
33import org.onosproject.yang.model.ListKey;
34import org.onosproject.yang.model.NodeKey;
35import org.onosproject.yang.model.ResourceData;
36import org.onosproject.yang.model.ResourceId;
Aaron Kruglikovd24dc982017-03-23 18:48:58 -070037import org.onosproject.yang.model.SchemaContext;
38import org.onosproject.yang.model.SchemaContextProvider;
Aaron Kruglikovbc26a522017-02-21 11:27:49 -080039import org.onosproject.yang.model.SchemaId;
Aaron Kruglikovbc26a522017-02-21 11:27:49 -080040import org.onosproject.yang.runtime.CompositeStream;
41import org.onosproject.yang.runtime.DefaultAnnotatedNodeInfo;
42import org.onosproject.yang.runtime.DefaultAnnotation;
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +053043import org.onosproject.yang.runtime.DefaultCompositeData;
44import org.onosproject.yang.runtime.DefaultCompositeStream;
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +053045import org.onosproject.yang.runtime.DefaultRuntimeContext;
Aaron Kruglikovbc26a522017-02-21 11:27:49 -080046import org.onosproject.yang.runtime.DefaultYangSerializerContext;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070047import org.onosproject.yang.runtime.SerializerHelper;
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +053048import org.onosproject.yang.runtime.YangRuntimeService;
49import org.onosproject.yang.runtime.YangSerializerContext;
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +053050import org.osgi.service.component.ComponentContext;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070051import org.osgi.service.component.annotations.Activate;
52import org.osgi.service.component.annotations.Component;
53import org.osgi.service.component.annotations.Deactivate;
54import org.osgi.service.component.annotations.Reference;
55import org.osgi.service.component.annotations.ReferenceCardinality;
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +053056import org.slf4j.Logger;
57import org.slf4j.LoggerFactory;
Aaron Kruglikovbc26a522017-02-21 11:27:49 -080058
59import java.io.BufferedReader;
60import java.io.ByteArrayInputStream;
61import java.io.IOException;
62import java.io.InputStream;
63import java.io.InputStreamReader;
64import java.nio.charset.StandardCharsets;
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +053065import java.util.Iterator;
66import java.util.List;
Aaron Kruglikovbc26a522017-02-21 11:27:49 -080067import java.util.regex.Matcher;
68import java.util.regex.Pattern;
Aaron Kruglikovbc26a522017-02-21 11:27:49 -080069
70import static com.google.common.base.Preconditions.checkNotNull;
Yuta HIGUCHIdd7c3f82017-09-03 14:18:01 -070071import static org.onosproject.netconf.DatastoreId.RUNNING;
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +053072import static org.onosproject.yang.model.DataNode.Type.SINGLE_INSTANCE_LEAF_VALUE_NODE;
Ray Milkey86d1b0a2017-05-16 15:15:08 -070073import static org.onosproject.yang.runtime.SerializerHelper.addDataNode;
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +053074
75/*FIXME these imports are not visible using OSGI*/
76
77/*FIXME these imports are not visible using OSGI*/
Aaron Kruglikovbc26a522017-02-21 11:27:49 -080078
79/*TODO once the API's are finalized this comment will be made more specified.*/
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +053080
Aaron Kruglikovbc26a522017-02-21 11:27:49 -080081/**
82 * Translator which accepts data types defined for the DynamicConfigService and
83 * makes the appropriate calls to NETCONF devices before encoding and returning
84 * responses in formats suitable for the DynamicConfigService.
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +053085 * <p>
Aaron Kruglikovbc26a522017-02-21 11:27:49 -080086 * NOTE: This entity does not ensure you are the master of a device you attempt
87 * to contact. If you are not the master an error will be thrown because there
88 * will be no session available.
89 */
90@Beta
Ray Milkeyd84f89b2018-08-17 14:54:17 -070091@Component(immediate = true, service = NetconfTranslator.class)
Aaron Kruglikovbc26a522017-02-21 11:27:49 -080092public class NetconfTranslatorImpl implements NetconfTranslator {
93
Ray Milkeyba547f92018-02-01 15:22:31 -080094 private static final Logger log = LoggerFactory
95 .getLogger(NetconfTranslator.class);
Aaron Kruglikovbc26a522017-02-21 11:27:49 -080096
97 private NodeId localNodeId;
98
99 private static final String GET_CONFIG_MESSAGE_REGEX =
100 "<data>\n?\\s*(.*?)\n?\\s*</data>";
101 private static final int GET_CONFIG_CORE_MESSAGE_GROUP = 1;
102 private static final Pattern GET_CONFIG_CORE_MESSAGE_PATTERN =
103 Pattern.compile(GET_CONFIG_MESSAGE_REGEX, Pattern.DOTALL);
104 private static final String GET_CORE_MESSAGE_REGEX = "<data>\n?\\s*(.*?)\n?\\s*</data>";
105 private static final int GET_CORE_MESSAGE_GROUP = 1;
106 private static final Pattern GET_CORE_MESSAGE_PATTERN =
107 Pattern.compile(GET_CORE_MESSAGE_REGEX, Pattern.DOTALL);
108
109 private static final String NETCONF_1_0_BASE_NAMESPACE =
110 "urn:ietf:params:xml:ns:netconf:base:1.0";
111
112 private static final String GET_URI = "urn:ietf:params:xml:ns:yang:" +
113 "yrt-ietf-network:networks/network/node";
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +0530114 private static final String XML_ENCODING_SPECIFIER = "xml";
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800115 private static final String OP_SPECIFIER = "xc:operation";
116 private static final String REPLACE_OP_SPECIFIER = "replace";
117 private static final String DELETE_OP_SPECIFIER = "delete";
118 private static final String XMLNS_XC_SPECIFIER = "xmlns:xc";
119 private static final String XMLNS_SPECIFIER = "xmlns";
120
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700121 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800122 protected NetconfController netconfController;
123
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700124 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800125 protected YangRuntimeService yangRuntimeService;
126
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700127 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Aaron Kruglikovd24dc982017-03-23 18:48:58 -0700128 protected SchemaContextProvider schemaContextProvider;
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800129
130 @Activate
131 public void activate(ComponentContext context) {
132 log.info("Started");
133 }
134
135 @Deactivate
136 public void deactivate() {
137 log.info("Stopped");
138 }
139
140 @Override
141 public ResourceData getDeviceConfig(DeviceId deviceId) throws IOException {
142 NetconfSession session = getNetconfSession(deviceId);
143 /*FIXME "running" will be replaced with an enum once netconf supports multiple datastores.*/
Andrei Mihaescuac542ca2017-03-26 21:36:25 +0300144 String reply = session.getConfig(RUNNING);
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800145 Matcher protocolStripper = GET_CONFIG_CORE_MESSAGE_PATTERN.matcher(reply);
TOIDA Yuto208d8c62019-10-05 15:47:24 +0000146 protocolStripper.find();
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800147 reply = protocolStripper.group(GET_CONFIG_CORE_MESSAGE_GROUP);
148 return yangRuntimeService.decode(
149 new DefaultCompositeStream(
150 null,
151 /*FIXME is UTF_8 the appropriate encoding? */
152 new ByteArrayInputStream(reply.getBytes(StandardCharsets.UTF_8))),
153 new DefaultRuntimeContext.Builder()
154 .setDataFormat(XML_ENCODING_SPECIFIER)
155 .addAnnotation(
156 new DefaultAnnotation(XMLNS_SPECIFIER,
157 NETCONF_1_0_BASE_NAMESPACE))
158 .build()).resourceData();
159 }
160
161 @Override
162 public boolean editDeviceConfig(DeviceId deviceId, ResourceData resourceData,
163 NetconfTranslator.OperationType operationType) throws IOException {
164 NetconfSession session = getNetconfSession(deviceId);
Aaron Kruglikovd24dc982017-03-23 18:48:58 -0700165 SchemaContext context = schemaContextProvider
166 .getSchemaContext(ResourceId.builder().addBranchPointSchema("/", null).build());
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800167 ResourceData modifiedPathResourceData = getResourceData(resourceData.resourceId(),
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +0530168 resourceData.dataNodes(),
169 new DefaultYangSerializerContext(context, null));
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800170 DefaultCompositeData.Builder compositeDataBuilder = DefaultCompositeData
171 .builder()
172 .resourceData(modifiedPathResourceData);
173 for (DataNode node : resourceData.dataNodes()) {
174 ResourceId resourceId = resourceData.resourceId();
175 if (operationType != OperationType.DELETE) {
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +0530176 resourceId = getAnnotatedNodeResourceId(
177 resourceData.resourceId(), node);
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800178 }
179 if (resourceId != null) {
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +0530180 DefaultAnnotatedNodeInfo.Builder annotatedNodeInfo =
181 DefaultAnnotatedNodeInfo.builder();
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800182 annotatedNodeInfo.resourceId(resourceId);
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +0530183 annotatedNodeInfo.addAnnotation(
184 new DefaultAnnotation(
185 OP_SPECIFIER, operationType == OperationType.DELETE ?
186 DELETE_OP_SPECIFIER : REPLACE_OP_SPECIFIER));
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800187 compositeDataBuilder.addAnnotatedNodeInfo(annotatedNodeInfo.build());
188 }
189 }
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +0530190 CompositeStream config = yangRuntimeService.encode(
191 compositeDataBuilder.build(),
192 new DefaultRuntimeContext.Builder()
193 .setDataFormat(XML_ENCODING_SPECIFIER)
194 .addAnnotation(new DefaultAnnotation(
195 XMLNS_XC_SPECIFIER, NETCONF_1_0_BASE_NAMESPACE))
196 .build());
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800197 /* FIXME need to fix to string conversion. */
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +0530198
199 try {
200 String reply = session.requestSync(Utils.editConfig(streamToString(
201 config.resourceData())));
202 } catch (NetconfException e) {
203 log.error("failed to send a request sync", e);
204 return false;
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800205 }
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +0530206 /* NOTE: a failure to edit is reflected as a NetconfException.*/
207 return true;
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800208 }
209
210 @Override
211 public ResourceData getDeviceState(DeviceId deviceId) throws IOException {
212 NetconfSession session = getNetconfSession(deviceId);
213 /*TODO the first parameter will come into use if get is required to support filters.*/
214 String reply = session.get(null, null);
215 Matcher protocolStripper = GET_CORE_MESSAGE_PATTERN.matcher(reply);
TOIDA Yuto208d8c62019-10-05 15:47:24 +0000216 protocolStripper.find();
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800217 reply = protocolStripper.group(GET_CORE_MESSAGE_GROUP);
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +0530218 return yangRuntimeService.decode(
219 new DefaultCompositeStream(
220 null,
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800221 /*FIXME is UTF_8 the appropriate encoding? */
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +0530222 new ByteArrayInputStream(reply.getBytes(StandardCharsets.UTF_8))),
223 new DefaultRuntimeContext.Builder()
224 .setDataFormat(XML_ENCODING_SPECIFIER)
225 .addAnnotation(
226 new DefaultAnnotation(
227 XMLNS_SPECIFIER,
228 NETCONF_1_0_BASE_NAMESPACE))
229 .build()).resourceData();
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800230 /* NOTE: a failure to get is reflected as a NetconfException.*/
231 }
232
233 /**
234 * Returns a session for the specified deviceId if this node is its master,
235 * returns null otherwise.
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +0530236 *
sangyun-han43c56702017-07-11 11:55:28 +0900237 * @param deviceId the id of node for which we wish to retrieve a session
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800238 * @return a NetconfSession with the specified node or null
239 */
240 private NetconfSession getNetconfSession(DeviceId deviceId) {
241 NetconfDevice device = netconfController.getNetconfDevice(deviceId);
242 checkNotNull(device, "The specified deviceId could not be found by the NETCONF controller.");
243 NetconfSession session = device.getSession();
244 checkNotNull(session, "A session could not be retrieved for the specified deviceId.");
245 return session;
246 }
247
248 /**
249 * Accepts a stream and converts it to a string.
250 *
251 * @param stream the stream to be converted
252 * @return a string with the same sequence of characters as the stream
253 * @throws IOException if reading from the stream fails
254 */
255 private String streamToString(InputStream stream) throws IOException {
256 BufferedReader reader = new BufferedReader(new InputStreamReader(stream));
257 StringBuilder builder = new StringBuilder();
258
259 String nextLine = reader.readLine();
260 while (nextLine != null) {
261 builder.append(nextLine);
262 nextLine = reader.readLine();
263 }
264 return builder.toString();
265 }
266
267 /**
268 * Returns resource data having resource id as "/" and data node tree
269 * starting from "/" by creating data nodes for given resource id(parent
270 * node for given list of nodes) and list of child nodes.
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +0530271 * <p>
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800272 * This api will be used in encode flow only.
273 *
274 * @param rid resource identifier till parent node
275 * @param nodes list of data nodes
276 * @param cont yang serializer context
277 * @return resource data.
278 */
279 public static ResourceData getResourceData(
280 ResourceId rid, List<DataNode> nodes, YangSerializerContext cont) {
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +0530281 if (rid == null) {
282 ResourceData.Builder resData = DefaultResourceData.builder();
283 for (DataNode node : nodes) {
284 resData.addDataNode(node);
285 }
286 return resData.build();
287 }
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800288 List<NodeKey> keys = rid.nodeKeys();
289 Iterator<NodeKey> it = keys.iterator();
290 DataNode.Builder dbr = SerializerHelper.initializeDataNode(cont);
291
292 // checking the resource id weather it is getting started from / or not
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800293
294 while (it.hasNext()) {
295 NodeKey nodekey = it.next();
296 SchemaId sid = nodekey.schemaId();
297 dbr = addDataNode(dbr, sid.name(), sid.namespace(),
298 null, null);
299 if (nodekey instanceof ListKey) {
300 for (KeyLeaf keyLeaf : ((ListKey) nodekey).keyLeafs()) {
301 String val;
302 if (keyLeaf.leafValue() == null) {
303 val = null;
304 } else {
305 val = keyLeaf.leafValAsString();
306 }
307 dbr = addDataNode(dbr, keyLeaf.leafSchema().name(),
308 sid.namespace(), val,
309 SINGLE_INSTANCE_LEAF_VALUE_NODE);
310 }
311 }
312 }
313
314 if (dbr instanceof LeafNode.Builder &&
Ray Milkey57add212018-01-16 13:04:42 -0800315 (nodes != null && !nodes.isEmpty())) {
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800316 //exception "leaf/leaf-list can not have child node"
317 }
318
319 if (nodes != null && !nodes.isEmpty()) {
320 // adding the parent node for given list of nodes
321 for (DataNode node : nodes) {
322 dbr = ((InnerNode.Builder) dbr).addNode(node);
323 }
324 }
Aaron Kruglikovd24dc982017-03-23 18:48:58 -0700325/*FIXME this can be uncommented for use with versions of onos-yang-tools newer than 1.12.0-b6*/
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800326// while (dbr.parent() != null) {
327// dbr = SerializerHelper.exitDataNode(dbr);
328// }
329
330 ResourceData.Builder resData = DefaultResourceData.builder();
331
332 resData.addDataNode(dbr.build());
333 resData.resourceId(null);
334 return resData.build();
335 }
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +0530336
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800337 /**
338 * Returns resource id for annotated data node by adding resource id of top
339 * level data node to given resource id.
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +0530340 * <p>
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800341 * Annotation will be added to node based on the updated resource id.
342 * This api will be used in encode flow only.
343 *
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +0530344 * @param rid resource identifier till parent node
345 * @param node data node
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800346 * @return updated resource id.
347 */
348 public static ResourceId getAnnotatedNodeResourceId(ResourceId rid,
349 DataNode node) {
350
351 String val;
352 ResourceId.Builder rIdBldr = ResourceId.builder();
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +0530353 if (rid != null) {
354 try {
355 rIdBldr = rid.copyBuilder();
356 } catch (CloneNotSupportedException e) {
Ray Milkeyba547f92018-02-01 15:22:31 -0800357 log.debug("clone not supported", e);
Bharat saraswalb0dbe6b2017-03-24 22:51:06 +0530358 }
359 } else {
360 rIdBldr.addBranchPointSchema("/", null);
Aaron Kruglikovbc26a522017-02-21 11:27:49 -0800361 }
362 DataNode.Type type = node.type();
363 NodeKey k = node.key();
364 SchemaId sid = k.schemaId();
365
366 switch (type) {
367
368 case MULTI_INSTANCE_LEAF_VALUE_NODE:
369 val = ((LeafListKey) k).value().toString();
370 rIdBldr.addLeafListBranchPoint(sid.name(), sid.namespace(), val);
371 break;
372
373 case MULTI_INSTANCE_NODE:
374 rIdBldr.addBranchPointSchema(sid.name(), sid.namespace());
375// Preparing the list of key values for multiInstanceNode
376 for (KeyLeaf keyLeaf : ((ListKey) node.key()).keyLeafs()) {
377 val = keyLeaf.leafValAsString();
378 rIdBldr.addKeyLeaf(keyLeaf.leafSchema().name(), sid.namespace(), val);
379 }
380 break;
381 case SINGLE_INSTANCE_LEAF_VALUE_NODE:
382 case SINGLE_INSTANCE_NODE:
383 rIdBldr.addBranchPointSchema(sid.name(), sid.namespace());
384 break;
385
386 default:
387 throw new IllegalArgumentException();
388 }
389 return rIdBldr.build();
390 }
391}