blob: d794cedad74c21f6d5127e18b41bcd2bba67aca2 [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;
Pavlin Radoslavove79c19a2013-12-06 09:28:15 -08005import java.util.Collections;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -08006import java.util.HashMap;
Masayoshi Kobayashic9da09e2013-03-26 20:52:02 +00007import java.util.LinkedList;
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -08008import java.util.List;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -08009import java.util.Map;
Pavlin Radoslavov0b22d0e2013-04-02 01:12:46 +000010import java.util.Random;
Pavlin Radoslavov584bd112013-11-21 20:59:33 -080011import java.util.concurrent.BlockingQueue;
Pavlin Radoslavov584bd112013-11-21 20:59:33 -080012import java.util.concurrent.LinkedBlockingQueue;
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080013import java.util.concurrent.ScheduledExecutorService;
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080014import java.util.concurrent.TimeUnit;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080015
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080016import net.floodlightcontroller.core.IFloodlightProviderService;
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080017import net.floodlightcontroller.core.IOFSwitch;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080018import net.floodlightcontroller.core.module.FloodlightModuleContext;
19import net.floodlightcontroller.core.module.FloodlightModuleException;
20import net.floodlightcontroller.core.module.IFloodlightModule;
21import net.floodlightcontroller.core.module.IFloodlightService;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080022import net.floodlightcontroller.restserver.IRestApiService;
Pavlin Radoslavov05378272013-10-19 23:23:05 -070023import net.onrc.onos.datagrid.IDatagridService;
Pankaj Berde38646d62013-06-21 11:34:04 -070024import net.onrc.onos.graph.GraphDBOperation;
HIGUCHI Yuta20514902013-06-12 11:24:16 -070025import net.onrc.onos.ofcontroller.core.INetMapStorage;
26import net.onrc.onos.ofcontroller.core.INetMapTopologyObjects.IFlowEntry;
27import net.onrc.onos.ofcontroller.core.INetMapTopologyObjects.IFlowPath;
Pavlin Radoslavove9a3ef92013-10-18 18:46:45 -070028import net.onrc.onos.ofcontroller.floodlightlistener.INetworkGraphService;
HIGUCHI Yuta60a10142013-06-14 15:50:10 -070029import net.onrc.onos.ofcontroller.flowmanager.web.FlowWebRoutable;
Brian O'Connor8c166a72013-11-14 18:41:48 -080030import net.onrc.onos.ofcontroller.flowprogrammer.IFlowPusherService;
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 Radoslavovbc96ae12013-11-05 08:44:02 -080042 protected GraphDBOperation dbHandlerApi;
43 protected GraphDBOperation dbHandlerInner;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080044
Jonathan Hart50a94982013-04-10 14:49:51 -070045 protected volatile IFloodlightProviderService floodlightProvider;
Pavlin Radoslavov05378272013-10-19 23:23:05 -070046 protected volatile IDatagridService datagridService;
47 protected IRestApiService restApi;
Pavlin Radoslavov571cff92013-03-20 02:01:32 -070048 protected FloodlightModuleContext context;
Pavlin Radoslavov9a859022013-10-30 10:08:24 -070049 protected FlowEventHandler flowEventHandler;
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080050
Brian O'Connor8c166a72013-11-14 18:41:48 -080051 protected IFlowPusherService pusher;
Naoki Shiota5c8d19f2013-11-05 15:52:38 -080052
Pavlin Radoslavov0b22d0e2013-04-02 01:12:46 +000053 // Flow Entry ID generation state
54 private static Random randomGenerator = new Random();
55 private static int nextFlowEntryIdPrefix = 0;
56 private static int nextFlowEntryIdSuffix = 0;
Pavlin Radoslavov0b22d0e2013-04-02 01:12:46 +000057
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080058 /** The logger. */
Yuta HIGUCHI6ac8d182013-10-22 15:24:56 -070059 private final static Logger log = LoggerFactory.getLogger(FlowManager.class);
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080060
Pavlin Radoslavov584bd112013-11-21 20:59:33 -080061 // The queue to write Flow Entries to the database
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -080062 private BlockingQueue<FlowPath> flowPathsToDatabaseQueue =
63 new LinkedBlockingQueue<FlowPath>();
Pavlin Radoslavov584bd112013-11-21 20:59:33 -080064 FlowDatabaseWriter flowDatabaseWriter;
65
admin944ef4f2013-10-08 17:48:37 -070066 /**
67 * Initialize the Flow Manager.
68 *
69 * @param conf the Graph Database configuration string.
70 */
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080071 @Override
72 public void init(String conf) {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -080073 dbHandlerApi = new GraphDBOperation(conf);
74 dbHandlerInner = new GraphDBOperation(conf);
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080075 }
76
admin944ef4f2013-10-08 17:48:37 -070077 /**
78 * Shutdown the Flow Manager operation.
79 */
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080080 public void finalize() {
Toshio Koide9fe1cb22013-06-13 13:51:11 -070081 close();
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080082 }
83
admin944ef4f2013-10-08 17:48:37 -070084 /**
85 * Shutdown the Flow Manager operation.
86 */
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080087 @Override
88 public void close() {
Pavlin Radoslavov9a859022013-10-30 10:08:24 -070089 datagridService.deregisterFlowEventHandlerService(flowEventHandler);
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -080090 dbHandlerApi.close();
91 dbHandlerInner.close();
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080092 }
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080093
admin944ef4f2013-10-08 17:48:37 -070094 /**
95 * Get the collection of offered module services.
96 *
97 * @return the collection of offered module services.
98 */
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080099 @Override
100 public Collection<Class<? extends IFloodlightService>> getModuleServices() {
101 Collection<Class<? extends IFloodlightService>> l =
102 new ArrayList<Class<? extends IFloodlightService>>();
103 l.add(IFlowService.class);
104 return l;
105 }
106
admin944ef4f2013-10-08 17:48:37 -0700107 /**
108 * Get the collection of implemented services.
109 *
110 * @return the collection of implemented services.
111 */
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800112 @Override
113 public Map<Class<? extends IFloodlightService>, IFloodlightService>
114 getServiceImpls() {
115 Map<Class<? extends IFloodlightService>,
Pavlin Radoslavove9a3ef92013-10-18 18:46:45 -0700116 IFloodlightService> m =
117 new HashMap<Class<? extends IFloodlightService>,
118 IFloodlightService>();
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800119 m.put(IFlowService.class, this);
120 return m;
121 }
122
admin944ef4f2013-10-08 17:48:37 -0700123 /**
124 * Get the collection of modules this module depends on.
125 *
126 * @return the collection of modules this module depends on.
127 */
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800128 @Override
129 public Collection<Class<? extends IFloodlightService>>
Pavlin Radoslavov50e532e2013-10-20 02:07:51 -0700130 getModuleDependencies() {
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800131 Collection<Class<? extends IFloodlightService>> l =
132 new ArrayList<Class<? extends IFloodlightService>>();
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800133 l.add(IFloodlightProviderService.class);
Pavlin Radoslavove9a3ef92013-10-18 18:46:45 -0700134 l.add(INetworkGraphService.class);
Pavlin Radoslavov05378272013-10-19 23:23:05 -0700135 l.add(IDatagridService.class);
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800136 l.add(IRestApiService.class);
137 return l;
138 }
139
admin944ef4f2013-10-08 17:48:37 -0700140 /**
141 * Initialize the module.
142 *
143 * @param context the module context to use for the initialization.
144 */
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800145 @Override
146 public void init(FloodlightModuleContext context)
147 throws FloodlightModuleException {
Pavlin Radoslavov571cff92013-03-20 02:01:32 -0700148 this.context = context;
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800149 floodlightProvider = context.getServiceImpl(IFloodlightProviderService.class);
Pavlin Radoslavov05378272013-10-19 23:23:05 -0700150 datagridService = context.getServiceImpl(IDatagridService.class);
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800151 restApi = context.getServiceImpl(IRestApiService.class);
Pavlin Radoslavov939ca6b2013-12-03 12:35:37 -0800152 pusher = context.getServiceImpl(IFlowPusherService.class);
Brian O'Connor8c166a72013-11-14 18:41:48 -0800153
Pavlin Radoslavov50e532e2013-10-20 02:07:51 -0700154 this.init("");
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800155 }
156
admin944ef4f2013-10-08 17:48:37 -0700157 /**
158 * Get the next Flow Entry ID to use.
159 *
160 * @return the next Flow Entry ID to use.
161 */
Naoki Shiota4e77de92013-11-18 17:29:54 -0800162 @Override
Pavlin Radoslavov661c86f2013-10-21 12:40:40 -0700163 public synchronized long getNextFlowEntryId() {
Pavlin Radoslavov0b22d0e2013-04-02 01:12:46 +0000164 //
165 // Generate the next Flow Entry ID.
166 // NOTE: For now, the higher 32 bits are random, and
167 // the lower 32 bits are sequential.
168 // In the future, we need a better allocation mechanism.
169 //
170 if ((nextFlowEntryIdSuffix & 0xffffffffL) == 0xffffffffL) {
171 nextFlowEntryIdPrefix = randomGenerator.nextInt();
172 nextFlowEntryIdSuffix = 0;
173 } else {
174 nextFlowEntryIdSuffix++;
175 }
176 long result = (long)nextFlowEntryIdPrefix << 32;
177 result = result | (0xffffffffL & nextFlowEntryIdSuffix);
178 return result;
179 }
180
admin944ef4f2013-10-08 17:48:37 -0700181 /**
182 * Startup module operation.
183 *
184 * @param context the module context to use for the startup.
185 */
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800186 @Override
187 public void startUp(FloodlightModuleContext context) {
admin944ef4f2013-10-08 17:48:37 -0700188 restApi.addRestletRoutable(new FlowWebRoutable());
Pavlin Radoslavov50e532e2013-10-20 02:07:51 -0700189
admin944ef4f2013-10-08 17:48:37 -0700190 // Initialize the Flow Entry ID generator
191 nextFlowEntryIdPrefix = randomGenerator.nextInt();
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800192
193 //
194 // The thread to write to the database
195 //
196 flowDatabaseWriter = new FlowDatabaseWriter(this,
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800197 flowPathsToDatabaseQueue);
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800198 flowDatabaseWriter.start();
199
Pavlin Radoslavov6b79f2b2013-10-26 21:31:10 -0700200 //
Pavlin Radoslavovc9da5322013-11-22 11:59:46 -0800201 // The Flow Event Handler thread:
202 // - create
203 // - register with the Datagrid Service
204 // - startup
Pavlin Radoslavov6b79f2b2013-10-26 21:31:10 -0700205 //
Pavlin Radoslavov9a859022013-10-30 10:08:24 -0700206 flowEventHandler = new FlowEventHandler(this, datagridService);
207 datagridService.registerFlowEventHandlerService(flowEventHandler);
Pavlin Radoslavov9a859022013-10-30 10:08:24 -0700208 flowEventHandler.start();
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800209 }
210
211 /**
212 * Add a flow.
213 *
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800214 * @param flowPath the Flow Path to install.
Pavlin Radoslavov051abb42013-12-05 17:24:50 -0800215 * @return the Flow ID on success, otherwise null.
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800216 */
217 @Override
Pavlin Radoslavov051abb42013-12-05 17:24:50 -0800218 public FlowId addFlow(FlowPath flowPath) {
219
220 // Allocate the Flow ID if necessary
Pavlin Radoslavov892dd182013-12-05 23:33:15 -0800221 if (! flowPath.isValidFlowId()) {
Pavlin Radoslavov051abb42013-12-05 17:24:50 -0800222 long id = getNextFlowEntryId();
223 flowPath.setFlowId(new FlowId(id));
224 }
225
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700226 //
Pavlin Radoslavov1c24f222013-10-30 13:56:46 -0700227 // NOTE: We need to explicitly initialize some of the state,
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700228 // in case the application didn't do it.
229 //
230 for (FlowEntry flowEntry : flowPath.flowEntries()) {
231 if (flowEntry.flowEntrySwitchState() ==
232 FlowEntrySwitchState.FE_SWITCH_UNKNOWN) {
233 flowEntry.setFlowEntrySwitchState(FlowEntrySwitchState.FE_SWITCH_NOT_UPDATED);
234 }
Pavlin Radoslavov1c24f222013-10-30 13:56:46 -0700235 if (! flowEntry.isValidFlowId())
236 flowEntry.setFlowId(new FlowId(flowPath.flowId().value()));
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700237 }
238
Pavlin Radoslavov051abb42013-12-05 17:24:50 -0800239 if (FlowDatabaseOperation.addFlow(dbHandlerApi, flowPath)) {
Pavlin Radoslavov1308dc62013-10-25 15:54:31 -0700240 datagridService.notificationSendFlowAdded(flowPath);
Pavlin Radoslavov051abb42013-12-05 17:24:50 -0800241 return flowPath.flowId();
Pavlin Radoslavov1308dc62013-10-25 15:54:31 -0700242 }
Pavlin Radoslavov051abb42013-12-05 17:24:50 -0800243 return null;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800244 }
245
246 /**
Pavlin Radoslavovbaea9242013-05-08 00:20:09 +0000247 * Delete all previously added flows.
248 *
249 * @return true on success, otherwise false.
250 */
251 @Override
252 public boolean deleteAllFlows() {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800253 if (FlowDatabaseOperation.deleteAllFlows(dbHandlerApi)) {
Pavlin Radoslavov1308dc62013-10-25 15:54:31 -0700254 datagridService.notificationSendAllFlowsRemoved();
255 return true;
256 }
257 return false;
Pavlin Radoslavovbaea9242013-05-08 00:20:09 +0000258 }
259
260 /**
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800261 * Delete a previously added flow.
262 *
263 * @param flowId the Flow ID of the flow to delete.
264 * @return true on success, otherwise false.
265 */
266 @Override
267 public boolean deleteFlow(FlowId flowId) {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800268 if (FlowDatabaseOperation.deleteFlow(dbHandlerApi, flowId)) {
Pavlin Radoslavov1308dc62013-10-25 15:54:31 -0700269 datagridService.notificationSendFlowRemoved(flowId);
270 return true;
271 }
272 return false;
Pavlin Radoslavov916832f2013-03-14 17:48:41 -0700273 }
274
275 /**
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800276 * Get a previously added flow.
277 *
278 * @param flowId the Flow ID of the flow to get.
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800279 * @return the Flow Path if found, otherwise null.
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800280 */
281 @Override
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800282 public FlowPath getFlow(FlowId flowId) {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800283 return FlowDatabaseOperation.getFlow(dbHandlerApi, flowId);
Pavlin Radoslavov661c86f2013-10-21 12:40:40 -0700284 }
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800285
Pavlin Radoslavov661c86f2013-10-21 12:40:40 -0700286 /**
287 * Get all installed flows by all installers.
288 *
289 * @return the Flow Paths if found, otherwise null.
290 */
291 @Override
292 public ArrayList<FlowPath> getAllFlows() {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800293 return FlowDatabaseOperation.getAllFlows(dbHandlerApi);
Pavlin Radoslavov706df052013-03-06 10:49:07 -0800294 }
295
296 /**
admin944ef4f2013-10-08 17:48:37 -0700297 * Get summary of all installed flows by all installers in a given range.
Umesh Krishnaswamy57a32a92013-03-21 14:21:15 -0700298 *
admin944ef4f2013-10-08 17:48:37 -0700299 * @param flowId the Flow ID of the first flow in the flow range to get.
HIGUCHI Yutaeb567aa2013-10-08 19:27:35 -0700300 * @param maxFlows the maximum number of flows to be returned.
Umesh Krishnaswamy57a32a92013-03-21 14:21:15 -0700301 * @return the Flow Paths if found, otherwise null.
302 */
303 @Override
Pavlin Radoslavov4ef6ba22013-11-22 19:32:58 -0800304 public ArrayList<FlowPath> getAllFlowsSummary(FlowId flowId,
305 int maxFlows) {
Pavlin Radoslavove79c19a2013-12-06 09:28:15 -0800306 ArrayList<FlowPath> flowPaths =
307 FlowDatabaseOperation.getAllFlows(dbHandlerApi);
308
309 // Truncate each Flow Path and Flow Entry
310 for (FlowPath flowPath : flowPaths) {
311 flowPath.setFlowEntryMatch(null);
312 flowPath.setFlowEntryActions(null);
313 for (FlowEntry flowEntry : flowPath.flowEntries()) {
314 flowEntry.setFlowEntryMatch(null);
315 flowEntry.setFlowEntryActions(null);
316 }
317 }
318
319 Collections.sort(flowPaths);
320
321 return flowPaths;
Umesh Krishnaswamy57a32a92013-03-21 14:21:15 -0700322 }
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700323
324 /**
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800325 * Get the collection of my switches.
326 *
327 * @return the collection of my switches.
328 */
329 public Map<Long, IOFSwitch> getMySwitches() {
330 return floodlightProvider.getSwitches();
331 }
332
333 /**
Pavlin Radoslavoved0f4a82013-11-04 16:38:36 -0800334 * Get the network topology.
335 *
336 * @return the network topology.
337 */
338 public Topology getTopology() {
339 return flowEventHandler.getTopology();
340 }
341
342 /**
Pavlin Radoslavov4df85ae2013-11-26 14:48:32 -0800343 * Inform the Flow Manager that a Flow Entry on switch expired.
344 *
Pavlin Radoslavov3bd5ccf2013-11-26 15:10:21 -0800345 * @param sw the switch the Flow Entry expired on.
Pavlin Radoslavov4df85ae2013-11-26 14:48:32 -0800346 * @param flowEntryId the Flow Entry ID of the expired Flow Entry.
347 */
Brian O'Connor4f0b60c2013-11-26 15:00:04 -0800348 public void flowEntryOnSwitchExpired(IOFSwitch sw, FlowEntryId flowEntryId) {
Pavlin Radoslavov4df85ae2013-11-26 14:48:32 -0800349 // TODO: Not implemented yet
350 }
351
352 /**
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800353 * Inform the Flow Manager that a collection of Flow Entries have been
354 * pushed to a switch.
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800355 *
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800356 * @param entries the collection of <IOFSwitch, FlowEntry> pairs
357 * that have been pushed.
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800358 */
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800359 public void flowEntriesPushedToSwitch(
360 Collection<Pair<IOFSwitch, FlowEntry>> entries) {
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800361
362 //
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800363 // Process all entries
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800364 //
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800365 for (Pair<IOFSwitch, FlowEntry> entry : entries) {
Pavlin Radoslavov4535bc12013-12-05 10:43:49 -0800366 IOFSwitch sw = entry.first;
367 FlowEntry flowEntry = entry.second;
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800368
369 //
370 // Mark the Flow Entry that it has been pushed to the switch
371 //
372 flowEntry.setFlowEntrySwitchState(FlowEntrySwitchState.FE_SWITCH_UPDATED);
373
374 //
375 // Write the Flow Entry to the Datagrid
376 //
377 switch (flowEntry.flowEntryUserState()) {
378 case FE_USER_ADD:
379 datagridService.notificationSendFlowEntryAdded(flowEntry);
380 break;
381 case FE_USER_MODIFY:
382 datagridService.notificationSendFlowEntryUpdated(flowEntry);
383 break;
384 case FE_USER_DELETE:
385 datagridService.notificationSendFlowEntryRemoved(flowEntry.flowEntryId());
386 break;
387 }
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800388 }
389 }
390
391 /**
Pavlin Radoslavova0c16362013-12-04 13:18:08 -0800392 * Push modified Flow-related state as appropriate.
393 *
394 * @param modifiedFlowPaths the collection of modified Flow Paths.
395 * @param modifiedFlowEntries the collection of modified Flow Entries.
396 */
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800397 void pushModifiedFlowState(Collection<FlowPath> modifiedFlowPaths,
398 Collection<FlowEntry> modifiedFlowEntries) {
Pavlin Radoslavova0c16362013-12-04 13:18:08 -0800399 //
400 // Push the modified Flow state:
401 // - Flow Entries to switches and the datagrid
402 // - Flow Paths to the database
403 //
404 pushModifiedFlowEntriesToSwitches(modifiedFlowEntries);
Pavlin Radoslavova0c16362013-12-04 13:18:08 -0800405 pushModifiedFlowPathsToDatabase(modifiedFlowPaths);
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800406 cleanupDeletedFlowEntriesFromDatagrid(modifiedFlowEntries);
Pavlin Radoslavova0c16362013-12-04 13:18:08 -0800407 }
408
409 /**
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800410 * Push modified Flow Entries to switches.
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700411 *
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800412 * NOTE: Only the Flow Entries to switches controlled by this instance
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700413 * are pushed.
414 *
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800415 * @param modifiedFlowEntries the collection of modified Flow Entries.
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700416 */
Pavlin Radoslavova0c16362013-12-04 13:18:08 -0800417 private void pushModifiedFlowEntriesToSwitches(
Pavlin Radoslavovafc4aa92013-12-04 12:44:23 -0800418 Collection<FlowEntry> modifiedFlowEntries) {
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800419 if (modifiedFlowEntries.isEmpty())
420 return;
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700421
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800422 List<Pair<IOFSwitch, FlowEntry>> entries =
423 new LinkedList<Pair<IOFSwitch, FlowEntry>>();
424
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800425 Map<Long, IOFSwitch> mySwitches = getMySwitches();
426
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800427 //
428 // Create a collection of my Flow Entries to push
429 //
Pavlin Radoslavovafc4aa92013-12-04 12:44:23 -0800430 for (FlowEntry flowEntry : modifiedFlowEntries) {
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800431 IOFSwitch mySwitch = mySwitches.get(flowEntry.dpid().value());
432 if (mySwitch == null)
433 continue;
434
Pavlin Radoslavovaca49d12013-12-04 19:49:17 -0800435 //
436 // Assign Flow Entry IDs if missing.
437 //
438 // NOTE: This is an additional safeguard, in case the
439 // mySwitches set has changed (after the Flow Entry IDs
440 // assignments by the caller).
441 //
442 if (! flowEntry.isValidFlowEntryId()) {
443 long id = getNextFlowEntryId();
444 flowEntry.setFlowEntryId(new FlowEntryId(id));
445 }
446
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800447 log.debug("Pushing Flow Entry To Switch: {}", flowEntry.toString());
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800448 entries.add(new Pair<IOFSwitch, FlowEntry>(mySwitch, flowEntry));
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800449 }
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800450
451 pusher.pushFlowEntries(entries);
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800452 }
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700453
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800454 /**
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800455 * Cleanup deleted Flow Entries from the datagrid.
456 *
457 * NOTE: We cleanup only the Flow Entries that are not for our switches.
458 * This is needed to handle the case a switch going down:
459 * It has no Master controller instance, hence no controller instance
460 * will cleanup its flow entries.
461 * This is sub-optimal: we need to elect a controller instance to handle
462 * the cleanup of such orphaned flow entries.
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800463 *
464 * @param modifiedFlowEntries the collection of modified Flow Entries.
465 */
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800466 private void cleanupDeletedFlowEntriesFromDatagrid(
Pavlin Radoslavovafc4aa92013-12-04 12:44:23 -0800467 Collection<FlowEntry> modifiedFlowEntries) {
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800468 if (modifiedFlowEntries.isEmpty())
469 return;
470
471 Map<Long, IOFSwitch> mySwitches = getMySwitches();
472
Pavlin Radoslavovafc4aa92013-12-04 12:44:23 -0800473 for (FlowEntry flowEntry : modifiedFlowEntries) {
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800474 //
475 // Process only Flow Entries that should be deleted and have
476 // a valid Flow Entry ID.
477 //
Pavlin Radoslavov426a8532013-12-02 17:32:21 -0800478 if (! flowEntry.isValidFlowEntryId())
479 continue;
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800480 if (flowEntry.flowEntryUserState() !=
481 FlowEntryUserState.FE_USER_DELETE) {
482 continue;
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800483 }
484
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800485 //
486 // NOTE: The deletion of Flow Entries for my switches is handled
487 // elsewhere.
488 //
489 IOFSwitch mySwitch = mySwitches.get(flowEntry.dpid().value());
490 if (mySwitch != null)
491 continue;
492
493 log.debug("Pushing cleanup of Flow Entry To Datagrid: {}", flowEntry.toString());
494
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800495 //
496 // Write the Flow Entry to the Datagrid
497 //
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800498 datagridService.notificationSendFlowEntryRemoved(flowEntry.flowEntryId());
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800499 }
500 }
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700501
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800502 /**
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800503 * Class to implement writing to the database in a separate thread.
504 */
505 class FlowDatabaseWriter extends Thread {
506 private FlowManager flowManager;
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800507 private BlockingQueue<FlowPath> blockingQueue;
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800508
509 /**
510 * Constructor.
511 *
512 * @param flowManager the Flow Manager to use.
513 * @param blockingQueue the blocking queue to use.
514 */
515 FlowDatabaseWriter(FlowManager flowManager,
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800516 BlockingQueue<FlowPath> blockingQueue) {
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800517 this.flowManager = flowManager;
518 this.blockingQueue = blockingQueue;
519 }
520
521 /**
522 * Run the thread.
523 */
524 @Override
525 public void run() {
526 //
527 // The main loop
528 //
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800529 Collection<FlowPath> collection = new LinkedList<FlowPath>();
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800530 try {
531 while (true) {
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800532 FlowPath flowPath = blockingQueue.take();
533 collection.add(flowPath);
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800534 blockingQueue.drainTo(collection);
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800535 flowManager.writeModifiedFlowPathsToDatabase(collection);
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800536 collection.clear();
537 }
538 } catch (Exception exception) {
539 log.debug("Exception writing to the Database: ", exception);
540 }
541 }
542 }
543
544 /**
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800545 * Push Flow Paths to the Network MAP.
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800546 *
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800547 * NOTE: The complete Flow Paths are pushed only on the instance
548 * responsible for the first switch. This is to avoid database errors
549 * when multiple instances are writing Flow Entries for the same Flow Path.
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800550 *
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800551 * @param modifiedFlowPaths the collection of Flow Paths to push.
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800552 */
Pavlin Radoslavova0c16362013-12-04 13:18:08 -0800553 private void pushModifiedFlowPathsToDatabase(
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800554 Collection<FlowPath> modifiedFlowPaths) {
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800555 //
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800556 // We only add the Flow Paths to the Database Queue.
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800557 // The FlowDatabaseWriter thread is responsible for the actual writing.
558 //
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800559 flowPathsToDatabaseQueue.addAll(modifiedFlowPaths);
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800560 }
561
562 /**
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800563 * Write Flow Paths to the Network MAP.
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800564 *
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800565 * NOTE: The complete Flow Paths are pushed only on the instance
566 * responsible for the first switch. This is to avoid database errors
567 * when multiple instances are writing Flow Entries for the same Flow Path.
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800568 *
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800569 * @param modifiedFlowPaths the collection of Flow Paths to write.
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800570 */
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800571 private void writeModifiedFlowPathsToDatabase(
572 Collection<FlowPath> modifiedFlowPaths) {
573 if (modifiedFlowPaths.isEmpty())
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800574 return;
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700575
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800576 Map<Long, IOFSwitch> mySwitches = getMySwitches();
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700577
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800578 for (FlowPath flowPath : modifiedFlowPaths) {
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800579 //
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800580 // Push the changes only on the instance responsible for the
581 // first switch.
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800582 //
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800583 Dpid srcDpid = flowPath.dataPath().srcPort().dpid();
584 IOFSwitch mySrcSwitch = mySwitches.get(srcDpid.value());
585 if (mySrcSwitch == null)
586 continue;
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800587
588 //
Pavlin Radoslavovef545052013-12-05 15:17:25 -0800589 // Delete the Flow Path from the Network Map
590 //
591 if (flowPath.flowPathUserState() ==
592 FlowPathUserState.FP_USER_DELETE) {
593 log.debug("Deleting Flow Path From Database: {}",
594 flowPath.toString());
595
596 try {
597 if (! FlowDatabaseOperation.deleteFlow(
598 dbHandlerInner,
599 flowPath.flowId())) {
600 log.error("Cannot delete Flow Path {} from Network Map",
601 flowPath.flowId());
602 }
603 } catch (Exception e) {
604 log.error("Exception deleting Flow Path from Network MAP: {}", e);
605 }
606 continue;
607 }
608
609 //
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800610 // Test whether all Flow Entries are valid
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800611 //
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800612 boolean allValid = true;
613 for (FlowEntry flowEntry : flowPath.flowEntries()) {
614 if (flowEntry.flowEntryUserState() ==
615 FlowEntryUserState.FE_USER_DELETE) {
616 continue;
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700617 }
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800618 if (! flowEntry.isValidFlowEntryId()) {
619 allValid = false;
620 break;
621 }
622 }
623 if (! allValid)
624 continue;
625
626 log.debug("Pushing Flow Path To Database: {}", flowPath.toString());
627
628 //
629 // Write the Flow Path to the Network Map
630 //
631 try {
Pavlin Radoslavov051abb42013-12-05 17:24:50 -0800632 if (! FlowDatabaseOperation.addFlow(dbHandlerInner, flowPath)) {
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800633 String logMsg = "Cannot write to Network Map Flow Path " +
634 flowPath.flowId();
635 log.error(logMsg);
636 }
637 } catch (Exception e) {
638 log.error("Exception writing Flow Path to Network MAP: ", e);
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700639 }
640 }
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700641 }
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800642}