blob: f8bfc116e1dbc0e62556fdfd01bde06cf40cff5d [file] [log] [blame]
Sangho Shin2f263692014-09-15 14:09:41 -07001package net.onrc.onos.apps.segmentrouting;
2
Sangho Shin9c0f4c32014-09-26 16:02:38 -07003import java.io.IOException;
Sangho Shin1aa93542014-09-22 09:49:44 -07004import java.net.Inet4Address;
5import java.net.InetAddress;
6import java.net.UnknownHostException;
Sangho Shin2f263692014-09-15 14:09:41 -07007import java.util.ArrayList;
Srikanth Vavilapalli1f6a5742014-10-21 13:45:11 -07008import java.util.Arrays;
Sangho Shin2f263692014-09-15 14:09:41 -07009import java.util.Collection;
Srikanth Vavilapalli363f1dc2014-09-22 14:30:23 -070010import java.util.HashMap;
Sangho Shin5be3e532014-10-03 17:20:58 -070011import java.util.HashSet;
Sangho Shin2f263692014-09-15 14:09:41 -070012import java.util.Iterator;
13import java.util.List;
14import java.util.Map;
Sangho Shin5be3e532014-10-03 17:20:58 -070015import java.util.Set;
Sangho Shin61535402014-10-01 11:37:14 -070016import java.util.concurrent.ConcurrentLinkedQueue;
Sangho Shin11d4e0f2014-09-30 12:00:33 -070017import java.util.concurrent.ExecutionException;
Sangho Shin43cee112014-09-25 16:43:34 -070018import java.util.concurrent.ScheduledExecutorService;
19import java.util.concurrent.TimeUnit;
Sangho Shin11d4e0f2014-09-30 12:00:33 -070020import java.util.concurrent.TimeoutException;
Sangho Shin2f263692014-09-15 14:09:41 -070021
22import net.floodlightcontroller.core.IFloodlightProviderService;
Sangho Shin9c0f4c32014-09-26 16:02:38 -070023import net.floodlightcontroller.core.IOF13Switch;
Sangho Shin0df01982014-09-25 17:11:18 -070024import net.floodlightcontroller.core.IOF13Switch.NeighborSet;
Sangho Shin11d4e0f2014-09-30 12:00:33 -070025import net.floodlightcontroller.core.internal.OFBarrierReplyFuture;
Sangho Shin2f263692014-09-15 14:09:41 -070026import net.floodlightcontroller.core.module.FloodlightModuleContext;
27import net.floodlightcontroller.core.module.FloodlightModuleException;
28import net.floodlightcontroller.core.module.IFloodlightModule;
29import net.floodlightcontroller.core.module.IFloodlightService;
Sangho Shin43cee112014-09-25 16:43:34 -070030import net.floodlightcontroller.core.util.SingletonTask;
Sangho Shin7330c032014-10-20 10:34:51 -070031import net.floodlightcontroller.restserver.IRestApiService;
Sangho Shin43cee112014-09-25 16:43:34 -070032import net.floodlightcontroller.threadpool.IThreadPoolService;
Sangho Shin15273b62014-10-16 22:22:05 -070033import net.floodlightcontroller.util.MACAddress;
Srikanth Vavilapallib1fce732014-09-24 14:09:50 -070034import net.onrc.onos.api.packet.IPacketListener;
Sangho Shin2f263692014-09-15 14:09:41 -070035import net.onrc.onos.api.packet.IPacketService;
Fahad Naeem Khan4444b952014-10-18 22:30:50 -070036import net.onrc.onos.apps.segmentrouting.web.SegmentRoutingWebRoutable;
Sangho Shin2f263692014-09-15 14:09:41 -070037import net.onrc.onos.core.flowprogrammer.IFlowPusherService;
Sangho Shinfbc572c2014-10-02 16:37:05 -070038import net.onrc.onos.core.intent.Path;
Sangho Shin2f263692014-09-15 14:09:41 -070039import net.onrc.onos.core.main.config.IConfigInfoService;
Sangho Shin43cee112014-09-25 16:43:34 -070040import net.onrc.onos.core.matchaction.MatchAction;
41import net.onrc.onos.core.matchaction.MatchActionId;
42import net.onrc.onos.core.matchaction.MatchActionOperationEntry;
Sangho Shin5be3e532014-10-03 17:20:58 -070043import net.onrc.onos.core.matchaction.MatchActionOperations.Operator;
Sangho Shin43cee112014-09-25 16:43:34 -070044import net.onrc.onos.core.matchaction.action.Action;
45import net.onrc.onos.core.matchaction.action.CopyTtlInAction;
46import net.onrc.onos.core.matchaction.action.CopyTtlOutAction;
47import net.onrc.onos.core.matchaction.action.DecMplsTtlAction;
48import net.onrc.onos.core.matchaction.action.DecNwTtlAction;
49import net.onrc.onos.core.matchaction.action.GroupAction;
50import net.onrc.onos.core.matchaction.action.PopMplsAction;
51import net.onrc.onos.core.matchaction.action.PushMplsAction;
52import net.onrc.onos.core.matchaction.action.SetMplsIdAction;
Saurav Dasfc5e3eb2014-09-25 19:05:21 -070053import net.onrc.onos.core.matchaction.match.Ipv4Match;
Sangho Shin43cee112014-09-25 16:43:34 -070054import net.onrc.onos.core.matchaction.match.Match;
55import net.onrc.onos.core.matchaction.match.MplsMatch;
Sangho Shin15273b62014-10-16 22:22:05 -070056import net.onrc.onos.core.matchaction.match.PacketMatch;
57import net.onrc.onos.core.matchaction.match.PacketMatchBuilder;
Sangho Shin2f263692014-09-15 14:09:41 -070058import net.onrc.onos.core.packet.ARP;
Srikanth Vavilapallib1fce732014-09-24 14:09:50 -070059import net.onrc.onos.core.packet.Ethernet;
60import net.onrc.onos.core.packet.IPv4;
Srikanth Vavilapallib7e5c5e2014-09-18 07:38:27 -070061import net.onrc.onos.core.topology.ITopologyListener;
Sangho Shin1aa93542014-09-22 09:49:44 -070062import net.onrc.onos.core.topology.ITopologyService;
Sangho Shinbce900e2014-10-07 17:13:23 -070063import net.onrc.onos.core.topology.Link;
Sangho Shinc8d2f592014-09-30 16:53:57 -070064import net.onrc.onos.core.topology.LinkData;
Sangho Shinbce900e2014-10-07 17:13:23 -070065import net.onrc.onos.core.topology.MastershipData;
Srikanth Vavilapallib7e5c5e2014-09-18 07:38:27 -070066import net.onrc.onos.core.topology.MutableTopology;
Sangho Shineb083032014-09-22 16:11:34 -070067import net.onrc.onos.core.topology.Port;
Sangho Shinc8d2f592014-09-30 16:53:57 -070068import net.onrc.onos.core.topology.PortData;
Srikanth Vavilapallib7e5c5e2014-09-18 07:38:27 -070069import net.onrc.onos.core.topology.Switch;
Sangho Shin5be3e532014-10-03 17:20:58 -070070import net.onrc.onos.core.topology.SwitchData;
Sangho Shin1aa93542014-09-22 09:49:44 -070071import net.onrc.onos.core.topology.TopologyEvents;
Srikanth Vavilapalli363f1dc2014-09-22 14:30:23 -070072import net.onrc.onos.core.util.Dpid;
Sangho Shin43cee112014-09-25 16:43:34 -070073import net.onrc.onos.core.util.IPv4Net;
74import net.onrc.onos.core.util.SwitchPort;
Sangho Shin2f263692014-09-15 14:09:41 -070075
Sangho Shin43cee112014-09-25 16:43:34 -070076import org.json.JSONArray;
77import org.json.JSONException;
Saurav Dasa962a692014-10-17 14:52:38 -070078import org.projectfloodlight.openflow.protocol.OFBarrierReply;
Saurav Dasbc594a42014-09-25 20:13:50 -070079import org.projectfloodlight.openflow.types.EthType;
Sangho Shin2f263692014-09-15 14:09:41 -070080import org.projectfloodlight.openflow.types.IPv4Address;
81import org.slf4j.Logger;
82import org.slf4j.LoggerFactory;
83
Srikanth Vavilapallib1fce732014-09-24 14:09:50 -070084public class SegmentRoutingManager implements IFloodlightModule,
Srikanth Vavilapalli8c49db72014-10-20 13:35:08 -070085 ITopologyListener, IPacketListener, ISegmentRoutingService {
Sangho Shin2f263692014-09-15 14:09:41 -070086
87 private static final Logger log = LoggerFactory
88 .getLogger(SegmentRoutingManager.class);
Sangho Shin23f898d2014-10-13 16:54:00 -070089
Fahad Naeem Khan5b558f22014-10-16 10:35:20 -070090 private ITopologyService topologyService;
Srikanth Vavilapallib1fce732014-09-24 14:09:50 -070091 private IPacketService packetService;
Srikanth Vavilapallib7e5c5e2014-09-18 07:38:27 -070092 private MutableTopology mutableTopology;
Sangho Shin61535402014-10-01 11:37:14 -070093 private ConcurrentLinkedQueue<IPv4> ipPacketQueue;
Fahad Naeem Khan4444b952014-10-18 22:30:50 -070094 private IRestApiService restApi;
Sangho Shin2f263692014-09-15 14:09:41 -070095 private List<ArpEntry> arpEntries;
Sangho Shineb083032014-09-22 16:11:34 -070096 private ArpHandler arpHandler;
97 private GenericIpHandler ipHandler;
Srikanth Vavilapallib1fce732014-09-24 14:09:50 -070098 private IcmpHandler icmpHandler;
Sangho Shin43cee112014-09-25 16:43:34 -070099 private IThreadPoolService threadPool;
100 private SingletonTask discoveryTask;
Sangho Shin23f898d2014-10-13 16:54:00 -0700101 private SingletonTask linkAddTask;
Sangho Shin15273b62014-10-16 22:22:05 -0700102 private SingletonTask testTask;
Sangho Shin9c0f4c32014-09-26 16:02:38 -0700103 private IFloodlightProviderService floodlightProvider;
Sangho Shin2f263692014-09-15 14:09:41 -0700104
Sangho Shinfbc572c2014-10-02 16:37:05 -0700105 private HashMap<Switch, ECMPShortestPathGraph> graphs;
Sangho Shin23f898d2014-10-13 16:54:00 -0700106 private HashMap<String, LinkData> linksDown;
107 private HashMap<String, LinkData> linksToAdd;
Sangho Shin5be3e532014-10-03 17:20:58 -0700108 private ConcurrentLinkedQueue<TopologyEvents> topologyEventQueue;
Sangho Shine020cc32014-10-20 13:28:02 -0700109 private HashMap<String, PolicyInfo> policyTable;
Sangho Shin81655442014-10-20 14:22:46 -0700110 private HashMap<String, TunnelInfo> tunnelTable;
Sangho Shin5b8f5452014-10-20 11:46:01 -0700111
112 private int testMode = 0;
113
Sangho Shinbce900e2014-10-07 17:13:23 -0700114
115 private int numOfEvents = 0;
116 private int numOfEventProcess = 0;
117 private int numOfPopulation = 0;
Sangho Shin99918bd2014-10-08 15:52:35 -0700118 private long matchActionId = 0L;
Sangho Shin58182672014-10-21 13:23:38 -0700119
Sangho Shin23f898d2014-10-13 16:54:00 -0700120 private final int DELAY_TO_ADD_LINK = 10;
Sangho Shin15273b62014-10-16 22:22:05 -0700121 private final int MAX_NUM_LABELS = 3;
Sangho Shinfbc572c2014-10-02 16:37:05 -0700122
Sangho Shin5b8f5452014-10-20 11:46:01 -0700123 private final int POLICY_ADD1 = 1;
124 private final int POLICY_ADD2 = 2;
125 private final int POLICY_REMOVE1 = 3;
126 private final int POLICY_REMOVE2 = 4;
Sangho Shin4b46bcd2014-10-20 15:48:47 -0700127 private final int TUNNEL_REMOVE1 = 5;
128 private final int TUNNEL_REMOVE2 = 6;
Sangho Shin5b8f5452014-10-20 11:46:01 -0700129
130
Sangho Shin7330c032014-10-20 10:34:51 -0700131 // ************************************
132 // IFloodlightModule implementation
133 // ************************************
134
Sangho Shin2f263692014-09-15 14:09:41 -0700135 @Override
136 public Collection<Class<? extends IFloodlightService>> getModuleServices() {
Srikanth Vavilapalli8c49db72014-10-20 13:35:08 -0700137 Collection<Class<? extends IFloodlightService>> l = new ArrayList<>();
138 l.add(ISegmentRoutingService.class);
139 return l;
Sangho Shin2f263692014-09-15 14:09:41 -0700140 }
141
142 @Override
143 public Map<Class<? extends IFloodlightService>, IFloodlightService> getServiceImpls() {
Srikanth Vavilapalli8c49db72014-10-20 13:35:08 -0700144 Map<Class<? extends IFloodlightService>, IFloodlightService> m = new HashMap<>();
145 m.put(ISegmentRoutingService.class, this);
146 return m;
Sangho Shin2f263692014-09-15 14:09:41 -0700147 }
148
149 @Override
150 public Collection<Class<? extends IFloodlightService>> getModuleDependencies() {
151 Collection<Class<? extends IFloodlightService>> l = new ArrayList<Class<? extends IFloodlightService>>();
152
153 l.add(IFloodlightProviderService.class);
154 l.add(IConfigInfoService.class);
155 l.add(ITopologyService.class);
156 l.add(IPacketService.class);
157 l.add(IFlowPusherService.class);
158 l.add(ITopologyService.class);
Fahad Naeem Khan4444b952014-10-18 22:30:50 -0700159 l.add(IRestApiService.class);
Sangho Shin2f263692014-09-15 14:09:41 -0700160
161 return l;
162
163 }
164
165 @Override
166 public void init(FloodlightModuleContext context) throws FloodlightModuleException {
Sangho Shin9c0f4c32014-09-26 16:02:38 -0700167 floodlightProvider = context.getServiceImpl(IFloodlightProviderService.class);
Sangho Shineb083032014-09-22 16:11:34 -0700168 arpHandler = new ArpHandler(context, this);
Srikanth Vavilapallib1fce732014-09-24 14:09:50 -0700169 icmpHandler = new IcmpHandler(context, this);
Sangho Shineb083032014-09-22 16:11:34 -0700170 ipHandler = new GenericIpHandler(context, this);
Sangho Shin2f263692014-09-15 14:09:41 -0700171 arpEntries = new ArrayList<ArpEntry>();
Srikanth Vavilapallib7e5c5e2014-09-18 07:38:27 -0700172 topologyService = context.getServiceImpl(ITopologyService.class);
Sangho Shin43cee112014-09-25 16:43:34 -0700173 threadPool = context.getServiceImpl(IThreadPoolService.class);
Srikanth Vavilapallib7e5c5e2014-09-18 07:38:27 -0700174 mutableTopology = topologyService.getTopology();
Sangho Shin61535402014-10-01 11:37:14 -0700175 ipPacketQueue = new ConcurrentLinkedQueue<IPv4>();
Sangho Shinfbc572c2014-10-02 16:37:05 -0700176 graphs = new HashMap<Switch, ECMPShortestPathGraph>();
Sangho Shin23f898d2014-10-13 16:54:00 -0700177 linksDown = new HashMap<String, LinkData>();
178 linksToAdd = new HashMap<String, LinkData>();
Sangho Shin5be3e532014-10-03 17:20:58 -0700179 topologyEventQueue = new ConcurrentLinkedQueue<TopologyEvents>();
Sangho Shin15273b62014-10-16 22:22:05 -0700180 packetService = context.getServiceImpl(IPacketService.class);
Fahad Naeem Khan4444b952014-10-18 22:30:50 -0700181 restApi = context.getServiceImpl(IRestApiService.class);
Sangho Shine020cc32014-10-20 13:28:02 -0700182 policyTable = new HashMap<String, PolicyInfo>();
Sangho Shin81655442014-10-20 14:22:46 -0700183 tunnelTable = new HashMap<String, TunnelInfo>();
Sangho Shin2f263692014-09-15 14:09:41 -0700184
Srikanth Vavilapallib1fce732014-09-24 14:09:50 -0700185 packetService.registerPacketListener(this);
Sangho Shin15273b62014-10-16 22:22:05 -0700186 topologyService.addListener(this, false);
Sangho Shin9c0f4c32014-09-26 16:02:38 -0700187
Sangho Shin99918bd2014-10-08 15:52:35 -0700188
Sangho Shin2f263692014-09-15 14:09:41 -0700189 }
190
191 @Override
192 public void startUp(FloodlightModuleContext context) throws FloodlightModuleException {
Sangho Shinc8d2f592014-09-30 16:53:57 -0700193 ScheduledExecutorService ses = threadPool.getScheduledExecutor();
Fahad Naeem Khan4444b952014-10-18 22:30:50 -0700194 restApi.addRestletRoutable(new SegmentRoutingWebRoutable());
Sangho Shin2f263692014-09-15 14:09:41 -0700195
Sangho Shinc8d2f592014-09-30 16:53:57 -0700196 discoveryTask = new SingletonTask(ses, new Runnable() {
197 @Override
198 public void run() {
Sangho Shin5be3e532014-10-03 17:20:58 -0700199 handleTopologyChangeEvents();
Sangho Shinc8d2f592014-09-30 16:53:57 -0700200 }
201 });
Sangho Shin23f898d2014-10-13 16:54:00 -0700202
203 linkAddTask = new SingletonTask(ses, new Runnable() {
204 @Override
205 public void run() {
206 delayedAddLink();
207 }
208 });
209
Sangho Shin15273b62014-10-16 22:22:05 -0700210 testTask = new SingletonTask(ses, new Runnable() {
211 @Override
212 public void run() {
213 runTest();
214 }
215 });
216
Sangho Shin5b8f5452014-10-20 11:46:01 -0700217 testMode = POLICY_ADD1;
Sangho Shin00bd9462014-10-20 17:00:54 -0700218 //testTask.reschedule(20, TimeUnit.SECONDS);
Sangho Shin2f263692014-09-15 14:09:41 -0700219 }
220
Srikanth Vavilapallib1fce732014-09-24 14:09:50 -0700221 @Override
222 public void receive(Switch sw, Port inPort, Ethernet payload) {
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700223 if (payload.getEtherType() == Ethernet.TYPE_ARP)
224 arpHandler.processPacketIn(sw, inPort, payload);
Srikanth Vavilapallib1fce732014-09-24 14:09:50 -0700225 if (payload.getEtherType() == Ethernet.TYPE_IPV4) {
Sangho Shin7330c032014-10-20 10:34:51 -0700226 addPacketToPacketBuffer((IPv4) payload.getPayload());
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700227 if (((IPv4) payload.getPayload()).getProtocol() == IPv4.PROTOCOL_ICMP)
228 icmpHandler.processPacketIn(sw, inPort, payload);
229 else
230 ipHandler.processPacketIn(sw, inPort, payload);
Srikanth Vavilapallib1fce732014-09-24 14:09:50 -0700231 }
Sangho Shin11d4e0f2014-09-30 12:00:33 -0700232 else {
233 log.debug("{}", payload.toString());
234 }
Srikanth Vavilapallib1fce732014-09-24 14:09:50 -0700235 }
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700236
Sangho Shin2f263692014-09-15 14:09:41 -0700237
Sangho Shin7330c032014-10-20 10:34:51 -0700238 // ************************************
239 // Topology event handlers
240 // ************************************
Sangho Shineb083032014-09-22 16:11:34 -0700241
Srikanth Vavilapallib7e5c5e2014-09-18 07:38:27 -0700242 /**
243 * Topology events that have been generated.
Sangho Shinfbc572c2014-10-02 16:37:05 -0700244 *
Srikanth Vavilapallib7e5c5e2014-09-18 07:38:27 -0700245 * @param topologyEvents the generated Topology Events
246 * @see TopologyEvents
247 */
248 public void topologyEvents(TopologyEvents topologyEvents)
249 {
Sangho Shin5be3e532014-10-03 17:20:58 -0700250 topologyEventQueue.add(topologyEvents);
Sangho Shinbce900e2014-10-07 17:13:23 -0700251 discoveryTask.reschedule(100, TimeUnit.MILLISECONDS);
Sangho Shin5be3e532014-10-03 17:20:58 -0700252 }
Sangho Shin3a5fcad2014-10-01 14:14:49 -0700253
Sangho Shin23f898d2014-10-13 16:54:00 -0700254 /**
255 * Process the multiple topology events with some delay (100MS at most for now)
256 *
257 */
Sangho Shin5be3e532014-10-03 17:20:58 -0700258 private void handleTopologyChangeEvents() {
Sangho Shinbce900e2014-10-07 17:13:23 -0700259 numOfEventProcess ++;
260
Sangho Shin51625342014-10-17 09:30:48 -0700261 Collection<LinkData> linkEntriesAddedAll = new ArrayList<LinkData>();
262 Collection<PortData> portEntriesAddedAll = new ArrayList<PortData>();
263 Collection<PortData> portEntriesRemovedAll = new ArrayList<PortData>();
264 Collection<LinkData> linkEntriesRemovedAll = new ArrayList<LinkData>();
265 Collection<SwitchData> switchAddedAll = new ArrayList<SwitchData>();
266 Collection<SwitchData> switchRemovedAll = new ArrayList<SwitchData>();
267 Collection<MastershipData> mastershipRemovedAll = new ArrayList<MastershipData>();
Sangho Shinbce900e2014-10-07 17:13:23 -0700268
Sangho Shin5be3e532014-10-03 17:20:58 -0700269 while (!topologyEventQueue.isEmpty()) {
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700270 // We should handle the events in the order of when they happen
271 // TODO: We need to simulate the final results of multiple events
272 // and shoot only the final state.
273 // Ex: link s1-s2 down, link s1-s2 up --> Do nothing
274 // Ex: ink s1-s2 up, s1-p1,p2 down --> link s1-s2 down
Sangho Shin51625342014-10-17 09:30:48 -0700275
Sangho Shin5be3e532014-10-03 17:20:58 -0700276 TopologyEvents topologyEvents = topologyEventQueue.poll();
Sangho Shin51625342014-10-17 09:30:48 -0700277
278 Collection<LinkData> linkEntriesAdded = topologyEvents.getAddedLinkDataEntries();
279 Collection<PortData> portEntriesAdded = topologyEvents.getAddedPortDataEntries();
280 Collection<PortData> portEntriesRemoved = topologyEvents.getRemovedPortDataEntries();
281 Collection<LinkData> linkEntriesRemoved = topologyEvents.getRemovedLinkDataEntries();
282 Collection<SwitchData> switchAdded = topologyEvents.getAddedSwitchDataEntries();
283 Collection<SwitchData> switchRemoved = topologyEvents.getRemovedSwitchDataEntries();
284 Collection<MastershipData> mastershipRemoved = topologyEvents.getRemovedMastershipDataEntries();
285
286 linkEntriesAddedAll.addAll(linkEntriesAdded);
287 portEntriesAddedAll.addAll(portEntriesAdded);
288 portEntriesRemovedAll.addAll(portEntriesRemoved);
289 linkEntriesRemovedAll.addAll(linkEntriesRemoved);
290 switchAddedAll.addAll(switchAdded);
291 switchRemovedAll.addAll(switchRemoved);
292 mastershipRemovedAll.addAll(mastershipRemoved);
Sangho Shinbce900e2014-10-07 17:13:23 -0700293 numOfEvents++;
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700294
295 if (!portEntriesRemoved.isEmpty()) {
296 processPortRemoval(portEntriesRemoved);
297 }
298
299 if (!linkEntriesRemoved.isEmpty()) {
300 processLinkRemoval(linkEntriesRemoved);
301 }
302
303 if (!switchRemoved.isEmpty()) {
304 processSwitchRemoved(switchRemoved);
305 }
306
307 if (!mastershipRemoved.isEmpty()) {
Sangho Shin23f898d2014-10-13 16:54:00 -0700308 log.debug("Mastership is removed. Check if ports are down also.");
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700309 }
310
311 if (!linkEntriesAdded.isEmpty()) {
Sangho Shin23f898d2014-10-13 16:54:00 -0700312 processLinkAdd(linkEntriesAdded, false);
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700313 }
314
315 if (!portEntriesAdded.isEmpty()) {
316 processPortAdd(portEntriesAdded);
317 }
318
319 if (!switchAdded.isEmpty()) {
320 processSwitchAdd(switchAdded);
321 }
Sangho Shin51625342014-10-17 09:30:48 -0700322
Sangho Shinbce900e2014-10-07 17:13:23 -0700323 }
324
Sangho Shin23f898d2014-10-13 16:54:00 -0700325 // TODO: 100ms is enough to check both mastership removed events
326 // and the port removed events? What if the PORT_STATUS packets comes late?
Sangho Shin51625342014-10-17 09:30:48 -0700327 if (!mastershipRemovedAll.isEmpty()) {
328 if (portEntriesRemovedAll.isEmpty()) {
Saurav Das82e62972014-10-16 14:53:57 -0700329 log.debug("Just mastership is removed. Do not do anthing.");
Sangho Shin23f898d2014-10-13 16:54:00 -0700330 }
331 else {
332 HashMap<String, MastershipData> mastershipToRemove =
333 new HashMap<String, MastershipData>();
Sangho Shin51625342014-10-17 09:30:48 -0700334 for (MastershipData ms: mastershipRemovedAll) {
335 for (PortData port: portEntriesRemovedAll) {
Sangho Shin23f898d2014-10-13 16:54:00 -0700336 // TODO: check ALL ports of the switch are dead ..
337 if (port.getDpid().equals(ms.getDpid())) {
338 mastershipToRemove.put(ms.getDpid().toString(), ms);
339 }
340 }
341 log.debug("Swtich {} is really down.", ms.getDpid());
342 }
343 processMastershipRemoved(mastershipToRemove.values());
344 }
345 }
346
Sangho Shinbce900e2014-10-07 17:13:23 -0700347 log.debug("num events {}, num of process {}, "
348 + "num of Population {}", numOfEvents, numOfEventProcess,
349 numOfPopulation);
350 }
351
352 /**
Sangho Shin99918bd2014-10-08 15:52:35 -0700353 * Process the SwitchAdded events from topologyMananger.
354 * It does nothing. When a switch is added, then link will be added too.
355 * LinkAdded event will handle process all re-computation.
356 *
357 * @param switchAdded
358 */
359 private void processSwitchAdd(Collection<SwitchData> switchAdded) {
360
361 }
362
363 /**
Sangho Shinbce900e2014-10-07 17:13:23 -0700364 * Remove all ports connected to the switch removed
365 *
366 * @param mastershipRemoved master switch info removed
367 */
368 private void processMastershipRemoved(Collection<MastershipData>
369 mastershipRemoved) {
370 for (MastershipData mastership: mastershipRemoved) {
371 Switch sw = mutableTopology.getSwitch(mastership.getDpid());
372 for (Link link: sw.getOutgoingLinks()) {
373 Port dstPort = link.getDstPort();
374 IOF13Switch dstSw = (IOF13Switch) floodlightProvider.getMasterSwitch(
375 getSwId(dstPort.getDpid().toString()));
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700376 if (dstSw != null) {
377 dstSw.removePortFromGroups(dstPort.getNumber());
378 log.debug("MasterSwitch {} is gone: remove port {}", sw.getDpid(), dstPort);
379 }
Sangho Shinbce900e2014-10-07 17:13:23 -0700380 }
Sangho Shin61535402014-10-01 11:37:14 -0700381 }
Sangho Shin23f898d2014-10-13 16:54:00 -0700382
383 linksToAdd.clear();
384 linksDown.clear();
Sangho Shin61535402014-10-01 11:37:14 -0700385 }
Sangho Shinc8d2f592014-09-30 16:53:57 -0700386
Sangho Shinbce900e2014-10-07 17:13:23 -0700387 /**
388 * Remove all ports connected to the switch removed
389 *
390 * @param switchRemoved Switch removed
391 */
Sangho Shin5be3e532014-10-03 17:20:58 -0700392 private void processSwitchRemoved(Collection<SwitchData> switchRemoved) {
Sangho Shin23f898d2014-10-13 16:54:00 -0700393 log.debug("SwitchRemoved event occurred !!!");
Sangho Shin5be3e532014-10-03 17:20:58 -0700394 }
395
Sangho Shin61535402014-10-01 11:37:14 -0700396 /**
Sangho Shin99918bd2014-10-08 15:52:35 -0700397 * Report ports added to driver
Sangho Shinfbc572c2014-10-02 16:37:05 -0700398 *
Sangho Shin3a5fcad2014-10-01 14:14:49 -0700399 * @param portEntries
400 */
401 private void processPortAdd(Collection<PortData> portEntries) {
Sangho Shin99918bd2014-10-08 15:52:35 -0700402 // TODO: do we need to add ports with delay?
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700403 for (PortData port : portEntries) {
Sangho Shin3a5fcad2014-10-01 14:14:49 -0700404 Dpid dpid = port.getDpid();
Sangho Shin3a5fcad2014-10-01 14:14:49 -0700405
Sangho Shinfbc572c2014-10-02 16:37:05 -0700406 IOF13Switch sw = (IOF13Switch) floodlightProvider.getMasterSwitch(
Sangho Shin3a5fcad2014-10-01 14:14:49 -0700407 getSwId(port.getDpid().toString()));
Sangho Shin815af0c2014-10-10 13:05:45 -0700408 if (sw != null) {
Sangho Shin721ca042014-10-09 13:03:40 -0700409 sw.addPortToGroups(port.getPortNumber());
Sangho Shin15273b62014-10-16 22:22:05 -0700410 //log.debug("Add port {} to switch {}", port, dpid);
Sangho Shin815af0c2014-10-10 13:05:45 -0700411 }
Sangho Shin3a5fcad2014-10-01 14:14:49 -0700412 }
413 }
414
415 /**
416 * Reports ports of new links to driver and recalculate ECMP SPG
Sangho Shin23f898d2014-10-13 16:54:00 -0700417 * If the link to add was removed before, then we just schedule the add link
418 * event and do not recompute the path now.
Sangho Shinfbc572c2014-10-02 16:37:05 -0700419 *
Sangho Shin3a5fcad2014-10-01 14:14:49 -0700420 * @param linkEntries
421 */
Sangho Shin23f898d2014-10-13 16:54:00 -0700422 private void processLinkAdd(Collection<LinkData> linkEntries, boolean delayed) {
Sangho Shin3a5fcad2014-10-01 14:14:49 -0700423
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700424 for (LinkData link : linkEntries) {
Sangho Shin5be3e532014-10-03 17:20:58 -0700425
Sangho Shin3a5fcad2014-10-01 14:14:49 -0700426 SwitchPort srcPort = link.getSrc();
427 SwitchPort dstPort = link.getDst();
428
Sangho Shin23f898d2014-10-13 16:54:00 -0700429 String key = srcPort.getDpid().toString() +
430 dstPort.getDpid().toString();
431 if (!delayed) {
432 if (linksDown.containsKey(key)) {
433 linksToAdd.put(key, link);
434 linksDown.remove(key);
435 linkAddTask.reschedule(DELAY_TO_ADD_LINK, TimeUnit.SECONDS);
436 log.debug("Add link {} with 5 sec delay", link);
437 // TODO: What if we have multiple events of add link:
438 // one is new link add, the other one is link up for
439 // broken link? ECMPSPG function cannot deal with it for now
440 return;
441 }
442 }
443 else {
444 if (linksDown.containsKey(key)) {
445 linksToAdd.remove(key);
446 log.debug("Do not add the link {}: it is down again!", link);
447 return;
448 }
449 }
450
Sangho Shinfbc572c2014-10-02 16:37:05 -0700451 IOF13Switch srcSw = (IOF13Switch) floodlightProvider.getMasterSwitch(
Sangho Shin3a5fcad2014-10-01 14:14:49 -0700452 getSwId(srcPort.getDpid().toString()));
Sangho Shinfbc572c2014-10-02 16:37:05 -0700453 IOF13Switch dstSw = (IOF13Switch) floodlightProvider.getMasterSwitch(
Srikanth Vavilapallibb47e782014-10-09 18:16:35 -0700454 getSwId(dstPort.getDpid().toString()));
Sangho Shin3a5fcad2014-10-01 14:14:49 -0700455
Sangho Shin815af0c2014-10-10 13:05:45 -0700456 if ((srcSw == null) || (dstSw == null))
Srikanth Vavilapallibb47e782014-10-09 18:16:35 -0700457 continue;
458
459 srcSw.addPortToGroups(srcPort.getPortNumber());
460 dstSw.addPortToGroups(dstPort.getPortNumber());
Sangho Shin5be3e532014-10-03 17:20:58 -0700461
Sangho Shin15273b62014-10-16 22:22:05 -0700462 //log.debug("Add a link port {} to switch {} to add link {}", srcPort, srcSw,
463 // link);
464 //log.debug("Add a link port {} to switch {} to add link {}", dstPort, dstSw,
465 // link);
Sangho Shin815af0c2014-10-10 13:05:45 -0700466
Sangho Shin3a5fcad2014-10-01 14:14:49 -0700467 }
Sangho Shinbce900e2014-10-07 17:13:23 -0700468 populateEcmpRoutingRules(false);
Sangho Shin3a5fcad2014-10-01 14:14:49 -0700469 }
470
471 /**
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700472 * Check if all links are gone b/w the two switches. If all links are gone,
473 * then we need to recalculate the path. Otherwise, just report link failure
474 * to the driver.
Sangho Shinfbc572c2014-10-02 16:37:05 -0700475 *
Sangho Shin61535402014-10-01 11:37:14 -0700476 * @param linkEntries
477 */
478 private void processLinkRemoval(Collection<LinkData> linkEntries) {
Sangho Shinbce900e2014-10-07 17:13:23 -0700479 boolean recomputationRequired = false;
480
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700481 for (LinkData link : linkEntries) {
Sangho Shin3a5fcad2014-10-01 14:14:49 -0700482 SwitchPort srcPort = link.getSrc();
483 SwitchPort dstPort = link.getDst();
Sangho Shinc8d2f592014-09-30 16:53:57 -0700484
Sangho Shinfbc572c2014-10-02 16:37:05 -0700485 IOF13Switch srcSw = (IOF13Switch) floodlightProvider.getMasterSwitch(
Sangho Shin3a5fcad2014-10-01 14:14:49 -0700486 getSwId(srcPort.getDpid().toString()));
Sangho Shinfbc572c2014-10-02 16:37:05 -0700487 IOF13Switch dstSw = (IOF13Switch) floodlightProvider.getMasterSwitch(
Srikanth Vavilapallibb47e782014-10-09 18:16:35 -0700488 getSwId(dstPort.getDpid().toString()));
Sangho Shin815af0c2014-10-10 13:05:45 -0700489 if ((srcSw == null) || (dstSw == null))
Srikanth Vavilapallibb47e782014-10-09 18:16:35 -0700490 /* If this link is not between two switches, ignore it */
491 continue;
Sangho Shin23f898d2014-10-13 16:54:00 -0700492
Srikanth Vavilapallibb47e782014-10-09 18:16:35 -0700493 srcSw.removePortFromGroups(srcPort.getPortNumber());
494 dstSw.removePortFromGroups(dstPort.getPortNumber());
Sangho Shin815af0c2014-10-10 13:05:45 -0700495 log.debug("Remove port {} from switch {}", srcPort, srcSw);
496 log.debug("Remove port {} from switch {}", dstPort, dstSw);
497
Sangho Shin3a5fcad2014-10-01 14:14:49 -0700498 Switch srcSwitch = mutableTopology.getSwitch(srcPort.getDpid());
499 if (srcSwitch.getLinkToNeighbor(dstPort.getDpid()) == null) {
Sangho Shinbce900e2014-10-07 17:13:23 -0700500 // TODO: it is only for debugging purpose.
Sangho Shin99918bd2014-10-08 15:52:35 -0700501 // We just need to call populateEcmpRoutingRules() and return;
Sangho Shinbce900e2014-10-07 17:13:23 -0700502 recomputationRequired = true;
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700503 log.debug("All links are gone b/w {} and {}", srcPort.getDpid(),
Sangho Shin5be3e532014-10-03 17:20:58 -0700504 dstPort.getDpid());
Sangho Shinc8d2f592014-09-30 16:53:57 -0700505 }
Sangho Shin23f898d2014-10-13 16:54:00 -0700506
507 String key = link.getSrc().getDpid().toString()+
508 link.getDst().getDpid().toString();
509 if (!linksDown.containsKey(key)) {
510 linksDown.put(key, link);
511 }
Sangho Shinc8d2f592014-09-30 16:53:57 -0700512 }
Sangho Shinbce900e2014-10-07 17:13:23 -0700513
514 if (recomputationRequired)
515 populateEcmpRoutingRules(false);
Sangho Shin61535402014-10-01 11:37:14 -0700516 }
Sangho Shinc8d2f592014-09-30 16:53:57 -0700517
Sangho Shin61535402014-10-01 11:37:14 -0700518 /**
Sangho Shin3a5fcad2014-10-01 14:14:49 -0700519 * report ports removed to the driver immediately
Sangho Shinfbc572c2014-10-02 16:37:05 -0700520 *
Sangho Shin61535402014-10-01 11:37:14 -0700521 * @param portEntries
522 */
523 private void processPortRemoval(Collection<PortData> portEntries) {
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700524 for (PortData port : portEntries) {
Sangho Shin61535402014-10-01 11:37:14 -0700525 Dpid dpid = port.getDpid();
Sangho Shin61535402014-10-01 11:37:14 -0700526
Sangho Shinfbc572c2014-10-02 16:37:05 -0700527 IOF13Switch sw = (IOF13Switch) floodlightProvider.getMasterSwitch(
Sangho Shin61535402014-10-01 11:37:14 -0700528 getSwId(port.getDpid().toString()));
Sangho Shin815af0c2014-10-10 13:05:45 -0700529 if (sw != null) {
Sangho Shinfbc572c2014-10-02 16:37:05 -0700530 sw.removePortFromGroups(port.getPortNumber());
Sangho Shin815af0c2014-10-10 13:05:45 -0700531 log.debug("Remove port {} from switch {}", port, dpid);
532 }
Sangho Shin61535402014-10-01 11:37:14 -0700533 }
Srikanth Vavilapallib7e5c5e2014-09-18 07:38:27 -0700534 }
Sangho Shin1aa93542014-09-22 09:49:44 -0700535
536 /**
Sangho Shin7330c032014-10-20 10:34:51 -0700537 * Add the link immediately
538 * The function is scheduled when link add event happens and called
539 * DELAY_TO_ADD_LINK seconds after the event to avoid link flip-flop.
540 */
541 private void delayedAddLink() {
542
543 processLinkAdd(linksToAdd.values(), true);
544
545 }
546
547
548 // ************************************
549 // ECMP shorted path routing functions
550 // ************************************
551
552 /**
Sangho Shin43cee112014-09-25 16:43:34 -0700553 * Populate routing rules walking through the ECMP shortest paths
Sangho Shinfbc572c2014-10-02 16:37:05 -0700554 *
Sangho Shin99918bd2014-10-08 15:52:35 -0700555 * @param modified if true, it "modifies" the rules
Sangho Shin1aa93542014-09-22 09:49:44 -0700556 */
Sangho Shin5be3e532014-10-03 17:20:58 -0700557 private void populateEcmpRoutingRules(boolean modified) {
558 graphs.clear();
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700559 Iterable<Switch> switches = mutableTopology.getSwitches();
Sangho Shin43cee112014-09-25 16:43:34 -0700560 for (Switch sw : switches) {
561 ECMPShortestPathGraph ecmpSPG = new ECMPShortestPathGraph(sw);
Sangho Shinfbc572c2014-10-02 16:37:05 -0700562 graphs.put(sw, ecmpSPG);
563 //log.debug("ECMPShortestPathGraph is computed for switch {}",
564 // HexString.toHexString(sw.getDpid().value()));
Sangho Shin5be3e532014-10-03 17:20:58 -0700565 populateEcmpRoutingRulesForPath(sw, ecmpSPG, modified);
Sangho Shinfbc572c2014-10-02 16:37:05 -0700566 }
Sangho Shinbce900e2014-10-07 17:13:23 -0700567 numOfPopulation++;
Sangho Shinfbc572c2014-10-02 16:37:05 -0700568 }
Sangho Shin1aa93542014-09-22 09:49:44 -0700569
Sangho Shin99918bd2014-10-08 15:52:35 -0700570 /**
571 * populate routing rules to forward packets from the switch given to
572 * all other switches.
573 *
574 * @param sw source switch
575 * @param ecmpSPG shortest path from the the source switch to all others
576 * @param modified modification flag
577 */
Sangho Shinfbc572c2014-10-02 16:37:05 -0700578 private void populateEcmpRoutingRulesForPath(Switch sw,
Sangho Shin5be3e532014-10-03 17:20:58 -0700579 ECMPShortestPathGraph ecmpSPG, boolean modified) {
Sangho Shin43cee112014-09-25 16:43:34 -0700580
Sangho Shinfbc572c2014-10-02 16:37:05 -0700581 HashMap<Integer, HashMap<Switch, ArrayList<ArrayList<Dpid>>>> switchVia =
582 ecmpSPG.getAllLearnedSwitchesAndVia();
583 for (Integer itrIdx : switchVia.keySet()) {
584 //log.debug("ECMPShortestPathGraph:Switches learned in "
585 // + "Iteration{} from switch {}:",
586 // itrIdx,
587 // HexString.toHexString(sw.getDpid().value()));
588 HashMap<Switch, ArrayList<ArrayList<Dpid>>> swViaMap =
589 switchVia.get(itrIdx);
590 for (Switch targetSw : swViaMap.keySet()) {
Sangho Shin5be3e532014-10-03 17:20:58 -0700591 //log.debug("ECMPShortestPathGraph:****switch {} via:",
592 // HexString.toHexString(targetSw.getDpid().value()));
Sangho Shinfbc572c2014-10-02 16:37:05 -0700593 String destSw = sw.getDpid().toString();
594 List<String> fwdToSw = new ArrayList<String>();
595
Sangho Shinfbc572c2014-10-02 16:37:05 -0700596 for (ArrayList<Dpid> via : swViaMap.get(targetSw)) {
Sangho Shin5be3e532014-10-03 17:20:58 -0700597 //log.debug("ECMPShortestPathGraph:******{}) {}", ++i, via);
Sangho Shinfbc572c2014-10-02 16:37:05 -0700598 if (via.isEmpty()) {
599 fwdToSw.add(destSw);
Sangho Shin43cee112014-09-25 16:43:34 -0700600 }
Sangho Shinfbc572c2014-10-02 16:37:05 -0700601 else {
602 fwdToSw.add(via.get(0).toString());
603 }
Sangho Shin43cee112014-09-25 16:43:34 -0700604 }
Sangho Shin5be3e532014-10-03 17:20:58 -0700605 setRoutingRule(targetSw, destSw, fwdToSw, modified);
Sangho Shineb083032014-09-22 16:11:34 -0700606 }
Sangho Shinfbc572c2014-10-02 16:37:05 -0700607
608 // Send Barrier Message and make sure all rules are set
609 // before we set the rules to next routers
Saurav Dasa962a692014-10-17 14:52:38 -0700610 // TODO: barriers to all switches in this update stage
Sangho Shinfbc572c2014-10-02 16:37:05 -0700611 IOF13Switch sw13 = (IOF13Switch) floodlightProvider.getMasterSwitch(
612 getSwId(sw.getDpid().toString()));
Sangho Shin5be3e532014-10-03 17:20:58 -0700613 if (sw13 != null) {
Saurav Dasa962a692014-10-17 14:52:38 -0700614 OFBarrierReplyFuture replyFuture = null;
Sangho Shin5be3e532014-10-03 17:20:58 -0700615 try {
Saurav Dasa962a692014-10-17 14:52:38 -0700616 replyFuture = sw13.sendBarrier();
Sangho Shin5be3e532014-10-03 17:20:58 -0700617 } catch (IOException e) {
Saurav Dasa962a692014-10-17 14:52:38 -0700618 log.error("Error sending barrier request to switch {}",
619 sw13.getId(), e.getCause());
Sangho Shin5be3e532014-10-03 17:20:58 -0700620 }
Saurav Dasa962a692014-10-17 14:52:38 -0700621 OFBarrierReply br = null;
622 try {
623 br = replyFuture.get(2, TimeUnit.SECONDS);
624 } catch (TimeoutException | InterruptedException | ExecutionException e) {
625 // XXX for some reason these exceptions are not being thrown
626 }
627 if (br == null) {
628 log.warn("Did not receive barrier-reply from {}", sw13.getId());
629 // XXX take corrective action
630 }
631
Sangho Shinfbc572c2014-10-02 16:37:05 -0700632 }
633 }
634
635 }
636
Sangho Shinfbc572c2014-10-02 16:37:05 -0700637 /**
638 *
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700639 * Set routing rules in targetSw {forward packets to fwdToSw switches in
640 * order to send packets to destSw} - If the target switch is an edge router
641 * and final destnation switch is also an edge router, then set IP
642 * forwarding rules to subnets - If only the target switch is an edge
643 * router, then set IP forwarding rule to the transit router loopback IP
644 * address - If the target is a transit router, then just set the MPLS
645 * forwarding rule
Sangho Shinfbc572c2014-10-02 16:37:05 -0700646 *
Sangho Shin43cee112014-09-25 16:43:34 -0700647 * @param targetSw Switch to set the rules
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700648 * @param destSw Final destination switches
Sangho Shin43cee112014-09-25 16:43:34 -0700649 * @param fwdToSw next hop switches
650 */
Sangho Shin99918bd2014-10-08 15:52:35 -0700651 private void setRoutingRule(Switch targetSw, String destSw,
652 List<String> fwdToSw, boolean modified) {
Sangho Shin43cee112014-09-25 16:43:34 -0700653
Sangho Shin43cee112014-09-25 16:43:34 -0700654 if (fwdToSw.isEmpty()) {
655 fwdToSw.add(destSw);
656 }
657
Sangho Shin9c0f4c32014-09-26 16:02:38 -0700658 // if both target SW and dest SW are an edge router, then set IP table
Sangho Shin43cee112014-09-25 16:43:34 -0700659 if (IsEdgeRouter(targetSw.getDpid().toString()) &&
660 IsEdgeRouter(destSw)) {
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700661 // We assume that there is at least one transit router b/w edge
662 // routers
Sangho Shin43cee112014-09-25 16:43:34 -0700663 Switch destSwitch = mutableTopology.getSwitch(new Dpid(destSw));
664 String subnets = destSwitch.getStringAttribute("subnets");
Sangho Shin11d4e0f2014-09-30 12:00:33 -0700665 setIpTableRouterSubnet(targetSw, subnets, getMplsLabel(destSw)
Sangho Shin5be3e532014-10-03 17:20:58 -0700666 , fwdToSw, modified);
Sangho Shin43cee112014-09-25 16:43:34 -0700667
Sangho Shin43cee112014-09-25 16:43:34 -0700668 String routerIp = destSwitch.getStringAttribute("routerIp");
Sangho Shin5be3e532014-10-03 17:20:58 -0700669 setIpTableRouter(targetSw, routerIp, getMplsLabel(destSw), fwdToSw,
670 null, modified);
Sangho Shin721ca042014-10-09 13:03:40 -0700671 // Edge router can be a transit router
672 setMplsTable(targetSw, getMplsLabel(destSw), fwdToSw, modified);
Sangho Shin43cee112014-09-25 16:43:34 -0700673 }
Sangho Shin9c0f4c32014-09-26 16:02:38 -0700674 // Only if the target switch is the edge router, then set the IP rules
Sangho Shin43cee112014-09-25 16:43:34 -0700675 else if (IsEdgeRouter(targetSw.getDpid().toString())) {
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700676 // We assume that there is at least one transit router b/w edge
677 // routers
Sangho Shin43cee112014-09-25 16:43:34 -0700678 Switch destSwitch = mutableTopology.getSwitch(new Dpid(destSw));
679 String routerIp = destSwitch.getStringAttribute("routerIp");
Sangho Shin5be3e532014-10-03 17:20:58 -0700680 setIpTableRouter(targetSw, routerIp, getMplsLabel(destSw), fwdToSw,
681 null, modified);
Sangho Shin721ca042014-10-09 13:03:40 -0700682 // Edge router can be a transit router
683 setMplsTable(targetSw, getMplsLabel(destSw), fwdToSw, modified);
Sangho Shin43cee112014-09-25 16:43:34 -0700684 }
685 // if it is a transit router, then set rules in the MPLS table
686 else {
Sangho Shin5be3e532014-10-03 17:20:58 -0700687 setMplsTable(targetSw, getMplsLabel(destSw), fwdToSw, modified);
Sangho Shin43cee112014-09-25 16:43:34 -0700688 }
689
690 }
691
Sangho Shinfbc572c2014-10-02 16:37:05 -0700692 /**
693 * Set IP forwarding rule to the gateway of each subnet of switches
694 *
695 * @param targetSw Switch to set rules
696 * @param subnets subnet information
697 * @param mplsLabel destination MPLS label
698 * @param fwdToSw router to forward packets to
699 */
Sangho Shin11d4e0f2014-09-30 12:00:33 -0700700 private void setIpTableRouterSubnet(Switch targetSw, String subnets,
Sangho Shin5be3e532014-10-03 17:20:58 -0700701 String mplsLabel, List<String> fwdToSw, boolean modified) {
Sangho Shin11d4e0f2014-09-30 12:00:33 -0700702
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700703 Collection<MatchActionOperationEntry> entries =
Sangho Shin11d4e0f2014-09-30 12:00:33 -0700704 new ArrayList<MatchActionOperationEntry>();
705
706 try {
707 JSONArray arry = new JSONArray(subnets);
708 for (int i = 0; i < arry.length(); i++) {
709 String subnetIp = (String) arry.getJSONObject(i).get("subnetIp");
Sangho Shin5be3e532014-10-03 17:20:58 -0700710 setIpTableRouter(targetSw, subnetIp, mplsLabel, fwdToSw, entries,
711 modified);
Sangho Shin11d4e0f2014-09-30 12:00:33 -0700712 }
713 } catch (JSONException e) {
Sangho Shin11d4e0f2014-09-30 12:00:33 -0700714 e.printStackTrace();
715 }
716
717 if (!entries.isEmpty()) {
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700718 IOF13Switch sw13 = (IOF13Switch) floodlightProvider.getMasterSwitch(
Sangho Shin11d4e0f2014-09-30 12:00:33 -0700719 getSwId(targetSw.getDpid().toString()));
720
Sangho Shin721ca042014-10-09 13:03:40 -0700721 if (sw13 != null) {
722 try {
723 sw13.pushFlows(entries);
724 } catch (IOException e) {
725 e.printStackTrace();
726 }
Sangho Shin11d4e0f2014-09-30 12:00:33 -0700727 }
728 }
729
730 }
731
Sangho Shin43cee112014-09-25 16:43:34 -0700732 /**
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700733 * Set IP forwarding rule - If the destination is the next hop, then do not
734 * push MPLS, just decrease the NW TTL - Otherwise, push MPLS label and set
735 * the MPLS ID
Sangho Shinfbc572c2014-10-02 16:37:05 -0700736 *
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700737 * @param sw target switch to set rules
Sangho Shin43cee112014-09-25 16:43:34 -0700738 * @param subnetIp Match IP address
739 * @param mplsLabel MPLS label of final destination router
740 * @param fwdToSws next hop routers
Sangho Shin11d4e0f2014-09-30 12:00:33 -0700741 * @param entries
Sangho Shin43cee112014-09-25 16:43:34 -0700742 */
743 private void setIpTableRouter(Switch sw, String subnetIp, String mplsLabel,
Sangho Shin5be3e532014-10-03 17:20:58 -0700744 List<String> fwdToSws, Collection<MatchActionOperationEntry> entries,
745 boolean modified) {
Sangho Shin43cee112014-09-25 16:43:34 -0700746
Saurav Dasfc5e3eb2014-09-25 19:05:21 -0700747 Ipv4Match ipMatch = new Ipv4Match(subnetIp);
Sangho Shin43cee112014-09-25 16:43:34 -0700748 List<Action> actions = new ArrayList<>();
Sangho Shin721ca042014-10-09 13:03:40 -0700749 GroupAction groupAction = new GroupAction();
Sangho Shin43cee112014-09-25 16:43:34 -0700750
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700751 // If destination SW is the same as the fwd SW, then do not push MPLS
752 // label
Sangho Shin9c0f4c32014-09-26 16:02:38 -0700753 if (fwdToSws.size() > 1) {
Sangho Shin43cee112014-09-25 16:43:34 -0700754 PushMplsAction pushMplsAction = new PushMplsAction();
755 SetMplsIdAction setIdAction = new SetMplsIdAction(Integer.parseInt(mplsLabel));
756 CopyTtlOutAction copyTtlOutAction = new CopyTtlOutAction();
Sangho Shin463bee52014-09-29 15:14:43 -0700757 DecMplsTtlAction decMplsTtlAction = new DecMplsTtlAction(1);
Sangho Shin43cee112014-09-25 16:43:34 -0700758
Sangho Shin62ce5c12014-10-08 16:24:40 -0700759 //actions.add(pushMplsAction);
760 //actions.add(copyTtlOutAction);
761 //actions.add(decMplsTtlAction);
Saurav Das82e62972014-10-16 14:53:57 -0700762 // actions.add(setIdAction);
Sangho Shin721ca042014-10-09 13:03:40 -0700763 groupAction.setEdgeLabel(Integer.parseInt(mplsLabel));
Sangho Shin43cee112014-09-25 16:43:34 -0700764 }
Sangho Shin9c0f4c32014-09-26 16:02:38 -0700765 else {
766 String fwdToSw = fwdToSws.get(0);
767 if (getMplsLabel(fwdToSw).equals(mplsLabel)) {
768 DecNwTtlAction decTtlAction = new DecNwTtlAction(1);
769 actions.add(decTtlAction);
770 }
771 else {
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700772 SetMplsIdAction setIdAction = new SetMplsIdAction(
773 Integer.parseInt(mplsLabel));
Sangho Shin9c0f4c32014-09-26 16:02:38 -0700774 CopyTtlOutAction copyTtlOutAction = new CopyTtlOutAction();
Sangho Shin463bee52014-09-29 15:14:43 -0700775 DecMplsTtlAction decMplsTtlAction = new DecMplsTtlAction(1);
Sangho Shin9c0f4c32014-09-26 16:02:38 -0700776
Sangho Shin62ce5c12014-10-08 16:24:40 -0700777 //actions.add(pushMplsAction);
778 //actions.add(copyTtlOutAction);
779 //actions.add(decMplsTtlAction);
Saurav Das82e62972014-10-16 14:53:57 -0700780 // actions.add(setIdAction);
Sangho Shin721ca042014-10-09 13:03:40 -0700781 groupAction.setEdgeLabel(Integer.parseInt(mplsLabel));
Sangho Shin9c0f4c32014-09-26 16:02:38 -0700782 }
783 }
Sangho Shin43cee112014-09-25 16:43:34 -0700784
Sangho Shin43cee112014-09-25 16:43:34 -0700785 for (String fwdSw : fwdToSws) {
786 groupAction.addSwitch(new Dpid(fwdSw));
787 }
788 actions.add(groupAction);
789
Sangho Shin99918bd2014-10-08 15:52:35 -0700790 MatchAction matchAction = new MatchAction(new MatchActionId(matchActionId++),
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700791 new SwitchPort((long) 0, (short) 0), ipMatch, actions);
Sangho Shin43cee112014-09-25 16:43:34 -0700792
Sangho Shin5be3e532014-10-03 17:20:58 -0700793 Operator operator = null;
794 if (modified)
795 operator = Operator.MODIFY;
796 else
797 operator = Operator.ADD;
798
Sangho Shin43cee112014-09-25 16:43:34 -0700799 MatchActionOperationEntry maEntry =
Sangho Shin5be3e532014-10-03 17:20:58 -0700800 new MatchActionOperationEntry(operator, matchAction);
Sangho Shin43cee112014-09-25 16:43:34 -0700801
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700802 IOF13Switch sw13 = (IOF13Switch) floodlightProvider.getMasterSwitch(
Sangho Shin9c0f4c32014-09-26 16:02:38 -0700803 getSwId(sw.getDpid().toString()));
804
Sangho Shin5be3e532014-10-03 17:20:58 -0700805 if (sw13 != null) {
806 try {
Sangho Shinbce900e2014-10-07 17:13:23 -0700807 //printMatchActionOperationEntry(sw, maEntry);
Sangho Shin5be3e532014-10-03 17:20:58 -0700808 if (entries != null)
809 entries.add(maEntry);
810 else
811 sw13.pushFlow(maEntry);
812 } catch (IOException e) {
813 e.printStackTrace();
814 }
Sangho Shin9c0f4c32014-09-26 16:02:38 -0700815 }
816
Sangho Shin43cee112014-09-25 16:43:34 -0700817 }
818
Sangho Shinac5ee2b2014-09-28 21:27:20 -0700819 /**
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700820 * Set MPLS forwarding rules to MPLS table
821 * </p>
822 * If the destination is the same as the next hop to forward packets then,
823 * pop the MPLS label according to PHP rule. Here, if BoS is set, then
824 * copy TTL In and decrement NW TTL. Otherwise, it just decrement the MPLS
825 * TTL of the another MPLS header.
826 * If the next hop is not the destination, just forward packets to next
827 * hops using Group action.
Sangho Shinfbc572c2014-10-02 16:37:05 -0700828 *
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700829 * @param sw Switch to set the rules
Sangho Shin43cee112014-09-25 16:43:34 -0700830 * @param mplsLabel destination MPLS label
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700831 * @param fwdSws next hop switches
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700832 * */
Sangho Shin5be3e532014-10-03 17:20:58 -0700833 private void setMplsTable(Switch sw, String mplsLabel, List<String> fwdSws,
834 boolean modified) {
Sangho Shin463bee52014-09-29 15:14:43 -0700835
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700836 if (fwdSws.isEmpty())
837 return;
Sangho Shin43cee112014-09-25 16:43:34 -0700838
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700839 Collection<MatchActionOperationEntry> maEntries =
840 new ArrayList<MatchActionOperationEntry>();
841 String fwdSw1 = fwdSws.get(0);
Sangho Shin43cee112014-09-25 16:43:34 -0700842
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700843 if (fwdSws.size() == 1 && mplsLabel.equals(getMplsLabel(fwdSw1))) {
844 // One rule for Bos = 1
845 MplsMatch mplsMatch = new MplsMatch(Integer.parseInt(mplsLabel), true);
846 List<Action> actions = new ArrayList<Action>();
Sangho Shin9c0f4c32014-09-26 16:02:38 -0700847
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700848 PopMplsAction popAction = new PopMplsAction(EthType.IPv4);
849 CopyTtlInAction copyTtlInAction = new CopyTtlInAction();
850 DecNwTtlAction decNwTtlAction = new DecNwTtlAction(1);
851
852 actions.add(copyTtlInAction);
853 actions.add(popAction);
854 actions.add(decNwTtlAction);
855
856 GroupAction groupAction = new GroupAction();
857 groupAction.addSwitch(new Dpid(fwdSw1));
858 actions.add(groupAction);
859
860 MatchAction matchAction = new MatchAction(new MatchActionId(matchActionId++),
861 new SwitchPort((long) 0, (short) 0), mplsMatch, actions);
862 Operator operator = Operator.ADD;
863 MatchActionOperationEntry maEntry =
864 new MatchActionOperationEntry(operator, matchAction);
865 maEntries.add(maEntry);
866
867 // One rule for Bos = 0
Sangho Shin23f898d2014-10-13 16:54:00 -0700868 MplsMatch mplsMatchBos = new MplsMatch(Integer.parseInt(mplsLabel), false);
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700869 List<Action> actionsBos = new ArrayList<Action>();
Sangho Shin15273b62014-10-16 22:22:05 -0700870 PopMplsAction popActionBos = new PopMplsAction(EthType.MPLS_UNICAST);
871 DecMplsTtlAction decMplsTtlAction = new DecMplsTtlAction(1);
872
873 actionsBos.add(copyTtlInAction);
874 actionsBos.add(popActionBos);
875 actionsBos.add(decMplsTtlAction);
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700876 actionsBos.add(groupAction);
877
878 MatchAction matchActionBos = new MatchAction(new MatchActionId(matchActionId++),
879 new SwitchPort((long) 0, (short) 0), mplsMatchBos, actionsBos);
880 MatchActionOperationEntry maEntryBos =
881 new MatchActionOperationEntry(operator, matchActionBos);
882 maEntries.add(maEntryBos);
Sangho Shin9c0f4c32014-09-26 16:02:38 -0700883 }
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700884 else {
885 MplsMatch mplsMatch = new MplsMatch(Integer.parseInt(mplsLabel), false);
886 List<Action> actions = new ArrayList<Action>();
Sangho Shin43cee112014-09-25 16:43:34 -0700887
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700888 DecMplsTtlAction decMplsTtlAction = new DecMplsTtlAction(1);
889 actions.add(decMplsTtlAction);
Sangho Shin43cee112014-09-25 16:43:34 -0700890
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700891 GroupAction groupAction = new GroupAction();
892 for (String fwdSw : fwdSws)
893 groupAction.addSwitch(new Dpid(fwdSw));
894 actions.add(groupAction);
Sangho Shin5be3e532014-10-03 17:20:58 -0700895
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700896 MatchAction matchAction = new MatchAction(new MatchActionId(
897 matchActionId++),
898 new SwitchPort((long) 0, (short) 0), mplsMatch, actions);
899 Operator operator = Operator.ADD;
900 MatchActionOperationEntry maEntry =
901 new MatchActionOperationEntry(operator, matchAction);
902 maEntries.add(maEntry);
Sangho Shine2e9bcd2014-10-13 15:14:18 -0700903
904 // BoS = 1
905 MplsMatch mplsMatchBoS = new MplsMatch(Integer.parseInt(mplsLabel), true);
906 List<Action> actionsBoS = new ArrayList<Action>();
907
908 DecMplsTtlAction decMplsTtlActionBoS = new DecMplsTtlAction(1);
909 actionsBoS.add(decMplsTtlActionBoS);
910
911 GroupAction groupActionBoS = new GroupAction();
912 for (String fwdSw : fwdSws)
913 groupActionBoS.addSwitch(new Dpid(fwdSw));
914 actionsBoS.add(groupActionBoS);
915
916 MatchAction matchActionBos = new MatchAction(new MatchActionId(
917 matchActionId++),
918 new SwitchPort((long) 0, (short) 0), mplsMatchBoS, actionsBoS);
919 MatchActionOperationEntry maEntryBoS =
920 new MatchActionOperationEntry(operator, matchActionBos);
921 maEntries.add(maEntryBoS);
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700922 }
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -0700923 IOF13Switch sw13 = (IOF13Switch) floodlightProvider.getMasterSwitch(
Sangho Shin9c0f4c32014-09-26 16:02:38 -0700924 getSwId(sw.getDpid().toString()));
925
Sangho Shin5be3e532014-10-03 17:20:58 -0700926 if (sw13 != null) {
927 try {
Sangho Shinbce900e2014-10-07 17:13:23 -0700928 //printMatchActionOperationEntry(sw, maEntry);
Sangho Shinc1b8dea2014-10-13 12:03:28 -0700929 sw13.pushFlows(maEntries);
Sangho Shin5be3e532014-10-03 17:20:58 -0700930 } catch (IOException e) {
931 e.printStackTrace();
932 }
Sangho Shin9c0f4c32014-09-26 16:02:38 -0700933 }
Sangho Shin43cee112014-09-25 16:43:34 -0700934 }
935
Sangho Shin7330c032014-10-20 10:34:51 -0700936
937 // ************************************
938 // Policy routing classes and functions
939 // ************************************
940
Fahad Naeem Khana40f9b62014-10-20 18:33:45 -0700941 public class PolicyInfo {
Sangho Shin5b8f5452014-10-20 11:46:01 -0700942
Sangho Shin58182672014-10-21 13:23:38 -0700943 public final int TYPE_EXPLICIT = 1;
944 public final int TYPE_AVOID = 2;
945
Fahad Naeem Khana40f9b62014-10-20 18:33:45 -0700946 private String policyId;
947 private PacketMatch match;
948 private int priority;
949 private String tunnelId;
Sangho Shin58182672014-10-21 13:23:38 -0700950 private int type;
Sangho Shin5b8f5452014-10-20 11:46:01 -0700951
Fahad Naeem Khana40f9b62014-10-20 18:33:45 -0700952 public PolicyInfo(String pid, PacketMatch match, int priority, String tid) {
Sangho Shin5b8f5452014-10-20 11:46:01 -0700953 this.policyId = pid;
954 this.match = match;
955 this.priority = priority;
956 this.tunnelId = tid;
957 }
Sangho Shin58182672014-10-21 13:23:38 -0700958
959 public PolicyInfo(String pid, int type, PacketMatch match, int priority,
960 String tid) {
961 this.policyId = pid;
962 this.match = match;
963 this.priority = priority;
964 this.tunnelId = tid;
965 this.type = type;
966 }
Sangho Shin5b8f5452014-10-20 11:46:01 -0700967 }
968
Fahad Naeem Khana40f9b62014-10-20 18:33:45 -0700969 public class TunnelInfo {
970 private String tunnelId;
Srikanth Vavilapalli1f6a5742014-10-21 13:45:11 -0700971 private List<Integer> labelIds;
Fahad Naeem Khana40f9b62014-10-20 18:33:45 -0700972 private List<TunnelRouteInfo> routes;
Sangho Shin81655442014-10-20 14:22:46 -0700973
Srikanth Vavilapalli1f6a5742014-10-21 13:45:11 -0700974 public TunnelInfo(String tid, List<Integer> labelIds, List<TunnelRouteInfo> routes) {
Sangho Shin81655442014-10-20 14:22:46 -0700975 this.tunnelId = tid;
Srikanth Vavilapalli1f6a5742014-10-21 13:45:11 -0700976 this.labelIds = labelIds;
Sangho Shin81655442014-10-20 14:22:46 -0700977 this.routes = routes;
978 }
Fahad Naeem Khana40f9b62014-10-20 18:33:45 -0700979 public String getTunnelId(){
980 return this.tunnelId;
981 }
Srikanth Vavilapalli1f6a5742014-10-21 13:45:11 -0700982
983 public List<Integer> getLabelids() {
984 return this.labelIds;
Fahad Naeem Khana40f9b62014-10-20 18:33:45 -0700985 }
986 public List<TunnelRouteInfo> getRoutes(){
987 return this.routes;
988 }
Sangho Shin81655442014-10-20 14:22:46 -0700989 }
990
Fahad Naeem Khana40f9b62014-10-20 18:33:45 -0700991 public class TunnelRouteInfo {
Sangho Shin7330c032014-10-20 10:34:51 -0700992
Fahad Naeem Khana40f9b62014-10-20 18:33:45 -0700993 private String srcSwDpid;
994 private List<Dpid> fwdSwDpids;
995 private List<String> route;
Sangho Shin7330c032014-10-20 10:34:51 -0700996
Fahad Naeem Khana40f9b62014-10-20 18:33:45 -0700997 public TunnelRouteInfo() {
Sangho Shin7330c032014-10-20 10:34:51 -0700998 fwdSwDpids = new ArrayList<Dpid>();
999 route = new ArrayList<String>();
1000 }
1001
Fahad Naeem Khana40f9b62014-10-20 18:33:45 -07001002 private void setSrcDpid(String dpid) {
Sangho Shin7330c032014-10-20 10:34:51 -07001003 this.srcSwDpid = dpid;
1004 }
1005
Fahad Naeem Khana40f9b62014-10-20 18:33:45 -07001006 private void setFwdSwDpid(List<Dpid> dpid) {
Sangho Shin7330c032014-10-20 10:34:51 -07001007 this.fwdSwDpids = dpid;
1008 }
1009
Fahad Naeem Khana40f9b62014-10-20 18:33:45 -07001010 private void addRoute(String id) {
Sangho Shin7330c032014-10-20 10:34:51 -07001011 route.add(id);
1012 }
1013
Fahad Naeem Khana40f9b62014-10-20 18:33:45 -07001014 private void setRoute(List<String> r) {
Sangho Shin7330c032014-10-20 10:34:51 -07001015 this.route = r;
1016 }
1017
Fahad Naeem Khana40f9b62014-10-20 18:33:45 -07001018 public String getSrcSwDpid() {
Sangho Shin7330c032014-10-20 10:34:51 -07001019 return this.srcSwDpid;
1020 }
1021
Fahad Naeem Khana40f9b62014-10-20 18:33:45 -07001022 public List<Dpid> getFwdSwDpid() {
Sangho Shin7330c032014-10-20 10:34:51 -07001023 return this.fwdSwDpids;
1024 }
1025
Fahad Naeem Khana40f9b62014-10-20 18:33:45 -07001026 public List<String> getRoute() {
Sangho Shin7330c032014-10-20 10:34:51 -07001027 return this.route;
1028 }
1029 }
1030
Sangho Shin15273b62014-10-16 22:22:05 -07001031 /**
Sangho Shin81655442014-10-20 14:22:46 -07001032 * Return the Tunnel table
1033 *
1034 * @return collection of TunnelInfo
1035 */
1036 public Collection<TunnelInfo> getTunnelTable() {
Fahad Naeem Khana40f9b62014-10-20 18:33:45 -07001037 return this.tunnelTable.values();
Sangho Shin81655442014-10-20 14:22:46 -07001038 }
1039
1040 /**
Sangho Shin5671cbb2014-10-20 22:35:41 -07001041 * Return router DPIDs for the tunnel
1042 *
1043 * @param tid tunnel ID
1044 * @return List of DPID
1045 */
Srikanth Vavilapalli1f6a5742014-10-21 13:45:11 -07001046 public List<Integer> getTunnelInfo(String tid) {
Sangho Shin5671cbb2014-10-20 22:35:41 -07001047 TunnelInfo tunnelInfo = tunnelTable.get(tid);
Srikanth Vavilapalli1f6a5742014-10-21 13:45:11 -07001048 return tunnelInfo.labelIds;
Sangho Shin5671cbb2014-10-20 22:35:41 -07001049
1050 }
1051
1052 /**
1053 * Get the first group ID for the tunnel for specific source router
1054 * If Segment Stitching was required to create the tunnel, there are
1055 * mutiple source routers.
1056 *
1057 * @param tunnelId ID for the tunnel
1058 * @param dpid source router DPID
1059 * @return the first group ID of the tunnel
1060 */
1061 public int getTunnelGroupId(String tunnelId, String dpid) {
1062 IOF13Switch sw13 = (IOF13Switch) floodlightProvider.getMasterSwitch(
1063 getSwId(dpid));
1064
1065 if (sw13 == null) {
1066 return -1;
1067 }
1068 else {
1069 return sw13.getTunnelGroupId(tunnelId);
1070 }
1071 }
1072
1073 /**
Sangho Shin15273b62014-10-16 22:22:05 -07001074 * Create a tunnel for policy routing
1075 * It delivers the node IDs of tunnels to driver.
1076 * Split the node IDs if number of IDs exceeds the limit for stitching.
1077 *
1078 * @param tunnelId Node IDs for the tunnel
1079 * @param Ids tunnel ID
1080 */
Srikanth Vavilapalli1f6a5742014-10-21 13:45:11 -07001081 public boolean createTunnel(String tunnelId, List<Integer> labelIds) {
Sangho Shin15273b62014-10-16 22:22:05 -07001082
Srikanth Vavilapalli1f6a5742014-10-21 13:45:11 -07001083 if (labelIds.isEmpty() || labelIds.size() < 2) {
Sangho Shin15273b62014-10-16 22:22:05 -07001084 log.debug("Wrong tunnel information");
1085 return false;
1086 }
1087
Sangho Shin55d00e12014-10-20 12:13:07 -07001088 List<String> Ids = new ArrayList<String>();
Srikanth Vavilapalli1f6a5742014-10-21 13:45:11 -07001089 for (Integer label : labelIds) {
1090 Ids.add(label.toString());
Sangho Shin55d00e12014-10-20 12:13:07 -07001091 }
1092
Sangho Shin81655442014-10-20 14:22:46 -07001093 List<TunnelRouteInfo> stitchingRule = getStitchingRule(Ids);
Sangho Shin15273b62014-10-16 22:22:05 -07001094 if (stitchingRule == null) {
1095 log.debug("Failed to get the policy rule.");
1096 return false;
1097 }
Sangho Shin81655442014-10-20 14:22:46 -07001098 for (TunnelRouteInfo route: stitchingRule) {
Sangho Shin15273b62014-10-16 22:22:05 -07001099
1100 IOF13Switch targetSw = (IOF13Switch) floodlightProvider.getMasterSwitch(
Sangho Shin81655442014-10-20 14:22:46 -07001101 getSwId(route.srcSwDpid));
Sangho Shin15273b62014-10-16 22:22:05 -07001102
1103 if (targetSw == null) {
Sangho Shin81655442014-10-20 14:22:46 -07001104 log.debug("Switch {} is gone.", route.srcSwDpid);
Sangho Shin15273b62014-10-16 22:22:05 -07001105 return false;
1106 }
1107
1108 NeighborSet ns = new NeighborSet();
1109 for (Dpid dpid: route.getFwdSwDpid())
1110 ns.addDpid(dpid);
1111
1112 printTunnelInfo(targetSw, tunnelId, route.getRoute(), ns);
Sangho Shin4b46bcd2014-10-20 15:48:47 -07001113 targetSw.createTunnel(tunnelId, route.getRoute(), ns);
Sangho Shin15273b62014-10-16 22:22:05 -07001114 }
1115
Srikanth Vavilapalli1f6a5742014-10-21 13:45:11 -07001116 TunnelInfo tunnelInfo = new TunnelInfo(tunnelId, labelIds, stitchingRule);
Sangho Shin81655442014-10-20 14:22:46 -07001117 tunnelTable.put(tunnelId, tunnelInfo);
Sangho Shin15273b62014-10-16 22:22:05 -07001118
1119 return true;
1120 }
1121
1122 /**
1123 * Set policy table for policy routing
1124 *
1125 * @param sw
1126 * @param mplsLabel
Sangho Shin306633a2014-10-20 14:26:55 -07001127 * @return
Sangho Shin15273b62014-10-16 22:22:05 -07001128 */
Sangho Shin306633a2014-10-20 14:26:55 -07001129 public boolean createPolicy(String pid, MACAddress srcMac, MACAddress dstMac,
Sangho Shin15273b62014-10-16 22:22:05 -07001130 Short etherType, IPv4Net srcIp, IPv4Net dstIp, Byte ipProto,
Sangho Shine020cc32014-10-20 13:28:02 -07001131 Short srcTcpPort, Short dstTcpPort, int priority, String tid) {
Sangho Shin15273b62014-10-16 22:22:05 -07001132
Sangho Shin5b8f5452014-10-20 11:46:01 -07001133 PacketMatchBuilder packetBuilder = new PacketMatchBuilder();
1134
1135 if (srcMac != null)
1136 packetBuilder.setSrcMac(srcMac);
1137 if (dstMac != null)
1138 packetBuilder.setDstMac(dstMac);
Sangho Shin58182672014-10-21 13:23:38 -07001139 if (etherType == null) // Cqpd requires the type of IPV4
1140 packetBuilder.setEtherType(Ethernet.TYPE_IPV4);
1141 else
Sangho Shin5b8f5452014-10-20 11:46:01 -07001142 packetBuilder.setEtherType(etherType);
1143 if (srcIp != null)
1144 packetBuilder.setSrcIp(srcIp.address(), srcIp.prefixLen());
1145 if (dstIp != null)
1146 packetBuilder.setDstIp(dstIp.address(), dstIp.prefixLen());
1147 if (ipProto != null)
1148 packetBuilder.setIpProto(ipProto);
1149 if (srcTcpPort > 0)
1150 packetBuilder.setSrcTcpPort(srcTcpPort);
1151 if (dstTcpPort > 0)
1152 packetBuilder.setDstTcpPort(dstTcpPort);
1153 PacketMatch policyMatch = packetBuilder.build();
Sangho Shin81655442014-10-20 14:22:46 -07001154 TunnelInfo tunnelInfo = tunnelTable.get(tid);
1155 List<TunnelRouteInfo> routes = tunnelInfo.routes;
Sangho Shin5b8f5452014-10-20 11:46:01 -07001156
Sangho Shin81655442014-10-20 14:22:46 -07001157 for (TunnelRouteInfo route : routes) {
Sangho Shin15273b62014-10-16 22:22:05 -07001158 List<Action> actions = new ArrayList<>();
1159 GroupAction groupAction = new GroupAction();
Sangho Shin81655442014-10-20 14:22:46 -07001160 groupAction.setTunnelId(tid);
Sangho Shin15273b62014-10-16 22:22:05 -07001161 actions.add(groupAction);
1162
1163 MatchAction matchAction = new MatchAction(new MatchActionId(
1164 matchActionId++),
Sangho Shin5b8f5452014-10-20 11:46:01 -07001165 new SwitchPort((long) 0, (short) 0), policyMatch, priority,
1166 actions);
Sangho Shin15273b62014-10-16 22:22:05 -07001167 MatchActionOperationEntry maEntry =
1168 new MatchActionOperationEntry(Operator.ADD, matchAction);
1169
1170 IOF13Switch sw13 = (IOF13Switch) floodlightProvider.getMasterSwitch(
Sangho Shin81655442014-10-20 14:22:46 -07001171 getSwId(route.srcSwDpid));
Sangho Shin15273b62014-10-16 22:22:05 -07001172
1173 if (sw13 != null) {
1174 printMatchActionOperationEntry(sw13, maEntry);
1175 try {
1176 sw13.pushFlow(maEntry);
1177 } catch (IOException e) {
1178 e.printStackTrace();
Sangho Shin306633a2014-10-20 14:26:55 -07001179 return false;
Sangho Shin15273b62014-10-16 22:22:05 -07001180 }
1181 }
1182 }
Sangho Shin5b8f5452014-10-20 11:46:01 -07001183
1184 PolicyInfo policyInfo = new PolicyInfo(pid, policyMatch, priority, tid);
Sangho Shine020cc32014-10-20 13:28:02 -07001185 policyTable.put(pid, policyInfo);
Sangho Shin306633a2014-10-20 14:26:55 -07001186
1187 return true;
Sangho Shin15273b62014-10-16 22:22:05 -07001188 }
1189
1190 /**
Sangho Shin1ad7be02014-10-20 16:56:49 -07001191 * Split the nodes IDs into multiple tunnel if Segment Stitching is required.
1192 * We assume that the first node ID is the one of source router, and the last
1193 * node ID is that of the destination router.
Sangho Shin15273b62014-10-16 22:22:05 -07001194 *
Sangho Shin1ad7be02014-10-20 16:56:49 -07001195 * @param route list of node IDs
1196 * @return List of the TunnelRoutInfo
Sangho Shin15273b62014-10-16 22:22:05 -07001197 */
Sangho Shin81655442014-10-20 14:22:46 -07001198 private List<TunnelRouteInfo> getStitchingRule(List<String> route) {
Sangho Shin15273b62014-10-16 22:22:05 -07001199
1200 if (route.isEmpty() || route.size() < 2)
1201 return null;
1202
Sangho Shin81655442014-10-20 14:22:46 -07001203 List<TunnelRouteInfo> rules = new ArrayList<TunnelRouteInfo>();
Sangho Shin15273b62014-10-16 22:22:05 -07001204
1205 Switch srcSw = this.getSwitchFromNodeId(route.get(0));
1206 String srcDpid = srcSw.getDpid().toString();
1207
1208 if (route.size() <= MAX_NUM_LABELS+1) {
Sangho Shin58182672014-10-21 13:23:38 -07001209 boolean match =false;
1210 TunnelRouteInfo routeInfo = new TunnelRouteInfo();
1211 routeInfo.setSrcDpid(srcSw.getDpid().toString());
1212 String nodeId = route.get(1);
Sangho Shina000c612014-10-21 14:17:59 -07001213 List<Dpid> fwdSwDpids = getForwardingSwitchForNodeId(srcSw, nodeId);
Sangho Shin58182672014-10-21 13:23:38 -07001214 for (Dpid dpid: fwdSwDpids) {
1215 if (getMplsLabel(dpid.toString()).toString().equals(nodeId)) {
1216 List<Dpid> fwdSws = new ArrayList<Dpid>();
1217 fwdSws.add(dpid);
1218 routeInfo.setFwdSwDpid(fwdSws);
1219 match = true;
1220 break;
1221 }
1222 }
1223 route.remove(0); // remove source router from the list
1224 if (match) {
1225 route.remove(0);
1226 }
1227 else {
1228 routeInfo.setFwdSwDpid(fwdSwDpids);
1229 }
1230 routeInfo.setRoute(route);
1231 rules.add(routeInfo);
Sangho Shin15273b62014-10-16 22:22:05 -07001232 return rules;
1233 }
1234
1235 int i = 0;
Sangho Shine020cc32014-10-20 13:28:02 -07001236 TunnelRouteInfo routeInfo = new TunnelRouteInfo();
Sangho Shin15273b62014-10-16 22:22:05 -07001237 boolean checkNeighbor = true;
1238
1239 for (String nodeId: route) {
Sangho Shin1ad7be02014-10-20 16:56:49 -07001240 // First node ID is always the source router
Sangho Shin15273b62014-10-16 22:22:05 -07001241 if (i == 0) {
1242 routeInfo.setSrcDpid(srcDpid);
1243 srcSw = getSwitchFromNodeId(nodeId);
1244 i++;
1245 }
Sangho Shin58182672014-10-21 13:23:38 -07001246 else if (i == 1 && checkNeighbor) {
1247 // Check if next node is the neighbor SW of the source SW
1248 List<Dpid> fwdSwDpids = getForwardingSwitchForNodeId(srcSw,
1249 nodeId);
1250 if (fwdSwDpids == null || fwdSwDpids.isEmpty()) {
1251 log.debug("There is no route from node {} to node {}",
1252 srcSw.getDpid(), nodeId);
1253 return null;
Sangho Shin15273b62014-10-16 22:22:05 -07001254 }
Sangho Shin58182672014-10-21 13:23:38 -07001255 // If first Id is one of the neighbors, do not include it to route, but set it as a fwd SW.
1256 boolean match = false;
1257 for (Dpid dpid: fwdSwDpids) {
1258 if (getMplsLabel(dpid.toString()).toString().equals(nodeId)) {
1259 List<Dpid> fwdSws = new ArrayList<Dpid>();
1260 fwdSws.add(dpid);
1261 routeInfo.setFwdSwDpid(fwdSws);
1262 match = true;
1263 break;
1264 }
1265 }
1266 if (!match) {
Sangho Shin15273b62014-10-16 22:22:05 -07001267 routeInfo.addRoute(nodeId);
Sangho Shin58182672014-10-21 13:23:38 -07001268 routeInfo.setFwdSwDpid(fwdSwDpids);
Sangho Shin15273b62014-10-16 22:22:05 -07001269 i++;
1270 }
Sangho Shin58182672014-10-21 13:23:38 -07001271 // we check only the next node ID of the source router
1272 checkNeighbor = false;
Sangho Shin15273b62014-10-16 22:22:05 -07001273 }
1274 else {
1275 routeInfo.addRoute(nodeId);
1276 i++;
1277 }
1278
Sangho Shin1ad7be02014-10-20 16:56:49 -07001279 // If the number of labels reaches the limit, start over the procedure
Sangho Shin15273b62014-10-16 22:22:05 -07001280 if (i == MAX_NUM_LABELS+1) {
Sangho Shin81655442014-10-20 14:22:46 -07001281 rules.add(routeInfo);
Sangho Shine020cc32014-10-20 13:28:02 -07001282 routeInfo = new TunnelRouteInfo();
Sangho Shin15273b62014-10-16 22:22:05 -07001283 srcSw = getSwitchFromNodeId(nodeId);
1284 srcDpid = getSwitchFromNodeId(nodeId).getDpid().toString();
1285 routeInfo.setSrcDpid(srcDpid);
1286 i = 1;
1287 checkNeighbor = true;
1288 }
1289 }
1290
1291 if (i < MAX_NUM_LABELS+1) {
Sangho Shin81655442014-10-20 14:22:46 -07001292 rules.add(routeInfo);
Sangho Shin15273b62014-10-16 22:22:05 -07001293 }
1294
1295 return rules;
1296 }
1297
Sangho Shin5b8f5452014-10-20 11:46:01 -07001298 /**
1299 * Remove all policies applied to specific tunnel.
1300 *
1301 * @param srcMac
1302 * @param dstMac
1303 * @param etherType
1304 * @param srcIp
1305 * @param dstIp
1306 * @param ipProto
1307 * @param srcTcpPort
1308 * @param dstTcpPort
1309 * @param tid
Sangho Shin306633a2014-10-20 14:26:55 -07001310 * @return
Sangho Shin5b8f5452014-10-20 11:46:01 -07001311 */
Sangho Shin306633a2014-10-20 14:26:55 -07001312 public boolean removePolicy(String pid) {
Sangho Shine020cc32014-10-20 13:28:02 -07001313 PolicyInfo policyInfo = policyTable.get(pid);
Sangho Shin5671cbb2014-10-20 22:35:41 -07001314 if (policyInfo == null)
1315 return false;
Sangho Shin5b8f5452014-10-20 11:46:01 -07001316 PacketMatch policyMatch = policyInfo.match;
Sangho Shine020cc32014-10-20 13:28:02 -07001317 String tid = policyInfo.tunnelId;
Sangho Shin5b8f5452014-10-20 11:46:01 -07001318 int priority = policyInfo.priority;
1319
1320 List<Action> actions = new ArrayList<>();
1321 int gropuId = 0; // dummy group ID
1322 GroupAction groupAction = new GroupAction();
1323 groupAction.setGroupId(gropuId);
1324 actions.add(groupAction);
1325
1326 MatchAction matchAction = new MatchAction(new MatchActionId(
1327 matchActionId++),
1328 new SwitchPort((long) 0, (short) 0), policyMatch, priority,
1329 actions);
1330 MatchActionOperationEntry maEntry =
1331 new MatchActionOperationEntry(Operator.REMOVE, matchAction);
1332
Sangho Shin81655442014-10-20 14:22:46 -07001333 TunnelInfo tunnelInfo = tunnelTable.get(tid);
Sangho Shin5671cbb2014-10-20 22:35:41 -07001334 if (tunnelInfo == null)
1335 return false;
Sangho Shin81655442014-10-20 14:22:46 -07001336 List<TunnelRouteInfo> routes = tunnelInfo.routes;
1337
1338 for (TunnelRouteInfo route : routes) {
Sangho Shin5b8f5452014-10-20 11:46:01 -07001339 IOF13Switch sw13 = (IOF13Switch) floodlightProvider.getMasterSwitch(
Sangho Shin81655442014-10-20 14:22:46 -07001340 getSwId(route.srcSwDpid));
Sangho Shin5b8f5452014-10-20 11:46:01 -07001341
Sangho Shin5671cbb2014-10-20 22:35:41 -07001342 if (sw13 == null) {
1343 return false;
1344 }
1345 else {
Sangho Shin5b8f5452014-10-20 11:46:01 -07001346 printMatchActionOperationEntry(sw13, maEntry);
1347 try {
1348 sw13.pushFlow(maEntry);
1349 } catch (IOException e) {
1350 e.printStackTrace();
1351 log.debug("policy remove failed due to pushFlow() exception");
Sangho Shin306633a2014-10-20 14:26:55 -07001352 return false;
Sangho Shin5b8f5452014-10-20 11:46:01 -07001353 }
1354 }
1355 }
1356
Sangho Shin4b46bcd2014-10-20 15:48:47 -07001357 policyTable.remove(pid);
Sangho Shin5b8f5452014-10-20 11:46:01 -07001358 log.debug("Policy {} is removed.", pid);
Sangho Shin306633a2014-10-20 14:26:55 -07001359 return true;
Sangho Shine020cc32014-10-20 13:28:02 -07001360 }
Sangho Shin5b8f5452014-10-20 11:46:01 -07001361
Sangho Shin4b46bcd2014-10-20 15:48:47 -07001362 /**
1363 * Remove a tunnel
1364 * It removes all groups for the tunnel if the tunnel is not used for any
1365 * policy.
1366 *
1367 * @param tunnelId tunnel ID to remove
1368 */
Sangho Shin306633a2014-10-20 14:26:55 -07001369 public boolean removeTunnel(String tunnelId) {
Sangho Shin55d00e12014-10-20 12:13:07 -07001370
Sangho Shin4b46bcd2014-10-20 15:48:47 -07001371 // Check if the tunnel is used for any policy
1372 for (PolicyInfo policyInfo: policyTable.values()) {
Sangho Shina000c612014-10-21 14:17:59 -07001373 if (policyInfo.tunnelId.equals(tunnelId)) {
Sangho Shin4b46bcd2014-10-20 15:48:47 -07001374 log.debug("Tunnel {} is still used for the policy {}.",
1375 policyInfo.policyId, tunnelId);
1376 return false;
1377 }
1378 }
1379
1380 TunnelInfo tunnelInfo = tunnelTable.get(tunnelId);
Sangho Shin5671cbb2014-10-20 22:35:41 -07001381 if (tunnelInfo == null)
1382 return false;
Sangho Shin4b46bcd2014-10-20 15:48:47 -07001383
1384 List<TunnelRouteInfo> routes = tunnelInfo.routes;
1385 for (TunnelRouteInfo route: routes) {
1386 IOF13Switch sw13 = (IOF13Switch) floodlightProvider.getMasterSwitch(
1387 getSwId(route.srcSwDpid));
1388
Sangho Shin5671cbb2014-10-20 22:35:41 -07001389 if (sw13 == null) {
1390 return false;
1391 }
1392 else {
Sangho Shin4b46bcd2014-10-20 15:48:47 -07001393 sw13.removeTunnel(tunnelId);
1394 }
1395 }
1396
1397 tunnelTable.remove(tunnelId);
1398 log.debug("Tunnel {} was removed ", tunnelId);
1399
Sangho Shin306633a2014-10-20 14:26:55 -07001400 return true;
Sangho Shin55d00e12014-10-20 12:13:07 -07001401 }
1402
Sangho Shin7330c032014-10-20 10:34:51 -07001403 // ************************************
1404 // Utility functions
1405 // ************************************
1406
Sangho Shin15273b62014-10-16 22:22:05 -07001407 /**
Sangho Shin7330c032014-10-20 10:34:51 -07001408 * Get the forwarding Switch DPIDs to send packets to a node
Sangho Shin15273b62014-10-16 22:22:05 -07001409 *
Sangho Shin7330c032014-10-20 10:34:51 -07001410 * @param srcSw source switch
1411 * @param nodeId destination node Id
1412 * @return list of switch DPID to forward packets to
Sangho Shin15273b62014-10-16 22:22:05 -07001413 */
Sangho Shin7330c032014-10-20 10:34:51 -07001414 private List<Dpid> getForwardingSwitchForNodeId(Switch srcSw, String nodeId) {
Sangho Shin15273b62014-10-16 22:22:05 -07001415
Sangho Shin7330c032014-10-20 10:34:51 -07001416 List<Dpid> fwdSws = new ArrayList<Dpid>();
1417 Switch destSw = null;
Sangho Shin15273b62014-10-16 22:22:05 -07001418
Sangho Shin7330c032014-10-20 10:34:51 -07001419 destSw = getSwitchFromNodeId(nodeId);
1420
1421 if (destSw == null) {
1422 log.debug("Cannot find the switch with ID {}", nodeId);
1423 return null;
1424 }
1425
1426 ECMPShortestPathGraph ecmpSPG = new ECMPShortestPathGraph(srcSw);
1427
1428 HashMap<Integer, HashMap<Switch, ArrayList<ArrayList<Dpid>>>> switchVia =
1429 ecmpSPG.getAllLearnedSwitchesAndVia();
1430 for (Integer itrIdx : switchVia.keySet()) {
1431 HashMap<Switch, ArrayList<ArrayList<Dpid>>> swViaMap =
1432 switchVia.get(itrIdx);
1433 for (Switch targetSw : swViaMap.keySet()) {
1434 String destSwDpid = destSw.getDpid().toString();
1435 if (targetSw.getDpid().toString().equals(destSwDpid)) {
1436 for (ArrayList<Dpid> via : swViaMap.get(targetSw)) {
1437 if (via.isEmpty()) {
1438 fwdSws.add(destSw.getDpid());
1439 }
1440 else {
Sangho Shina000c612014-10-21 14:17:59 -07001441 Dpid firstVia = via.get(via.size()-1);
1442 fwdSws.add(firstVia);
Sangho Shin7330c032014-10-20 10:34:51 -07001443 }
1444 }
1445 }
1446 }
1447 }
1448
1449 return fwdSws;
Sangho Shin15273b62014-10-16 22:22:05 -07001450 }
1451
Sangho Shin7330c032014-10-20 10:34:51 -07001452 /**
1453 * Get switch for the node Id specified
1454 *
1455 * @param nodeId node ID for switch
1456 * @return Switch
1457 */
1458 private Switch getSwitchFromNodeId(String nodeId) {
Fahad Naeem Khan4444b952014-10-18 22:30:50 -07001459
Sangho Shin7330c032014-10-20 10:34:51 -07001460 for (Switch sw : mutableTopology.getSwitches()) {
1461 String id = sw.getStringAttribute("nodeSid");
1462 if (id.equals(nodeId)) {
1463 return sw;
1464 }
1465 }
1466
1467 return null;
1468 }
Fahad Naeem Khan4444b952014-10-18 22:30:50 -07001469
Sangho Shin43cee112014-09-25 16:43:34 -07001470 /**
Sangho Shin7330c032014-10-20 10:34:51 -07001471 * Convert a string DPID to its Switch Id (integer)
Sangho Shinfbc572c2014-10-02 16:37:05 -07001472 *
Sangho Shin7330c032014-10-20 10:34:51 -07001473 * @param dpid
1474 * @return
Sangho Shin43cee112014-09-25 16:43:34 -07001475 */
Sangho Shin7330c032014-10-20 10:34:51 -07001476 private long getSwId(String dpid) {
Sangho Shin43cee112014-09-25 16:43:34 -07001477
Sangho Shin7330c032014-10-20 10:34:51 -07001478 long swId = 0;
Sangho Shin43cee112014-09-25 16:43:34 -07001479
Sangho Shin7330c032014-10-20 10:34:51 -07001480 String swIdHexStr = "0x"+dpid.substring(dpid.lastIndexOf(":") + 1);
1481 if (swIdHexStr != null)
1482 swId = Integer.decode(swIdHexStr);
Sangho Shin43cee112014-09-25 16:43:34 -07001483
Sangho Shin7330c032014-10-20 10:34:51 -07001484 return swId;
1485 }
Sangho Shin43cee112014-09-25 16:43:34 -07001486
Sangho Shin7330c032014-10-20 10:34:51 -07001487 /**
1488 * Check if the switch is the edge router or not.
1489 *
1490 * @param dpid Dpid of the switch to check
1491 * @return true if it is an edge router, otherwise false
1492 */
1493 private boolean IsEdgeRouter(String dpid) {
Sangho Shin0df01982014-09-25 17:11:18 -07001494
Sangho Shin7330c032014-10-20 10:34:51 -07001495 for (Switch sw : mutableTopology.getSwitches()) {
1496 String dpidStr = sw.getDpid().toString();
1497 if (dpid.equals(dpidStr)) {
1498 /*
1499 String subnetInfo = sw.getStringAttribute("subnets");
1500 if (subnetInfo == null || subnetInfo.equals("[]")) {
1501 return false;
1502 }
1503 else
1504 return true;
1505 */
1506 String isEdge = sw.getStringAttribute("isEdgeRouter");
1507 if (isEdge != null) {
1508 if (isEdge.equals("true"))
1509 return true;
1510 else
1511 return false;
1512 }
Sangho Shin43cee112014-09-25 16:43:34 -07001513 }
1514 }
1515
Sangho Shin7330c032014-10-20 10:34:51 -07001516 return false;
Sangho Shineb083032014-09-22 16:11:34 -07001517 }
1518
1519 /**
1520 * Get MPLS label reading the config file
Sangho Shinfbc572c2014-10-02 16:37:05 -07001521 *
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -07001522 * @param dipid DPID of the switch
Sangho Shineb083032014-09-22 16:11:34 -07001523 * @return MPLS label for the switch
1524 */
Sangho Shin43cee112014-09-25 16:43:34 -07001525 private String getMplsLabel(String dpid) {
Sangho Shineb083032014-09-22 16:11:34 -07001526
1527 String mplsLabel = null;
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -07001528 for (Switch sw : mutableTopology.getSwitches()) {
Sangho Shin43cee112014-09-25 16:43:34 -07001529 String dpidStr = sw.getDpid().toString();
1530 if (dpid.equals(dpidStr)) {
Sangho Shineb083032014-09-22 16:11:34 -07001531 mplsLabel = sw.getStringAttribute("nodeSid");
1532 break;
Sangho Shin1aa93542014-09-22 09:49:44 -07001533 }
1534 }
1535
Sangho Shineb083032014-09-22 16:11:34 -07001536 return mplsLabel;
Sangho Shin1aa93542014-09-22 09:49:44 -07001537 }
1538
Sangho Shineb083032014-09-22 16:11:34 -07001539 /**
Sangho Shin1aa93542014-09-22 09:49:44 -07001540 * The function checks if given IP matches to the given subnet mask
Sangho Shinfbc572c2014-10-02 16:37:05 -07001541 *
Sangho Shin1aa93542014-09-22 09:49:44 -07001542 * @param addr - subnet address to match
1543 * @param addr1 - IP address to check
1544 * @return true if the IP address matches to the subnet, otherwise false
1545 */
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -07001546 public boolean netMatch(String addr, String addr1) { // addr is subnet
1547 // address and addr1 is
1548 // ip address. Function
1549 // will return true, if
1550 // addr1 is within
1551 // addr(subnet)
Sangho Shin1aa93542014-09-22 09:49:44 -07001552
1553 String[] parts = addr.split("/");
1554 String ip = parts[0];
1555 int prefix;
1556
1557 if (parts.length < 2) {
1558 prefix = 0;
1559 } else {
1560 prefix = Integer.parseInt(parts[1]);
1561 }
1562
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -07001563 Inet4Address a = null;
1564 Inet4Address a1 = null;
Sangho Shin1aa93542014-09-22 09:49:44 -07001565 try {
1566 a = (Inet4Address) InetAddress.getByName(ip);
1567 a1 = (Inet4Address) InetAddress.getByName(addr1);
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -07001568 } catch (UnknownHostException e) {
1569 }
Sangho Shin1aa93542014-09-22 09:49:44 -07001570
1571 byte[] b = a.getAddress();
1572 int ipInt = ((b[0] & 0xFF) << 24) |
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -07001573 ((b[1] & 0xFF) << 16) |
1574 ((b[2] & 0xFF) << 8) |
1575 ((b[3] & 0xFF) << 0);
Sangho Shin1aa93542014-09-22 09:49:44 -07001576
1577 byte[] b1 = a1.getAddress();
1578 int ipInt1 = ((b1[0] & 0xFF) << 24) |
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -07001579 ((b1[1] & 0xFF) << 16) |
1580 ((b1[2] & 0xFF) << 8) |
1581 ((b1[3] & 0xFF) << 0);
Sangho Shin1aa93542014-09-22 09:49:44 -07001582
1583 int mask = ~((1 << (32 - prefix)) - 1);
1584
1585 if ((ipInt & mask) == (ipInt1 & mask)) {
1586 return true;
1587 }
1588 else {
1589 return false;
1590 }
1591 }
Sangho Shineb083032014-09-22 16:11:34 -07001592
Sangho Shinac5ee2b2014-09-28 21:27:20 -07001593 /**
1594 * Add a routing rule for the host
Sangho Shinfbc572c2014-10-02 16:37:05 -07001595 *
Sangho Shinac5ee2b2014-09-28 21:27:20 -07001596 * @param sw - Switch to add the rule
1597 * @param hostIpAddress Destination host IP address
1598 * @param hostMacAddress Destination host MAC address
1599 */
Sangho Shineb083032014-09-22 16:11:34 -07001600 public void addRouteToHost(Switch sw, int hostIpAddress, byte[] hostMacAddress) {
1601 ipHandler.addRouteToHost(sw, hostIpAddress, hostMacAddress);
Sangho Shineb083032014-09-22 16:11:34 -07001602 }
Sangho Shin9c0f4c32014-09-26 16:02:38 -07001603
Sangho Shin463bee52014-09-29 15:14:43 -07001604 /**
1605 * Add IP packet to a buffer queue
Sangho Shinfbc572c2014-10-02 16:37:05 -07001606 *
Sangho Shin463bee52014-09-29 15:14:43 -07001607 * @param ipv4
1608 */
Sangho Shin7330c032014-10-20 10:34:51 -07001609 public void addPacketToPacketBuffer(IPv4 ipv4) {
Sangho Shin61535402014-10-01 11:37:14 -07001610 ipPacketQueue.add(ipv4);
Sangho Shin463bee52014-09-29 15:14:43 -07001611 }
1612
1613 /**
1614 * Retrieve all packets whose destination is the given address.
Sangho Shinfbc572c2014-10-02 16:37:05 -07001615 *
Sangho Shin463bee52014-09-29 15:14:43 -07001616 * @param destIp Destination address of packets to retrieve
1617 */
1618 public List<IPv4> getIpPacketFromQueue(byte[] destIp) {
1619
1620 List<IPv4> bufferedPackets = new ArrayList<IPv4>();
1621
Sangho Shin61535402014-10-01 11:37:14 -07001622 if (!ipPacketQueue.isEmpty()) {
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -07001623 for (IPv4 ip : ipPacketQueue) {
Sangho Shin61535402014-10-01 11:37:14 -07001624 int dest = ip.getDestinationAddress();
1625 IPv4Address ip1 = IPv4Address.of(dest);
1626 IPv4Address ip2 = IPv4Address.of(destIp);
1627 if (ip1.equals(ip2)) {
Srikanth Vavilapallif25c7b02014-10-01 14:30:43 -07001628 bufferedPackets.add((IPv4) (ipPacketQueue.poll()).clone());
Sangho Shin463bee52014-09-29 15:14:43 -07001629 }
1630 }
1631 }
1632
1633 return bufferedPackets;
1634 }
1635
Sangho Shin7330c032014-10-20 10:34:51 -07001636 /**
1637 * Get MAC address to known hosts
1638 *
1639 * @param destinationAddress IP address to get MAC address
1640 * @return MAC Address to given IP address
1641 */
1642 public byte[] getMacAddressFromIpAddress(int destinationAddress) {
1643
1644 // Can't we get the host IP address from the TopologyService ??
1645
1646 Iterator<ArpEntry> iterator = arpEntries.iterator();
1647
1648 IPv4Address ipAddress = IPv4Address.of(destinationAddress);
1649 byte[] ipAddressInByte = ipAddress.getBytes();
1650
1651 while (iterator.hasNext()) {
1652 ArpEntry arpEntry = iterator.next();
1653 byte[] address = arpEntry.targetIpAddress;
1654
1655 IPv4Address a = IPv4Address.of(address);
1656 IPv4Address b = IPv4Address.of(ipAddressInByte);
1657
1658 if (a.equals(b)) {
1659 log.debug("Found an arp entry");
1660 return arpEntry.targetMacAddress;
1661 }
1662 }
1663
1664 return null;
1665 }
1666
1667 /**
1668 * Send an ARP request via ArpHandler
1669 *
1670 * @param destinationAddress
1671 * @param sw
1672 * @param inPort
1673 *
1674 */
1675 public void sendArpRequest(Switch sw, int destinationAddress, Port inPort) {
1676 arpHandler.sendArpRequest(sw, destinationAddress, inPort);
1677 }
1678
1679
1680 // ************************************
1681 // Test functions
1682 // ************************************
1683
Sangho Shin55d00e12014-10-20 12:13:07 -07001684 private void runTest() {
1685
1686 if (testMode == POLICY_ADD1) {
Srikanth Vavilapalli1f6a5742014-10-21 13:45:11 -07001687 Integer[] routeArray = {101, 105, 110};
1688 /*List<Dpid> routeList = new ArrayList<Dpid>();
Sangho Shin55d00e12014-10-20 12:13:07 -07001689 for (int i = 0; i < routeArray.length; i++) {
1690 Dpid dpid = getSwitchFromNodeId(routeArray[i]).getDpid();
1691 routeList.add(dpid);
Srikanth Vavilapalli1f6a5742014-10-21 13:45:11 -07001692 }*/
Sangho Shin55d00e12014-10-20 12:13:07 -07001693
Srikanth Vavilapalli1f6a5742014-10-21 13:45:11 -07001694 if (createTunnel("1", Arrays.asList(routeArray))) {
Sangho Shin55d00e12014-10-20 12:13:07 -07001695 IPv4Net srcIp = new IPv4Net("10.0.1.1/24");
1696 IPv4Net dstIp = new IPv4Net("10.1.2.1/24");
1697
1698 log.debug("Set the policy 1");
Sangho Shine020cc32014-10-20 13:28:02 -07001699 this.createPolicy("1", null, null, Ethernet.TYPE_IPV4, srcIp,
Sangho Shin55d00e12014-10-20 12:13:07 -07001700 dstIp, IPv4.PROTOCOL_ICMP, (short)-1, (short)-1, 10000,
Sangho Shine020cc32014-10-20 13:28:02 -07001701 "1");
Sangho Shin55d00e12014-10-20 12:13:07 -07001702 testMode = POLICY_ADD2;
Sangho Shin4b46bcd2014-10-20 15:48:47 -07001703 testTask.reschedule(5, TimeUnit.SECONDS);
Sangho Shin55d00e12014-10-20 12:13:07 -07001704 }
1705 else {
1706 // retry it
1707 testTask.reschedule(5, TimeUnit.SECONDS);
1708 }
1709 }
1710 else if (testMode == POLICY_ADD2) {
Srikanth Vavilapalli1f6a5742014-10-21 13:45:11 -07001711 Integer[] routeArray = {101, 102, 103, 104, 105, 108, 110};
Sangho Shin55d00e12014-10-20 12:13:07 -07001712
Srikanth Vavilapalli1f6a5742014-10-21 13:45:11 -07001713 if (createTunnel("2", Arrays.asList(routeArray))) {
Sangho Shin55d00e12014-10-20 12:13:07 -07001714 IPv4Net srcIp = new IPv4Net("10.0.1.1/24");
1715 IPv4Net dstIp = new IPv4Net("10.1.2.1/24");
1716
1717 log.debug("Set the policy 2");
Sangho Shine020cc32014-10-20 13:28:02 -07001718 this.createPolicy("2", null, null, Ethernet.TYPE_IPV4, srcIp,
Sangho Shin55d00e12014-10-20 12:13:07 -07001719 dstIp, IPv4.PROTOCOL_ICMP, (short)-1, (short)-1, 20000,
Sangho Shine020cc32014-10-20 13:28:02 -07001720 "2");
Sangho Shin55d00e12014-10-20 12:13:07 -07001721 testMode = POLICY_REMOVE2;
Sangho Shin4b46bcd2014-10-20 15:48:47 -07001722 testTask.reschedule(5, TimeUnit.SECONDS);
Sangho Shin55d00e12014-10-20 12:13:07 -07001723 }
1724 else {
1725 log.debug("Retry it");
1726 testTask.reschedule(5, TimeUnit.SECONDS);
1727 }
1728 }
1729 else if (testMode == POLICY_REMOVE2){
1730 log.debug("Remove the policy 2");
Sangho Shine020cc32014-10-20 13:28:02 -07001731 this.removePolicy("2");
Sangho Shin55d00e12014-10-20 12:13:07 -07001732 testMode = POLICY_REMOVE1;
Sangho Shin4b46bcd2014-10-20 15:48:47 -07001733 testTask.reschedule(5, TimeUnit.SECONDS);
Sangho Shin55d00e12014-10-20 12:13:07 -07001734 }
1735 else if (testMode == POLICY_REMOVE1){
1736 log.debug("Remove the policy 1");
Sangho Shine020cc32014-10-20 13:28:02 -07001737 this.removePolicy("1");
Sangho Shin55d00e12014-10-20 12:13:07 -07001738
Sangho Shin4b46bcd2014-10-20 15:48:47 -07001739 testMode = TUNNEL_REMOVE1;
1740 testTask.reschedule(5, TimeUnit.SECONDS);
1741 }
1742 else if (testMode == TUNNEL_REMOVE1) {
1743 log.debug("Remove the tunnel 1");
1744 this.removeTunnel("1");
1745
1746 testMode = TUNNEL_REMOVE2;
1747 testTask.reschedule(5, TimeUnit.SECONDS);
1748 }
1749 else if (testMode == TUNNEL_REMOVE2) {
1750 log.debug("Remove the tunnel 2");
1751 this.removeTunnel("2");
1752 log.debug("The end of test");
1753 }
Sangho Shin55d00e12014-10-20 12:13:07 -07001754 }
Sangho Shin7330c032014-10-20 10:34:51 -07001755
1756 private void runTest1() {
1757
1758 String dpid1 = "00:00:00:00:00:00:00:01";
1759 String dpid2 = "00:00:00:00:00:00:00:0a";
1760 Switch srcSw = mutableTopology.getSwitch(new Dpid(dpid1));
1761 Switch dstSw = mutableTopology.getSwitch(new Dpid(dpid2));
1762
1763 if (srcSw == null || dstSw == null) {
1764 testTask.reschedule(1, TimeUnit.SECONDS);
1765 log.debug("Switch is gone. Reschedule the test");
1766 return;
1767 }
1768
1769 String[] routeArray = {"101", "102", "105", "108", "110"};
1770 List<String> routeList = new ArrayList<String>();
1771 for (int i = 0; i < routeArray.length; i++)
1772 routeList.add(routeArray[i]);
1773
1774 List<String> optimizedRoute = this.getOptimizedPath(srcSw, dstSw, routeList);
1775
1776 log.debug("Test set is {}", routeList.toString());
1777 log.debug("Result set is {}", optimizedRoute.toString());
1778
1779
1780 }
1781
1782 /**
1783 * print tunnel info - used only for debugging.
1784 * @param targetSw
1785 *
1786 * @param fwdSwDpids
1787 * @param ids
1788 * @param tunnelId
1789 */
Sangho Shine020cc32014-10-20 13:28:02 -07001790 private void printTunnelInfo(IOF13Switch targetSw, String tunnelId,
Sangho Shin7330c032014-10-20 10:34:51 -07001791 List<String> ids, NeighborSet ns) {
1792 StringBuilder logStr = new StringBuilder("In switch " +
1793 targetSw.getId() + ", create a tunnel " + tunnelId + " " + " of push ");
1794 for (String id: ids)
1795 logStr.append(id + "-");
1796 logStr.append(" output to ");
1797 for (Dpid dpid: ns.getDpids())
1798 logStr.append(dpid + " - ");
1799
1800 log.debug(logStr.toString());
1801
1802 }
1803
1804 /**
1805 * Debugging function to print out the Match Action Entry
1806 * @param sw13
1807 *
1808 * @param maEntry
1809 */
1810 private void printMatchActionOperationEntry(
1811 IOF13Switch sw13, MatchActionOperationEntry maEntry) {
1812
1813 StringBuilder logStr = new StringBuilder("In switch " + sw13.getId() + ", ");
1814
1815 MatchAction ma = maEntry.getTarget();
1816 Match m = ma.getMatch();
1817 List<Action> actions = ma.getActions();
1818
1819 if (m instanceof Ipv4Match) {
1820 logStr.append("If the IP matches with ");
1821 IPv4Net ip = ((Ipv4Match) m).getDestination();
1822 logStr.append(ip.toString());
1823 logStr.append(" then ");
1824 }
1825 else if (m instanceof MplsMatch) {
1826 logStr.append("If the MPLS label matches with ");
1827 int mplsLabel = ((MplsMatch) m).getMplsLabel();
1828 logStr.append(mplsLabel);
1829 logStr.append(" then ");
1830 }
1831 else if (m instanceof PacketMatch) {
1832 GroupAction ga = (GroupAction)actions.get(0);
1833 logStr.append("if the policy match is XXX then go to group " +
1834 ga.getGroupId());
1835 log.debug(logStr.toString());
1836 return;
1837 }
1838
1839 logStr.append(" do { ");
1840 for (Action action : actions) {
1841 if (action instanceof CopyTtlInAction) {
1842 logStr.append("copy ttl In, ");
1843 }
1844 else if (action instanceof CopyTtlOutAction) {
1845 logStr.append("copy ttl Out, ");
1846 }
1847 else if (action instanceof DecMplsTtlAction) {
1848 logStr.append("Dec MPLS TTL , ");
1849 }
1850 else if (action instanceof GroupAction) {
1851 logStr.append("Forward packet to < ");
1852 NeighborSet dpids = ((GroupAction) action).getDpids();
1853 logStr.append(dpids.toString() + ",");
1854
1855 }
1856 else if (action instanceof PopMplsAction) {
1857 logStr.append("Pop MPLS label, ");
1858 }
1859 else if (action instanceof PushMplsAction) {
1860 logStr.append("Push MPLS label, ");
1861 }
1862 else if (action instanceof SetMplsIdAction) {
1863 int id = ((SetMplsIdAction) action).getMplsId();
1864 logStr.append("Set MPLS ID as " + id + ", ");
1865 }
1866 }
1867
1868 log.debug(logStr.toString());
1869
1870 }
1871
1872
1873 // ************************************
1874 // Unused classes and functions
1875 // ************************************
1876
1877 /**
1878 * Temporary class to to keep ARP entry
1879 *
1880 */
1881 private class ArpEntry {
1882
1883 byte[] targetMacAddress;
1884 byte[] targetIpAddress;
1885
1886 private ArpEntry(byte[] macAddress, byte[] ipAddress) {
1887 this.targetMacAddress = macAddress;
1888 this.targetIpAddress = ipAddress;
1889 }
1890 }
1891
1892 /**
1893 * This class is used only for link recovery optimization in
1894 * modifyEcmpRoutingRules() function.
1895 * TODO: please remove if the optimization is not used at all
1896 */
1897 private class SwitchPair {
1898 private Switch src;
1899 private Switch dst;
1900
1901 public SwitchPair(Switch src, Switch dst) {
1902 this.src = src;
1903 this.dst = dst;
1904 }
1905
1906 public Switch getSource() {
1907 return src;
1908 }
1909
1910 public Switch getDestination() {
1911 return dst;
1912 }
1913 }
1914
1915 /**
1916 * Update ARP Cache using ARP packets It is used to set destination MAC
1917 * address to forward packets to known hosts. But, it will be replace with
1918 * Host information of Topology service later.
1919 *
1920 * @param arp APR packets to use for updating ARP entries
1921 */
1922 public void updateArpCache(ARP arp) {
1923
1924 ArpEntry arpEntry = new ArpEntry(arp.getSenderHardwareAddress(),
1925 arp.getSenderProtocolAddress());
1926 // TODO: Need to check the duplication
1927 arpEntries.add(arpEntry);
1928 }
1929
1930 /**
1931 * Modify the routing rules for the lost links
1932 * - Recompute the path if the link failed is included in the path
1933 * (including src and dest).
1934 *
1935 * @param newLink
1936 */
1937 private void modifyEcmpRoutingRules(LinkData linkRemoved) {
1938
1939 //HashMap<Switch, SwitchPair> linksToRecompute = new HashMap<Switch, SwitchPair>();
1940 Set<SwitchPair> linksToRecompute = new HashSet<SwitchPair>();
1941
1942 for (ECMPShortestPathGraph ecmpSPG : graphs.values()) {
1943 Switch rootSw = ecmpSPG.getRootSwitch();
1944 HashMap<Integer, HashMap<Switch, ArrayList<Path>>> paths =
1945 ecmpSPG.getCompleteLearnedSwitchesAndPaths();
1946 for (HashMap<Switch, ArrayList<Path>> p: paths.values()) {
1947 for (Switch destSw: p.keySet()) {
1948 ArrayList<Path> path = p.get(destSw);
1949 if (checkPath(path, linkRemoved)) {
1950 boolean found = false;
1951 for (SwitchPair pair: linksToRecompute) {
1952 if (pair.getSource().getDpid() == rootSw.getDpid() &&
1953 pair.getSource().getDpid() == destSw.getDpid()) {
1954 found = true;
1955 }
1956 }
1957 if (!found) {
1958 linksToRecompute.add(new SwitchPair(rootSw, destSw));
1959 }
1960 }
1961 }
1962 }
1963 }
1964
1965 // Recompute the path for the specific route
1966 for (SwitchPair pair: linksToRecompute) {
1967
1968 log.debug("Recompute path from {} to {}", pair.getSource(), pair.getDestination());
1969 // We need the following function for optimization
1970 //ECMPShortestPathGraph ecmpSPG =
1971 // new ECMPShortestPathGraph(pair.getSource(), pair.getDestination());
1972 ECMPShortestPathGraph ecmpSPG =
1973 new ECMPShortestPathGraph(pair.getSource());
1974 populateEcmpRoutingRulesForPath(pair.getSource(), ecmpSPG, true);
1975 }
1976 }
1977
1978 /**
1979 * Optimize the mpls label
1980 * The feature will be used only for policy of "avoid a specific switch".
1981 * Check route to each router in route backward.
1982 * If there is only one route to the router and the routers are included in
1983 * the route, remove the id from the path.
1984 * A-B-C-D-E => A-B-C-D-E -> A-E
1985 * | | => A-B-H-I -> A-I
Sangho Shin5b8f5452014-10-20 11:46:01 -07001986 * F-G-H-I => A-D-I > A-D-I
Sangho Shin7330c032014-10-20 10:34:51 -07001987 */
1988 private List<String> getOptimizedPath(Switch srcSw, Switch dstSw, List<String> route) {
1989
1990 List<String> optimizedPath = new ArrayList<String>();
1991 optimizedPath.addAll(route);
1992 ECMPShortestPathGraph ecmpSPG = new ECMPShortestPathGraph(srcSw);
1993
1994 HashMap<Integer, HashMap<Switch, ArrayList<Path>>> paths =
1995 ecmpSPG.getCompleteLearnedSwitchesAndPaths();
1996 for (HashMap<Switch, ArrayList<Path>> p: paths.values()) {
1997 for (Switch s: p.keySet()) {
1998 if (s.getDpid().toString().equals(dstSw.getDpid().toString())) {
1999 ArrayList<Path> ecmpPaths = p.get(s);
2000 if (ecmpPaths!= null && ecmpPaths.size() == 1) {
2001 for (Path path: ecmpPaths) {
2002 for (LinkData link: path) {
2003 String srcId = getMplsLabel(link.getSrc().getDpid().toString());
2004 String dstId = getMplsLabel(link.getSrc().getDpid().toString());
2005 if (optimizedPath.contains(srcId)) {
2006 optimizedPath.remove(srcId);
2007 }
2008 if (optimizedPath.contains(dstId)) {
2009 optimizedPath.remove(dstId);
2010 }
2011 }
2012 }
2013 }
2014 }
2015 }
2016 }
2017
2018 return optimizedPath;
2019
2020 }
2021
2022 /**
2023 * Check if the path is affected from the link removed
2024 *
2025 * @param path Path to check
2026 * @param linkRemoved link removed
2027 * @return true if the path contains the link removed
2028 */
2029 private boolean checkPath(ArrayList<Path> path, LinkData linkRemoved) {
2030
2031 for (Path ppp: path) {
2032 // TODO: need to check if this is a bidirectional or
2033 // unidirectional
2034 for (LinkData link: ppp) {
2035 if (link.getDst().getDpid().equals(linkRemoved.getDst().getDpid()) &&
2036 link.getSrc().getDpid().equals(linkRemoved.getSrc().getDpid()))
2037 return true;
2038 }
2039 }
2040
2041 return false;
2042 }
Sangho Shin15273b62014-10-16 22:22:05 -07002043
2044
Sangho Shin2f263692014-09-15 14:09:41 -07002045}