blob: fd9d53560e481180033720cd282e7d3439666b1a [file] [log] [blame]
HIGUCHI Yuta2d011582013-06-15 01:47:11 -07001package net.onrc.onos.ofcontroller.core.internal;
Pankaj Berdeb6031342013-02-19 18:51:51 -08002
Jonathan Hart1a6f1d62013-11-14 11:33:46 -08003import java.util.ArrayList;
Jonathan Hartd6ed62b2013-11-01 13:18:25 -07004import java.util.Arrays;
Pankaj Berdeb6031342013-02-19 18:51:51 -08005import java.util.List;
Jonathan Hartd6ed62b2013-11-01 13:18:25 -07006
7import net.floodlightcontroller.devicemanager.IDevice;
8import net.floodlightcontroller.devicemanager.SwitchPort;
9import net.onrc.onos.graph.GraphDBOperation;
10import net.onrc.onos.ofcontroller.core.IDeviceStorage;
11import net.onrc.onos.ofcontroller.core.INetMapTopologyObjects.IDeviceObject;
12import net.onrc.onos.ofcontroller.core.INetMapTopologyObjects.IIpv4Address;
13import net.onrc.onos.ofcontroller.core.INetMapTopologyObjects.IPortObject;
14
Pankaj Berdeb6031342013-02-19 18:51:51 -080015import org.openflow.util.HexString;
16import org.slf4j.Logger;
17import org.slf4j.LoggerFactory;
18
19import com.google.common.collect.Lists;
Jonathan Hart1a6f1d62013-11-14 11:33:46 -080020import com.google.common.net.InetAddresses;
Pankaj Berdeb6031342013-02-19 18:51:51 -080021import com.thinkaurelius.titan.core.TitanException;
Pankaj Berdeb6031342013-02-19 18:51:51 -080022
Teru87cd2da2013-06-15 20:33:08 -070023/**
24 * This is the class for storing the information of devices into CassandraDB
25 * @author Pankaj
26 */
Pankaj Berdeb6031342013-02-19 18:51:51 -080027public class DeviceStorageImpl implements IDeviceStorage {
Jonathan Hart1a6f1d62013-11-14 11:33:46 -080028 protected final static Logger log = LoggerFactory.getLogger(DeviceStorageImpl.class);
Pankaj Berdeb6031342013-02-19 18:51:51 -080029
Teru87cd2da2013-06-15 20:33:08 -070030 private GraphDBOperation ope;
Pankaj Berdeb6031342013-02-19 18:51:51 -080031
Teru87cd2da2013-06-15 20:33:08 -070032 /***
33 * Initialize function. Before you use this class, please call this method
34 * @param conf configuration file for Cassandra DB
35 */
Pankaj Berdeb6031342013-02-19 18:51:51 -080036 @Override
37 public void init(String conf) {
Jonathan Hartd6ed62b2013-11-01 13:18:25 -070038 try {
Toshio Koidebfe9b922013-06-18 10:56:05 -070039 ope = new GraphDBOperation(conf);
Jonathan Hartd6ed62b2013-11-01 13:18:25 -070040 } catch (TitanException e) {
41 log.error("Couldn't open graph operation", e);
Teru87cd2da2013-06-15 20:33:08 -070042 }
Pankaj Berdeb6031342013-02-19 18:51:51 -080043 }
Pankaj Berdeb6031342013-02-19 18:51:51 -080044
Teru87cd2da2013-06-15 20:33:08 -070045 /***
46 * Finalize/close function. After you use this class, please call this method.
47 * It will close the DB connection.
48 */
Pankaj Berdeb6031342013-02-19 18:51:51 -080049 @Override
50 public void close() {
Toshio Koidebfe9b922013-06-18 10:56:05 -070051 ope.close();
Teru87cd2da2013-06-15 20:33:08 -070052 }
53
54 /***
55 * Finalize/close function. After you use this class, please call this method.
Pavlin Radoslavovef0cb002013-06-21 14:55:23 -070056 * It will close the DB connection. This is for Java garbage collection.
Teru87cd2da2013-06-15 20:33:08 -070057 */
58 @Override
59 public void finalize() {
60 close();
Pankaj Berdeb6031342013-02-19 18:51:51 -080061 }
62
Teru87cd2da2013-06-15 20:33:08 -070063 /***
64 * This function is for adding the device into the DB.
65 * @param device The device you want to add into the DB.
66 * @return IDeviceObject which was added in the DB.
67 */
Pankaj Berdeb6031342013-02-19 18:51:51 -080068 @Override
69 public IDeviceObject addDevice(IDevice device) {
Pankaj Berdeb6031342013-02-19 18:51:51 -080070 IDeviceObject obj = null;
Pankaj Berdeb6031342013-02-19 18:51:51 -080071 try {
Teru87cd2da2013-06-15 20:33:08 -070072 if ((obj = ope.searchDevice(device.getMACAddressString())) != null) {
Jonathan Hartd6ed62b2013-11-01 13:18:25 -070073 log.debug("Adding device {}: found existing device", device.getMACAddressString());
Pankaj Berdeb6031342013-02-19 18:51:51 -080074 } else {
Teru87cd2da2013-06-15 20:33:08 -070075 obj = ope.newDevice();
Jonathan Hartd6ed62b2013-11-01 13:18:25 -070076 log.debug("Adding device {}: creating new device", device.getMACAddressString());
Pankaj Berdeb6031342013-02-19 18:51:51 -080077 }
Pankaj Berdeda809572013-02-22 15:31:20 -080078
Jonathan Hartd6ed62b2013-11-01 13:18:25 -070079 changeDeviceAttachments(device, obj);
Jonathan Hartc8ae36c2013-11-03 19:06:40 -080080
81 changeDeviceIpv4Addresses(device, obj);
Jonathan Hartd6ed62b2013-11-01 13:18:25 -070082
83 obj.setMACAddress(device.getMACAddressString());
84 obj.setType("device");
85 obj.setState("ACTIVE");
86 ope.commit();
87
88 //log.debug("Adding device {}",device.getMACAddressString());
89 } catch (TitanException e) {
Teru87cd2da2013-06-15 20:33:08 -070090 ope.rollback();
Jonathan Hart9ec4c6a2013-11-04 22:01:50 -080091 log.error("Adding device {} failed", device.getMACAddressString(), e);
Teru87cd2da2013-06-15 20:33:08 -070092 obj = null;
Jonathan Hartd6ed62b2013-11-01 13:18:25 -070093 }
94
95 return obj;
Pankaj Berdeb6031342013-02-19 18:51:51 -080096 }
97
Teru87cd2da2013-06-15 20:33:08 -070098 /***
99 * This function is for updating the Device properties.
100 * @param device The device you want to add into the DB.
101 * @return IDeviceObject which was added in the DB.
102 */
Pankaj Berdeb6031342013-02-19 18:51:51 -0800103 @Override
104 public IDeviceObject updateDevice(IDevice device) {
Pankaj Berdeb6031342013-02-19 18:51:51 -0800105 return addDevice(device);
106 }
107
Teru87cd2da2013-06-15 20:33:08 -0700108 /***
109 * This function is for removing the Device from the DB.
110 * @param device The device you want to delete from the DB.
111 */
Pankaj Berdeb6031342013-02-19 18:51:51 -0800112 @Override
Pankaj Berdeda809572013-02-22 15:31:20 -0800113 public void removeDevice(IDevice device) {
Pankaj Berdeda809572013-02-22 15:31:20 -0800114 IDeviceObject dev;
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800115
116 if ((dev = ope.searchDevice(device.getMACAddressString())) != null) {
117 removeDevice(dev);
118 }
119 }
120
121 public void removeDevice(IDeviceObject deviceObject) {
122 String deviceMac = deviceObject.getMACAddress();
123
Jonathan Hart4cfd1932013-11-19 16:42:25 -0800124 removeDeviceImpl(deviceObject);
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800125
Pankaj Berdeda809572013-02-22 15:31:20 -0800126 try {
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800127 ope.commit();
Jonathan Hart4cfd1932013-11-19 16:42:25 -0800128 log.debug("DeviceStorage:removeDevice mac:{} done", deviceMac);
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700129 } catch (TitanException e) {
Teru87cd2da2013-06-15 20:33:08 -0700130 ope.rollback();
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800131 log.error("DeviceStorage:removeDevice mac:{} failed", deviceMac);
Pankaj Berdeda809572013-02-22 15:31:20 -0800132 }
Pankaj Berdeb6031342013-02-19 18:51:51 -0800133 }
Jonathan Hart4cfd1932013-11-19 16:42:25 -0800134
135 public void removeDeviceImpl(IDeviceObject deviceObject) {
136 for (IIpv4Address ipv4AddressVertex : deviceObject.getIpv4Addresses()) {
137 ope.removeIpv4Address(ipv4AddressVertex);
138 }
139
140 ope.removeDevice(deviceObject);
141 }
Pankaj Berdeb6031342013-02-19 18:51:51 -0800142
Teru87cd2da2013-06-15 20:33:08 -0700143 /***
144 * This function is for getting the Device from the DB by Mac address of the device.
145 * @param mac The device mac address you want to get from the DB.
146 * @return IDeviceObject you want to get.
147 */
Pankaj Berdeb6031342013-02-19 18:51:51 -0800148 @Override
149 public IDeviceObject getDeviceByMac(String mac) {
Teru87cd2da2013-06-15 20:33:08 -0700150 return ope.searchDevice(mac);
Pankaj Berdeb6031342013-02-19 18:51:51 -0800151 }
152
Teru87cd2da2013-06-15 20:33:08 -0700153 /***
154 * This function is for getting the Device from the DB by IP address of the device.
155 * @param ip The device ip address you want to get from the DB.
156 * @return IDeviceObject you want to get.
157 */
Pankaj Berdeb6031342013-02-19 18:51:51 -0800158 @Override
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700159 public IDeviceObject getDeviceByIP(int ipv4Address) {
160 try {
161 IIpv4Address ipv4AddressVertex = ope.searchIpv4Address(ipv4Address);
162 if (ipv4AddressVertex != null) {
163 return ipv4AddressVertex.getDevice();
Teru87cd2da2013-06-15 20:33:08 -0700164 }
165 return null;
166 }
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700167 catch (TitanException e) {
Teru87cd2da2013-06-15 20:33:08 -0700168 log.error("DeviceStorage:getDeviceByIP:{} failed");
169 return null;
170 }
Pankaj Berdeb6031342013-02-19 18:51:51 -0800171 }
172
Teru87cd2da2013-06-15 20:33:08 -0700173 /***
174 * This function is for changing the Device attachment point.
175 * @param device The device you want change the attachment point
176 */
Pankaj Berdeda809572013-02-22 15:31:20 -0800177 @Override
178 public void changeDeviceAttachments(IDevice device) {
Pankaj Berdeda809572013-02-22 15:31:20 -0800179 IDeviceObject obj = null;
180 try {
Teru87cd2da2013-06-15 20:33:08 -0700181 if ((obj = ope.searchDevice(device.getMACAddressString())) != null) {
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700182 log.debug("Changing device ports {}: found existing device", device.getMACAddressString());
Pankaj Berdeda809572013-02-22 15:31:20 -0800183 changeDeviceAttachments(device, obj);
Teru87cd2da2013-06-15 20:33:08 -0700184 ope.commit();
185 } else {
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700186 log.debug("failed to search device...now adding {}", device.getMACAddressString());
Pankaj Berdeda809572013-02-22 15:31:20 -0800187 addDevice(device);
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700188 }
189 } catch (TitanException e) {
Teru87cd2da2013-06-15 20:33:08 -0700190 ope.rollback();
Pankaj Berdeda809572013-02-22 15:31:20 -0800191 log.error(":addDevice mac:{} failed", device.getMACAddressString());
192 }
193 }
194
Teru87cd2da2013-06-15 20:33:08 -0700195 /***
196 * This function is for changing the Device attachment point.
197 * @param device The new device you want change the attachment point
198 * @param obj The old device IDeviceObject that is going to change the attachment point.
199 */
Pankaj Berdeda809572013-02-22 15:31:20 -0800200 public void changeDeviceAttachments(IDevice device, IDeviceObject obj) {
201 SwitchPort[] attachmentPoints = device.getAttachmentPoints();
202 List<IPortObject> attachedPorts = Lists.newArrayList(obj.getAttachedPorts());
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700203
204 for (SwitchPort ap : attachmentPoints) {
205 //Check if there is the port
206 IPortObject port = ope.searchPort(HexString.toHexString(ap.getSwitchDPID()),
207 (short) ap.getPort());
208 log.debug("New Switch Port is {},{}",
209 HexString.toHexString(ap.getSwitchDPID()), (short) ap.getPort());
210
211 if (port != null){
212 if (attachedPorts.contains(port)) {
213 log.debug("This is the port you already attached {}: do nothing", device.getMACAddressString());
214 //This port will be remained, so remove from the removed port lists.
215 attachedPorts.remove(port);
216 } else {
217 log.debug("Adding device {}: attaching to port", device.getMACAddressString());
218 port.setDevice(obj);
219 }
220
221 log.debug("port number is {}", port.getNumber().toString());
222 log.debug("port desc is {}", port.getDesc());
223 }
224 }
225
226 for (IPortObject port: attachedPorts) {
227 log.debug("Detaching the device {}: detaching from port", device.getMACAddressString());
228 port.removeDevice(obj);
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800229
230 if (!obj.getAttachedPorts().iterator().hasNext()) {
231 // XXX If there are no more ports attached to the device,
232 // delete it. Otherwise we have a situation where the
233 // device remains forever with an IP address attached.
234 // When we implement device probing we should get rid of this.
235 removeDevice(obj);
236 }
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700237 }
Pankaj Berdeda809572013-02-22 15:31:20 -0800238 }
239
Teru87cd2da2013-06-15 20:33:08 -0700240 /***
241 * This function is for changing the Device IPv4 address.
242 * @param device The new device you want change the ipaddress
243 */
Pankaj Berdeda809572013-02-22 15:31:20 -0800244 @Override
245 public void changeDeviceIPv4Address(IDevice device) {
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700246 log.debug("Changing IP address for {} to {}", device.getMACAddressString(),
247 device.getIPv4Addresses());
Pankaj Berdeda809572013-02-22 15:31:20 -0800248 IDeviceObject obj;
249 try {
Teru87cd2da2013-06-15 20:33:08 -0700250 if ((obj = ope.searchDevice(device.getMACAddressString())) != null) {
Jonathan Hartc8ae36c2013-11-03 19:06:40 -0800251 changeDeviceIpv4Addresses(device, obj);
Teru87cd2da2013-06-15 20:33:08 -0700252
253 ope.commit();
Pankaj Berdeda809572013-02-22 15:31:20 -0800254 } else {
255 log.error(":changeDeviceIPv4Address mac:{} failed", device.getMACAddressString());
Teru87cd2da2013-06-15 20:33:08 -0700256 }
Pankaj Berdeda809572013-02-22 15:31:20 -0800257 } catch (TitanException e) {
Teru87cd2da2013-06-15 20:33:08 -0700258 ope.rollback();
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700259 log.error(":changeDeviceIPv4Address mac:{} failed due to exception {}", device.getMACAddressString(), e);
Pankaj Berdeda809572013-02-22 15:31:20 -0800260 }
261 }
Jonathan Hartc8ae36c2013-11-03 19:06:40 -0800262
263 private void changeDeviceIpv4Addresses(IDevice device, IDeviceObject deviceObject) {
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800264 List<String> dbIpv4Addresses = new ArrayList<String>();
265 for (IIpv4Address ipv4Vertex : deviceObject.getIpv4Addresses()) {
266 dbIpv4Addresses.add(InetAddresses.fromInteger(ipv4Vertex.getIpv4Address()).getHostAddress());
267 }
268
269 List<String> memIpv4Addresses = new ArrayList<String>();
270 for (int addr : device.getIPv4Addresses()) {
271 memIpv4Addresses.add(InetAddresses.fromInteger(addr).getHostAddress());
272 }
273
274 log.debug("Device IP addresses {}, database IP addresses {}",
275 memIpv4Addresses, dbIpv4Addresses);
276
Jonathan Hartc8ae36c2013-11-03 19:06:40 -0800277 for (int ipv4Address : device.getIPv4Addresses()) {
278 if (deviceObject.getIpv4Address(ipv4Address) == null) {
279 IIpv4Address dbIpv4Address = ope.ensureIpv4Address(ipv4Address);
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800280
281 IDeviceObject oldDevice = dbIpv4Address.getDevice();
282 if (oldDevice != null) {
283 oldDevice.removeIpv4Address(dbIpv4Address);
284 }
285
286 log.debug("Adding IP address {}",
287 InetAddresses.fromInteger(ipv4Address).getHostAddress());
Jonathan Hartc8ae36c2013-11-03 19:06:40 -0800288 deviceObject.addIpv4Address(dbIpv4Address);
289 }
290 }
291
292 List<Integer> deviceIpv4Addresses = Arrays.asList(device.getIPv4Addresses());
293 for (IIpv4Address dbIpv4Address : deviceObject.getIpv4Addresses()) {
294 if (!deviceIpv4Addresses.contains(dbIpv4Address.getIpv4Address())) {
Jonathan Hart1a6f1d62013-11-14 11:33:46 -0800295 log.debug("Removing IP address {}",
296 InetAddresses.fromInteger(dbIpv4Address.getIpv4Address())
297 .getHostAddress());
Jonathan Hartc8ae36c2013-11-03 19:06:40 -0800298 deviceObject.removeIpv4Address(dbIpv4Address);
299 }
300 }
301 }
Pankaj Berdeda809572013-02-22 15:31:20 -0800302
Pankaj Berdeb6031342013-02-19 18:51:51 -0800303}