blob: aaf535058f1252d0a3bca3e9c73f5a5f996b5f81 [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
alshabibba5ac482014-10-02 17:15:20 -070041 private static final int TIMEOUT = 10;
42
tomc370ebd2014-09-16 01:25:21 -070043 private final Logger log = getLogger(getClass());
44
alshabib030111e2014-09-15 15:56:42 -070045 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
46 protected TopologyService topologyService;
47
48 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
49 protected PacketService packetService;
50
alshabib8aef1ad2014-09-15 17:47:31 -070051 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
52 protected HostService hostService;
53
alshabib7b2748f2014-09-16 20:21:11 -070054 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
55 protected FlowRuleService flowRuleService;
56
alshabibb5522ff2014-09-29 19:20:00 -070057 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
58 protected ProxyArpService proxyArpService;
59
tomc370ebd2014-09-16 01:25:21 -070060 private ReactivePacketProcessor processor = new ReactivePacketProcessor();
alshabib030111e2014-09-15 15:56:42 -070061
alshabiba68eb962014-09-24 20:34:13 -070062 private ApplicationId appId;
63
alshabib030111e2014-09-15 15:56:42 -070064 @Activate
65 public void activate() {
alshabiba68eb962014-09-24 20:34:13 -070066 appId = ApplicationId.getAppId();
alshabib030111e2014-09-15 15:56:42 -070067 packetService.addProcessor(processor, PacketProcessor.ADVISOR_MAX + 1);
alshabiba68eb962014-09-24 20:34:13 -070068 log.info("Started with Application ID {}", appId.id());
alshabib030111e2014-09-15 15:56:42 -070069 }
70
71 @Deactivate
72 public void deactivate() {
alshabiba68eb962014-09-24 20:34:13 -070073 flowRuleService.removeFlowRulesById(appId);
alshabib030111e2014-09-15 15:56:42 -070074 packetService.removeProcessor(processor);
75 processor = null;
tomc370ebd2014-09-16 01:25:21 -070076 log.info("Stopped");
alshabib030111e2014-09-15 15:56:42 -070077 }
tomc370ebd2014-09-16 01:25:21 -070078
79
80 /**
81 * Packet processor responsible for forwarding packets along their paths.
82 */
83 private class ReactivePacketProcessor implements PacketProcessor {
84
85 @Override
86 public void process(PacketContext context) {
tomdc95b8a2014-09-17 08:07:26 -070087 // Stop processing if the packet has been handled, since we
88 // can't do any more to it.
alshabib7b2748f2014-09-16 20:21:11 -070089 if (context.isHandled()) {
90 return;
91 }
tomdc95b8a2014-09-17 08:07:26 -070092
tomc370ebd2014-09-16 01:25:21 -070093 InboundPacket pkt = context.inPacket();
tom642b2262014-09-17 13:52:55 -070094 Ethernet ethPkt = pkt.parsed();
alshabibb5522ff2014-09-29 19:20:00 -070095 if (ethPkt.getEtherType() == Ethernet.TYPE_ARP) {
96 ARP arp = (ARP) ethPkt.getPayload();
97 if (arp.getOpCode() == ARP.OP_REPLY) {
98 proxyArpService.forward(ethPkt);
99 } else if (arp.getOpCode() == ARP.OP_REQUEST) {
100 proxyArpService.reply(ethPkt);
101 }
102 context.block();
103 return;
104 }
alshabib6eb438a2014-10-01 16:39:37 -0700105
tom642b2262014-09-17 13:52:55 -0700106 HostId id = HostId.hostId(ethPkt.getDestinationMAC());
tomc370ebd2014-09-16 01:25:21 -0700107
108 // Do we know who this is for? If not, flood and bail.
109 Host dst = hostService.getHost(id);
110 if (dst == null) {
111 flood(context);
112 return;
113 }
114
115 // Are we on an edge switch that our destination is on? If so,
116 // simply forward out to the destination and bail.
117 if (pkt.receivedFrom().deviceId().equals(dst.location().deviceId())) {
alshabib6eb438a2014-10-01 16:39:37 -0700118 if (!context.inPacket().receivedFrom().port().equals(dst.location().port())) {
119 installRule(context, dst.location().port());
120 }
tomc370ebd2014-09-16 01:25:21 -0700121 return;
122 }
123
124 // Otherwise, get a set of paths that lead from here to the
125 // destination edge switch.
126 Set<Path> paths = topologyService.getPaths(topologyService.currentTopology(),
alshabibe9d3a322014-09-23 15:18:33 -0700127 pkt.receivedFrom().deviceId(),
128 dst.location().deviceId());
tomc370ebd2014-09-16 01:25:21 -0700129 if (paths.isEmpty()) {
130 // If there are no paths, flood and bail.
131 flood(context);
132 return;
133 }
134
135 // Otherwise, pick a path that does not lead back to where we
136 // came from; if no such path, flood and bail.
137 Path path = pickForwardPath(paths, pkt.receivedFrom().port());
138 if (path == null) {
tom642b2262014-09-17 13:52:55 -0700139 log.warn("Doh... don't know where to go... {} -> {} received on {}",
alshabibe9d3a322014-09-23 15:18:33 -0700140 ethPkt.getSourceMAC(), ethPkt.getDestinationMAC(),
141 pkt.receivedFrom());
tomc370ebd2014-09-16 01:25:21 -0700142 flood(context);
143 return;
144 }
145
146 // Otherwise forward and be done with it.
alshabib7b2748f2014-09-16 20:21:11 -0700147 installRule(context, path.src().port());
tomc370ebd2014-09-16 01:25:21 -0700148 }
149 }
150
151 // Selects a path from the given set that does not lead back to the
152 // specified port.
153 private Path pickForwardPath(Set<Path> paths, PortNumber notToPort) {
154 for (Path path : paths) {
155 if (!path.src().port().equals(notToPort)) {
156 return path;
157 }
158 }
159 return null;
160 }
161
tom642b2262014-09-17 13:52:55 -0700162 // Floods the specified packet if permissible.
tomc370ebd2014-09-16 01:25:21 -0700163 private void flood(PacketContext context) {
tomdc95b8a2014-09-17 08:07:26 -0700164 if (topologyService.isBroadcastPoint(topologyService.currentTopology(),
alshabibe9d3a322014-09-23 15:18:33 -0700165 context.inPacket().receivedFrom())) {
tom642b2262014-09-17 13:52:55 -0700166 packetOut(context, PortNumber.FLOOD);
tomc370ebd2014-09-16 01:25:21 -0700167 } else {
168 context.block();
169 }
170 }
171
tom642b2262014-09-17 13:52:55 -0700172 // Sends a packet out the specified port.
173 private void packetOut(PacketContext context, PortNumber portNumber) {
alshabib010c31d2014-09-26 10:01:12 -0700174 context.treatmentBuilder().setOutput(portNumber);
alshabib7b2748f2014-09-16 20:21:11 -0700175 context.send();
176 }
177
178 // Install a rule forwarding the packet to the specified port.
179 private void installRule(PacketContext context, PortNumber portNumber) {
tom642b2262014-09-17 13:52:55 -0700180 // We don't yet support bufferids in the flowservice so packet out first.
181 packetOut(context, portNumber);
alshabib7b2748f2014-09-16 20:21:11 -0700182
alshabib6eb438a2014-10-01 16:39:37 -0700183 if (context.inPacket().parsed().getEtherType() == Ethernet.TYPE_IPV4) {
alshabib7b2748f2014-09-16 20:21:11 -0700184
alshabib6eb438a2014-10-01 16:39:37 -0700185 // Install the flow rule to handle this type of message from now on.
186 Ethernet inPkt = context.inPacket().parsed();
187 TrafficSelector.Builder builder = new DefaultTrafficSelector.Builder();
188 builder.matchEthType(inPkt.getEtherType())
alshabibba5ac482014-10-02 17:15:20 -0700189 .matchEthSrc(inPkt.getSourceMAC())
190 .matchEthDst(inPkt.getDestinationMAC())
191 .matchInport(context.inPacket().receivedFrom().port());
alshabib7b2748f2014-09-16 20:21:11 -0700192
alshabib6eb438a2014-10-01 16:39:37 -0700193 TrafficTreatment.Builder treat = new DefaultTrafficTreatment.Builder();
194 treat.setOutput(portNumber);
alshabib7b2748f2014-09-16 20:21:11 -0700195
alshabib6eb438a2014-10-01 16:39:37 -0700196 FlowRule f = new DefaultFlowRule(context.inPacket().receivedFrom().deviceId(),
alshabibba5ac482014-10-02 17:15:20 -0700197 builder.build(), treat.build(), 0, appId, TIMEOUT);
alshabib6eb438a2014-10-01 16:39:37 -0700198
199 flowRuleService.applyFlowRules(f);
200 }
tomc370ebd2014-09-16 01:25:21 -0700201 }
202
alshabib030111e2014-09-15 15:56:42 -0700203}
204
tomc370ebd2014-09-16 01:25:21 -0700205