blob: 552d2b5a612f1bc88f3b06492049b60c8740c143 [file] [log] [blame]
HIGUCHI Yuta60a10142013-06-14 15:50:10 -07001package net.onrc.onos.ofcontroller.flowmanager;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -08002
3import java.util.ArrayList;
4import java.util.Collection;
Naoki Shiota1a37ca12013-11-18 10:55:23 -08005import java.util.EnumSet;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -08006import java.util.HashMap;
Masayoshi Kobayashic9da09e2013-03-26 20:52:02 +00007import java.util.LinkedList;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -08008import java.util.Map;
Pavlin Radoslavov0b22d0e2013-04-02 01:12:46 +00009import java.util.Random;
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080010import java.util.concurrent.Executors;
11import java.util.concurrent.ScheduledExecutorService;
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080012import java.util.concurrent.TimeUnit;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080013
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080014import net.floodlightcontroller.core.IFloodlightProviderService;
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080015import net.floodlightcontroller.core.IOFSwitch;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080016import net.floodlightcontroller.core.module.FloodlightModuleContext;
17import net.floodlightcontroller.core.module.FloodlightModuleException;
18import net.floodlightcontroller.core.module.IFloodlightModule;
19import net.floodlightcontroller.core.module.IFloodlightService;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080020import net.floodlightcontroller.restserver.IRestApiService;
Naoki Shiota1a37ca12013-11-18 10:55:23 -080021import net.floodlightcontroller.util.OFMessageDamper;
Pavlin Radoslavov05378272013-10-19 23:23:05 -070022import net.onrc.onos.datagrid.IDatagridService;
Pankaj Berde38646d62013-06-21 11:34:04 -070023import net.onrc.onos.graph.GraphDBOperation;
HIGUCHI Yuta20514902013-06-12 11:24:16 -070024import net.onrc.onos.ofcontroller.core.INetMapStorage;
25import net.onrc.onos.ofcontroller.core.INetMapTopologyObjects.IFlowEntry;
26import net.onrc.onos.ofcontroller.core.INetMapTopologyObjects.IFlowPath;
Pavlin Radoslavove9a3ef92013-10-18 18:46:45 -070027import net.onrc.onos.ofcontroller.floodlightlistener.INetworkGraphService;
HIGUCHI Yuta60a10142013-06-14 15:50:10 -070028import net.onrc.onos.ofcontroller.flowmanager.web.FlowWebRoutable;
Brian O'Connor8c166a72013-11-14 18:41:48 -080029import net.onrc.onos.ofcontroller.flowprogrammer.IFlowPusherService;
Pavlin Radoslavov1278ac72013-10-16 04:43:49 -070030import net.onrc.onos.ofcontroller.topology.ITopologyNetService;
Pavlin Radoslavov15954d42013-10-19 15:29:04 -070031import net.onrc.onos.ofcontroller.topology.Topology;
Pavlin Radoslavov661c86f2013-10-21 12:40:40 -070032import net.onrc.onos.ofcontroller.util.*;
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080033
Naoki Shiota1a37ca12013-11-18 10:55:23 -080034import org.openflow.protocol.OFType;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080035import org.slf4j.Logger;
36import org.slf4j.LoggerFactory;
37
admin944ef4f2013-10-08 17:48:37 -070038/**
HIGUCHI Yutaeb567aa2013-10-08 19:27:35 -070039 * Flow Manager class for handling the network flows.
admin944ef4f2013-10-08 17:48:37 -070040 */
Pavlin Radoslavov5adf1522013-04-04 17:43:41 -070041public class FlowManager implements IFloodlightModule, IFlowService, INetMapStorage {
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080042
Pavlin Radoslavove0e48f72013-11-07 11:22:43 -080043 //
44 // TODO: A temporary variable to switch between the poll-based and
45 // notification mechanism for the Flow Manager.
46 //
47 private final static boolean enableNotifications = false;
Naoki Shiota1a37ca12013-11-18 10:55:23 -080048
49 // flag to use FlowPusher instead of FlowSwitchOperation/MessageDamper
50 private final static boolean enableFlowPusher = false;
Pavlin Radoslavove0e48f72013-11-07 11:22:43 -080051
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -080052 protected GraphDBOperation dbHandlerApi;
53 protected GraphDBOperation dbHandlerInner;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080054
Jonathan Hart50a94982013-04-10 14:49:51 -070055 protected volatile IFloodlightProviderService floodlightProvider;
Pavlin Radoslavov1278ac72013-10-16 04:43:49 -070056 protected volatile ITopologyNetService topologyNetService;
Pavlin Radoslavov05378272013-10-19 23:23:05 -070057 protected volatile IDatagridService datagridService;
58 protected IRestApiService restApi;
Pavlin Radoslavov571cff92013-03-20 02:01:32 -070059 protected FloodlightModuleContext context;
Pavlin Radoslavov9a859022013-10-30 10:08:24 -070060 protected FlowEventHandler flowEventHandler;
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080061
Brian O'Connor8c166a72013-11-14 18:41:48 -080062 protected IFlowPusherService pusher;
Naoki Shiota5c8d19f2013-11-05 15:52:38 -080063
Naoki Shiota1a37ca12013-11-18 10:55:23 -080064 protected OFMessageDamper messageDamper;
65
66 //
67 // TODO: Values copied from elsewhere (class LearningSwitch).
68 // The local copy should go away!
69 //
70 protected static final int OFMESSAGE_DAMPER_CAPACITY = 50000; // TODO: find sweet spot
71 protected static final int OFMESSAGE_DAMPER_TIMEOUT = 250; // ms
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080072
Pavlin Radoslavov0b22d0e2013-04-02 01:12:46 +000073 // Flow Entry ID generation state
74 private static Random randomGenerator = new Random();
75 private static int nextFlowEntryIdPrefix = 0;
76 private static int nextFlowEntryIdSuffix = 0;
77 private static long nextFlowEntryId = 0;
78
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080079 /** The logger. */
Yuta HIGUCHI6ac8d182013-10-22 15:24:56 -070080 private final static Logger log = LoggerFactory.getLogger(FlowManager.class);
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080081
82 // The periodic task(s)
Jonathan Hart50a94982013-04-10 14:49:51 -070083 private ScheduledExecutorService mapReaderScheduler;
84 private ScheduledExecutorService shortestPathReconcileScheduler;
Pavlin Radoslavov6fb76d12013-04-09 22:52:25 -070085
admin944ef4f2013-10-08 17:48:37 -070086 /**
87 * Periodic task for reading the Flow Entries and pushing changes
88 * into the switches.
89 */
Pavlin Radoslavov571cff92013-03-20 02:01:32 -070090 final Runnable mapReader = new Runnable() {
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080091 public void run() {
Pavlin Radoslavova75caea2013-04-10 19:11:26 -070092 try {
93 runImpl();
94 } catch (Exception e) {
95 log.debug("Exception processing All Flow Entries from the Network MAP: ", e);
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -080096 dbHandlerInner.rollback();
Pavlin Radoslavova75caea2013-04-10 19:11:26 -070097 return;
98 }
99 }
100
101 private void runImpl() {
Pavlin Radoslavov42f02ba2013-04-03 20:07:30 -0700102 long startTime = System.nanoTime();
103 int counterAllFlowEntries = 0;
104 int counterMyNotUpdatedFlowEntries = 0;
Pavlin Radoslavov42f02ba2013-04-03 20:07:30 -0700105
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800106 if (floodlightProvider == null) {
107 log.debug("FloodlightProvider service not found!");
108 return;
109 }
Masayoshi Kobayashic9da09e2013-03-26 20:52:02 +0000110 Map<Long, IOFSwitch> mySwitches =
111 floodlightProvider.getSwitches();
Pankaj Berdebf51e4f2013-10-03 17:49:23 -0700112 if (mySwitches.isEmpty()) {
Pankaj Berde85a877b2013-10-03 18:26:35 -0700113 log.trace("No switches controlled");
Pankaj Berdebf51e4f2013-10-03 17:49:23 -0700114 return;
115 }
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700116 LinkedList<IFlowEntry> addFlowEntries =
117 new LinkedList<IFlowEntry>();
Masayoshi Kobayashic9da09e2013-03-26 20:52:02 +0000118 LinkedList<IFlowEntry> deleteFlowEntries =
119 new LinkedList<IFlowEntry>();
Pavlin Radoslavovdbaaf2e2013-03-29 04:25:55 -0700120
121 //
Pavlin Radoslavov50e532e2013-10-20 02:07:51 -0700122 // Fetch all Flow Entries which need to be updated and select
123 // only my Flow Entries that need to be updated into the
124 // switches.
Pavlin Radoslavov01391c92013-03-14 17:13:21 -0700125 //
Masayoshi Kobayashic9da09e2013-03-26 20:52:02 +0000126 Iterable<IFlowEntry> allFlowEntries =
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800127 dbHandlerInner.getAllSwitchNotUpdatedFlowEntries();
Pavlin Radoslavov01391c92013-03-14 17:13:21 -0700128 for (IFlowEntry flowEntryObj : allFlowEntries) {
Pavlin Radoslavov42f02ba2013-04-03 20:07:30 -0700129 counterAllFlowEntries++;
Masayoshi Kobayashic9da09e2013-03-26 20:52:02 +0000130
Pavlin Radoslavov6db8c6e2013-04-08 00:14:07 +0000131 String dpidStr = flowEntryObj.getSwitchDpid();
132 if (dpidStr == null)
133 continue;
134 Dpid dpid = new Dpid(dpidStr);
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800135 IOFSwitch mySwitch = mySwitches.get(dpid.value());
Masayoshi Kobayashic9da09e2013-03-26 20:52:02 +0000136 if (mySwitch == null)
137 continue; // Ignore the entry: not my switch
138
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700139 IFlowPath flowObj =
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800140 dbHandlerInner.getFlowPathByFlowEntry(flowEntryObj);
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700141 if (flowObj == null)
142 continue; // Should NOT happen
143 if (flowObj.getFlowId() == null)
144 continue; // Invalid entry
145
146 //
147 // NOTE: For now we process the DELETE before the ADD
148 // to cover the more common scenario.
149 // TODO: This is error prone and needs to be fixed!
150 //
Pavlin Radoslavov6db8c6e2013-04-08 00:14:07 +0000151 String userState = flowEntryObj.getUserState();
152 if (userState == null)
153 continue;
Pavlin Radoslavovec8e2e62013-04-04 18:18:29 -0700154 if (userState.equals("FE_USER_DELETE")) {
155 // An entry that needs to be deleted.
156 deleteFlowEntries.add(flowEntryObj);
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700157 installFlowEntry(mySwitch, flowObj, flowEntryObj);
158 } else {
159 addFlowEntries.add(flowEntryObj);
Pavlin Radoslavovec8e2e62013-04-04 18:18:29 -0700160 }
Pavlin Radoslavov42f02ba2013-04-03 20:07:30 -0700161 counterMyNotUpdatedFlowEntries++;
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700162 }
163
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700164 //
165 // Process the Flow Entries that need to be added
166 //
167 for (IFlowEntry flowEntryObj : addFlowEntries) {
168 IFlowPath flowObj =
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800169 dbHandlerInner.getFlowPathByFlowEntry(flowEntryObj);
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700170 if (flowObj == null)
171 continue; // Should NOT happen
172 if (flowObj.getFlowId() == null)
173 continue; // Invalid entry
Pavlin Radoslavov01391c92013-03-14 17:13:21 -0700174
Pavlin Radoslavov01391c92013-03-14 17:13:21 -0700175 Dpid dpid = new Dpid(flowEntryObj.getSwitchDpid());
Pavlin Radoslavov01391c92013-03-14 17:13:21 -0700176 IOFSwitch mySwitch = mySwitches.get(dpid.value());
Masayoshi Kobayashic9da09e2013-03-26 20:52:02 +0000177 if (mySwitch == null)
178 continue; // Shouldn't happen
Pavlin Radoslavovec8e2e62013-04-04 18:18:29 -0700179 installFlowEntry(mySwitch, flowObj, flowEntryObj);
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800180 }
Masayoshi Kobayashic9da09e2013-03-26 20:52:02 +0000181
182 //
Pavlin Radoslavov710e2a72013-04-08 02:31:05 +0000183 // Delete all Flow Entries marked for deletion from the
Pavlin Radoslavov44a3dcd2013-04-04 18:42:56 -0700184 // Network MAP.
Masayoshi Kobayashic9da09e2013-03-26 20:52:02 +0000185 //
186 // TODO: We should use the OpenFlow Barrier mechanism
187 // to check for errors, and delete the Flow Entries after the
188 // Barrier message is received.
189 //
190 while (! deleteFlowEntries.isEmpty()) {
191 IFlowEntry flowEntryObj = deleteFlowEntries.poll();
192 IFlowPath flowObj =
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800193 dbHandlerInner.getFlowPathByFlowEntry(flowEntryObj);
Masayoshi Kobayashic9da09e2013-03-26 20:52:02 +0000194 if (flowObj == null) {
195 log.debug("Did not find FlowPath to be deleted");
196 continue;
197 }
198 flowObj.removeFlowEntry(flowEntryObj);
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800199 dbHandlerInner.removeFlowEntry(flowEntryObj);
Masayoshi Kobayashic9da09e2013-03-26 20:52:02 +0000200 }
Pavlin Radoslavov0391b9d2013-03-29 11:54:25 -0700201
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800202 dbHandlerInner.commit();
Pavlin Radoslavov6fb76d12013-04-09 22:52:25 -0700203
Pavlin Radoslavov6fb76d12013-04-09 22:52:25 -0700204 long estimatedTime = System.nanoTime() - startTime;
205 double rate = 0.0;
206 if (estimatedTime > 0)
207 rate = ((double)counterAllFlowEntries * 1000000000) / estimatedTime;
208 String logMsg = "MEASUREMENT: Processed AllFlowEntries: " +
209 counterAllFlowEntries + " MyNotUpdatedFlowEntries: " +
210 counterMyNotUpdatedFlowEntries + " in " +
211 (double)estimatedTime / 1000000000 + " sec: " +
212 rate + " paths/s";
213 log.debug(logMsg);
214 }
215 };
216
admin944ef4f2013-10-08 17:48:37 -0700217 /**
218 * Periodic task for reading the Flow Paths and recomputing the
219 * shortest paths.
220 */
Pavlin Radoslavov6fb76d12013-04-09 22:52:25 -0700221 final Runnable shortestPathReconcile = new Runnable() {
222 public void run() {
Pavlin Radoslavova75caea2013-04-10 19:11:26 -0700223 try {
224 runImpl();
225 } catch (Exception e) {
226 log.debug("Exception processing All Flows from the Network MAP: ", e);
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800227 dbHandlerInner.rollback();
Pavlin Radoslavova75caea2013-04-10 19:11:26 -0700228 return;
229 }
230 }
231
232 private void runImpl() {
Pavlin Radoslavov6fb76d12013-04-09 22:52:25 -0700233 long startTime = System.nanoTime();
234 int counterAllFlowPaths = 0;
235 int counterMyFlowPaths = 0;
236
237 if (floodlightProvider == null) {
238 log.debug("FloodlightProvider service not found!");
239 return;
240 }
241 Map<Long, IOFSwitch> mySwitches =
242 floodlightProvider.getSwitches();
Pankaj Berdebf51e4f2013-10-03 17:49:23 -0700243 if (mySwitches.isEmpty()) {
Pankaj Berde85a877b2013-10-03 18:26:35 -0700244 log.trace("No switches controlled");
Pankaj Berdebf51e4f2013-10-03 17:49:23 -0700245 return;
246 }
Pavlin Radoslavov6fb76d12013-04-09 22:52:25 -0700247 LinkedList<IFlowPath> deleteFlows = new LinkedList<IFlowPath>();
248
Pavlin Radoslavov0391b9d2013-03-29 11:54:25 -0700249 //
250 // Fetch and recompute the Shortest Path for those
251 // Flow Paths this controller is responsible for.
252 //
Pavlin Radoslavov15954d42013-10-19 15:29:04 -0700253 Topology topology = topologyNetService.newDatabaseTopology();
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800254 Iterable<IFlowPath> allFlowPaths = dbHandlerInner.getAllFlowPaths();
Pavlin Radoslavov0391b9d2013-03-29 11:54:25 -0700255 for (IFlowPath flowPathObj : allFlowPaths) {
Pavlin Radoslavov42f02ba2013-04-03 20:07:30 -0700256 counterAllFlowPaths++;
Pavlin Radoslavov0391b9d2013-03-29 11:54:25 -0700257 if (flowPathObj == null)
258 continue;
Pavlin Radoslavov0391b9d2013-03-29 11:54:25 -0700259
Pavlin Radoslavov0391b9d2013-03-29 11:54:25 -0700260 String srcDpidStr = flowPathObj.getSrcSwitch();
Pavlin Radoslavov6db8c6e2013-04-08 00:14:07 +0000261 if (srcDpidStr == null)
Pavlin Radoslavov0391b9d2013-03-29 11:54:25 -0700262 continue;
Pavlin Radoslavov0391b9d2013-03-29 11:54:25 -0700263 Dpid srcDpid = new Dpid(srcDpidStr);
Pavlin Radoslavov2659a0b2013-04-03 20:30:40 -0700264 //
265 // Use the source DPID as a heuristic to decide
266 // which controller is responsible for maintaining the
267 // shortest path.
268 // NOTE: This heuristic is error-prone: if the switch
269 // goes away and no controller is responsible for that
270 // switch, then the original Flow Path is not cleaned-up
271 //
272 IOFSwitch mySwitch = mySwitches.get(srcDpid.value());
273 if (mySwitch == null)
274 continue; // Ignore: not my responsibility
275
Pavlin Radoslavovbcc86ef2013-10-26 12:06:25 -0700276 // Test whether we need to maintain this flow
277 String flowPathTypeStr = flowPathObj.getFlowPathType();
278 if (flowPathTypeStr == null)
Pavlin Radoslavov99d1b152013-04-09 22:57:33 -0700279 continue; // Could be invalid entry?
Pavlin Radoslavovbcc86ef2013-10-26 12:06:25 -0700280 if (! flowPathTypeStr.equals("FP_TYPE_SHORTEST_PATH"))
Pavlin Radoslavov99d1b152013-04-09 22:57:33 -0700281 continue; // No need to maintain this flow
282
Pavlin Radoslavov710e2a72013-04-08 02:31:05 +0000283 //
284 // Test whether we need to complete the Flow cleanup,
285 // if the Flow has been deleted by the user.
286 //
Pavlin Radoslavov7d4a40e2013-10-27 23:39:40 -0700287 String flowPathUserStateStr = flowPathObj.getFlowPathUserState();
288 if ((flowPathUserStateStr != null)
289 && flowPathUserStateStr.equals("FP_USER_DELETE")) {
Pavlin Radoslavov710e2a72013-04-08 02:31:05 +0000290 Iterable<IFlowEntry> flowEntries = flowPathObj.getFlowEntries();
Yuta HIGUCHI2ded2dd2013-10-09 18:06:41 -0700291 final boolean empty = !flowEntries.iterator().hasNext();
Pavlin Radoslavov710e2a72013-04-08 02:31:05 +0000292 if (empty)
293 deleteFlows.add(flowPathObj);
294 }
295
Pavlin Radoslavov6db8c6e2013-04-08 00:14:07 +0000296 // Fetch the fields needed to recompute the shortest path
Pavlin Radoslavovbcc86ef2013-10-26 12:06:25 -0700297 String dataPathSummaryStr = flowPathObj.getDataPathSummary();
Pavlin Radoslavov6db8c6e2013-04-08 00:14:07 +0000298 Short srcPortShort = flowPathObj.getSrcPort();
299 String dstDpidStr = flowPathObj.getDstSwitch();
300 Short dstPortShort = flowPathObj.getDstPort();
Pavlin Radoslavov204b2862013-07-12 14:15:36 -0700301 Long flowPathFlagsLong = flowPathObj.getFlowPathFlags();
Pavlin Radoslavovbcc86ef2013-10-26 12:06:25 -0700302 if ((dataPathSummaryStr == null) ||
303 (srcPortShort == null) ||
Pavlin Radoslavov6db8c6e2013-04-08 00:14:07 +0000304 (dstDpidStr == null) ||
Pavlin Radoslavov204b2862013-07-12 14:15:36 -0700305 (dstPortShort == null) ||
306 (flowPathFlagsLong == null)) {
Pavlin Radoslavov6db8c6e2013-04-08 00:14:07 +0000307 continue;
308 }
309
310 Port srcPort = new Port(srcPortShort);
311 Dpid dstDpid = new Dpid(dstDpidStr);
312 Port dstPort = new Port(dstPortShort);
313 SwitchPort srcSwitchPort = new SwitchPort(srcDpid, srcPort);
314 SwitchPort dstSwitchPort = new SwitchPort(dstDpid, dstPort);
Pavlin Radoslavovd28cf7c2013-10-26 11:27:43 -0700315 FlowPathType flowPathType = FlowPathType.valueOf(flowPathTypeStr);
Pavlin Radoslavov7d4a40e2013-10-27 23:39:40 -0700316 FlowPathUserState flowPathUserState = FlowPathUserState.valueOf(flowPathUserStateStr);
Pavlin Radoslavov204b2862013-07-12 14:15:36 -0700317 FlowPathFlags flowPathFlags = new FlowPathFlags(flowPathFlagsLong);
Pavlin Radoslavov6db8c6e2013-04-08 00:14:07 +0000318
Pavlin Radoslavov2659a0b2013-04-03 20:30:40 -0700319 counterMyFlowPaths++;
320
Pavlin Radoslavov832aa652013-03-29 16:21:59 -0700321 //
Pavlin Radoslavov15954d42013-10-19 15:29:04 -0700322 // NOTE: Using here the regular getDatabaseShortestPath()
323 // method won't work here, because that method calls
324 // internally "conn.endTx(Transaction.COMMIT)", and that
325 // will invalidate all handlers to the Titan database.
Pavlin Radoslavov832aa652013-03-29 16:21:59 -0700326 // If we want to experiment with calling here
Pavlin Radoslavov15954d42013-10-19 15:29:04 -0700327 // getDatabaseShortestPath(), we need to refactor that code
Pavlin Radoslavov832aa652013-03-29 16:21:59 -0700328 // to avoid closing the transaction.
329 //
Pavlin Radoslavov0391b9d2013-03-29 11:54:25 -0700330 DataPath dataPath =
Pavlin Radoslavov15954d42013-10-19 15:29:04 -0700331 topologyNetService.getTopologyShortestPath(
332 topology,
333 srcSwitchPort,
334 dstSwitchPort);
Pavlin Radoslavov4a325822013-04-02 22:16:59 +0000335 if (dataPath == null) {
336 // We need the DataPath to compare the paths
337 dataPath = new DataPath();
338 dataPath.setSrcPort(srcSwitchPort);
339 dataPath.setDstPort(dstSwitchPort);
340 }
Pavlin Radoslavov204b2862013-07-12 14:15:36 -0700341 dataPath.applyFlowPathFlags(flowPathFlags);
Pavlin Radoslavov4a325822013-04-02 22:16:59 +0000342
Pavlin Radoslavov0391b9d2013-03-29 11:54:25 -0700343 String newDataPathSummaryStr = dataPath.dataPathSummary();
344 if (dataPathSummaryStr.equals(newDataPathSummaryStr))
345 continue; // Nothing changed
346
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700347 reconcileFlow(flowPathObj, dataPath);
Pavlin Radoslavov0391b9d2013-03-29 11:54:25 -0700348 }
Pavlin Radoslavov710e2a72013-04-08 02:31:05 +0000349
350 //
351 // Delete all leftover Flows marked for deletion from the
352 // Network MAP.
353 //
354 while (! deleteFlows.isEmpty()) {
355 IFlowPath flowPathObj = deleteFlows.poll();
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800356 dbHandlerInner.removeFlowPath(flowPathObj);
Pavlin Radoslavov710e2a72013-04-08 02:31:05 +0000357 }
358
Pavlin Radoslavov15954d42013-10-19 15:29:04 -0700359 topologyNetService.dropTopology(topology);
Pavlin Radoslavov0391b9d2013-03-29 11:54:25 -0700360
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800361 dbHandlerInner.commit();
Pavlin Radoslavov571cff92013-03-20 02:01:32 -0700362
Pavlin Radoslavov42f02ba2013-04-03 20:07:30 -0700363 long estimatedTime = System.nanoTime() - startTime;
Pavlin Radoslavov1552f952013-04-04 17:51:22 -0700364 double rate = 0.0;
365 if (estimatedTime > 0)
366 rate = ((double)counterAllFlowPaths * 1000000000) / estimatedTime;
Pavlin Radoslavov6fb76d12013-04-09 22:52:25 -0700367 String logMsg = "MEASUREMENT: Processed AllFlowPaths: " +
Pavlin Radoslavov1552f952013-04-04 17:51:22 -0700368 counterAllFlowPaths + " MyFlowPaths: " +
369 counterMyFlowPaths + " in " +
370 (double)estimatedTime / 1000000000 + " sec: " +
371 rate + " paths/s";
Pavlin Radoslavov42f02ba2013-04-03 20:07:30 -0700372 log.debug(logMsg);
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800373 }
374 };
Pavlin Radoslavov571cff92013-03-20 02:01:32 -0700375
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800376
admin944ef4f2013-10-08 17:48:37 -0700377 /**
378 * Initialize the Flow Manager.
379 *
380 * @param conf the Graph Database configuration string.
381 */
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800382 @Override
383 public void init(String conf) {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800384 dbHandlerApi = new GraphDBOperation(conf);
385 dbHandlerInner = new GraphDBOperation(conf);
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800386 }
387
admin944ef4f2013-10-08 17:48:37 -0700388 /**
389 * Shutdown the Flow Manager operation.
390 */
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800391 public void finalize() {
Toshio Koide9fe1cb22013-06-13 13:51:11 -0700392 close();
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800393 }
394
admin944ef4f2013-10-08 17:48:37 -0700395 /**
396 * Shutdown the Flow Manager operation.
397 */
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800398 @Override
399 public void close() {
Pavlin Radoslavov9a859022013-10-30 10:08:24 -0700400 datagridService.deregisterFlowEventHandlerService(flowEventHandler);
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800401 dbHandlerApi.close();
402 dbHandlerInner.close();
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800403 }
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800404
admin944ef4f2013-10-08 17:48:37 -0700405 /**
406 * Get the collection of offered module services.
407 *
408 * @return the collection of offered module services.
409 */
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800410 @Override
411 public Collection<Class<? extends IFloodlightService>> getModuleServices() {
412 Collection<Class<? extends IFloodlightService>> l =
413 new ArrayList<Class<? extends IFloodlightService>>();
414 l.add(IFlowService.class);
415 return l;
416 }
417
admin944ef4f2013-10-08 17:48:37 -0700418 /**
419 * Get the collection of implemented services.
420 *
421 * @return the collection of implemented services.
422 */
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800423 @Override
424 public Map<Class<? extends IFloodlightService>, IFloodlightService>
425 getServiceImpls() {
426 Map<Class<? extends IFloodlightService>,
Pavlin Radoslavove9a3ef92013-10-18 18:46:45 -0700427 IFloodlightService> m =
428 new HashMap<Class<? extends IFloodlightService>,
429 IFloodlightService>();
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800430 m.put(IFlowService.class, this);
431 return m;
432 }
433
admin944ef4f2013-10-08 17:48:37 -0700434 /**
435 * Get the collection of modules this module depends on.
436 *
437 * @return the collection of modules this module depends on.
438 */
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800439 @Override
440 public Collection<Class<? extends IFloodlightService>>
Pavlin Radoslavov50e532e2013-10-20 02:07:51 -0700441 getModuleDependencies() {
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800442 Collection<Class<? extends IFloodlightService>> l =
443 new ArrayList<Class<? extends IFloodlightService>>();
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800444 l.add(IFloodlightProviderService.class);
Pavlin Radoslavove9a3ef92013-10-18 18:46:45 -0700445 l.add(INetworkGraphService.class);
Pavlin Radoslavov05378272013-10-19 23:23:05 -0700446 l.add(IDatagridService.class);
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800447 l.add(IRestApiService.class);
448 return l;
449 }
450
admin944ef4f2013-10-08 17:48:37 -0700451 /**
452 * Initialize the module.
453 *
454 * @param context the module context to use for the initialization.
455 */
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800456 @Override
457 public void init(FloodlightModuleContext context)
458 throws FloodlightModuleException {
Pavlin Radoslavov571cff92013-03-20 02:01:32 -0700459 this.context = context;
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800460 floodlightProvider = context.getServiceImpl(IFloodlightProviderService.class);
Pavlin Radoslavov05378272013-10-19 23:23:05 -0700461 topologyNetService = context.getServiceImpl(ITopologyNetService.class);
462 datagridService = context.getServiceImpl(IDatagridService.class);
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800463 restApi = context.getServiceImpl(IRestApiService.class);
Pavlin Radoslavov05378272013-10-19 23:23:05 -0700464
Naoki Shiota1a37ca12013-11-18 10:55:23 -0800465 if (enableFlowPusher) {
466 pusher = context.getServiceImpl(IFlowPusherService.class);
467 } else {
468 messageDamper = new OFMessageDamper(OFMESSAGE_DAMPER_CAPACITY,
469 EnumSet.of(OFType.FLOW_MOD),
470 OFMESSAGE_DAMPER_TIMEOUT);
471 }
Brian O'Connor8c166a72013-11-14 18:41:48 -0800472
Pavlin Radoslavov50e532e2013-10-20 02:07:51 -0700473 this.init("");
474
admin944ef4f2013-10-08 17:48:37 -0700475 mapReaderScheduler = Executors.newScheduledThreadPool(1);
476 shortestPathReconcileScheduler = Executors.newScheduledThreadPool(1);
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800477 }
478
admin944ef4f2013-10-08 17:48:37 -0700479 /**
480 * Get the next Flow Entry ID to use.
481 *
482 * @return the next Flow Entry ID to use.
483 */
Pavlin Radoslavov661c86f2013-10-21 12:40:40 -0700484 public synchronized long getNextFlowEntryId() {
Pavlin Radoslavov0b22d0e2013-04-02 01:12:46 +0000485 //
486 // Generate the next Flow Entry ID.
487 // NOTE: For now, the higher 32 bits are random, and
488 // the lower 32 bits are sequential.
489 // In the future, we need a better allocation mechanism.
490 //
491 if ((nextFlowEntryIdSuffix & 0xffffffffL) == 0xffffffffL) {
492 nextFlowEntryIdPrefix = randomGenerator.nextInt();
493 nextFlowEntryIdSuffix = 0;
494 } else {
495 nextFlowEntryIdSuffix++;
496 }
497 long result = (long)nextFlowEntryIdPrefix << 32;
498 result = result | (0xffffffffL & nextFlowEntryIdSuffix);
499 return result;
500 }
501
admin944ef4f2013-10-08 17:48:37 -0700502 /**
503 * Startup module operation.
504 *
505 * @param context the module context to use for the startup.
506 */
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800507 @Override
508 public void startUp(FloodlightModuleContext context) {
admin944ef4f2013-10-08 17:48:37 -0700509 restApi.addRestletRoutable(new FlowWebRoutable());
Pavlin Radoslavov50e532e2013-10-20 02:07:51 -0700510
admin944ef4f2013-10-08 17:48:37 -0700511 // Initialize the Flow Entry ID generator
512 nextFlowEntryIdPrefix = randomGenerator.nextInt();
Naoki Shiota36e89432013-11-13 11:11:43 -0800513
Pavlin Radoslavov6b79f2b2013-10-26 21:31:10 -0700514 //
Pavlin Radoslavov9a859022013-10-30 10:08:24 -0700515 // Create the Flow Event Handler thread and register it with the
Pavlin Radoslavov6b79f2b2013-10-26 21:31:10 -0700516 // Datagrid Service
517 //
Pavlin Radoslavov9a859022013-10-30 10:08:24 -0700518 flowEventHandler = new FlowEventHandler(this, datagridService);
519 datagridService.registerFlowEventHandlerService(flowEventHandler);
Pavlin Radoslavovaaace7f2013-10-25 19:42:00 -0700520
Pavlin Radoslavov6b79f2b2013-10-26 21:31:10 -0700521 // Schedule the threads and periodic tasks
Pavlin Radoslavov9a859022013-10-30 10:08:24 -0700522 flowEventHandler.start();
Pavlin Radoslavove0e48f72013-11-07 11:22:43 -0800523 if (! enableNotifications) {
524 mapReaderScheduler.scheduleAtFixedRate(
admin944ef4f2013-10-08 17:48:37 -0700525 mapReader, 3, 3, TimeUnit.SECONDS);
Pavlin Radoslavove0e48f72013-11-07 11:22:43 -0800526 shortestPathReconcileScheduler.scheduleAtFixedRate(
admin944ef4f2013-10-08 17:48:37 -0700527 shortestPathReconcile, 3, 3, TimeUnit.SECONDS);
Pavlin Radoslavove0e48f72013-11-07 11:22:43 -0800528 }
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800529 }
530
531 /**
532 * Add a flow.
533 *
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800534 * @param flowPath the Flow Path to install.
535 * @param flowId the return-by-reference Flow ID as assigned internally.
536 * @return true on success, otherwise false.
537 */
538 @Override
Pavlin Radoslavovbcc86ef2013-10-26 12:06:25 -0700539 public boolean addFlow(FlowPath flowPath, FlowId flowId) {
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700540 //
Pavlin Radoslavov1c24f222013-10-30 13:56:46 -0700541 // NOTE: We need to explicitly initialize some of the state,
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700542 // in case the application didn't do it.
543 //
544 for (FlowEntry flowEntry : flowPath.flowEntries()) {
545 if (flowEntry.flowEntrySwitchState() ==
546 FlowEntrySwitchState.FE_SWITCH_UNKNOWN) {
547 flowEntry.setFlowEntrySwitchState(FlowEntrySwitchState.FE_SWITCH_NOT_UPDATED);
548 }
Pavlin Radoslavov1c24f222013-10-30 13:56:46 -0700549 if (! flowEntry.isValidFlowId())
550 flowEntry.setFlowId(new FlowId(flowPath.flowId().value()));
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700551 }
552
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800553 if (FlowDatabaseOperation.addFlow(this, dbHandlerApi, flowPath, flowId)) {
Pavlin Radoslavov1308dc62013-10-25 15:54:31 -0700554 datagridService.notificationSendFlowAdded(flowPath);
555 return true;
556 }
557 return false;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800558 }
559
560 /**
Pavlin Radoslavov9425f702013-04-04 19:55:07 -0700561 * Add a flow entry to the Network MAP.
562 *
563 * @param flowObj the corresponding Flow Path object for the Flow Entry.
564 * @param flowEntry the Flow Entry to install.
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700565 * @return the added Flow Entry object on success, otherwise null.
Pavlin Radoslavov9425f702013-04-04 19:55:07 -0700566 */
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700567 private IFlowEntry addFlowEntry(IFlowPath flowObj, FlowEntry flowEntry) {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800568 return FlowDatabaseOperation.addFlowEntry(this, dbHandlerInner,
569 flowObj, flowEntry);
Pavlin Radoslavov9425f702013-04-04 19:55:07 -0700570 }
571
572 /**
Pavlin Radoslavov7407ab52013-11-01 22:19:00 -0700573 * Delete a flow entry from the Network MAP.
574 *
575 * @param flowObj the corresponding Flow Path object for the Flow Entry.
576 * @param flowEntry the Flow Entry to delete.
577 * @return true on success, otherwise false.
578 */
579 private boolean deleteFlowEntry(IFlowPath flowObj, FlowEntry flowEntry) {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800580 return FlowDatabaseOperation.deleteFlowEntry(dbHandlerInner,
581 flowObj, flowEntry);
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800582 }
583
584 /**
Pavlin Radoslavovbaea9242013-05-08 00:20:09 +0000585 * Delete all previously added flows.
586 *
587 * @return true on success, otherwise false.
588 */
589 @Override
590 public boolean deleteAllFlows() {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800591 if (FlowDatabaseOperation.deleteAllFlows(dbHandlerApi)) {
Pavlin Radoslavov1308dc62013-10-25 15:54:31 -0700592 datagridService.notificationSendAllFlowsRemoved();
593 return true;
594 }
595 return false;
Pavlin Radoslavovbaea9242013-05-08 00:20:09 +0000596 }
597
598 /**
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800599 * Delete a previously added flow.
600 *
601 * @param flowId the Flow ID of the flow to delete.
602 * @return true on success, otherwise false.
603 */
604 @Override
605 public boolean deleteFlow(FlowId flowId) {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800606 if (FlowDatabaseOperation.deleteFlow(dbHandlerApi, flowId)) {
Pavlin Radoslavov1308dc62013-10-25 15:54:31 -0700607 datagridService.notificationSendFlowRemoved(flowId);
608 return true;
609 }
610 return false;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800611 }
612
613 /**
Pavlin Radoslavovbaea9242013-05-08 00:20:09 +0000614 * Clear the state for all previously added flows.
615 *
616 * @return true on success, otherwise false.
617 */
618 @Override
619 public boolean clearAllFlows() {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800620 if (FlowDatabaseOperation.clearAllFlows(dbHandlerApi)) {
Pavlin Radoslavov1308dc62013-10-25 15:54:31 -0700621 datagridService.notificationSendAllFlowsRemoved();
622 return true;
623 }
624 return false;
Pavlin Radoslavovbaea9242013-05-08 00:20:09 +0000625 }
626
627 /**
Pavlin Radoslavov916832f2013-03-14 17:48:41 -0700628 * Clear the state for a previously added flow.
629 *
630 * @param flowId the Flow ID of the flow to clear.
631 * @return true on success, otherwise false.
632 */
633 @Override
634 public boolean clearFlow(FlowId flowId) {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800635 if (FlowDatabaseOperation.clearFlow(dbHandlerApi, flowId)) {
Pavlin Radoslavov1308dc62013-10-25 15:54:31 -0700636 datagridService.notificationSendFlowRemoved(flowId);
637 return true;
638 }
639 return false;
Pavlin Radoslavov916832f2013-03-14 17:48:41 -0700640 }
641
642 /**
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800643 * Get a previously added flow.
644 *
645 * @param flowId the Flow ID of the flow to get.
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800646 * @return the Flow Path if found, otherwise null.
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800647 */
648 @Override
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800649 public FlowPath getFlow(FlowId flowId) {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800650 return FlowDatabaseOperation.getFlow(dbHandlerApi, flowId);
Pavlin Radoslavov661c86f2013-10-21 12:40:40 -0700651 }
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800652
Pavlin Radoslavov661c86f2013-10-21 12:40:40 -0700653 /**
654 * Get all installed flows by all installers.
655 *
656 * @return the Flow Paths if found, otherwise null.
657 */
658 @Override
659 public ArrayList<FlowPath> getAllFlows() {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800660 return FlowDatabaseOperation.getAllFlows(dbHandlerApi);
Pavlin Radoslavov706df052013-03-06 10:49:07 -0800661 }
662
663 /**
664 * Get all previously added flows by a specific installer for a given
665 * data path endpoints.
666 *
667 * @param installerId the Caller ID of the installer of the flow to get.
668 * @param dataPathEndpoints the data path endpoints of the flow to get.
669 * @return the Flow Paths if found, otherwise null.
670 */
671 @Override
672 public ArrayList<FlowPath> getAllFlows(CallerId installerId,
673 DataPathEndpoints dataPathEndpoints) {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800674 return FlowDatabaseOperation.getAllFlows(dbHandlerApi, installerId,
Pavlin Radoslavov661c86f2013-10-21 12:40:40 -0700675 dataPathEndpoints);
Pavlin Radoslavov706df052013-03-06 10:49:07 -0800676 }
677
678 /**
679 * Get all installed flows by all installers for given data path endpoints.
680 *
681 * @param dataPathEndpoints the data path endpoints of the flows to get.
682 * @return the Flow Paths if found, otherwise null.
683 */
684 @Override
685 public ArrayList<FlowPath> getAllFlows(DataPathEndpoints dataPathEndpoints) {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800686 return FlowDatabaseOperation.getAllFlows(dbHandlerApi,
687 dataPathEndpoints);
Pavlin Radoslavov706df052013-03-06 10:49:07 -0800688 }
689
690 /**
admin944ef4f2013-10-08 17:48:37 -0700691 * Get summary of all installed flows by all installers in a given range.
Umesh Krishnaswamy57a32a92013-03-21 14:21:15 -0700692 *
admin944ef4f2013-10-08 17:48:37 -0700693 * @param flowId the Flow ID of the first flow in the flow range to get.
HIGUCHI Yutaeb567aa2013-10-08 19:27:35 -0700694 * @param maxFlows the maximum number of flows to be returned.
Umesh Krishnaswamy57a32a92013-03-21 14:21:15 -0700695 * @return the Flow Paths if found, otherwise null.
696 */
697 @Override
Pavlin Radoslavov50e532e2013-10-20 02:07:51 -0700698 public ArrayList<IFlowPath> getAllFlowsSummary(FlowId flowId,
699 int maxFlows) {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800700 return FlowDatabaseOperation.getAllFlowsSummary(dbHandlerApi, flowId,
Pavlin Radoslavov661c86f2013-10-21 12:40:40 -0700701 maxFlows);
Umesh Krishnaswamy57a32a92013-03-21 14:21:15 -0700702 }
703
704 /**
admin944ef4f2013-10-08 17:48:37 -0700705 * Get all Flows information, without the associated Flow Entries.
706 *
707 * @return all Flows information, without the associated Flow Entries.
708 */
709 public ArrayList<IFlowPath> getAllFlowsWithoutFlowEntries() {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800710 return FlowDatabaseOperation.getAllFlowsWithoutFlowEntries(dbHandlerApi);
Pavlin Radoslavov99b12752013-04-04 17:28:06 -0700711 }
712
713 /**
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700714 * Add and maintain a shortest-path flow.
715 *
Pavlin Radoslavov67b3ef32013-04-03 02:44:48 -0700716 * NOTE: The Flow Path argument does NOT contain flow entries.
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700717 *
718 * @param flowPath the Flow Path with the endpoints and the match
719 * conditions to install.
Pavlin Radoslavove0575292013-03-28 05:35:25 -0700720 * @return the added shortest-path flow on success, otherwise null.
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700721 */
722 @Override
Pavlin Radoslavove0575292013-03-28 05:35:25 -0700723 public FlowPath addAndMaintainShortestPathFlow(FlowPath flowPath) {
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700724 //
Pavlin Radoslavov8b4b0592013-04-10 04:33:33 +0000725 // Don't do the shortest path computation here.
726 // Instead, let the Flow reconciliation thread take care of it.
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700727 //
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700728
Pavlin Radoslavove0575292013-03-28 05:35:25 -0700729 FlowId flowId = new FlowId();
Pavlin Radoslavovbcc86ef2013-10-26 12:06:25 -0700730 if (! addFlow(flowPath, flowId))
Pavlin Radoslavove0575292013-03-28 05:35:25 -0700731 return null;
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700732
Pavlin Radoslavovbcc86ef2013-10-26 12:06:25 -0700733 return (flowPath);
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700734 }
735
736 /**
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800737 * Get the collection of my switches.
738 *
739 * @return the collection of my switches.
740 */
741 public Map<Long, IOFSwitch> getMySwitches() {
742 return floodlightProvider.getSwitches();
743 }
744
745 /**
Pavlin Radoslavoved0f4a82013-11-04 16:38:36 -0800746 * Get the network topology.
747 *
748 * @return the network topology.
749 */
750 public Topology getTopology() {
751 return flowEventHandler.getTopology();
752 }
753
754 /**
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700755 * Reconcile a flow.
756 *
Brian O'Connor0d6ba512013-11-05 15:17:44 -0800757 * @param flowObj the flow that needs to be reconciled.
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700758 * @param newDataPath the new data path to use.
759 * @return true on success, otherwise false.
760 */
Pavlin Radoslavov1308dc62013-10-25 15:54:31 -0700761 private boolean reconcileFlow(IFlowPath flowObj, DataPath newDataPath) {
Pavlin Radoslavov1c24f222013-10-30 13:56:46 -0700762 String flowIdStr = flowObj.getFlowId();
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700763
764 //
765 // Set the incoming port matching and the outgoing port output
766 // actions for each flow entry.
767 //
Pavlin Radoslavov1bc2c472013-07-17 18:11:37 -0700768 int idx = 0;
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700769 for (FlowEntry flowEntry : newDataPath.flowEntries()) {
Pavlin Radoslavov1c24f222013-10-30 13:56:46 -0700770 flowEntry.setFlowId(new FlowId(flowIdStr));
771
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700772 // Mark the Flow Entry as not updated in the switch
773 flowEntry.setFlowEntrySwitchState(FlowEntrySwitchState.FE_SWITCH_NOT_UPDATED);
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700774 // Set the incoming port matching
775 FlowEntryMatch flowEntryMatch = new FlowEntryMatch();
776 flowEntry.setFlowEntryMatch(flowEntryMatch);
777 flowEntryMatch.enableInPort(flowEntry.inPort());
778
Pavlin Radoslavov1bc2c472013-07-17 18:11:37 -0700779 //
780 // Set the actions
781 //
782 FlowEntryActions flowEntryActions = flowEntry.flowEntryActions();
783 //
784 // If the first Flow Entry, copy the Flow Path actions to it
785 //
786 if (idx == 0) {
787 String actionsStr = flowObj.getActions();
788 if (actionsStr != null) {
789 FlowEntryActions flowActions = new FlowEntryActions(actionsStr);
790 for (FlowEntryAction action : flowActions.actions())
791 flowEntryActions.addAction(action);
792 }
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700793 }
Pavlin Radoslavov282f4ff2013-07-18 11:21:37 -0700794 idx++;
Pavlin Radoslavov1bc2c472013-07-17 18:11:37 -0700795 //
796 // Add the outgoing port output action
797 //
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700798 FlowEntryAction flowEntryAction = new FlowEntryAction();
799 flowEntryAction.setActionOutput(flowEntry.outPort());
Pavlin Radoslavov1bc2c472013-07-17 18:11:37 -0700800 flowEntryActions.addAction(flowEntryAction);
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700801 }
802
803 //
804 // Remove the old Flow Entries, and add the new Flow Entries
805 //
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700806 Iterable<IFlowEntry> flowEntries = flowObj.getFlowEntries();
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700807 for (IFlowEntry flowEntryObj : flowEntries) {
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700808 flowEntryObj.setUserState("FE_USER_DELETE");
Pavlin Radoslavov6fb76d12013-04-09 22:52:25 -0700809 flowEntryObj.setSwitchState("FE_SWITCH_NOT_UPDATED");
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700810 }
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700811 for (FlowEntry flowEntry : newDataPath.flowEntries()) {
Pavlin Radoslavov6fb76d12013-04-09 22:52:25 -0700812 addFlowEntry(flowObj, flowEntry);
Pavlin Radoslavov20d35a22013-04-05 10:16:15 -0700813 }
814
815 //
816 // Set the Data Path Summary
817 //
818 String dataPathSummaryStr = newDataPath.dataPathSummary();
819 flowObj.setDataPathSummary(dataPathSummaryStr);
820
821 return true;
822 }
823
824 /**
Pavlin Radoslavovdbaaf2e2013-03-29 04:25:55 -0700825 * Reconcile all flows in a set.
826 *
827 * @param flowObjSet the set of flows that need to be reconciliated.
828 */
Pavlin Radoslavov1308dc62013-10-25 15:54:31 -0700829 private void reconcileFlows(Iterable<IFlowPath> flowObjSet) {
Pavlin Radoslavovdbaaf2e2013-03-29 04:25:55 -0700830 if (! flowObjSet.iterator().hasNext())
831 return;
Pavlin Radoslavov0eeb15d2013-04-05 10:23:51 -0700832 // TODO: Not implemented/used yet.
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700833 }
834
835 /**
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700836 * Install a Flow Entry on a switch.
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700837 *
Pavlin Radoslavov2b858f82013-03-28 11:37:37 -0700838 * @param mySwitch the switch to install the Flow Entry into.
Pavlin Radoslavovec8e2e62013-04-04 18:18:29 -0700839 * @param flowObj the flow path object for the flow entry to install.
840 * @param flowEntryObj the flow entry object to install.
841 * @return true on success, otherwise false.
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700842 */
Pavlin Radoslavov1308dc62013-10-25 15:54:31 -0700843 private boolean installFlowEntry(IOFSwitch mySwitch, IFlowPath flowObj,
Pavlin Radoslavovec8e2e62013-04-04 18:18:29 -0700844 IFlowEntry flowEntryObj) {
Naoki Shiota1a37ca12013-11-18 10:55:23 -0800845 if (enableFlowPusher) {
846 return pusher.add(mySwitch, flowObj, flowEntryObj);
847 } else {
848 return FlowSwitchOperation.installFlowEntry(
849 floodlightProvider.getOFMessageFactory(),
850 messageDamper, mySwitch, flowObj, flowEntryObj);
851 }
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700852 }
853
854 /**
855 * Install a Flow Entry on a switch.
856 *
857 * @param mySwitch the switch to install the Flow Entry into.
Pavlin Radoslavov67b3ef32013-04-03 02:44:48 -0700858 * @param flowPath the flow path for the flow entry to install.
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700859 * @param flowEntry the flow entry to install.
860 * @return true on success, otherwise false.
861 */
Pavlin Radoslavov1308dc62013-10-25 15:54:31 -0700862 private boolean installFlowEntry(IOFSwitch mySwitch, FlowPath flowPath,
Pavlin Radoslavov67b3ef32013-04-03 02:44:48 -0700863 FlowEntry flowEntry) {
Naoki Shiota1a37ca12013-11-18 10:55:23 -0800864 if (enableFlowPusher) {
865 return pusher.add(mySwitch, flowPath, flowEntry);
866 } else {
867 return FlowSwitchOperation.installFlowEntry(
868 floodlightProvider.getOFMessageFactory(),
869 messageDamper, mySwitch, flowPath, flowEntry);
870 }
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700871 }
872
873 /**
874 * Remove a Flow Entry from a switch.
875 *
Pavlin Radoslavov2b858f82013-03-28 11:37:37 -0700876 * @param mySwitch the switch to remove the Flow Entry from.
Pavlin Radoslavov67b3ef32013-04-03 02:44:48 -0700877 * @param flowPath the flow path for the flow entry to remove.
Pavlin Radoslavov6b6f4a82013-03-28 03:30:00 -0700878 * @param flowEntry the flow entry to remove.
879 * @return true on success, otherwise false.
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700880 */
Pavlin Radoslavov1308dc62013-10-25 15:54:31 -0700881 private boolean removeFlowEntry(IOFSwitch mySwitch, FlowPath flowPath,
Pavlin Radoslavov67b3ef32013-04-03 02:44:48 -0700882 FlowEntry flowEntry) {
Pavlin Radoslavov6b6f4a82013-03-28 03:30:00 -0700883 //
884 // The installFlowEntry() method implements both installation
885 // and removal of flow entries.
886 //
Pavlin Radoslavov67b3ef32013-04-03 02:44:48 -0700887 return (installFlowEntry(mySwitch, flowPath, flowEntry));
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700888 }
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700889
890 /**
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800891 * Push modified Flow Entries to switches.
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700892 *
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800893 * NOTE: Only the Flow Entries to switches controlled by this instance
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700894 * are pushed.
895 *
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800896 * @param modifiedFlowEntries the collection of modified Flow Entries.
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700897 */
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800898 public void pushModifiedFlowEntriesToSwitches(
899 Collection<FlowPathEntryPair> modifiedFlowEntries) {
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700900 // TODO: For now, the pushing of Flow Entries is disabled
Pavlin Radoslavove0e48f72013-11-07 11:22:43 -0800901 if (! enableNotifications)
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700902 return;
903
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800904 if (modifiedFlowEntries.isEmpty())
905 return;
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700906
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800907 Map<Long, IOFSwitch> mySwitches = getMySwitches();
908
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800909 for (FlowPathEntryPair flowPair : modifiedFlowEntries) {
910 FlowPath flowPath = flowPair.flowPath;
911 FlowEntry flowEntry = flowPair.flowEntry;
912
913 IOFSwitch mySwitch = mySwitches.get(flowEntry.dpid().value());
914 if (mySwitch == null)
915 continue;
916
917 log.debug("Pushing Flow Entry To Switch: {}", flowEntry.toString());
918
919 //
920 // Install the Flow Entry into the switch
921 //
922 if (! installFlowEntry(mySwitch, flowPath, flowEntry)) {
923 String logMsg = "Cannot install Flow Entry " +
924 flowEntry.flowEntryId() +
925 " from Flow Path " + flowPath.flowId() +
926 " on switch " + flowEntry.dpid();
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700927 log.error(logMsg);
928 continue;
929 }
930
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800931 //
932 // NOTE: Here we assume that the switch has been
933 // successfully updated.
934 //
935 flowEntry.setFlowEntrySwitchState(FlowEntrySwitchState.FE_SWITCH_UPDATED);
936 }
937 }
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700938
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800939 /**
940 * Push modified Flow Entries to the datagrid.
941 *
942 * @param modifiedFlowEntries the collection of modified Flow Entries.
943 */
944 public void pushModifiedFlowEntriesToDatagrid(
945 Collection<FlowPathEntryPair> modifiedFlowEntries) {
946 // TODO: For now, the pushing of Flow Entries is disabled
Pavlin Radoslavove0e48f72013-11-07 11:22:43 -0800947 if (! enableNotifications)
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800948 return;
949
950 if (modifiedFlowEntries.isEmpty())
951 return;
952
953 Map<Long, IOFSwitch> mySwitches = getMySwitches();
954
955 for (FlowPathEntryPair flowPair : modifiedFlowEntries) {
956 FlowEntry flowEntry = flowPair.flowEntry;
957
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800958 IOFSwitch mySwitch = mySwitches.get(flowEntry.dpid().value());
959
960 //
961 // TODO: For now Flow Entries are removed by all instances,
962 // even if this Flow Entry is not for our switches.
963 //
964 // This is needed to handle the case a switch going down:
965 // it has no Master controller instance, hence no
966 // controller instance will cleanup its flow entries.
967 // This is sub-optimal: we need to elect a controller
968 // instance to handle the cleanup of such orphaned flow
969 // entries.
970 //
971 if (mySwitch == null) {
972 if (flowEntry.flowEntryUserState() !=
973 FlowEntryUserState.FE_USER_DELETE) {
974 continue;
975 }
976 if (! flowEntry.isValidFlowEntryId())
977 continue;
978 }
979
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800980 log.debug("Pushing Flow Entry To Datagrid: {}", flowEntry.toString());
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800981 //
982 // Write the Flow Entry to the Datagrid
983 //
984 switch (flowEntry.flowEntryUserState()) {
985 case FE_USER_ADD:
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700986 if (mySwitch == null)
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800987 break; // Install only flow entries for my switches
988 datagridService.notificationSendFlowEntryAdded(flowEntry);
989 break;
990 case FE_USER_MODIFY:
991 if (mySwitch == null)
992 break; // Install only flow entries for my switches
993 datagridService.notificationSendFlowEntryUpdated(flowEntry);
994 break;
995 case FE_USER_DELETE:
996 datagridService.notificationSendFlowEntryRemoved(flowEntry.flowEntryId());
997 break;
998 }
999 }
1000 }
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -07001001
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001002 /**
1003 * Push Flow Entries to the Network MAP.
1004 *
Pavlin Radoslavov63117172013-11-07 02:18:37 -08001005 * NOTE: The Flow Entries are pushed only on the instance responsible
1006 * for the first switch. This is to avoid database errors when multiple
1007 * instances are writing Flow Entries for the same Flow Path.
1008 *
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001009 * @param modifiedFlowEntries the collection of Flow Entries to push.
1010 */
1011 public void pushModifiedFlowEntriesToDatabase(
Pavlin Radoslavov63117172013-11-07 02:18:37 -08001012 Collection<FlowPathEntryPair> modifiedFlowEntries) {
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001013 // TODO: For now, the pushing of Flow Entries is disabled
Pavlin Radoslavove0e48f72013-11-07 11:22:43 -08001014 if (! enableNotifications)
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001015 return;
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -07001016
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001017 if (modifiedFlowEntries.isEmpty())
1018 return;
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -07001019
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001020 Map<Long, IOFSwitch> mySwitches = getMySwitches();
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -07001021
Pavlin Radoslavov63117172013-11-07 02:18:37 -08001022 for (FlowPathEntryPair flowPair : modifiedFlowEntries) {
1023 FlowPath flowPath = flowPair.flowPath;
1024 FlowEntry flowEntry = flowPair.flowEntry;
1025
1026 if (! flowEntry.isValidFlowEntryId())
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001027 continue;
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001028
1029 //
Pavlin Radoslavov63117172013-11-07 02:18:37 -08001030 // Push the changes only on the instance responsible for the
1031 // first switch.
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001032 //
Pavlin Radoslavov63117172013-11-07 02:18:37 -08001033 Dpid srcDpid = flowPath.dataPath().srcPort().dpid();
1034 IOFSwitch mySrcSwitch = mySwitches.get(srcDpid.value());
1035 if (mySrcSwitch == null)
1036 continue;
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001037
Pavlin Radoslavov63117172013-11-07 02:18:37 -08001038 log.debug("Pushing Flow Entry To Database: {}", flowEntry.toString());
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001039 //
1040 // Write the Flow Entry to the Network Map
1041 //
Pavlin Radoslavov63117172013-11-07 02:18:37 -08001042 // NOTE: We try a number of times, in case somehow some other
1043 // instances are writing at the same time.
1044 // Apparently, if other instances are writing at the same time
1045 // this will trigger an error.
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001046 //
1047 for (int i = 0; i < 6; i++) {
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -07001048 try {
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001049 //
1050 // Find the Flow Path in the Network MAP.
1051 //
1052 // NOTE: The Flow Path might not be found if the Flow was
1053 // just removed by some other controller instance.
1054 //
1055 IFlowPath flowObj =
1056 dbHandlerInner.searchFlowPath(flowEntry.flowId());
1057 if (flowObj == null) {
1058 String logMsg = "Cannot find Network MAP entry for Flow Path " + flowEntry.flowId();
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -07001059 log.error(logMsg);
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001060 break;
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -07001061 }
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001062
1063 // Write the Flow Entry
Pavlin Radoslavov7407ab52013-11-01 22:19:00 -07001064 switch (flowEntry.flowEntryUserState()) {
1065 case FE_USER_ADD:
1066 // FALLTHROUGH
1067 case FE_USER_MODIFY:
1068 if (addFlowEntry(flowObj, flowEntry) == null) {
1069 String logMsg = "Cannot write to Network MAP Flow Entry " +
1070 flowEntry.flowEntryId() +
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001071 " from Flow Path " + flowEntry.flowId() +
Pavlin Radoslavov7407ab52013-11-01 22:19:00 -07001072 " on switch " + flowEntry.dpid();
1073 log.error(logMsg);
1074 }
1075 break;
1076 case FE_USER_DELETE:
1077 if (deleteFlowEntry(flowObj, flowEntry) == false) {
1078 String logMsg = "Cannot remove from Network MAP Flow Entry " +
1079 flowEntry.flowEntryId() +
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001080 " from Flow Path " + flowEntry.flowId() +
Pavlin Radoslavov7407ab52013-11-01 22:19:00 -07001081 " on switch " + flowEntry.dpid();
1082 log.error(logMsg);
1083 }
1084 break;
1085 }
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001086
1087 // Commit to the database
1088 dbHandlerInner.commit();
1089 break; // Success
1090
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -07001091 } catch (Exception e) {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -08001092 log.debug("Exception writing Flow Entry to Network MAP: ", e);
1093 dbHandlerInner.rollback();
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -08001094 // Wait a bit (random value [1ms, 20ms] and try again
1095 int delay = 1 + randomGenerator.nextInt() % 20;
1096 try {
1097 Thread.sleep(delay);
1098 } catch (Exception e0) {
Pavlin Radoslavov7407ab52013-11-01 22:19:00 -07001099 }
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -07001100 }
1101 }
1102 }
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -07001103 }
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -08001104}