blob: 54c3eee05192085b2a01e5a12fa0259f3c84ce28 [file] [log] [blame]
Thomas Vachuska781d18b2014-10-27 10:31:25 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2014-present Open Networking Foundation
Thomas Vachuska781d18b2014-10-27 10:31:25 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
Thomas Vachuska781d18b2014-10-27 10:31:25 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
Thomas Vachuska781d18b2014-10-27 10:31:25 -070015 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.provider.host.impl;
alshabibe1cf87d2014-10-17 09:23:50 -070017
Charles Chan35a32322017-08-14 11:42:11 -070018import com.google.common.collect.Sets;
alshabibe1cf87d2014-10-17 09:23:50 -070019import org.apache.felix.scr.annotations.Activate;
20import org.apache.felix.scr.annotations.Component;
21import org.apache.felix.scr.annotations.Deactivate;
Thomas Vachuska33601602014-11-19 03:32:15 -080022import org.apache.felix.scr.annotations.Modified;
23import org.apache.felix.scr.annotations.Property;
alshabibe1cf87d2014-10-17 09:23:50 -070024import org.apache.felix.scr.annotations.Reference;
25import org.apache.felix.scr.annotations.ReferenceCardinality;
Charles Chan47933752017-11-30 15:37:50 -080026import org.apache.felix.scr.annotations.Service;
Jonathan Harte8600eb2015-01-12 10:30:45 -080027import org.onlab.packet.ARP;
Yi Tsengfcf5dce2017-07-26 14:30:41 -070028import org.onlab.packet.BasePacket;
Charles Chane6067892016-11-17 10:23:46 -080029import org.onlab.packet.DHCP;
Yi Tsengfcf5dce2017-07-26 14:30:41 -070030import org.onlab.packet.DHCP6;
Jonghwan Hyun2c95acf2018-03-14 16:47:34 -070031import org.onlab.packet.EthType;
Jonathan Harte8600eb2015-01-12 10:30:45 -080032import org.onlab.packet.Ethernet;
Pavlin Radoslavovd6612f92015-02-23 13:53:32 -080033import org.onlab.packet.ICMP6;
Thomas Vachuskaf845cf62015-03-24 10:13:09 -070034import org.onlab.packet.IPacket;
Charles Chane6067892016-11-17 10:23:46 -080035import org.onlab.packet.IPv4;
Jonathan Harte8600eb2015-01-12 10:30:45 -080036import org.onlab.packet.IPv6;
Charles Chan35a32322017-08-14 11:42:11 -070037import org.onlab.packet.Ip4Address;
Yi Tsengfcf5dce2017-07-26 14:30:41 -070038import org.onlab.packet.Ip6Address;
Jonathan Harte8600eb2015-01-12 10:30:45 -080039import org.onlab.packet.IpAddress;
Charles M.C. Chan956cb692015-04-26 18:49:39 +080040import org.onlab.packet.MacAddress;
Charles Chane6067892016-11-17 10:23:46 -080041import org.onlab.packet.UDP;
Jonathan Harte8600eb2015-01-12 10:30:45 -080042import org.onlab.packet.VlanId;
Yi Tsengfcf5dce2017-07-26 14:30:41 -070043import org.onlab.packet.dhcp.Dhcp6ClientIdOption;
44import org.onlab.packet.dhcp.Dhcp6IaAddressOption;
45import org.onlab.packet.dhcp.Dhcp6IaNaOption;
46import org.onlab.packet.dhcp.Dhcp6IaTaOption;
47import org.onlab.packet.dhcp.Dhcp6RelayOption;
Charles M.C. Chan956cb692015-04-26 18:49:39 +080048import org.onlab.packet.ipv6.IExtensionHeader;
Jonathan Harte8600eb2015-01-12 10:30:45 -080049import org.onlab.packet.ndp.NeighborAdvertisement;
50import org.onlab.packet.ndp.NeighborSolicitation;
Charles M.C. Chan441d7da2015-03-17 21:03:39 +080051import org.onlab.packet.ndp.RouterAdvertisement;
52import org.onlab.packet.ndp.RouterSolicitation;
Jian Lid9b5f552016-03-11 18:15:31 -080053import org.onlab.util.Tools;
Thomas Vachuska6519e6f2015-03-11 02:29:31 -070054import org.onosproject.cfg.ComponentConfigService;
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -080055import org.onosproject.core.ApplicationId;
56import org.onosproject.core.CoreService;
Charles Chan47933752017-11-30 15:37:50 -080057import org.onosproject.net.host.HostLocationProbingService;
Ray Milkeyfacf2862017-08-03 11:58:29 -070058import org.onosproject.net.intf.InterfaceService;
Brian O'Connorabafb502014-12-02 22:26:20 -080059import org.onosproject.net.ConnectPoint;
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -080060import org.onosproject.net.Device;
Charles Chan888e20a2017-05-01 15:44:23 -070061import org.onosproject.net.DeviceId;
Brian O'Connorabafb502014-12-02 22:26:20 -080062import org.onosproject.net.Host;
63import org.onosproject.net.HostId;
64import org.onosproject.net.HostLocation;
65import org.onosproject.net.device.DeviceEvent;
66import org.onosproject.net.device.DeviceListener;
67import org.onosproject.net.device.DeviceService;
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -080068import org.onosproject.net.flow.DefaultTrafficSelector;
sdn94b00152016-08-30 02:12:32 -070069import org.onosproject.net.flow.DefaultTrafficTreatment;
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -080070import org.onosproject.net.flow.TrafficSelector;
sdn94b00152016-08-30 02:12:32 -070071import org.onosproject.net.flow.TrafficTreatment;
Brian O'Connorabafb502014-12-02 22:26:20 -080072import org.onosproject.net.host.DefaultHostDescription;
73import org.onosproject.net.host.HostDescription;
74import org.onosproject.net.host.HostProvider;
75import org.onosproject.net.host.HostProviderRegistry;
76import org.onosproject.net.host.HostProviderService;
77import org.onosproject.net.host.HostService;
sdn94b00152016-08-30 02:12:32 -070078import org.onosproject.net.packet.DefaultOutboundPacket;
79import org.onosproject.net.packet.OutboundPacket;
Brian O'Connorabafb502014-12-02 22:26:20 -080080import org.onosproject.net.packet.PacketContext;
Jonathan Hart3cfce8e2015-01-14 16:43:27 -080081import org.onosproject.net.packet.PacketPriority;
Brian O'Connorabafb502014-12-02 22:26:20 -080082import org.onosproject.net.packet.PacketProcessor;
83import org.onosproject.net.packet.PacketService;
84import org.onosproject.net.provider.AbstractProvider;
85import org.onosproject.net.provider.ProviderId;
86import org.onosproject.net.topology.Topology;
87import org.onosproject.net.topology.TopologyService;
Thomas Vachuska33601602014-11-19 03:32:15 -080088import org.osgi.service.component.ComponentContext;
alshabibe1cf87d2014-10-17 09:23:50 -070089import org.slf4j.Logger;
90
sdn94b00152016-08-30 02:12:32 -070091import java.nio.ByteBuffer;
Thomas Vachuskaf845cf62015-03-24 10:13:09 -070092import java.util.Dictionary;
Yi Tseng7a38f9a2017-06-09 14:36:40 -070093import java.util.Objects;
94import java.util.Optional;
Madan Jampania3770c32015-12-11 12:07:41 -080095import java.util.concurrent.ExecutorService;
Charles Chanbb86b782017-09-13 16:14:22 -070096import java.util.concurrent.ScheduledExecutorService;
97import java.util.concurrent.TimeUnit;
Yi Tseng7a38f9a2017-06-09 14:36:40 -070098import java.util.stream.Stream;
Charles Chan35a32322017-08-14 11:42:11 -070099import java.util.Set;
Thomas Vachuskaf845cf62015-03-24 10:13:09 -0700100
Charles Chan6577f612018-04-19 13:10:01 -0700101import static java.util.concurrent.Executors.newScheduledThreadPool;
Madan Jampania3770c32015-12-11 12:07:41 -0800102import static java.util.concurrent.Executors.newSingleThreadScheduledExecutor;
103import static org.onlab.util.Tools.groupedThreads;
Thomas Vachuskaf845cf62015-03-24 10:13:09 -0700104import static org.slf4j.LoggerFactory.getLogger;
105
alshabibe1cf87d2014-10-17 09:23:50 -0700106/**
Thomas Vachuskaec9c7dd2015-09-03 18:30:04 -0700107 * Provider which uses an OpenFlow controller to detect network end-station
108 * hosts.
alshabibe1cf87d2014-10-17 09:23:50 -0700109 */
110@Component(immediate = true)
Charles Chan47933752017-11-30 15:37:50 -0800111@Service
112public class HostLocationProvider extends AbstractProvider implements HostProvider, HostLocationProbingService {
alshabibe1cf87d2014-10-17 09:23:50 -0700113 private final Logger log = getLogger(getClass());
114
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -0800115 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
116 protected CoreService coreService;
117
118 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
alshabibe1cf87d2014-10-17 09:23:50 -0700119 protected HostProviderRegistry providerRegistry;
120
121 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pavlin Radoslavovd6612f92015-02-23 13:53:32 -0800122 protected PacketService packetService;
alshabibe1cf87d2014-10-17 09:23:50 -0700123
124 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
125 protected TopologyService topologyService;
126
Thomas Vachuska33601602014-11-19 03:32:15 -0800127 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
128 protected HostService hostService;
129
130 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
131 protected DeviceService deviceService;
132
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700133 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
134 protected ComponentConfigService cfgService;
135
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700136 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
137 protected InterfaceService interfaceService;
138
alshabibe1cf87d2014-10-17 09:23:50 -0700139 private HostProviderService providerService;
140
141 private final InternalHostProvider processor = new InternalHostProvider();
Thomas Vachuska33601602014-11-19 03:32:15 -0800142 private final DeviceListener deviceListener = new InternalDeviceListener();
143
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -0800144 private ApplicationId appId;
145
Thomas Vachuska33601602014-11-19 03:32:15 -0800146 @Property(name = "hostRemovalEnabled", boolValue = true,
147 label = "Enable host removal on port/device down events")
148 private boolean hostRemovalEnabled = true;
alshabibe1cf87d2014-10-17 09:23:50 -0700149
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700150 @Property(name = "requestArp", boolValue = true,
151 label = "Request ARP packets for neighbor discovery by the " +
Charles Chane6067892016-11-17 10:23:46 -0800152 "Host Location Provider; default is true")
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700153 private boolean requestArp = true;
Charles Chane6067892016-11-17 10:23:46 -0800154
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700155 @Property(name = "requestIpv6ND", boolValue = false,
156 label = "Requests IPv6 Neighbor Discovery by the " +
Thomas Vachuska27bee092015-06-23 19:03:10 -0700157 "Host Location Provider; default is false")
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700158 private boolean requestIpv6ND = false;
Charles Chane6067892016-11-17 10:23:46 -0800159
160 @Property(name = "useDhcp", boolValue = false,
Yi Tsengaa417a62017-09-08 17:22:51 -0700161 label = "Use DHCP to update IP address of the host; default is false")
Charles Chane6067892016-11-17 10:23:46 -0800162 private boolean useDhcp = false;
alshabibe1cf87d2014-10-17 09:23:50 -0700163
Yi Tsengfcf5dce2017-07-26 14:30:41 -0700164 @Property(name = "useDhcp6", boolValue = false,
Yi Tsengaa417a62017-09-08 17:22:51 -0700165 label = "Use DHCPv6 to update IP address of the host; default is false")
Yi Tsengfcf5dce2017-07-26 14:30:41 -0700166 private boolean useDhcp6 = false;
167
Jonathan Hart9af322d2016-01-06 17:42:04 -0800168 @Property(name = "requestInterceptsEnabled", boolValue = true,
169 label = "Enable requesting packet intercepts")
170 private boolean requestInterceptsEnabled = true;
171
Charles Chan35a32322017-08-14 11:42:11 -0700172 @Property(name = "multihomingEnabled", boolValue = false,
173 label = "Allow hosts to be multihomed")
174 private boolean multihomingEnabled = false;
Madan Jampania3770c32015-12-11 12:07:41 -0800175
Charles Chan47933752017-11-30 15:37:50 -0800176 private int probeInitDelayMs = 1000;
177
Charles Chan6577f612018-04-19 13:10:01 -0700178 ExecutorService eventHandler;
179 private ScheduledExecutorService hostProber;
Charles Chan8277b6b2017-12-03 13:48:46 -0800180
alshabibe1cf87d2014-10-17 09:23:50 -0700181 /**
182 * Creates an OpenFlow host provider.
183 */
184 public HostLocationProvider() {
Brian O'Connorabafb502014-12-02 22:26:20 -0800185 super(new ProviderId("of", "org.onosproject.provider.host"));
alshabibe1cf87d2014-10-17 09:23:50 -0700186 }
187
188 @Activate
Thomas Vachuska33601602014-11-19 03:32:15 -0800189 public void activate(ComponentContext context) {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700190 cfgService.registerProperties(getClass());
191 appId = coreService.registerApplication("org.onosproject.provider.host");
Charles Chan6577f612018-04-19 13:10:01 -0700192 eventHandler = newSingleThreadScheduledExecutor(groupedThreads("onos/host-loc-provider", "event-handler", log));
193 hostProber = newScheduledThreadPool(32, groupedThreads("onos/host-loc-probe", "%d", log));
alshabibe1cf87d2014-10-17 09:23:50 -0700194 providerService = providerRegistry.register(this);
Brian O'Connor3b783262015-07-29 17:49:24 -0700195 packetService.addProcessor(processor, PacketProcessor.advisor(1));
Thomas Vachuska33601602014-11-19 03:32:15 -0800196 deviceService.addListener(deviceListener);
Jonathan Hart9af322d2016-01-06 17:42:04 -0800197
198 modified(context);
Jonathan Hart3cfce8e2015-01-14 16:43:27 -0800199
Charles M.C. Chane148de82015-05-06 12:38:21 +0800200 log.info("Started with Application ID {}", appId.id());
201 }
202
203 @Deactivate
204 public void deactivate() {
Charles M.C. Chane148de82015-05-06 12:38:21 +0800205 cfgService.unregisterProperties(getClass(), false);
Thomas Vachuska27bee092015-06-23 19:03:10 -0700206
207 withdrawIntercepts();
208
Charles M.C. Chane148de82015-05-06 12:38:21 +0800209 providerRegistry.unregister(this);
210 packetService.removeProcessor(processor);
211 deviceService.removeListener(deviceListener);
Madan Jampania3770c32015-12-11 12:07:41 -0800212 eventHandler.shutdown();
Charles Chan6577f612018-04-19 13:10:01 -0700213 hostProber.shutdown();
Charles M.C. Chane148de82015-05-06 12:38:21 +0800214 providerService = null;
215 log.info("Stopped");
216 }
217
218 @Modified
219 public void modified(ComponentContext context) {
Charles M.C. Chane148de82015-05-06 12:38:21 +0800220 readComponentConfiguration(context);
Jonathan Hart9af322d2016-01-06 17:42:04 -0800221
222 if (requestInterceptsEnabled) {
223 requestIntercepts();
224 } else {
225 withdrawIntercepts();
226 }
Charles M.C. Chane148de82015-05-06 12:38:21 +0800227 }
228
229 /**
Thomas Vachuska27bee092015-06-23 19:03:10 -0700230 * Request packet intercepts.
Charles M.C. Chane148de82015-05-06 12:38:21 +0800231 */
Thomas Vachuska27bee092015-06-23 19:03:10 -0700232 private void requestIntercepts() {
Charles Chane6067892016-11-17 10:23:46 -0800233 // Use ARP
234 TrafficSelector arpSelector = DefaultTrafficSelector.builder()
235 .matchEthType(Ethernet.TYPE_ARP)
236 .build();
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700237 if (requestArp) {
Charles Chane6067892016-11-17 10:23:46 -0800238 packetService.requestPackets(arpSelector, PacketPriority.CONTROL, appId);
Thomas Vachuska27bee092015-06-23 19:03:10 -0700239 } else {
Charles Chane6067892016-11-17 10:23:46 -0800240 packetService.cancelPackets(arpSelector, PacketPriority.CONTROL, appId);
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800241 }
Thomas Vachuska27bee092015-06-23 19:03:10 -0700242
Charles Chane6067892016-11-17 10:23:46 -0800243 // Use IPv6 Neighbor Discovery
244 TrafficSelector ipv6NsSelector = DefaultTrafficSelector.builder()
245 .matchEthType(Ethernet.TYPE_IPV6)
246 .matchIPProtocol(IPv6.PROTOCOL_ICMP6)
247 .matchIcmpv6Type(ICMP6.NEIGHBOR_SOLICITATION)
248 .build();
249 TrafficSelector ipv6NaSelector = DefaultTrafficSelector.builder()
250 .matchEthType(Ethernet.TYPE_IPV6)
251 .matchIPProtocol(IPv6.PROTOCOL_ICMP6)
252 .matchIcmpv6Type(ICMP6.NEIGHBOR_ADVERTISEMENT)
253 .build();
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700254 if (requestIpv6ND) {
Charles Chane6067892016-11-17 10:23:46 -0800255 packetService.requestPackets(ipv6NsSelector, PacketPriority.CONTROL, appId);
256 packetService.requestPackets(ipv6NaSelector, PacketPriority.CONTROL, appId);
Thomas Vachuska27bee092015-06-23 19:03:10 -0700257 } else {
Charles Chane6067892016-11-17 10:23:46 -0800258 packetService.cancelPackets(ipv6NsSelector, PacketPriority.CONTROL, appId);
259 packetService.cancelPackets(ipv6NaSelector, PacketPriority.CONTROL, appId);
260 }
Thomas Vachuska27bee092015-06-23 19:03:10 -0700261 }
262
263 /**
264 * Withdraw packet intercepts.
265 */
266 private void withdrawIntercepts() {
267 TrafficSelector.Builder selector = DefaultTrafficSelector.builder();
268 selector.matchEthType(Ethernet.TYPE_ARP);
Aaron Kruglikov07a923d2015-07-03 13:30:57 -0700269 packetService.cancelPackets(selector.build(), PacketPriority.CONTROL, appId);
Thomas Vachuska27bee092015-06-23 19:03:10 -0700270
271 // IPv6 Neighbor Solicitation packet.
272 selector.matchEthType(Ethernet.TYPE_IPV6);
273 selector.matchIPProtocol(IPv6.PROTOCOL_ICMP6);
274 selector.matchIcmpv6Type(ICMP6.NEIGHBOR_SOLICITATION);
275 packetService.cancelPackets(selector.build(), PacketPriority.CONTROL, appId);
276
277 // IPv6 Neighbor Advertisement packet.
278 selector.matchIcmpv6Type(ICMP6.NEIGHBOR_ADVERTISEMENT);
279 packetService.cancelPackets(selector.build(), PacketPriority.CONTROL, appId);
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800280 }
281
282 /**
283 * Extracts properties from the component configuration context.
284 *
285 * @param context the component context
286 */
287 private void readComponentConfiguration(ComponentContext context) {
288 Dictionary<?, ?> properties = context.getProperties();
289 Boolean flag;
290
Jian Lid9b5f552016-03-11 18:15:31 -0800291 flag = Tools.isPropertyEnabled(properties, "hostRemovalEnabled");
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800292 if (flag == null) {
293 log.info("Host removal on port/device down events is not configured, " +
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700294 "using current value of {}", hostRemovalEnabled);
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800295 } else {
296 hostRemovalEnabled = flag;
297 log.info("Configured. Host removal on port/device down events is {}",
298 hostRemovalEnabled ? "enabled" : "disabled");
Thomas Vachuska33601602014-11-19 03:32:15 -0800299 }
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800300
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700301 flag = Tools.isPropertyEnabled(properties, "requestArp");
Charles Chane6067892016-11-17 10:23:46 -0800302 if (flag == null) {
303 log.info("Using ARP is not configured, " +
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700304 "using current value of {}", requestArp);
Charles Chane6067892016-11-17 10:23:46 -0800305 } else {
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700306 requestArp = flag;
Charles Chane6067892016-11-17 10:23:46 -0800307 log.info("Configured. Using ARP is {}",
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700308 requestArp ? "enabled" : "disabled");
Charles Chane6067892016-11-17 10:23:46 -0800309 }
310
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700311 flag = Tools.isPropertyEnabled(properties, "requestIpv6ND");
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800312 if (flag == null) {
313 log.info("Using IPv6 Neighbor Discovery is not configured, " +
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700314 "using current value of {}", requestIpv6ND);
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800315 } else {
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700316 requestIpv6ND = flag;
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800317 log.info("Configured. Using IPv6 Neighbor Discovery is {}",
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700318 requestIpv6ND ? "enabled" : "disabled");
Charles Chane6067892016-11-17 10:23:46 -0800319 }
320
321 flag = Tools.isPropertyEnabled(properties, "useDhcp");
322 if (flag == null) {
323 log.info("Using DHCP is not configured, " +
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700324 "using current value of {}", useDhcp);
Charles Chane6067892016-11-17 10:23:46 -0800325 } else {
326 useDhcp = flag;
327 log.info("Configured. Using DHCP is {}",
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700328 useDhcp ? "enabled" : "disabled");
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800329 }
Jonathan Hart9af322d2016-01-06 17:42:04 -0800330
Jian Lid9b5f552016-03-11 18:15:31 -0800331 flag = Tools.isPropertyEnabled(properties, "requestInterceptsEnabled");
Jonathan Hart9af322d2016-01-06 17:42:04 -0800332 if (flag == null) {
333 log.info("Request intercepts is not configured, " +
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700334 "using current value of {}", requestInterceptsEnabled);
Jonathan Hart9af322d2016-01-06 17:42:04 -0800335 } else {
336 requestInterceptsEnabled = flag;
337 log.info("Configured. Request intercepts is {}",
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700338 requestInterceptsEnabled ? "enabled" : "disabled");
Jonathan Hart9af322d2016-01-06 17:42:04 -0800339 }
Charles Chan35a32322017-08-14 11:42:11 -0700340
341 flag = Tools.isPropertyEnabled(properties, "multihomingEnabled");
342 if (flag == null) {
343 log.info("Multihoming is not configured, " +
344 "using current value of {}", multihomingEnabled);
345 } else {
346 multihomingEnabled = flag;
347 log.info("Configured. Multihoming is {}",
348 multihomingEnabled ? "enabled" : "disabled");
349 }
Charles Chan47933752017-11-30 15:37:50 -0800350 }
Charles Chan35a32322017-08-14 11:42:11 -0700351
Charles Chan47933752017-11-30 15:37:50 -0800352 @Override
353 public void probeHostLocation(Host host, ConnectPoint connectPoint, ProbeMode probeMode) {
354 host.ipAddresses().stream().findFirst().ifPresent(ip -> {
355 MacAddress probeMac = providerService.addPendingHostLocation(host.id(), connectPoint, probeMode);
356 log.debug("Constructing {} probe for host {} with {}", probeMode, host.id(), ip);
357 Ethernet probe;
358 if (ip.isIp4()) {
359 probe = ARP.buildArpRequest(probeMac.toBytes(), Ip4Address.ZERO.toOctets(),
360 host.id().mac().toBytes(), ip.toOctets(),
361 host.id().mac().toBytes(), host.id().vlanId().toShort());
362 } else {
363 probe = NeighborSolicitation.buildNdpSolicit(
364 ip.getIp6Address(),
365 Ip6Address.valueOf(IPv6.getLinkLocalAddress(probeMac.toBytes())),
366 ip.getIp6Address(),
367 probeMac,
368 host.id().mac(),
369 host.id().vlanId());
370 }
371
372 // NOTE: delay the probe a little bit to wait for the store synchronization is done
Charles Chan6577f612018-04-19 13:10:01 -0700373 hostProber.schedule(() ->
Charles Chan47933752017-11-30 15:37:50 -0800374 sendLocationProbe(probe, connectPoint), probeInitDelayMs, TimeUnit.MILLISECONDS);
375 });
376 }
377
378 /**
379 * Send the probe packet on given port.
380 *
381 * @param probe the probe packet
382 * @param connectPoint the port we want to probe
383 */
384 private void sendLocationProbe(Ethernet probe, ConnectPoint connectPoint) {
Charles Chan1dd75572018-05-08 11:49:05 -0700385 log.debug("Sending probe for host {} on location {} with probeMac {}",
Charles Chan47933752017-11-30 15:37:50 -0800386 probe.getDestinationMAC(), connectPoint, probe.getSourceMAC());
387 TrafficTreatment treatment = DefaultTrafficTreatment.builder().setOutput(connectPoint.port()).build();
388 OutboundPacket outboundPacket = new DefaultOutboundPacket(connectPoint.deviceId(),
389 treatment, ByteBuffer.wrap(probe.serialize()));
390 packetService.emit(outboundPacket);
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800391 }
392
alshabibe1cf87d2014-10-17 09:23:50 -0700393 @Override
394 public void triggerProbe(Host host) {
Saurav Dasb0ae6ee2017-03-04 16:08:47 -0800395 //log.info("Triggering probe on device {} ", host);
Jonathan Hartf353e402016-09-23 09:27:36 -0700396
397 // FIXME Disabling host probing for now, because sending packets from a
398 // broadcast MAC address caused problems when two ONOS networks were
399 // interconnected. Host probing should take into account the interface
400 // configuration when determining which source address to use.
401
402 //MastershipRole role = deviceService.getRole(host.location().deviceId());
403 //if (role.equals(MastershipRole.MASTER)) {
404 // host.ipAddresses().forEach(ip -> {
405 // sendProbe(host, ip);
406 // });
407 //} else {
408 // log.info("not the master, master will probe {}");
409 //}
sdn94b00152016-08-30 02:12:32 -0700410 }
411
412 private void sendProbe(Host host, IpAddress targetIp) {
413 Ethernet probePacket = null;
414 if (targetIp.isIp4()) {
415 // IPv4: Use ARP
416 probePacket = buildArpRequest(targetIp, host);
417 } else {
418 // IPv6: Use Neighbor Discovery
Jonathan Hartf353e402016-09-23 09:27:36 -0700419 //TODO need to implement ndp probe
sdn94b00152016-08-30 02:12:32 -0700420 log.info("Triggering probe on device {} ", host);
Ray Milkey74e59132018-01-17 15:24:52 -0800421 return;
sdn94b00152016-08-30 02:12:32 -0700422 }
423
424 TrafficTreatment treatment = DefaultTrafficTreatment.builder().setOutput(host.location().port()).build();
425
426 OutboundPacket outboundPacket = new DefaultOutboundPacket(host.location().deviceId(), treatment,
427 ByteBuffer.wrap(probePacket.serialize()));
428
429 packetService.emit(outboundPacket);
430 }
431
Charles Chan888e20a2017-05-01 15:44:23 -0700432 // This method is using source ip as 0.0.0.0 , to receive the reply even from the sub net hosts.
sdn94b00152016-08-30 02:12:32 -0700433 private Ethernet buildArpRequest(IpAddress targetIp, Host host) {
Charles Chan35a32322017-08-14 11:42:11 -0700434 return ARP.buildArpRequest(MacAddress.BROADCAST.toBytes(), Ip4Address.ZERO.toOctets(),
435 MacAddress.BROADCAST.toBytes(), targetIp.toOctets(),
436 MacAddress.BROADCAST.toBytes(), VlanId.NONE.toShort());
alshabibe1cf87d2014-10-17 09:23:50 -0700437 }
438
439 private class InternalHostProvider implements PacketProcessor {
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800440 /**
Charles Chan888e20a2017-05-01 15:44:23 -0700441 * Create or update host information.
442 * Will not update IP if IP is null, all zero or self-assigned.
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800443 *
Jonghwan Hyun2c95acf2018-03-14 16:47:34 -0700444 * @param hid host ID
445 * @param mac source Mac address
446 * @param vlan VLAN ID
447 * @param innerVlan inner VLAN ID
448 * @param outerTpid outer TPID
449 * @param hloc host location
450 * @param ip source IP address or null if not updating
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800451 */
Jonghwan Hyun2c95acf2018-03-14 16:47:34 -0700452 private void createOrUpdateHost(HostId hid, MacAddress mac, VlanId vlan,
453 VlanId innerVlan, EthType outerTpid,
454 HostLocation hloc, IpAddress ip) {
Charles Chan35a32322017-08-14 11:42:11 -0700455 Set<HostLocation> newLocations = Sets.newHashSet(hloc);
456
457 if (multihomingEnabled) {
458 Host existingHost = hostService.getHost(hid);
459 if (existingHost != null) {
460 Set<HostLocation> prevLocations = existingHost.locations();
Charles Chan35a32322017-08-14 11:42:11 -0700461
Charles Chan653e2ac2017-11-22 14:49:55 -0800462 if (prevLocations.stream().noneMatch(loc -> loc.deviceId().equals(hloc.deviceId()))) {
463 // New location is on a device that we haven't seen before
464 // Could be a dual-home host. Append new location and send out the probe
465 newLocations.addAll(prevLocations);
Charles Chan47933752017-11-30 15:37:50 -0800466 prevLocations.forEach(prevLocation ->
467 probeHostLocation(existingHost, prevLocation, ProbeMode.VERIFY));
Charles Chan653e2ac2017-11-22 14:49:55 -0800468 } else {
469 // Move within the same switch
470 // Simply replace old location that is on the same device
471 prevLocations.stream().filter(loc -> !loc.deviceId().equals(hloc.deviceId()))
472 .forEach(newLocations::add);
Charles Chan35a32322017-08-14 11:42:11 -0700473 }
474 }
475 }
476
Charles Chan888e20a2017-05-01 15:44:23 -0700477 HostDescription desc = ip == null || ip.isZero() || ip.isSelfAssigned() ?
Jonghwan Hyun2c95acf2018-03-14 16:47:34 -0700478 new DefaultHostDescription(mac, vlan, newLocations, Sets.newHashSet(),
479 innerVlan, outerTpid, false) :
480 new DefaultHostDescription(mac, vlan, newLocations, Sets.newHashSet(ip),
481 innerVlan, outerTpid, false);
Sahil Lele3a0cdd52015-07-21 14:16:31 -0700482 try {
Ray Milkeydc083442016-02-22 11:27:57 -0800483 providerService.hostDetected(hid, desc, false);
Sahil Lele3a0cdd52015-07-21 14:16:31 -0700484 } catch (IllegalStateException e) {
485 log.debug("Host {} suppressed", hid);
486 }
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800487 }
alshabibe1cf87d2014-10-17 09:23:50 -0700488
Charles Chane6067892016-11-17 10:23:46 -0800489 /**
Charles Chan888e20a2017-05-01 15:44:23 -0700490 * Updates IP address for an existing host.
Charles Chane6067892016-11-17 10:23:46 -0800491 *
492 * @param hid host ID
493 * @param ip IP address
494 */
Charles Chan888e20a2017-05-01 15:44:23 -0700495 private void updateHostIp(HostId hid, IpAddress ip) {
Charles Chane6067892016-11-17 10:23:46 -0800496 Host host = hostService.getHost(hid);
497 if (host == null) {
Charles Chan35a32322017-08-14 11:42:11 -0700498 log.warn("Fail to update IP for {}. Host does not exist", hid);
Charles Chane6067892016-11-17 10:23:46 -0800499 return;
500 }
501
Charles Chan888e20a2017-05-01 15:44:23 -0700502 HostDescription desc = new DefaultHostDescription(hid.mac(), hid.vlanId(),
Charles Chan35a32322017-08-14 11:42:11 -0700503 host.locations(), Sets.newHashSet(ip), false);
Charles Chane6067892016-11-17 10:23:46 -0800504 try {
505 providerService.hostDetected(hid, desc, false);
506 } catch (IllegalStateException e) {
507 log.debug("Host {} suppressed", hid);
508 }
509 }
510
alshabibe1cf87d2014-10-17 09:23:50 -0700511 @Override
512 public void process(PacketContext context) {
alshabib4a179dc2014-10-17 17:17:01 -0700513 if (context == null) {
514 return;
515 }
alshabibe1cf87d2014-10-17 09:23:50 -0700516
Thomas Vachuskaf845cf62015-03-24 10:13:09 -0700517 Ethernet eth = context.inPacket().parsed();
Jonathan Harte8600eb2015-01-12 10:30:45 -0800518 if (eth == null) {
519 return;
520 }
Jonathan Hartf353e402016-09-23 09:27:36 -0700521
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800522 MacAddress srcMac = eth.getSourceMAC();
Jonathan Hartf353e402016-09-23 09:27:36 -0700523 if (srcMac.isBroadcast() || srcMac.isMulticast()) {
524 return;
525 }
Jonathan Harte8600eb2015-01-12 10:30:45 -0800526
alshabibe1cf87d2014-10-17 09:23:50 -0700527 VlanId vlan = VlanId.vlanId(eth.getVlanID());
Jonghwan Hyun2c95acf2018-03-14 16:47:34 -0700528 VlanId outerVlan = VlanId.vlanId(eth.getQinQVID());
529 VlanId innerVlan = VlanId.NONE;
530 EthType outerTpid = EthType.EtherType.UNKNOWN.ethType();
531 // Set up values for double-tagged hosts
532 if (outerVlan.toShort() != Ethernet.VLAN_UNTAGGED) {
533 innerVlan = vlan;
534 vlan = outerVlan;
535 outerTpid = EthType.EtherType.lookup(eth.getQinQTPID()).ethType();
536 }
alshabibe1cf87d2014-10-17 09:23:50 -0700537 ConnectPoint heardOn = context.inPacket().receivedFrom();
538
Thomas Vachuskaf845cf62015-03-24 10:13:09 -0700539 // If this arrived on control port, bail out.
540 if (heardOn.port().isLogical()) {
541 return;
542 }
543
alshabibe1cf87d2014-10-17 09:23:50 -0700544 // If this is not an edge port, bail out.
545 Topology topology = topologyService.currentTopology();
546 if (topologyService.isInfrastructure(topology, heardOn)) {
547 return;
548 }
549
Thomas Vachuskaec9c7dd2015-09-03 18:30:04 -0700550 HostLocation hloc = new HostLocation(heardOn, System.currentTimeMillis());
alshabibe1cf87d2014-10-17 09:23:50 -0700551 HostId hid = HostId.hostId(eth.getSourceMAC(), vlan);
Charles Chan35a32322017-08-14 11:42:11 -0700552 MacAddress destMac = eth.getDestinationMAC();
553
554 // Receives a location probe. Invalid entry from the cache
555 if (multihomingEnabled && destMac.isOnos() && !MacAddress.NONE.equals(destMac)) {
Charles Chan1dd75572018-05-08 11:49:05 -0700556 log.debug("Receives probe for {}/{} on {}", srcMac, vlan, heardOn);
Charles Chan35a32322017-08-14 11:42:11 -0700557 providerService.removePendingHostLocation(destMac);
558 return;
559 }
alshabibe1cf87d2014-10-17 09:23:50 -0700560
Charles M.C. Chan7fee36a2014-12-31 00:19:59 +0800561 // ARP: possible new hosts, update both location and IP
alshabibe1cf87d2014-10-17 09:23:50 -0700562 if (eth.getEtherType() == Ethernet.TYPE_ARP) {
563 ARP arp = (ARP) eth.getPayload();
Pavlin Radoslavovd6612f92015-02-23 13:53:32 -0800564 IpAddress ip = IpAddress.valueOf(IpAddress.Version.INET,
565 arp.getSenderProtocolAddress());
Jonghwan Hyun2c95acf2018-03-14 16:47:34 -0700566 createOrUpdateHost(hid, srcMac, vlan, innerVlan, outerTpid, hloc, ip);
alshabibe1cf87d2014-10-17 09:23:50 -0700567
Charles Chan5d5e0622015-09-25 13:00:06 -0700568 // IPv4: update location only
alshabibe1cf87d2014-10-17 09:23:50 -0700569 } else if (eth.getEtherType() == Ethernet.TYPE_IPV4) {
Yi Tsengaa417a62017-09-08 17:22:51 -0700570 // Update host location
Jonghwan Hyun2c95acf2018-03-14 16:47:34 -0700571 createOrUpdateHost(hid, srcMac, vlan, innerVlan, outerTpid, hloc, null);
Yi Tsengaa417a62017-09-08 17:22:51 -0700572 if (useDhcp) {
573 DHCP dhcp = findDhcp(eth).orElse(null);
574 // DHCP ACK: additionally update IP of DHCP client
575 if (dhcp != null && dhcp.getPacketType().equals(DHCP.MsgType.DHCPACK)) {
576 MacAddress hostMac = MacAddress.valueOf(dhcp.getClientHardwareAddress());
577 VlanId hostVlan = VlanId.vlanId(eth.getVlanID());
578 HostId hostId = HostId.hostId(hostMac, hostVlan);
579 updateHostIp(hostId, IpAddress.valueOf(dhcp.getYourIPAddress()));
Yi Tsengcfa637a2017-07-26 17:24:10 -0700580 }
Charles Chane6067892016-11-17 10:23:46 -0800581 }
Charles Chan5d5e0622015-09-25 13:00:06 -0700582 // NeighborAdvertisement and NeighborSolicitation: possible
583 // new hosts, update both location and IP.
584 //
585 // IPv6: update location only
Charles M.C. Chan7fee36a2014-12-31 00:19:59 +0800586 } else if (eth.getEtherType() == Ethernet.TYPE_IPV6) {
Charles M.C. Chan7fee36a2014-12-31 00:19:59 +0800587 IPv6 ipv6 = (IPv6) eth.getPayload();
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800588 IpAddress ip = IpAddress.valueOf(IpAddress.Version.INET6,
Thomas Vachuska27bee092015-06-23 19:03:10 -0700589 ipv6.getSourceAddress());
Charles M.C. Chan7fee36a2014-12-31 00:19:59 +0800590
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800591 // skip extension headers
592 IPacket pkt = ipv6;
593 while (pkt.getPayload() != null &&
594 pkt.getPayload() instanceof IExtensionHeader) {
595 pkt = pkt.getPayload();
596 }
Charles M.C. Chan9148d2d2015-04-27 03:36:39 +0800597 pkt = pkt.getPayload();
Yi Tsengfcf5dce2017-07-26 14:30:41 -0700598
599 // DHCPv6 protocol
600 DHCP6 dhcp6 = findDhcp6(pkt).orElse(null);
601 if (dhcp6 != null && useDhcp6) {
Jonghwan Hyun2c95acf2018-03-14 16:47:34 -0700602 createOrUpdateHost(hid, srcMac, vlan, innerVlan, outerTpid, hloc, null);
Yi Tsengfcf5dce2017-07-26 14:30:41 -0700603 handleDhcp6(dhcp6, vlan);
604 return;
605 }
606
Charles M.C. Chan9148d2d2015-04-27 03:36:39 +0800607 if (pkt != null && pkt instanceof ICMP6) {
Yi Tsengfcf5dce2017-07-26 14:30:41 -0700608 // Neighbor Discovery Protocol
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800609 pkt = pkt.getPayload();
Charles Chan178b0f52017-10-08 23:51:22 -0400610 if (pkt != null) {
611 // RouterSolicitation, RouterAdvertisement
612 if (pkt instanceof RouterAdvertisement || pkt instanceof RouterSolicitation) {
Charles M.C. Chan441d7da2015-03-17 21:03:39 +0800613 return;
Charles M.C. Chan7fee36a2014-12-31 00:19:59 +0800614 }
Charles Chan178b0f52017-10-08 23:51:22 -0400615 if (pkt instanceof NeighborSolicitation || pkt instanceof NeighborAdvertisement) {
616 // Duplicate Address Detection
617 if (ip.isZero()) {
618 return;
619 }
620 // NeighborSolicitation, NeighborAdvertisement
Jonghwan Hyun2c95acf2018-03-14 16:47:34 -0700621 createOrUpdateHost(hid, srcMac, vlan, innerVlan, outerTpid, hloc, ip);
Charles Chan178b0f52017-10-08 23:51:22 -0400622
623 // Also learn from the target address of NeighborAdvertisement
624 if (pkt instanceof NeighborAdvertisement) {
625 NeighborAdvertisement na = (NeighborAdvertisement) pkt;
626 Ip6Address targetAddr = Ip6Address.valueOf(na.getTargetAddress());
Jonghwan Hyun2c95acf2018-03-14 16:47:34 -0700627 createOrUpdateHost(hid, srcMac, vlan, innerVlan, outerTpid, hloc, targetAddr);
Charles Chan178b0f52017-10-08 23:51:22 -0400628 }
629 return;
630 }
Charles M.C. Chan7fee36a2014-12-31 00:19:59 +0800631 }
Charles M.C. Chan7fee36a2014-12-31 00:19:59 +0800632 }
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800633
Yi Tsengaa417a62017-09-08 17:22:51 -0700634 // multicast, exclude DHCPv6
635 if (eth.isMulticast() && dhcp6 == null) {
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800636 return;
637 }
638
639 // normal IPv6 packets
Jonghwan Hyun2c95acf2018-03-14 16:47:34 -0700640 createOrUpdateHost(hid, srcMac, vlan, innerVlan, outerTpid, hloc, null);
alshabibe1cf87d2014-10-17 09:23:50 -0700641 }
642 }
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700643
Yi Tsengfcf5dce2017-07-26 14:30:41 -0700644 /**
645 * Handles DHCPv6 packet, if message type is ACK, update IP address
646 * according to DHCPv6 payload (IA Address option).
647 *
648 * @param dhcp6 the DHCPv6 payload
649 * @param vlanId the vlan of this packet
650 */
651 private void handleDhcp6(DHCP6 dhcp6, VlanId vlanId) {
652 // extract the relay message if exist
653 while (dhcp6 != null && DHCP6.RELAY_MSG_TYPES.contains(dhcp6.getMsgType())) {
654 dhcp6 = dhcp6.getOptions().stream()
655 .filter(opt -> opt instanceof Dhcp6RelayOption)
656 .map(BasePacket::getPayload)
657 .map(pld -> (DHCP6) pld)
658 .findFirst()
659 .orElse(null);
660 }
661
662 if (dhcp6 == null) {
663 // Can't find dhcp payload
664 log.warn("Can't find dhcp payload from relay message");
665 return;
666 }
667
668 if (dhcp6.getMsgType() != DHCP6.MsgType.REPLY.value()) {
669 // Update IP address only when we received REPLY message
670 return;
671 }
672 Optional<Dhcp6ClientIdOption> clientIdOption = dhcp6.getOptions()
673 .stream()
674 .filter(opt -> opt instanceof Dhcp6ClientIdOption)
675 .map(opt -> (Dhcp6ClientIdOption) opt)
676 .findFirst();
677
678 if (!clientIdOption.isPresent()) {
679 // invalid DHCPv6 option
680 log.warn("Can't find client ID from DHCPv6 {}", dhcp6);
681 return;
682 }
683
684 byte[] linkLayerAddr = clientIdOption.get().getDuid().getLinkLayerAddress();
685 if (linkLayerAddr == null || linkLayerAddr.length != 6) {
686 // No any mac address found
687 log.warn("Can't find client mac from option {}", clientIdOption);
688 return;
689 }
690 MacAddress clientMac = MacAddress.valueOf(linkLayerAddr);
691
692 // Extract IPv6 address from IA NA ot IA TA option
693 Optional<Dhcp6IaNaOption> iaNaOption = dhcp6.getOptions()
694 .stream()
695 .filter(opt -> opt instanceof Dhcp6IaNaOption)
696 .map(opt -> (Dhcp6IaNaOption) opt)
697 .findFirst();
698 Optional<Dhcp6IaTaOption> iaTaOption = dhcp6.getOptions()
699 .stream()
700 .filter(opt -> opt instanceof Dhcp6IaTaOption)
701 .map(opt -> (Dhcp6IaTaOption) opt)
702 .findFirst();
703 Optional<Dhcp6IaAddressOption> iaAddressOption;
704 if (iaNaOption.isPresent()) {
705 iaAddressOption = iaNaOption.get().getOptions().stream()
706 .filter(opt -> opt instanceof Dhcp6IaAddressOption)
707 .map(opt -> (Dhcp6IaAddressOption) opt)
708 .findFirst();
709 } else if (iaTaOption.isPresent()) {
710 iaAddressOption = iaTaOption.get().getOptions().stream()
711 .filter(opt -> opt instanceof Dhcp6IaAddressOption)
712 .map(opt -> (Dhcp6IaAddressOption) opt)
713 .findFirst();
714 } else {
715 iaAddressOption = Optional.empty();
716 }
717 if (iaAddressOption.isPresent()) {
718 Ip6Address ip = iaAddressOption.get().getIp6Address();
719 HostId hostId = HostId.hostId(clientMac, vlanId);
720 updateHostIp(hostId, ip);
721 } else {
722 log.warn("Can't find IPv6 address from DHCPv6 {}", dhcp6);
723 }
724 }
725
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700726 private Optional<DHCP> findDhcp(Ethernet eth) {
727 IPacket pkt = eth.getPayload();
728 return Stream.of(pkt)
729 .filter(Objects::nonNull)
730 .filter(p -> p instanceof IPv4)
731 .map(IPacket::getPayload)
732 .filter(Objects::nonNull)
733 .filter(p -> p instanceof UDP)
734 .map(IPacket::getPayload)
735 .filter(Objects::nonNull)
736 .filter(p -> p instanceof DHCP)
737 .map(p -> (DHCP) p)
738 .findFirst();
739 }
Yi Tsengfcf5dce2017-07-26 14:30:41 -0700740
741 private Optional<DHCP6> findDhcp6(IPacket pkt) {
742 return Stream.of(pkt)
743 .filter(Objects::nonNull)
744 .filter(p -> p instanceof UDP)
745 .map(IPacket::getPayload)
746 .filter(Objects::nonNull)
747 .filter(p -> p instanceof DHCP6)
748 .map(p -> (DHCP6) p)
749 .findFirst();
750 }
alshabibe1cf87d2014-10-17 09:23:50 -0700751 }
Thomas Vachuska33601602014-11-19 03:32:15 -0800752
753 // Auxiliary listener to device events.
754 private class InternalDeviceListener implements DeviceListener {
755 @Override
756 public void event(DeviceEvent event) {
Madan Jampania3770c32015-12-11 12:07:41 -0800757 eventHandler.execute(() -> handleEvent(event));
758 }
759
760 private void handleEvent(DeviceEvent event) {
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -0800761 Device device = event.subject();
762 switch (event.type()) {
Thomas Vachuska27bee092015-06-23 19:03:10 -0700763 case DEVICE_ADDED:
764 break;
765 case DEVICE_AVAILABILITY_CHANGED:
Charles Chan888e20a2017-05-01 15:44:23 -0700766 if (hostRemovalEnabled && !deviceService.isAvailable(device.id())) {
767 processDeviceDown(device.id());
Thomas Vachuska27bee092015-06-23 19:03:10 -0700768 }
769 break;
770 case DEVICE_SUSPENDED:
771 case DEVICE_UPDATED:
772 // Nothing to do?
773 break;
774 case DEVICE_REMOVED:
775 if (hostRemovalEnabled) {
Charles Chan888e20a2017-05-01 15:44:23 -0700776 processDeviceDown(device.id());
Thomas Vachuska27bee092015-06-23 19:03:10 -0700777 }
778 break;
779 case PORT_ADDED:
780 break;
781 case PORT_UPDATED:
Charles Chan888e20a2017-05-01 15:44:23 -0700782 if (hostRemovalEnabled && !event.port().isEnabled()) {
783 processPortDown(new ConnectPoint(device.id(), event.port().number()));
Thomas Vachuska27bee092015-06-23 19:03:10 -0700784 }
785 break;
786 case PORT_REMOVED:
787 // Nothing to do?
788 break;
789 default:
790 break;
Thomas Vachuska33601602014-11-19 03:32:15 -0800791 }
792 }
793 }
794
Charles Chan888e20a2017-05-01 15:44:23 -0700795 /**
796 * When a device goes down, update the location of affected hosts.
797 *
798 * @param deviceId the device that goes down
799 */
800 private void processDeviceDown(DeviceId deviceId) {
801 hostService.getConnectedHosts(deviceId).forEach(affectedHost -> affectedHost.locations().stream()
802 .filter(hostLocation -> hostLocation.deviceId().equals(deviceId))
803 .forEach(affectedLocation ->
804 providerService.removeLocationFromHost(affectedHost.id(), affectedLocation))
805 );
806 }
807
808 /**
809 * When a port goes down, update the location of affected hosts.
810 *
811 * @param connectPoint the port that goes down
812 */
813 private void processPortDown(ConnectPoint connectPoint) {
814 hostService.getConnectedHosts(connectPoint).forEach(affectedHost ->
815 providerService.removeLocationFromHost(affectedHost.id(), new HostLocation(connectPoint, 0L))
816 );
Thomas Vachuska33601602014-11-19 03:32:15 -0800817 }
818
alshabibe1cf87d2014-10-17 09:23:50 -0700819}