blob: 738fa2a0ec579fe0a1ffec94278c2836a05fc3e2 [file] [log] [blame]
alshabib030111e2014-09-15 15:56:42 -07001package org.onlab.onos.fwd;
2
alshabibe9d3a322014-09-23 15:18:33 -07003import static org.slf4j.LoggerFactory.getLogger;
4
5import java.util.Set;
6
alshabib030111e2014-09-15 15:56:42 -07007import org.apache.felix.scr.annotations.Activate;
8import org.apache.felix.scr.annotations.Component;
9import org.apache.felix.scr.annotations.Deactivate;
10import org.apache.felix.scr.annotations.Reference;
11import org.apache.felix.scr.annotations.ReferenceCardinality;
alshabiba68eb962014-09-24 20:34:13 -070012import org.onlab.onos.ApplicationId;
tomc370ebd2014-09-16 01:25:21 -070013import org.onlab.onos.net.Host;
14import org.onlab.onos.net.HostId;
15import org.onlab.onos.net.Path;
16import org.onlab.onos.net.PortNumber;
alshabib7b2748f2014-09-16 20:21:11 -070017import org.onlab.onos.net.flow.DefaultFlowRule;
18import org.onlab.onos.net.flow.DefaultTrafficSelector;
19import org.onlab.onos.net.flow.DefaultTrafficTreatment;
20import org.onlab.onos.net.flow.FlowRule;
21import org.onlab.onos.net.flow.FlowRuleService;
22import org.onlab.onos.net.flow.TrafficSelector;
23import org.onlab.onos.net.flow.TrafficTreatment;
alshabib8aef1ad2014-09-15 17:47:31 -070024import org.onlab.onos.net.host.HostService;
tomc370ebd2014-09-16 01:25:21 -070025import org.onlab.onos.net.packet.InboundPacket;
26import org.onlab.onos.net.packet.PacketContext;
alshabib030111e2014-09-15 15:56:42 -070027import org.onlab.onos.net.packet.PacketProcessor;
28import org.onlab.onos.net.packet.PacketService;
alshabibb5522ff2014-09-29 19:20:00 -070029import org.onlab.onos.net.proxyarp.ProxyArpService;
alshabib030111e2014-09-15 15:56:42 -070030import org.onlab.onos.net.topology.TopologyService;
alshabibb5522ff2014-09-29 19:20:00 -070031import org.onlab.packet.ARP;
alshabib7b2748f2014-09-16 20:21:11 -070032import org.onlab.packet.Ethernet;
tomc370ebd2014-09-16 01:25:21 -070033import org.slf4j.Logger;
alshabib030111e2014-09-15 15:56:42 -070034
tomc370ebd2014-09-16 01:25:21 -070035/**
36 * Sample reactive forwarding application.
37 */
38@Component(immediate = true)
alshabib030111e2014-09-15 15:56:42 -070039public class ReactiveForwarding {
40
tomc370ebd2014-09-16 01:25:21 -070041 private final Logger log = getLogger(getClass());
42
alshabib030111e2014-09-15 15:56:42 -070043 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
44 protected TopologyService topologyService;
45
46 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
47 protected PacketService packetService;
48
alshabib8aef1ad2014-09-15 17:47:31 -070049 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
50 protected HostService hostService;
51
alshabib7b2748f2014-09-16 20:21:11 -070052 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
53 protected FlowRuleService flowRuleService;
54
alshabibb5522ff2014-09-29 19:20:00 -070055 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
56 protected ProxyArpService proxyArpService;
57
tomc370ebd2014-09-16 01:25:21 -070058 private ReactivePacketProcessor processor = new ReactivePacketProcessor();
alshabib030111e2014-09-15 15:56:42 -070059
alshabiba68eb962014-09-24 20:34:13 -070060 private ApplicationId appId;
61
alshabib030111e2014-09-15 15:56:42 -070062 @Activate
63 public void activate() {
alshabiba68eb962014-09-24 20:34:13 -070064 appId = ApplicationId.getAppId();
alshabib030111e2014-09-15 15:56:42 -070065 packetService.addProcessor(processor, PacketProcessor.ADVISOR_MAX + 1);
alshabiba68eb962014-09-24 20:34:13 -070066 log.info("Started with Application ID {}", appId.id());
alshabib030111e2014-09-15 15:56:42 -070067 }
68
69 @Deactivate
70 public void deactivate() {
alshabiba68eb962014-09-24 20:34:13 -070071 flowRuleService.removeFlowRulesById(appId);
alshabib030111e2014-09-15 15:56:42 -070072 packetService.removeProcessor(processor);
73 processor = null;
tomc370ebd2014-09-16 01:25:21 -070074 log.info("Stopped");
alshabib030111e2014-09-15 15:56:42 -070075 }
tomc370ebd2014-09-16 01:25:21 -070076
77
78 /**
79 * Packet processor responsible for forwarding packets along their paths.
80 */
81 private class ReactivePacketProcessor implements PacketProcessor {
82
83 @Override
84 public void process(PacketContext context) {
tomdc95b8a2014-09-17 08:07:26 -070085 // Stop processing if the packet has been handled, since we
86 // can't do any more to it.
alshabib7b2748f2014-09-16 20:21:11 -070087 if (context.isHandled()) {
88 return;
89 }
tomdc95b8a2014-09-17 08:07:26 -070090
tomc370ebd2014-09-16 01:25:21 -070091 InboundPacket pkt = context.inPacket();
tom642b2262014-09-17 13:52:55 -070092 Ethernet ethPkt = pkt.parsed();
alshabibb5522ff2014-09-29 19:20:00 -070093 if (ethPkt.getEtherType() == Ethernet.TYPE_ARP) {
94 ARP arp = (ARP) ethPkt.getPayload();
95 if (arp.getOpCode() == ARP.OP_REPLY) {
96 proxyArpService.forward(ethPkt);
97 } else if (arp.getOpCode() == ARP.OP_REQUEST) {
98 proxyArpService.reply(ethPkt);
99 }
100 context.block();
101 return;
102 }
tom642b2262014-09-17 13:52:55 -0700103 HostId id = HostId.hostId(ethPkt.getDestinationMAC());
tomc370ebd2014-09-16 01:25:21 -0700104
105 // Do we know who this is for? If not, flood and bail.
106 Host dst = hostService.getHost(id);
107 if (dst == null) {
108 flood(context);
109 return;
110 }
111
112 // Are we on an edge switch that our destination is on? If so,
113 // simply forward out to the destination and bail.
114 if (pkt.receivedFrom().deviceId().equals(dst.location().deviceId())) {
alshabib7b2748f2014-09-16 20:21:11 -0700115 installRule(context, dst.location().port());
tomc370ebd2014-09-16 01:25:21 -0700116 return;
117 }
118
119 // Otherwise, get a set of paths that lead from here to the
120 // destination edge switch.
121 Set<Path> paths = topologyService.getPaths(topologyService.currentTopology(),
alshabibe9d3a322014-09-23 15:18:33 -0700122 pkt.receivedFrom().deviceId(),
123 dst.location().deviceId());
tomc370ebd2014-09-16 01:25:21 -0700124 if (paths.isEmpty()) {
125 // If there are no paths, flood and bail.
126 flood(context);
127 return;
128 }
129
130 // Otherwise, pick a path that does not lead back to where we
131 // came from; if no such path, flood and bail.
132 Path path = pickForwardPath(paths, pkt.receivedFrom().port());
133 if (path == null) {
tom642b2262014-09-17 13:52:55 -0700134 log.warn("Doh... don't know where to go... {} -> {} received on {}",
alshabibe9d3a322014-09-23 15:18:33 -0700135 ethPkt.getSourceMAC(), ethPkt.getDestinationMAC(),
136 pkt.receivedFrom());
tomc370ebd2014-09-16 01:25:21 -0700137 flood(context);
138 return;
139 }
140
141 // Otherwise forward and be done with it.
alshabib7b2748f2014-09-16 20:21:11 -0700142 installRule(context, path.src().port());
tomc370ebd2014-09-16 01:25:21 -0700143 }
144 }
145
146 // Selects a path from the given set that does not lead back to the
147 // specified port.
148 private Path pickForwardPath(Set<Path> paths, PortNumber notToPort) {
149 for (Path path : paths) {
150 if (!path.src().port().equals(notToPort)) {
151 return path;
152 }
153 }
154 return null;
155 }
156
tom642b2262014-09-17 13:52:55 -0700157 // Floods the specified packet if permissible.
tomc370ebd2014-09-16 01:25:21 -0700158 private void flood(PacketContext context) {
tomdc95b8a2014-09-17 08:07:26 -0700159 if (topologyService.isBroadcastPoint(topologyService.currentTopology(),
alshabibe9d3a322014-09-23 15:18:33 -0700160 context.inPacket().receivedFrom())) {
tom642b2262014-09-17 13:52:55 -0700161 packetOut(context, PortNumber.FLOOD);
tomc370ebd2014-09-16 01:25:21 -0700162 } else {
163 context.block();
164 }
165 }
166
tom642b2262014-09-17 13:52:55 -0700167 // Sends a packet out the specified port.
168 private void packetOut(PacketContext context, PortNumber portNumber) {
alshabib010c31d2014-09-26 10:01:12 -0700169 context.treatmentBuilder().setOutput(portNumber);
alshabib7b2748f2014-09-16 20:21:11 -0700170 context.send();
171 }
172
173 // Install a rule forwarding the packet to the specified port.
174 private void installRule(PacketContext context, PortNumber portNumber) {
tom642b2262014-09-17 13:52:55 -0700175 // We don't yet support bufferids in the flowservice so packet out first.
176 packetOut(context, portNumber);
alshabib7b2748f2014-09-16 20:21:11 -0700177
tom642b2262014-09-17 13:52:55 -0700178 // Install the flow rule to handle this type of message from now on.
alshabib7b2748f2014-09-16 20:21:11 -0700179 Ethernet inPkt = context.inPacket().parsed();
180 TrafficSelector.Builder builder = new DefaultTrafficSelector.Builder();
alshabib010c31d2014-09-26 10:01:12 -0700181 builder.matchEthType(inPkt.getEtherType())
182 .matchEthSrc(inPkt.getSourceMAC())
183 .matchEthDst(inPkt.getDestinationMAC())
184 .matchInport(context.inPacket().receivedFrom().port());
alshabib7b2748f2014-09-16 20:21:11 -0700185
186 TrafficTreatment.Builder treat = new DefaultTrafficTreatment.Builder();
alshabib010c31d2014-09-26 10:01:12 -0700187 treat.setOutput(portNumber);
alshabib7b2748f2014-09-16 20:21:11 -0700188
189 FlowRule f = new DefaultFlowRule(context.inPacket().receivedFrom().deviceId(),
alshabiba68eb962014-09-24 20:34:13 -0700190 builder.build(), treat.build(), 0, appId);
alshabib7b2748f2014-09-16 20:21:11 -0700191
192 flowRuleService.applyFlowRules(f);
tomc370ebd2014-09-16 01:25:21 -0700193 }
194
alshabib030111e2014-09-15 15:56:42 -0700195}
196
tomc370ebd2014-09-16 01:25:21 -0700197