blob: 16d9673d50187f6dbcfe11c277dd4ce189f7873b [file] [log] [blame]
Sho SHIMIZUe4efe452015-08-26 15:06:55 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
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 */
16package org.onosproject.ovsdb.controller.driver;
17
andreaed976a42015-10-05 14:38:25 -070018import com.fasterxml.jackson.databind.JsonNode;
19import com.google.common.base.Function;
Brian O'Connor6ee8aa32015-10-09 16:07:42 -070020import com.google.common.collect.ImmutableList;
andreaed976a42015-10-05 14:38:25 -070021import com.google.common.collect.Lists;
22import com.google.common.collect.Maps;
23import com.google.common.collect.Sets;
24import com.google.common.util.concurrent.Futures;
25import com.google.common.util.concurrent.ListenableFuture;
26import com.google.common.util.concurrent.SettableFuture;
lishuai6c56f5e2015-11-17 16:38:19 +080027
Sho SHIMIZUe4efe452015-08-26 15:06:55 -070028import io.netty.channel.Channel;
lishuai6c56f5e2015-11-17 16:38:19 +080029
Sho SHIMIZUe4efe452015-08-26 15:06:55 -070030import org.onlab.packet.IpAddress;
andreaed976a42015-10-05 14:38:25 -070031import org.onosproject.net.DeviceId;
32import org.onosproject.net.behaviour.ControllerInfo;
Sho SHIMIZUe4efe452015-08-26 15:06:55 -070033import org.onosproject.ovsdb.controller.OvsdbBridge;
34import org.onosproject.ovsdb.controller.OvsdbBridgeName;
35import org.onosproject.ovsdb.controller.OvsdbClientService;
36import org.onosproject.ovsdb.controller.OvsdbConstant;
37import org.onosproject.ovsdb.controller.OvsdbDatapathId;
38import org.onosproject.ovsdb.controller.OvsdbNodeId;
39import org.onosproject.ovsdb.controller.OvsdbPort;
40import org.onosproject.ovsdb.controller.OvsdbPortName;
41import org.onosproject.ovsdb.controller.OvsdbPortNumber;
42import org.onosproject.ovsdb.controller.OvsdbRowStore;
43import org.onosproject.ovsdb.controller.OvsdbStore;
44import org.onosproject.ovsdb.controller.OvsdbTableStore;
45import org.onosproject.ovsdb.controller.OvsdbTunnel;
Satish Kebe203d2015-11-21 15:58:18 +053046import org.onosproject.ovsdb.rfc.exception.BridgeCreateException;
Sho SHIMIZUe4efe452015-08-26 15:06:55 -070047import org.onosproject.ovsdb.rfc.jsonrpc.Callback;
48import org.onosproject.ovsdb.rfc.message.OperationResult;
49import org.onosproject.ovsdb.rfc.message.TableUpdates;
50import org.onosproject.ovsdb.rfc.notation.Condition;
51import org.onosproject.ovsdb.rfc.notation.Mutation;
CNluciusa66c3972015-09-06 20:31:29 +080052import org.onosproject.ovsdb.rfc.notation.OvsdbMap;
Sho SHIMIZUe4efe452015-08-26 15:06:55 -070053import org.onosproject.ovsdb.rfc.notation.OvsdbSet;
54import org.onosproject.ovsdb.rfc.notation.Row;
55import org.onosproject.ovsdb.rfc.notation.UUID;
56import org.onosproject.ovsdb.rfc.operations.Delete;
57import org.onosproject.ovsdb.rfc.operations.Insert;
58import org.onosproject.ovsdb.rfc.operations.Mutate;
59import org.onosproject.ovsdb.rfc.operations.Operation;
60import org.onosproject.ovsdb.rfc.operations.Update;
61import org.onosproject.ovsdb.rfc.schema.ColumnSchema;
62import org.onosproject.ovsdb.rfc.schema.DatabaseSchema;
63import org.onosproject.ovsdb.rfc.schema.TableSchema;
64import org.onosproject.ovsdb.rfc.table.Bridge;
65import org.onosproject.ovsdb.rfc.table.Controller;
66import org.onosproject.ovsdb.rfc.table.Interface;
67import org.onosproject.ovsdb.rfc.table.OvsdbTable;
68import org.onosproject.ovsdb.rfc.table.Port;
69import org.onosproject.ovsdb.rfc.table.TableGenerator;
70import org.onosproject.ovsdb.rfc.utils.ConditionUtil;
71import org.onosproject.ovsdb.rfc.utils.FromJsonUtil;
72import org.onosproject.ovsdb.rfc.utils.JsonRpcWriterUtil;
73import org.onosproject.ovsdb.rfc.utils.MutationUtil;
74import org.slf4j.Logger;
75import org.slf4j.LoggerFactory;
76
andreaed976a42015-10-05 14:38:25 -070077import java.net.InetSocketAddress;
78import java.util.ArrayList;
Hyunsun Moon646d8c42015-10-08 20:32:44 -070079import java.util.Arrays;
80import java.util.HashMap;
andreaed976a42015-10-05 14:38:25 -070081import java.util.HashSet;
82import java.util.Iterator;
83import java.util.List;
84import java.util.Map;
85import java.util.Set;
86import java.util.concurrent.ConcurrentMap;
87import java.util.concurrent.ExecutionException;
88import java.util.concurrent.atomic.AtomicReference;
89import java.util.stream.Collectors;
Sho SHIMIZUe4efe452015-08-26 15:06:55 -070090
91/**
92 * An representation of an ovsdb client.
93 */
94public class DefaultOvsdbClient
95 implements OvsdbProviderService, OvsdbClientService {
96
97 private final Logger log = LoggerFactory
98 .getLogger(DefaultOvsdbClient.class);
99
100 private Channel channel;
101
102 private OvsdbAgent agent;
103 private boolean connected;
104 private OvsdbNodeId nodeId;
105 private Callback monitorCallBack;
106
107 private OvsdbStore ovsdbStore = new OvsdbStore();
108
109 private final Map<String, String> requestMethod = Maps.newHashMap();
110 private final Map<String, SettableFuture<? extends Object>> requestResult = Maps
111 .newHashMap();
112
113 private final Map<String, DatabaseSchema> schema = Maps.newHashMap();
114 private final Set<OvsdbTunnel> ovsdbTunnels = new HashSet<OvsdbTunnel>();
115
116 /**
117 * Creates an OvsdbClient.
118 *
119 * @param nodeId ovsdb node id
120 */
121 public DefaultOvsdbClient(OvsdbNodeId nodeId) {
122 this.nodeId = nodeId;
123 }
124
125 @Override
126 public OvsdbNodeId nodeId() {
127 return nodeId;
128 }
129
130 @Override
131 public void setAgent(OvsdbAgent agent) {
132 if (this.agent == null) {
133 this.agent = agent;
134 }
135 }
136
137 @Override
138 public void setChannel(Channel channel) {
139 this.channel = channel;
140 }
141
142 @Override
143 public void setConnection(boolean connected) {
144 this.connected = connected;
145 }
146
147 @Override
148 public boolean isConnected() {
149 return this.connected;
150 }
151
152 @Override
153 public void nodeAdded() {
154 this.agent.addConnectedNode(nodeId, this);
155 }
156
157 @Override
158 public void nodeRemoved() {
159 this.agent.removeConnectedNode(nodeId);
160 channel.disconnect();
161 }
162
163 /**
164 * Gets the ovsdb table store.
165 *
166 * @param dbName the ovsdb database name
167 * @return ovsTableStore, empty if table store is find
168 */
169 private OvsdbTableStore getTableStore(String dbName) {
170 if (ovsdbStore == null) {
171 return null;
172 }
173 return ovsdbStore.getOvsdbTableStore(dbName);
174 }
175
176 /**
177 * Gets the ovsdb row store.
178 *
andreaed976a42015-10-05 14:38:25 -0700179 * @param dbName the ovsdb database name
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700180 * @param tableName the ovsdb table name
Hyunsun Moon6125c612015-10-15 10:54:44 -0700181 * @return ovsRowStore, empty store if no rows exist in the table
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700182 */
183 private OvsdbRowStore getRowStore(String dbName, String tableName) {
184 OvsdbTableStore tableStore = getTableStore(dbName);
185 if (tableStore == null) {
186 return null;
187 }
Hyunsun Moon6125c612015-10-15 10:54:44 -0700188
189 OvsdbRowStore rowStore = tableStore.getRows(tableName);
190 if (rowStore == null) {
191 rowStore = new OvsdbRowStore();
192 }
193 return rowStore;
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700194 }
195
196 /**
197 * Gets the ovsdb row.
198 *
andreaed976a42015-10-05 14:38:25 -0700199 * @param dbName the ovsdb database name
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700200 * @param tableName the ovsdb table name
andreaed976a42015-10-05 14:38:25 -0700201 * @param uuid the key of the row
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700202 * @return row, empty if row is find
203 */
204 @Override
205 public Row getRow(String dbName, String tableName, String uuid) {
206 OvsdbTableStore tableStore = getTableStore(dbName);
207 if (tableStore == null) {
208 return null;
209 }
210 OvsdbRowStore rowStore = tableStore.getRows(tableName);
211 if (rowStore == null) {
212 return null;
213 }
214 return rowStore.getRow(uuid);
215 }
216
217 @Override
218 public void removeRow(String dbName, String tableName, String uuid) {
219 OvsdbTableStore tableStore = getTableStore(dbName);
220 if (tableStore == null) {
221 return;
222 }
223 OvsdbRowStore rowStore = tableStore.getRows(tableName);
224 if (rowStore == null) {
225 return;
226 }
227 rowStore.deleteRow(uuid);
228 }
229
230 @Override
231 public void updateOvsdbStore(String dbName, String tableName, String uuid,
232 Row row) {
233 OvsdbTableStore tableStore = ovsdbStore.getOvsdbTableStore(dbName);
234 if (tableStore == null) {
235 tableStore = new OvsdbTableStore();
236 }
237 OvsdbRowStore rowStore = tableStore.getRows(tableName);
238 if (rowStore == null) {
239 rowStore = new OvsdbRowStore();
240 }
241 rowStore.insertRow(uuid, row);
242 tableStore.createOrUpdateTable(tableName, rowStore);
243 ovsdbStore.createOrUpdateOvsdbStore(dbName, tableStore);
244 }
245
246 @Override
247 public String getPortUuid(String portName, String bridgeUuid) {
248 DatabaseSchema dbSchema = schema.get(OvsdbConstant.DATABASENAME);
249
250 Row bridgeRow = getRow(OvsdbConstant.DATABASENAME,
251 OvsdbConstant.BRIDGE, bridgeUuid);
252
253 Bridge bridge = (Bridge) TableGenerator.getTable(dbSchema, bridgeRow,
254 OvsdbTable.BRIDGE);
255 if (bridge != null) {
256 OvsdbSet setPorts = (OvsdbSet) bridge.getPortsColumn().data();
257 @SuppressWarnings("unchecked")
258 Set<UUID> ports = setPorts.set();
259 if (ports == null || ports.size() == 0) {
260 log.warn("The port uuid is null");
261 return null;
262 }
263
264 for (UUID uuid : ports) {
265 Row portRow = getRow(OvsdbConstant.DATABASENAME,
266 OvsdbConstant.PORT, uuid.value());
267 Port port = (Port) TableGenerator.getTable(dbSchema, portRow,
268 OvsdbTable.PORT);
269 if (port != null && portName.equalsIgnoreCase(port.getName())) {
270 return uuid.value();
271 }
272 }
273
274 }
275 return null;
276 }
277
278 @Override
279 public String getInterfaceUuid(String portUuid, String portName) {
280 DatabaseSchema dbSchema = schema.get(OvsdbConstant.DATABASENAME);
281
282 Row portRow = getRow(OvsdbConstant.DATABASENAME, OvsdbConstant.PORT,
283 portUuid);
284 Port port = (Port) TableGenerator.getTable(dbSchema, portRow,
285 OvsdbTable.PORT);
286
287 if (port != null) {
288 OvsdbSet setInterfaces = (OvsdbSet) port.getInterfacesColumn().data();
289 @SuppressWarnings("unchecked")
290 Set<UUID> interfaces = setInterfaces.set();
291
292 if (interfaces == null || interfaces.size() == 0) {
293 log.warn("The interface uuid is null");
294 return null;
295 }
296
297 for (UUID uuid : interfaces) {
298 Row intfRow = getRow(OvsdbConstant.DATABASENAME,
299 OvsdbConstant.INTERFACE, uuid.value());
300 Interface intf = (Interface) TableGenerator
301 .getTable(dbSchema, intfRow, OvsdbTable.INTERFACE);
302 if (intf != null && portName.equalsIgnoreCase(intf.getName())) {
303 return uuid.value();
304 }
305 }
306
307 }
308
309 return null;
310 }
311
312 @Override
313 public String getBridgeUuid(String bridgeName) {
314 DatabaseSchema dbSchema = schema.get(OvsdbConstant.DATABASENAME);
315
316 OvsdbRowStore rowStore = getRowStore(OvsdbConstant.DATABASENAME,
317 OvsdbConstant.BRIDGE);
318 if (rowStore == null) {
319 log.debug("The bridge uuid is null");
320 return null;
321 }
322
323 ConcurrentMap<String, Row> bridgeTableRows = rowStore.getRowStore();
324 if (bridgeTableRows == null) {
325 log.debug("The bridge uuid is null");
326 return null;
327 }
328
329 for (String uuid : bridgeTableRows.keySet()) {
330 Bridge bridge = (Bridge) TableGenerator
331 .getTable(dbSchema, bridgeTableRows.get(uuid),
332 OvsdbTable.BRIDGE);
333
334 if (bridge.getName().equals(bridgeName)) {
335 return uuid;
336 }
337
338 }
339 return null;
340 }
341
342 @Override
343 public String getControllerUuid(String controllerName,
344 String controllerTarget) {
345 DatabaseSchema dbSchema = schema.get(OvsdbConstant.DATABASENAME);
346 OvsdbRowStore rowStore = getRowStore(OvsdbConstant.DATABASENAME,
347 OvsdbConstant.CONTROLLER);
348 if (rowStore == null) {
349 log.debug("The controller uuid is null");
350 return null;
351 }
352
353 ConcurrentMap<String, Row> controllerTableRows = rowStore.getRowStore();
354 if (controllerTableRows != null) {
355 for (String uuid : controllerTableRows.keySet()) {
356
357 Controller controller = (Controller) TableGenerator
358 .getTable(dbSchema, controllerTableRows.get(uuid),
359 OvsdbTable.CONTROLLER);
360 String target = (String) controller.getTargetColumn().data();
361 if (target.equalsIgnoreCase(controllerTarget)) {
362 return uuid;
363 }
364
365 }
366 }
367 return null;
368 }
369
370 @Override
371 public String getOvsUuid(String dbName) {
372 OvsdbRowStore rowStore = getRowStore(OvsdbConstant.DATABASENAME,
373 OvsdbConstant.DATABASENAME);
374 if (rowStore == null) {
375 log.debug("The bridge uuid is null");
376 return null;
377 }
378 ConcurrentMap<String, Row> ovsTableRows = rowStore.getRowStore();
379 if (ovsTableRows != null) {
380 for (String uuid : ovsTableRows.keySet()) {
381 Row row = ovsTableRows.get(uuid);
382 String tableName = row.tableName();
383 if (tableName.equals(dbName)) {
384 return uuid;
385 }
386 }
387 }
388 return null;
389 }
390
391 @Override
392 public void createPort(String bridgeName, String portName) {
393 String bridgeUuid = getBridgeUuid(bridgeName);
394 if (bridgeUuid == null) {
395 log.error("Can't find bridge {} in {}", bridgeName,
396 nodeId.getIpAddress());
397 return;
398 }
399
400 DatabaseSchema dbSchema = schema.get(OvsdbConstant.DATABASENAME);
401 String portUuid = getPortUuid(portName, bridgeUuid);
402
403 Port port = (Port) TableGenerator
404 .createTable(dbSchema, OvsdbTable.PORT);
405
406 port.setName(portName);
407 if (portUuid == null) {
408 insertConfig(OvsdbConstant.PORT, "_uuid", OvsdbConstant.BRIDGE,
andreaed976a42015-10-05 14:38:25 -0700409 "ports", bridgeUuid, port.getRow());
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700410 } else {
411 updateConfig(OvsdbConstant.PORT, "_uuid", portUuid, port.getRow());
412 }
413
414 return;
415 }
416
417 @Override
418 public void dropPort(String bridgeName, String portName) {
419 String bridgeUuid = getBridgeUuid(bridgeName);
420 if (bridgeUuid == null) {
421 log.error("Could not find Bridge {} in {}", bridgeName, nodeId);
422 return;
423 }
424
425 String portUuid = getPortUuid(portName, bridgeUuid);
426 if (portUuid != null) {
427 log.info("Port {} delete", portName);
428 deleteConfig(OvsdbConstant.PORT, "_uuid", portUuid,
andreaed976a42015-10-05 14:38:25 -0700429 OvsdbConstant.BRIDGE, "ports");
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700430 }
431 }
432
433 @Override
434 public void createBridge(String bridgeName) {
435 log.debug("create bridge {}", bridgeName);
436
437 DatabaseSchema dbSchema = schema.get(OvsdbConstant.DATABASENAME);
438 if (dbSchema == null) {
439 log.warn("The schema is null");
440 return;
441 }
442
443 Bridge bridge = (Bridge) TableGenerator.createTable(dbSchema,
444 OvsdbTable.BRIDGE);
445 if (bridge == null) {
446 log.debug("Can not create bridge");
447 return;
448 }
449
450 Set<String> failModes = new HashSet<>();
451 failModes.add("secure");
452 bridge.setFailMode(failModes);
453
454 Set<String> protocols = new HashSet<>();
455 protocols.add(OvsdbConstant.OPENFLOW13);
456 bridge.setProtocols(protocols);
457
458 String ovsUuid = getOvsUuid(OvsdbConstant.DATABASENAME);
459 if (ovsUuid == null) {
460 log.warn("The Open_vSwitch is null");
461 return;
462 }
463
464 String bridgeUuid = getBridgeUuid(bridgeName);
465 if (bridgeUuid == null) {
466 log.debug("Create a new bridge");
467
468 bridge.setName(bridgeName);
469 bridgeUuid = insertConfig(OvsdbConstant.BRIDGE, "_uuid",
andreaed976a42015-10-05 14:38:25 -0700470 OvsdbConstant.DATABASENAME, "bridges",
471 ovsUuid, bridge.getRow());
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700472
473 if (bridgeUuid != null) {
474 Port port = (Port) TableGenerator.createTable(dbSchema,
475 OvsdbTable.PORT);
476 if (port != null) {
477 log.debug("the port is not null");
478 port.setName(bridgeName);
479
480 insertConfig(OvsdbConstant.PORT, "_uuid", "Bridge", "ports", bridgeUuid,
andreaed976a42015-10-05 14:38:25 -0700481 port.getRow());
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700482 }
Satish Kebe203d2015-11-21 15:58:18 +0530483 } else {
484 String message = BridgeCreateException.createMessage(ovsUuid);
485 throw new BridgeCreateException(message);
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700486 }
487
488 } else {
489 log.info("Update a bridge");
490 updateConfig(OvsdbConstant.BRIDGE, "_uuid", bridgeUuid, bridge.getRow());
491 }
492
andreaed976a42015-10-05 14:38:25 -0700493 setControllerAuto(bridgeUuid);
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700494 log.info("Create bridge success");
495 }
496
Hyunsun Moon646d8c42015-10-08 20:32:44 -0700497 @Override
lishuai6c56f5e2015-11-17 16:38:19 +0800498 public void createBridge(String bridgeName, String dpid, String exPortName) {
499 log.debug("create bridge {}", bridgeName);
500
501 DatabaseSchema dbSchema = schema.get(OvsdbConstant.DATABASENAME);
502 if (dbSchema == null) {
503 log.warn("The schema is null");
504 return;
505 }
506
507 Bridge bridge = (Bridge) TableGenerator.createTable(dbSchema,
508 OvsdbTable.BRIDGE);
509 if (bridge == null) {
510 log.debug("Can not create bridge");
511 return;
512 }
513
514 Set<String> failModes = new HashSet<>();
515 failModes.add("secure");
516 bridge.setFailMode(failModes);
517
518 Set<String> protocols = new HashSet<>();
519 protocols.add(OvsdbConstant.OPENFLOW13);
520 bridge.setProtocols(protocols);
521
522 String ovsUuid = getOvsUuid(OvsdbConstant.DATABASENAME);
523 if (ovsUuid == null) {
524 log.warn("The Open_vSwitch is null");
525 return;
526 }
527
528 String bridgeUuid = getBridgeUuid(bridgeName);
529 if (bridgeUuid == null) {
530 log.debug("Create a new bridge");
531
532 bridge.setName(bridgeName);
533 if (dpid != null) {
534 Map<String, String> options = new HashMap<>();
535 options.put("datapath-id", dpid);
536 bridge.setOtherConfig(options);
537 }
538 bridgeUuid = insertConfig(OvsdbConstant.BRIDGE, "_uuid",
539 OvsdbConstant.DATABASENAME, "bridges",
540 ovsUuid, bridge.getRow());
541
542 if (bridgeUuid != null) {
543 Port port = (Port) TableGenerator.createTable(dbSchema,
544 OvsdbTable.PORT);
545 if (port != null) {
546 log.debug("the port is not null");
547 port.setName(bridgeName);
548
549 insertConfig(OvsdbConstant.PORT, "_uuid", "Bridge", "ports", bridgeUuid,
550 port.getRow());
551 }
Satish Kebe203d2015-11-21 15:58:18 +0530552 } else {
553 String message = BridgeCreateException.createMessage(ovsUuid);
554 throw new BridgeCreateException(message);
lishuai6c56f5e2015-11-17 16:38:19 +0800555 }
556
557 } else {
558 log.info("Update a bridge");
559 updateConfig(OvsdbConstant.BRIDGE, "_uuid", bridgeUuid, bridge.getRow());
560 }
561 // Create external port
562 if (exPortName != null) {
563 createPort(bridgeName, exPortName);
564 }
565
566 setControllerAuto(bridgeUuid);
567 log.info("Create bridge success");
568 }
569
570 @Override
Hyunsun Moon646d8c42015-10-08 20:32:44 -0700571 public boolean createBridge(String bridgeName, String dpid, List<ControllerInfo> controllers) {
572
573 DatabaseSchema dbSchema = schema.get(OvsdbConstant.DATABASENAME);
574 String ovsUuid = getOvsUuid(OvsdbConstant.DATABASENAME);
575
576 if (dbSchema == null || ovsUuid == null) {
577 log.warn("Couldn't find database Open_vSwitch");
578 return false;
579 }
580
Hyunsun Moonb73ce6c2015-12-09 03:40:43 -0800581 String bridgeUuid = getBridgeUuid(bridgeName);
582 if (bridgeUuid != null) {
583 return false;
584 }
585
Hyunsun Moon646d8c42015-10-08 20:32:44 -0700586 Bridge bridge = (Bridge) TableGenerator.createTable(dbSchema, OvsdbTable.BRIDGE);
Hyunsun Moon646d8c42015-10-08 20:32:44 -0700587 Set<String> failMode = new HashSet<>(Arrays.asList("secure"));
588 bridge.setFailMode(failMode);
589
590 Set<String> protocols = new HashSet<>(Arrays.asList(OvsdbConstant.OPENFLOW13));
591 bridge.setProtocols(protocols);
592
593 Map<String, String> options = new HashMap<>();
594 options.put("datapath-id", dpid);
595 bridge.setOtherConfig(options);
596
Hyunsun Moonb73ce6c2015-12-09 03:40:43 -0800597 bridge.setName(bridgeName);
598 bridgeUuid = insertConfig(OvsdbConstant.BRIDGE, "_uuid",
599 OvsdbConstant.DATABASENAME, "bridges",
600 ovsUuid, bridge.getRow());
Hyunsun Moon646d8c42015-10-08 20:32:44 -0700601
602 if (bridgeUuid != null) {
603 createPort(bridgeName, bridgeName);
604 } else {
605 log.warn("Failed to create bridge {} on {}", bridgeName, nodeId.toString());
606 return false;
607 }
608
609 setControllersWithUUID(UUID.uuid(bridgeUuid), controllers);
610 return true;
611 }
612
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700613 /**
Brian O'Connor6ee8aa32015-10-09 16:07:42 -0700614 * Sets the bridge's controller automatically.
615 * <p/>
616 * The connection is a TCP connection to the local ONOS instance's IP
617 * and the default OpenFlow port.
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700618 *
619 * @param bridgeUuid bridge uuid
620 */
andreaed976a42015-10-05 14:38:25 -0700621 private void setControllerAuto(String bridgeUuid) {
Brian O'Connor6ee8aa32015-10-09 16:07:42 -0700622 IpAddress ipAddress = IpAddress.valueOf(((InetSocketAddress) channel.localAddress()).getAddress());
623 ControllerInfo controllerInfo = new ControllerInfo(ipAddress, OvsdbConstant.OFPORT, "tcp");
624 log.debug("Automatically setting controller for bridge {} to {}",
625 bridgeUuid, controllerInfo.target());
626 setControllersWithUUID(UUID.uuid(bridgeUuid), ImmutableList.of(controllerInfo));
andreaed976a42015-10-05 14:38:25 -0700627 }
628
andreaed976a42015-10-05 14:38:25 -0700629 @Override
630 public void setControllersWithUUID(UUID bridgeUuid, List<ControllerInfo> controllers) {
631
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700632 DatabaseSchema dbSchema = schema.get(OvsdbConstant.DATABASENAME);
andreaed976a42015-10-05 14:38:25 -0700633 if (dbSchema == null) {
634 log.debug("There is no schema");
635 return;
636 }
637 List<Controller> oldControllers = getControllers(bridgeUuid);
638 if (oldControllers == null) {
639 log.warn("There are no controllers");
640 return;
641 }
642
643 Set<UUID> newControllerUuids = new HashSet<>();
644
645 Set<ControllerInfo> newControllers = new HashSet<>(controllers);
646 List<Controller> removeControllers = new ArrayList<>();
647 oldControllers.forEach(controller -> {
648 ControllerInfo controllerInfo = new ControllerInfo((String) controller.getTargetColumn().data());
649 if (newControllers.contains(controllerInfo)) {
650 newControllers.remove(controllerInfo);
651 newControllerUuids.add(controller.getRow().uuid());
652 } else {
653 removeControllers.add(controller);
654 }
655 });
656 OvsdbRowStore controllerRowStore = getRowStore(OvsdbConstant.DATABASENAME,
657 OvsdbConstant.CONTROLLER);
658 if (controllerRowStore == null) {
659 log.debug("There is no controller table");
660 return;
661 }
662
andreaed976a42015-10-05 14:38:25 -0700663 removeControllers.forEach(c -> deleteConfig(OvsdbConstant.CONTROLLER, "_uuid", c.getRow().uuid().value(),
664 OvsdbConstant.BRIDGE, "controller"));
665
666 newControllers.stream().map(c -> {
667 Controller controller = (Controller) TableGenerator
668 .createTable(dbSchema, OvsdbTable.CONTROLLER);
669 controller.setTarget(c.target());
670 return controller;
671 }).forEach(c -> {
andreaed976a42015-10-05 14:38:25 -0700672 String uuid = insertConfig(OvsdbConstant.CONTROLLER, "_uuid",
673 OvsdbConstant.BRIDGE, "controller", bridgeUuid.value(),
674 c.getRow());
andreaed976a42015-10-05 14:38:25 -0700675 newControllerUuids.add(UUID.uuid(uuid));
676
677 });
678
679 OvsdbRowStore rowStore = getRowStore(OvsdbConstant.DATABASENAME,
680 OvsdbConstant.BRIDGE);
681 if (rowStore == null) {
682 log.debug("There is no bridge table");
683 return;
684 }
685
686 Row bridgeRow = rowStore.getRow(bridgeUuid.value());
687 Bridge bridge = (Bridge) TableGenerator.getTable(dbSchema, bridgeRow, OvsdbTable.BRIDGE);
688 bridge.setController(OvsdbSet.ovsdbSet(newControllerUuids));
689 updateConfig(OvsdbConstant.BRIDGE, "_uuid", bridgeUuid.value(), bridge.getRow());
andreaed976a42015-10-05 14:38:25 -0700690 }
691
andreaed976a42015-10-05 14:38:25 -0700692 @Override
693 public void setControllersWithDeviceId(DeviceId deviceId, List<ControllerInfo> controllers) {
694 setControllersWithUUID(getBridgeUUID(deviceId), controllers);
695 }
696
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700697 @Override
698 public void dropBridge(String bridgeName) {
699 String bridgeUUID = getBridgeUuid(bridgeName);
700 if (bridgeUUID == null) {
701 log.warn("Could not find bridge in node", nodeId.getIpAddress());
702 return;
703 }
704 deleteConfig(OvsdbConstant.BRIDGE, "_uuid", bridgeUUID,
andreaed976a42015-10-05 14:38:25 -0700705 OvsdbConstant.DATABASENAME, "bridges");
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700706 }
707
708 @Override
709 public void createTunnel(IpAddress srcIp, IpAddress dstIp) {
710 String bridgeUuid = getBridgeUuid(OvsdbConstant.INTEGRATION_BRIDGE);
711 if (bridgeUuid == null) {
712 log.warn("Could not find bridge {} and Could not create tunnel. ",
713 OvsdbConstant.INTEGRATION_BRIDGE);
714 return;
715 }
716
717 DatabaseSchema dbSchema = schema.get(OvsdbConstant.DATABASENAME);
718 String portName = getTunnelName(OvsdbConstant.TYPEVXLAN, dstIp);
719 String portUuid = getPortUuid(portName, bridgeUuid);
720
721 Port port = (Port) TableGenerator
722 .createTable(dbSchema, OvsdbTable.PORT);
723 if (port != null) {
724 port.setName(portName);
725 }
726
727 if (portUuid == null) {
728 portUuid = insertConfig(OvsdbConstant.PORT, "_uuid", OvsdbConstant.BRIDGE,
andreaed976a42015-10-05 14:38:25 -0700729 "ports", bridgeUuid, port.getRow());
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700730 } else {
731 updateConfig(OvsdbConstant.PORT, "_uuid", portUuid, port.getRow());
732 }
733
734 // When a tunnel is created, A row is inserted into port table and
735 // interface table of the ovsdb node.
736 // and the following step is to get the interface uuid from local store
737 // in controller node.
738 // but it need spend some time synchronising data between node and
739 // controller.
740 // so loop to judge if interfaceUUid is null is necessary.
741 String interfaceUuid = null;
742 for (int i = 0; i < 10; i++) {
743 interfaceUuid = getInterfaceUuid(portUuid, portName);
744 if (interfaceUuid == null) {
745 try {
746 Thread.sleep(500);
747 } catch (InterruptedException e) {
748 log.warn("Interrupted while waiting to get interfaceUuid");
749 Thread.currentThread().interrupt();
750 }
751 } else {
752 break;
753 }
754 }
755
756 if (interfaceUuid != null) {
757
758 Interface tunInterface = (Interface) TableGenerator
759 .createTable(dbSchema, OvsdbTable.INTERFACE);
760
761 if (tunInterface != null) {
762
763 tunInterface.setType(OvsdbConstant.TYPEVXLAN);
764 Map<String, String> options = Maps.newHashMap();
765 options.put("key", "flow");
766 options.put("local_ip", srcIp.toString());
767 options.put("remote_ip", dstIp.toString());
768 tunInterface.setOptions(options);
769 updateConfig(OvsdbConstant.INTERFACE, "_uuid", interfaceUuid,
andreaed976a42015-10-05 14:38:25 -0700770 tunInterface.getRow());
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700771 log.info("Tunnel added success", tunInterface);
772
773 }
774 }
775
776 return;
777 }
778
779 @Override
Hyunsun Moon646d8c42015-10-08 20:32:44 -0700780 public boolean createTunnel(String bridgeName, String portName, String tunnelType, Map<String, String> options) {
781
782 String bridgeUuid = getBridgeUuid(bridgeName);
783 if (bridgeUuid == null) {
784 log.warn("Couldn't find bridge {} in {}", bridgeName, nodeId.getIpAddress());
785 return false;
786 }
787
788 if (getPortUuid(portName, bridgeUuid) != null) {
789 log.warn("Port {} already exists", portName);
790 // remove existing one and re-create?
791 return false;
792 }
793
794 ArrayList<Operation> operations = Lists.newArrayList();
795 DatabaseSchema dbSchema = schema.get(OvsdbConstant.DATABASENAME);
796
797 // insert a new port to the port table
798 Port port = (Port) TableGenerator.createTable(dbSchema, OvsdbTable.PORT);
799 port.setName(portName);
800 Insert portInsert = new Insert(dbSchema.getTableSchema("Port"), "Port", port.getRow());
801 portInsert.getRow().put("interfaces", UUID.uuid("Interface"));
802 operations.add(portInsert);
803
804 // update the bridge table
Ray Milkey676249c2015-12-18 09:27:03 -0800805 Condition condition = ConditionUtil.isEqual("_uuid", UUID.uuid(bridgeUuid));
Hyunsun Moon646d8c42015-10-08 20:32:44 -0700806 Mutation mutation = MutationUtil.insert("ports", UUID.uuid("Port"));
807 List<Condition> conditions = new ArrayList<>(Arrays.asList(condition));
808 List<Mutation> mutations = new ArrayList<>(Arrays.asList(mutation));
809 operations.add(new Mutate(dbSchema.getTableSchema("Bridge"), conditions, mutations));
810
811 // insert a tunnel interface
812 Interface intf = (Interface) TableGenerator.createTable(dbSchema, OvsdbTable.INTERFACE);
813 intf.setName(portName);
814 intf.setType(tunnelType);
815 intf.setOptions(options);
816 Insert intfInsert = new Insert(dbSchema.getTableSchema("Interface"), "Interface", intf.getRow());
817 operations.add(intfInsert);
818
819 transactConfig(OvsdbConstant.DATABASENAME, operations);
820 return true;
821 }
822
823 @Override
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700824 public void dropTunnel(IpAddress srcIp, IpAddress dstIp) {
825 String bridgeName = OvsdbConstant.INTEGRATION_BRIDGE;
826 String portName = getTunnelName(OvsdbConstant.TYPEVXLAN, dstIp);
827 String bridgeUuid = getBridgeUuid(OvsdbConstant.INTEGRATION_BRIDGE);
828 if (bridgeUuid == null) {
829 log.warn("Could not find bridge {} in {}", bridgeName,
830 nodeId.getIpAddress());
831 return;
832 }
833
834 String portUUID = getPortUuid(portName, bridgeUuid);
835 if (portUUID != null) {
836 log.info("Delete tunnel");
837 deleteConfig(OvsdbConstant.PORT, "_uuid", portUUID,
andreaed976a42015-10-05 14:38:25 -0700838 OvsdbConstant.BRIDGE, "ports");
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700839 }
840
841 return;
842 }
843
844 /**
845 * Delete transact config.
846 *
andreaed976a42015-10-05 14:38:25 -0700847 * @param childTableName child table name
848 * @param childColumnName child column name
849 * @param childUuid child row uuid
850 * @param parentTableName parent table name
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700851 * @param parentColumnName parent column
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700852 */
853 private void deleteConfig(String childTableName, String childColumnName,
andreaed976a42015-10-05 14:38:25 -0700854 String childUuid, String parentTableName,
855 String parentColumnName) {
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700856 DatabaseSchema dbSchema = schema.get(OvsdbConstant.DATABASENAME);
857 TableSchema childTableSchema = dbSchema.getTableSchema(childTableName);
858
859 ArrayList<Operation> operations = Lists.newArrayList();
860 if (parentTableName != null && parentColumnName != null) {
861 TableSchema parentTableSchema = dbSchema
862 .getTableSchema(parentTableName);
863 ColumnSchema parentColumnSchema = parentTableSchema
864 .getColumnSchema(parentColumnName);
865 List<Mutation> mutations = Lists.newArrayList();
866 Mutation mutation = MutationUtil.delete(parentColumnSchema.name(),
867 UUID.uuid(childUuid));
868 mutations.add(mutation);
869 List<Condition> conditions = Lists.newArrayList();
870 Condition condition = ConditionUtil.includes(parentColumnName,
871 UUID.uuid(childUuid));
872 conditions.add(condition);
873 Mutate op = new Mutate(parentTableSchema, conditions, mutations);
874 operations.add(op);
875 }
876
877 List<Condition> conditions = Lists.newArrayList();
Ray Milkey676249c2015-12-18 09:27:03 -0800878 Condition condition = ConditionUtil.isEqual(childColumnName, UUID.uuid(childUuid));
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700879 conditions.add(condition);
880 Delete del = new Delete(childTableSchema, conditions);
881 operations.add(del);
882 transactConfig(OvsdbConstant.DATABASENAME, operations);
883
884 return;
885 }
886
887 /**
888 * Update transact config.
889 *
andreaed976a42015-10-05 14:38:25 -0700890 * @param tableName table name
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700891 * @param columnName column name
andreaed976a42015-10-05 14:38:25 -0700892 * @param uuid uuid
893 * @param row the config data
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700894 */
895 private void updateConfig(String tableName, String columnName, String uuid,
andreaed976a42015-10-05 14:38:25 -0700896 Row row) {
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700897 DatabaseSchema dbSchema = schema.get(OvsdbConstant.DATABASENAME);
898 TableSchema tableSchema = dbSchema.getTableSchema(tableName);
899
900 List<Condition> conditions = Lists.newArrayList();
Ray Milkey676249c2015-12-18 09:27:03 -0800901 Condition condition = ConditionUtil.isEqual(columnName, UUID.uuid(uuid));
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700902 conditions.add(condition);
903
904 Update update = new Update(tableSchema, row, conditions);
905
906 ArrayList<Operation> operations = Lists.newArrayList();
907 operations.add(update);
908
909 transactConfig(OvsdbConstant.DATABASENAME, operations);
910 }
911
912 /**
913 * Insert transact config.
914 *
andreaed976a42015-10-05 14:38:25 -0700915 * @param childTableName child table name
916 * @param childColumnName child column name
917 * @param parentTableName parent table name
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700918 * @param parentColumnName parent column
andreaed976a42015-10-05 14:38:25 -0700919 * @param parentUuid parent uuid
920 * @param row the config data
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700921 * @return uuid, empty if no uuid is find
922 */
923 private String insertConfig(String childTableName, String childColumnName,
andreaed976a42015-10-05 14:38:25 -0700924 String parentTableName, String parentColumnName,
925 String parentUuid, Row row) {
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700926 DatabaseSchema dbSchema = schema.get(OvsdbConstant.DATABASENAME);
927 TableSchema tableSchema = dbSchema.getTableSchema(childTableName);
928
929 String namedUuid = childTableName;
930 Insert insert = new Insert(tableSchema, namedUuid, row);
931
932 ArrayList<Operation> operations = Lists.newArrayList();
933 operations.add(insert);
934
935 if (parentTableName != null && parentColumnName != null) {
936 TableSchema parentTableSchema = dbSchema
937 .getTableSchema(parentTableName);
938 ColumnSchema parentColumnSchema = parentTableSchema
939 .getColumnSchema(parentColumnName);
940
941 List<Mutation> mutations = Lists.newArrayList();
942 Mutation mutation = MutationUtil.insert(parentColumnSchema.name(),
943 UUID.uuid(namedUuid));
944 mutations.add(mutation);
945
946 List<Condition> conditions = Lists.newArrayList();
Ray Milkey676249c2015-12-18 09:27:03 -0800947 Condition condition = ConditionUtil.isEqual("_uuid",
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700948 UUID.uuid(parentUuid));
949 conditions.add(condition);
950
951 Mutate op = new Mutate(parentTableSchema, conditions, mutations);
952 operations.add(op);
953 }
954 if (childTableName.equalsIgnoreCase(OvsdbConstant.PORT)) {
955 log.info("Handle port insert");
956 Insert intfInsert = handlePortInsertTable(OvsdbConstant.INTERFACE,
andreaed976a42015-10-05 14:38:25 -0700957 row);
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700958
959 if (intfInsert != null) {
960 operations.add(intfInsert);
961 }
962
963 Insert ins = (Insert) operations.get(0);
964 ins.getRow().put("interfaces",
965 UUID.uuid(OvsdbConstant.INTERFACE));
966 }
967
968 List<OperationResult> results;
969 try {
970 results = transactConfig(OvsdbConstant.DATABASENAME, operations)
971 .get();
972
973 return results.get(0).getUuid().value();
974 } catch (InterruptedException e) {
975 log.warn("Interrupted while waiting to get result");
976 Thread.currentThread().interrupt();
977 } catch (ExecutionException e) {
978 log.error("Exception thrown while to get result");
979 }
980
981 return null;
982 }
983
984 /**
985 * Handles port insert.
986 *
987 * @param tableName ovsdb table interface
andreaed976a42015-10-05 14:38:25 -0700988 * @param portRow row of port
Sho SHIMIZUe4efe452015-08-26 15:06:55 -0700989 * @return insert, empty if null
990 */
991 private Insert handlePortInsertTable(String tableName, Row portRow) {
992 DatabaseSchema dbSchema = schema.get(OvsdbConstant.DATABASENAME);
993
994 TableSchema portTableSchema = dbSchema
995 .getTableSchema(OvsdbConstant.PORT);
996 ColumnSchema portColumnSchema = portTableSchema.getColumnSchema("name");
997
998 String portName = (String) portRow.getColumn(portColumnSchema.name()).data();
999
1000 Interface inf = (Interface) TableGenerator
1001 .createTable(dbSchema, OvsdbTable.INTERFACE);
1002
1003 inf.setName(portName);
1004
1005 TableSchema intfTableSchema = dbSchema
1006 .getTableSchema(OvsdbConstant.INTERFACE);
1007 Insert insert = new Insert(intfTableSchema, OvsdbConstant.INTERFACE,
1008 inf.getRow());
1009 return insert;
1010 }
1011
1012 /**
1013 * Gets tunnel name.
1014 *
1015 * @param tunnelType
andreaed976a42015-10-05 14:38:25 -07001016 * @param dstIp the remote ip address
Sho SHIMIZUe4efe452015-08-26 15:06:55 -07001017 * @return tunnel name
1018 */
1019 private String getTunnelName(String tunnelType, IpAddress dstIp) {
1020 return tunnelType + "-" + dstIp.toString();
1021 }
1022
1023 @Override
1024 public ListenableFuture<DatabaseSchema> getOvsdbSchema(String dbName) {
1025 if (dbName == null) {
1026 return null;
1027 }
1028 DatabaseSchema databaseSchema = schema.get(dbName);
1029 if (databaseSchema == null) {
1030 List<String> dbNames = new ArrayList<String>();
1031 dbNames.add(dbName);
1032 Function<JsonNode, DatabaseSchema> rowFunction = new Function<JsonNode, DatabaseSchema>() {
1033 @Override
1034 public DatabaseSchema apply(JsonNode input) {
Hyunsun Moon5fb20a52015-09-25 17:02:33 -07001035 log.info("Get ovsdb database schema {}", dbName);
Sho SHIMIZUe4efe452015-08-26 15:06:55 -07001036 DatabaseSchema dbSchema = FromJsonUtil
1037 .jsonNodeToDbSchema(dbName, input);
1038 if (dbSchema == null) {
1039 log.debug("Get ovsdb database schema error");
1040 return null;
1041 }
1042 schema.put(dbName, dbSchema);
1043
1044 return dbSchema;
1045 }
1046 };
1047
1048 ListenableFuture<JsonNode> input = getSchema(dbNames);
1049 if (input != null) {
1050 return Futures.transform(input, rowFunction);
1051 }
1052 return null;
1053 } else {
1054 return Futures.immediateFuture(databaseSchema);
1055 }
1056 }
1057
1058 @Override
1059 public ListenableFuture<TableUpdates> monitorTables(String dbName, String id) {
1060 if (dbName == null) {
1061 return null;
1062 }
1063 DatabaseSchema dbSchema = schema.get(dbName);
1064 if (dbSchema != null) {
1065 Function<JsonNode, TableUpdates> rowFunction = new Function<JsonNode, TableUpdates>() {
1066 @Override
1067 public TableUpdates apply(JsonNode input) {
1068 log.info("Get table updates");
1069 TableUpdates updates = FromJsonUtil
1070 .jsonNodeToTableUpdates(input, dbSchema);
1071 if (updates == null) {
1072 log.debug("Get table updates error");
1073 return null;
1074 }
1075 return updates;
1076 }
1077 };
1078 return Futures.transform(monitor(dbSchema, id), rowFunction);
1079 }
1080 return null;
1081 }
1082
1083 @Override
1084 public ListenableFuture<List<OperationResult>> transactConfig(String dbName,
1085 List<Operation> operations) {
1086 if (dbName == null) {
1087 return null;
1088 }
1089 DatabaseSchema dbSchema = schema.get(dbName);
1090 if (dbSchema != null) {
andreaed976a42015-10-05 14:38:25 -07001091 Function<List<JsonNode>, List<OperationResult>> rowFunction = (input -> {
1092 log.info("Get ovsdb operation result");
1093 List<OperationResult> result = FromJsonUtil
1094 .jsonNodeToOperationResult(input, operations);
Sho SHIMIZUe4efe452015-08-26 15:06:55 -07001095
andreaed976a42015-10-05 14:38:25 -07001096 if (result == null) {
1097 log.debug("The operation result is null");
1098 return null;
Sho SHIMIZUe4efe452015-08-26 15:06:55 -07001099 }
andreaed976a42015-10-05 14:38:25 -07001100 return result;
1101 });
Sho SHIMIZUe4efe452015-08-26 15:06:55 -07001102 return Futures.transform(transact(dbSchema, operations),
1103 rowFunction);
1104 }
1105 return null;
1106 }
1107
1108 @Override
1109 public ListenableFuture<JsonNode> getSchema(List<String> dbnames) {
1110 String id = java.util.UUID.randomUUID().toString();
1111 String getSchemaString = JsonRpcWriterUtil.getSchemaStr(id, dbnames);
1112
1113 SettableFuture<JsonNode> sf = SettableFuture.create();
1114 requestResult.put(id, sf);
1115 requestMethod.put(id, "getSchema");
1116
1117 channel.writeAndFlush(getSchemaString);
1118 return sf;
1119
1120 }
1121
1122 @Override
1123 public ListenableFuture<List<String>> echo() {
1124 String id = java.util.UUID.randomUUID().toString();
1125 String echoString = JsonRpcWriterUtil.echoStr(id);
1126
1127 SettableFuture<List<String>> sf = SettableFuture.create();
1128 requestResult.put(id, sf);
1129 requestMethod.put(id, "echo");
1130
1131 channel.writeAndFlush(echoString);
1132 return sf;
1133
1134 }
1135
1136 @Override
1137 public ListenableFuture<JsonNode> monitor(DatabaseSchema dbSchema,
1138 String monitorId) {
1139 String id = java.util.UUID.randomUUID().toString();
1140 String monitorString = JsonRpcWriterUtil.monitorStr(id, monitorId,
1141 dbSchema);
1142
1143 SettableFuture<JsonNode> sf = SettableFuture.create();
1144 requestResult.put(id, sf);
1145 requestMethod.put(id, "monitor");
1146
1147 channel.writeAndFlush(monitorString);
1148 return sf;
1149
1150 }
1151
1152 @Override
1153 public ListenableFuture<List<String>> listDbs() {
1154 String id = java.util.UUID.randomUUID().toString();
1155 String listDbsString = JsonRpcWriterUtil.listDbsStr(id);
1156
1157 SettableFuture<List<String>> sf = SettableFuture.create();
1158 requestResult.put(id, sf);
1159 requestMethod.put(id, "listDbs");
1160
1161 channel.writeAndFlush(listDbsString);
1162 return sf;
1163
1164 }
1165
1166 @Override
1167 public ListenableFuture<List<JsonNode>> transact(DatabaseSchema dbSchema,
1168 List<Operation> operations) {
1169 String id = java.util.UUID.randomUUID().toString();
1170 String transactString = JsonRpcWriterUtil.transactStr(id, dbSchema,
1171 operations);
1172
1173 SettableFuture<List<JsonNode>> sf = SettableFuture.create();
1174 requestResult.put(id, sf);
1175 requestMethod.put(id, "transact");
1176
1177 channel.writeAndFlush(transactString);
1178 return sf;
1179
1180 }
1181
andreaed976a42015-10-05 14:38:25 -07001182 @SuppressWarnings({"rawtypes", "unchecked"})
Sho SHIMIZUe4efe452015-08-26 15:06:55 -07001183 @Override
1184 public void processResult(JsonNode response) {
1185 log.debug("Handle result");
1186 String requestId = response.get("id").asText();
1187 SettableFuture sf = requestResult.get(requestId);
1188 if (sf == null) {
1189 log.debug("No such future to process");
1190 return;
1191 }
1192 String methodName = requestMethod.get(requestId);
1193
1194 Object result;
1195 result = FromJsonUtil.jsonResultParser(response, methodName);
1196
1197 sf.set(result);
1198 return;
1199 }
1200
1201 @Override
1202 public void processRequest(JsonNode requestJson) {
1203 log.debug("Handle request");
1204 if (requestJson.get("method").asText().equalsIgnoreCase("echo")) {
1205 log.debug("handle echo request");
1206
1207 String replyString = FromJsonUtil.getEchoRequestStr(requestJson);
1208 channel.writeAndFlush(replyString);
1209
1210 return;
1211 } else {
1212 FromJsonUtil
1213 .jsonCallbackRequestParser(requestJson, monitorCallBack);
1214 return;
1215 }
1216 }
1217
1218 @Override
1219 public void setCallback(Callback monitorCallback) {
1220 this.monitorCallBack = monitorCallback;
1221 }
1222
1223 @Override
1224 public Set<OvsdbTunnel> getTunnels() {
1225 return ovsdbTunnels;
1226 }
1227
1228 @Override
1229 public Set<OvsdbBridge> getBridges() {
1230 Set<OvsdbBridge> ovsdbBridges = new HashSet<OvsdbBridge>();
1231 OvsdbTableStore tableStore = getTableStore(OvsdbConstant.DATABASENAME);
1232 if (tableStore == null) {
1233 return null;
1234 }
1235 OvsdbRowStore rowStore = tableStore.getRows(OvsdbConstant.BRIDGE);
1236 if (rowStore == null) {
1237 return null;
1238 }
1239 ConcurrentMap<String, Row> rows = rowStore.getRowStore();
1240 for (String uuid : rows.keySet()) {
1241 Row row = getRow(OvsdbConstant.DATABASENAME, OvsdbConstant.BRIDGE,
1242 uuid);
1243 OvsdbBridge ovsdbBridge = getOvsdbBridge(row);
1244 if (ovsdbBridge != null) {
1245 ovsdbBridges.add(ovsdbBridge);
1246 }
1247 }
1248 return ovsdbBridges;
1249 }
1250
1251 @Override
andreaed976a42015-10-05 14:38:25 -07001252 public Set<ControllerInfo> getControllers(DeviceId openflowDeviceId) {
1253 UUID bridgeUuid = getBridgeUUID(openflowDeviceId);
1254 if (bridgeUuid == null) {
1255 log.warn("bad bridge Uuid");
1256 return null;
1257 }
1258 List<Controller> controllers = getControllers(bridgeUuid);
1259 if (controllers == null) {
1260 log.warn("bad list of controllers");
1261 return null;
1262 }
1263 return controllers.stream().
1264 map(controller -> new ControllerInfo(
1265 (String) controller.getTargetColumn()
1266 .data())).collect(Collectors.toSet());
1267 }
1268
1269 private List<Controller> getControllers(UUID bridgeUuid) {
1270 DatabaseSchema dbSchema = schema.get(OvsdbConstant.DATABASENAME);
1271 if (dbSchema == null) {
1272 return null;
1273 }
1274 OvsdbRowStore rowStore = getRowStore(OvsdbConstant.DATABASENAME,
1275 OvsdbConstant.BRIDGE);
1276 if (rowStore == null) {
1277 log.debug("There is no bridge table");
1278 return null;
1279 }
1280
1281 Row bridgeRow = rowStore.getRow(bridgeUuid.value());
1282 Bridge bridge = (Bridge) TableGenerator.
1283 getTable(dbSchema, bridgeRow, OvsdbTable.BRIDGE);
1284
1285 //FIXME remove log
1286 log.warn("type of controller column", bridge.getControllerColumn()
1287 .data().getClass());
1288 Set<UUID> controllerUuids = (Set<UUID>) ((OvsdbSet) bridge
1289 .getControllerColumn().data()).set();
1290// Set<String> controllerUuidStrings = (Set<String>) bridge.getControllerColumn().data();
1291
1292 OvsdbRowStore controllerRowStore = getRowStore(OvsdbConstant.DATABASENAME,
1293 OvsdbConstant.CONTROLLER);
1294 if (controllerRowStore == null) {
1295 log.debug("There is no controller table");
1296 return null;
1297 }
1298
1299 List<Controller> ovsdbControllers = new ArrayList<>();
1300 ConcurrentMap<String, Row> controllerTableRows = controllerRowStore.getRowStore();
1301 controllerTableRows.forEach((key, row) -> {
1302 if (!controllerUuids.contains(UUID.uuid(key))) {
1303 return;
1304 }
1305 Controller controller = (Controller) TableGenerator
1306 .getTable(dbSchema, row, OvsdbTable.CONTROLLER);
1307 ovsdbControllers.add(controller);
1308 });
1309 return ovsdbControllers;
1310 }
1311
1312
1313 private UUID getBridgeUUID(DeviceId openflowDeviceId) {
1314 DatabaseSchema dbSchema = schema.get(OvsdbConstant.DATABASENAME);
1315 if (dbSchema == null) {
1316 return null;
1317 }
1318 OvsdbRowStore rowStore = getRowStore(OvsdbConstant.DATABASENAME,
1319 OvsdbConstant.BRIDGE);
1320 if (rowStore == null) {
1321 log.debug("There is no bridge table");
1322 return null;
1323 }
1324
1325 ConcurrentMap<String, Row> bridgeTableRows = rowStore.getRowStore();
1326 final AtomicReference<UUID> uuid = new AtomicReference<>();
1327 for (Map.Entry<String, Row> entry : bridgeTableRows.entrySet()) {
1328 Bridge b = (Bridge) TableGenerator.getTable(dbSchema,
1329 entry.getValue(),
1330 OvsdbTable.BRIDGE);
1331 if (matchesDpid(b, openflowDeviceId)) {
1332 uuid.set(UUID.uuid(entry.getKey()));
1333 break;
1334 }
1335 }
1336 if (uuid.get() == null) {
1337 log.debug("There is no bridge for {}", openflowDeviceId);
1338 }
1339 return uuid.get();
1340
1341 }
1342
1343 private static boolean matchesDpid(Bridge b, DeviceId deviceId) {
1344 String ofDpid = deviceId.toString().replace("of:", "");
1345 Set ofDeviceIds = ((OvsdbSet) b.getDatapathIdColumn().data()).set();
1346 //TODO Set<String>
1347 return ofDeviceIds.contains(ofDpid);
1348 }
1349
1350 @Override
Sho SHIMIZUe4efe452015-08-26 15:06:55 -07001351 public Set<OvsdbPort> getPorts() {
1352 Set<OvsdbPort> ovsdbPorts = new HashSet<OvsdbPort>();
1353 OvsdbTableStore tableStore = getTableStore(OvsdbConstant.DATABASENAME);
1354 if (tableStore == null) {
1355 return null;
1356 }
1357 OvsdbRowStore rowStore = tableStore.getRows(OvsdbConstant.INTERFACE);
1358 if (rowStore == null) {
1359 return null;
1360 }
1361 ConcurrentMap<String, Row> rows = rowStore.getRowStore();
1362 for (String uuid : rows.keySet()) {
1363 Row row = getRow(OvsdbConstant.DATABASENAME,
1364 OvsdbConstant.INTERFACE, uuid);
1365 OvsdbPort ovsdbPort = getOvsdbPort(row);
1366 if (ovsdbPort != null) {
1367 ovsdbPorts.add(ovsdbPort);
1368 }
1369 }
1370 return ovsdbPorts;
1371 }
1372
1373 @Override
1374 public DatabaseSchema getDatabaseSchema(String dbName) {
1375 return schema.get(dbName);
1376 }
1377
1378 //Gets ovsdb port.
1379 private OvsdbPort getOvsdbPort(Row row) {
1380 DatabaseSchema dbSchema = getDatabaseSchema(OvsdbConstant.DATABASENAME);
1381 Interface intf = (Interface) TableGenerator
1382 .getTable(dbSchema, row, OvsdbTable.INTERFACE);
1383 if (intf == null) {
1384 return null;
1385 }
1386 long ofPort = getOfPort(intf);
1387 String portName = intf.getName();
1388 if ((ofPort < 0) || (portName == null)) {
1389 return null;
1390 }
1391
1392 OvsdbPort ovsdbPort = new OvsdbPort(new OvsdbPortNumber(ofPort),
1393 new OvsdbPortName(portName));
1394 return ovsdbPort;
1395 }
1396
1397 ////Gets ovsdb bridge.
1398 private OvsdbBridge getOvsdbBridge(Row row) {
1399 DatabaseSchema dbSchema = getDatabaseSchema(OvsdbConstant.DATABASENAME);
1400 Bridge bridge = (Bridge) TableGenerator.getTable(dbSchema, row,
1401 OvsdbTable.BRIDGE);
1402 if (bridge == null) {
1403 return null;
1404 }
1405
1406 OvsdbSet datapathIdSet = (OvsdbSet) bridge.getDatapathIdColumn().data();
1407 @SuppressWarnings("unchecked")
1408 Set<String> datapathIds = datapathIdSet.set();
1409 if (datapathIds == null || datapathIds.size() == 0) {
1410 return null;
1411 }
1412 String datapathId = (String) datapathIds.toArray()[0];
1413 String bridgeName = bridge.getName();
1414 if ((datapathId == null) || (bridgeName == null)) {
1415 return null;
1416 }
1417
1418 OvsdbBridge ovsdbBridge = new OvsdbBridge(new OvsdbBridgeName(bridgeName),
1419 new OvsdbDatapathId(datapathId));
1420 return ovsdbBridge;
1421 }
1422
1423 //Gets ofPort in the interface.
1424 private long getOfPort(Interface intf) {
1425 OvsdbSet ofPortSet = (OvsdbSet) intf.getOpenFlowPortColumn().data();
1426 @SuppressWarnings("unchecked")
1427 Set<Integer> ofPorts = ofPortSet.set();
1428 while (ofPorts == null || ofPorts.size() <= 0) {
1429 log.debug("The ofport is null in {}", intf.getName());
1430 return -1;
1431 }
1432 // return (long) ofPorts.toArray()[0];
1433 Iterator<Integer> it = ofPorts.iterator();
1434 return Long.parseLong(it.next().toString());
1435 }
CNluciusa66c3972015-09-06 20:31:29 +08001436
1437 @Override
1438 public Set<OvsdbPort> getLocalPorts(Iterable<String> ifaceids) {
1439 Set<OvsdbPort> ovsdbPorts = new HashSet<OvsdbPort>();
1440 OvsdbTableStore tableStore = getTableStore(OvsdbConstant.DATABASENAME);
1441 if (tableStore == null) {
1442 return null;
1443 }
1444 OvsdbRowStore rowStore = tableStore.getRows(OvsdbConstant.INTERFACE);
1445 if (rowStore == null) {
1446 return null;
1447 }
1448 ConcurrentMap<String, Row> rows = rowStore.getRowStore();
1449 for (String uuid : rows.keySet()) {
1450 Row row = getRow(OvsdbConstant.DATABASENAME,
1451 OvsdbConstant.INTERFACE, uuid);
1452 DatabaseSchema dbSchema = getDatabaseSchema(OvsdbConstant.DATABASENAME);
1453 Interface intf = (Interface) TableGenerator
1454 .getTable(dbSchema, row, OvsdbTable.INTERFACE);
1455 if (intf == null || getIfaceid(intf) == null) {
1456 continue;
1457 }
1458 String portName = intf.getName();
1459 Set<String> ifaceidSet = Sets.newHashSet(ifaceids);
1460 if (portName.startsWith("vxlan")
1461 || !ifaceidSet.contains(getIfaceid(intf))) {
1462 continue;
1463 }
1464 long ofPort = getOfPort(intf);
1465 if ((ofPort < 0) || (portName == null)) {
1466 continue;
1467 }
1468
1469 OvsdbPort ovsdbPort = new OvsdbPort(new OvsdbPortNumber(ofPort),
1470 new OvsdbPortName(portName));
1471 if (ovsdbPort != null) {
1472 ovsdbPorts.add(ovsdbPort);
1473 }
1474 }
1475 return ovsdbPorts;
1476 }
1477
1478 private String getIfaceid(Interface intf) {
1479 OvsdbMap ovsdbMap = (OvsdbMap) intf.getExternalIdsColumn().data();
1480 @SuppressWarnings("unchecked")
1481 Map<String, String> externalIds = ovsdbMap.map();
1482 if (externalIds.isEmpty()) {
1483 log.warn("The external_ids is null");
1484 return null;
1485 }
1486 String ifaceid = externalIds
1487 .get(OvsdbConstant.EXTERNAL_ID_INTERFACE_ID);
1488 if (ifaceid == null) {
1489 log.warn("The ifaceid is null");
1490 return null;
1491 }
1492 return ifaceid;
1493 }
Hyunsun Moon5fb20a52015-09-25 17:02:33 -07001494
1495 @Override
1496 public void disconnect() {
1497 channel.disconnect();
1498 this.agent.removeConnectedNode(nodeId);
1499 }
Sho SHIMIZUe4efe452015-08-26 15:06:55 -07001500}