blob: 16a8f248e2f36858c5dd7383fec684fe92efb689 [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;
Jonathan Harte8600eb2015-01-12 10:30:45 -080026import org.onlab.packet.ARP;
Yi Tsengfcf5dce2017-07-26 14:30:41 -070027import org.onlab.packet.BasePacket;
Charles Chane6067892016-11-17 10:23:46 -080028import org.onlab.packet.DHCP;
Yi Tsengfcf5dce2017-07-26 14:30:41 -070029import org.onlab.packet.DHCP6;
Jonathan Harte8600eb2015-01-12 10:30:45 -080030import org.onlab.packet.Ethernet;
Pavlin Radoslavovd6612f92015-02-23 13:53:32 -080031import org.onlab.packet.ICMP6;
Thomas Vachuskaf845cf62015-03-24 10:13:09 -070032import org.onlab.packet.IPacket;
Charles Chane6067892016-11-17 10:23:46 -080033import org.onlab.packet.IPv4;
Jonathan Harte8600eb2015-01-12 10:30:45 -080034import org.onlab.packet.IPv6;
Charles Chan35a32322017-08-14 11:42:11 -070035import org.onlab.packet.Ip4Address;
Yi Tsengfcf5dce2017-07-26 14:30:41 -070036import org.onlab.packet.Ip6Address;
Jonathan Harte8600eb2015-01-12 10:30:45 -080037import org.onlab.packet.IpAddress;
Charles M.C. Chan956cb692015-04-26 18:49:39 +080038import org.onlab.packet.MacAddress;
Charles Chane6067892016-11-17 10:23:46 -080039import org.onlab.packet.UDP;
Jonathan Harte8600eb2015-01-12 10:30:45 -080040import org.onlab.packet.VlanId;
Yi Tsengfcf5dce2017-07-26 14:30:41 -070041import org.onlab.packet.dhcp.Dhcp6ClientIdOption;
42import org.onlab.packet.dhcp.Dhcp6IaAddressOption;
43import org.onlab.packet.dhcp.Dhcp6IaNaOption;
44import org.onlab.packet.dhcp.Dhcp6IaTaOption;
45import org.onlab.packet.dhcp.Dhcp6RelayOption;
Charles M.C. Chan956cb692015-04-26 18:49:39 +080046import org.onlab.packet.ipv6.IExtensionHeader;
Jonathan Harte8600eb2015-01-12 10:30:45 -080047import org.onlab.packet.ndp.NeighborAdvertisement;
48import org.onlab.packet.ndp.NeighborSolicitation;
Charles M.C. Chan441d7da2015-03-17 21:03:39 +080049import org.onlab.packet.ndp.RouterAdvertisement;
50import org.onlab.packet.ndp.RouterSolicitation;
Jian Lid9b5f552016-03-11 18:15:31 -080051import org.onlab.util.Tools;
Thomas Vachuska6519e6f2015-03-11 02:29:31 -070052import org.onosproject.cfg.ComponentConfigService;
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -080053import org.onosproject.core.ApplicationId;
54import org.onosproject.core.CoreService;
Ray Milkeyfacf2862017-08-03 11:58:29 -070055import org.onosproject.net.intf.InterfaceService;
Brian O'Connorabafb502014-12-02 22:26:20 -080056import org.onosproject.net.ConnectPoint;
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -080057import org.onosproject.net.Device;
Charles Chan888e20a2017-05-01 15:44:23 -070058import org.onosproject.net.DeviceId;
Brian O'Connorabafb502014-12-02 22:26:20 -080059import org.onosproject.net.Host;
60import org.onosproject.net.HostId;
61import org.onosproject.net.HostLocation;
62import org.onosproject.net.device.DeviceEvent;
63import org.onosproject.net.device.DeviceListener;
64import org.onosproject.net.device.DeviceService;
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -080065import org.onosproject.net.flow.DefaultTrafficSelector;
sdn94b00152016-08-30 02:12:32 -070066import org.onosproject.net.flow.DefaultTrafficTreatment;
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -080067import org.onosproject.net.flow.TrafficSelector;
sdn94b00152016-08-30 02:12:32 -070068import org.onosproject.net.flow.TrafficTreatment;
Brian O'Connorabafb502014-12-02 22:26:20 -080069import org.onosproject.net.host.DefaultHostDescription;
70import org.onosproject.net.host.HostDescription;
71import org.onosproject.net.host.HostProvider;
72import org.onosproject.net.host.HostProviderRegistry;
73import org.onosproject.net.host.HostProviderService;
74import org.onosproject.net.host.HostService;
sdn94b00152016-08-30 02:12:32 -070075import org.onosproject.net.packet.DefaultOutboundPacket;
76import org.onosproject.net.packet.OutboundPacket;
Brian O'Connorabafb502014-12-02 22:26:20 -080077import org.onosproject.net.packet.PacketContext;
Jonathan Hart3cfce8e2015-01-14 16:43:27 -080078import org.onosproject.net.packet.PacketPriority;
Brian O'Connorabafb502014-12-02 22:26:20 -080079import org.onosproject.net.packet.PacketProcessor;
80import org.onosproject.net.packet.PacketService;
81import org.onosproject.net.provider.AbstractProvider;
82import org.onosproject.net.provider.ProviderId;
83import org.onosproject.net.topology.Topology;
84import org.onosproject.net.topology.TopologyService;
Thomas Vachuska33601602014-11-19 03:32:15 -080085import org.osgi.service.component.ComponentContext;
alshabibe1cf87d2014-10-17 09:23:50 -070086import org.slf4j.Logger;
87
sdn94b00152016-08-30 02:12:32 -070088import java.nio.ByteBuffer;
Thomas Vachuskaf845cf62015-03-24 10:13:09 -070089import java.util.Dictionary;
Yi Tseng7a38f9a2017-06-09 14:36:40 -070090import java.util.Objects;
91import java.util.Optional;
Madan Jampania3770c32015-12-11 12:07:41 -080092import java.util.concurrent.ExecutorService;
Charles Chanbb86b782017-09-13 16:14:22 -070093import java.util.concurrent.Executors;
94import java.util.concurrent.ScheduledExecutorService;
95import java.util.concurrent.TimeUnit;
Yi Tseng7a38f9a2017-06-09 14:36:40 -070096import java.util.stream.Stream;
Charles Chan35a32322017-08-14 11:42:11 -070097import java.util.Set;
Thomas Vachuskaf845cf62015-03-24 10:13:09 -070098
Madan Jampania3770c32015-12-11 12:07:41 -080099import static java.util.concurrent.Executors.newSingleThreadScheduledExecutor;
100import static org.onlab.util.Tools.groupedThreads;
Thomas Vachuskaf845cf62015-03-24 10:13:09 -0700101import static org.slf4j.LoggerFactory.getLogger;
102
alshabibe1cf87d2014-10-17 09:23:50 -0700103/**
Thomas Vachuskaec9c7dd2015-09-03 18:30:04 -0700104 * Provider which uses an OpenFlow controller to detect network end-station
105 * hosts.
alshabibe1cf87d2014-10-17 09:23:50 -0700106 */
107@Component(immediate = true)
108public class HostLocationProvider extends AbstractProvider implements HostProvider {
alshabibe1cf87d2014-10-17 09:23:50 -0700109 private final Logger log = getLogger(getClass());
110
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -0800111 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
112 protected CoreService coreService;
113
114 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
alshabibe1cf87d2014-10-17 09:23:50 -0700115 protected HostProviderRegistry providerRegistry;
116
117 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pavlin Radoslavovd6612f92015-02-23 13:53:32 -0800118 protected PacketService packetService;
alshabibe1cf87d2014-10-17 09:23:50 -0700119
120 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
121 protected TopologyService topologyService;
122
Thomas Vachuska33601602014-11-19 03:32:15 -0800123 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
124 protected HostService hostService;
125
126 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
127 protected DeviceService deviceService;
128
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700129 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
130 protected ComponentConfigService cfgService;
131
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700132 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
133 protected InterfaceService interfaceService;
134
alshabibe1cf87d2014-10-17 09:23:50 -0700135 private HostProviderService providerService;
136
137 private final InternalHostProvider processor = new InternalHostProvider();
Thomas Vachuska33601602014-11-19 03:32:15 -0800138 private final DeviceListener deviceListener = new InternalDeviceListener();
139
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -0800140 private ApplicationId appId;
141
Thomas Vachuska33601602014-11-19 03:32:15 -0800142 @Property(name = "hostRemovalEnabled", boolValue = true,
143 label = "Enable host removal on port/device down events")
144 private boolean hostRemovalEnabled = true;
alshabibe1cf87d2014-10-17 09:23:50 -0700145
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700146 @Property(name = "requestArp", boolValue = true,
147 label = "Request ARP packets for neighbor discovery by the " +
Charles Chane6067892016-11-17 10:23:46 -0800148 "Host Location Provider; default is true")
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700149 private boolean requestArp = true;
Charles Chane6067892016-11-17 10:23:46 -0800150
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700151 @Property(name = "requestIpv6ND", boolValue = false,
152 label = "Requests IPv6 Neighbor Discovery by the " +
Thomas Vachuska27bee092015-06-23 19:03:10 -0700153 "Host Location Provider; default is false")
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700154 private boolean requestIpv6ND = false;
Charles Chane6067892016-11-17 10:23:46 -0800155
156 @Property(name = "useDhcp", boolValue = false,
Yi Tsengaa417a62017-09-08 17:22:51 -0700157 label = "Use DHCP to update IP address of the host; default is false")
Charles Chane6067892016-11-17 10:23:46 -0800158 private boolean useDhcp = false;
alshabibe1cf87d2014-10-17 09:23:50 -0700159
Yi Tsengfcf5dce2017-07-26 14:30:41 -0700160 @Property(name = "useDhcp6", boolValue = false,
Yi Tsengaa417a62017-09-08 17:22:51 -0700161 label = "Use DHCPv6 to update IP address of the host; default is false")
Yi Tsengfcf5dce2017-07-26 14:30:41 -0700162 private boolean useDhcp6 = false;
163
Jonathan Hart9af322d2016-01-06 17:42:04 -0800164 @Property(name = "requestInterceptsEnabled", boolValue = true,
165 label = "Enable requesting packet intercepts")
166 private boolean requestInterceptsEnabled = true;
167
Charles Chan35a32322017-08-14 11:42:11 -0700168 @Property(name = "multihomingEnabled", boolValue = false,
169 label = "Allow hosts to be multihomed")
170 private boolean multihomingEnabled = false;
Madan Jampania3770c32015-12-11 12:07:41 -0800171
Charles Chan35a32322017-08-14 11:42:11 -0700172 protected ExecutorService eventHandler;
sdn94b00152016-08-30 02:12:32 -0700173
alshabibe1cf87d2014-10-17 09:23:50 -0700174 /**
175 * Creates an OpenFlow host provider.
176 */
177 public HostLocationProvider() {
Brian O'Connorabafb502014-12-02 22:26:20 -0800178 super(new ProviderId("of", "org.onosproject.provider.host"));
alshabibe1cf87d2014-10-17 09:23:50 -0700179 }
180
181 @Activate
Thomas Vachuska33601602014-11-19 03:32:15 -0800182 public void activate(ComponentContext context) {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700183 cfgService.registerProperties(getClass());
184 appId = coreService.registerApplication("org.onosproject.provider.host");
Jonathan Hart9af322d2016-01-06 17:42:04 -0800185 eventHandler = newSingleThreadScheduledExecutor(
HIGUCHI Yutad9e01052016-04-14 09:31:42 -0700186 groupedThreads("onos/host-loc-provider", "event-handler", log));
alshabibe1cf87d2014-10-17 09:23:50 -0700187 providerService = providerRegistry.register(this);
Brian O'Connor3b783262015-07-29 17:49:24 -0700188 packetService.addProcessor(processor, PacketProcessor.advisor(1));
Thomas Vachuska33601602014-11-19 03:32:15 -0800189 deviceService.addListener(deviceListener);
Jonathan Hart9af322d2016-01-06 17:42:04 -0800190
191 modified(context);
Jonathan Hart3cfce8e2015-01-14 16:43:27 -0800192
Charles M.C. Chane148de82015-05-06 12:38:21 +0800193 log.info("Started with Application ID {}", appId.id());
194 }
195
196 @Deactivate
197 public void deactivate() {
Charles M.C. Chane148de82015-05-06 12:38:21 +0800198 cfgService.unregisterProperties(getClass(), false);
Thomas Vachuska27bee092015-06-23 19:03:10 -0700199
200 withdrawIntercepts();
201
Charles M.C. Chane148de82015-05-06 12:38:21 +0800202 providerRegistry.unregister(this);
203 packetService.removeProcessor(processor);
204 deviceService.removeListener(deviceListener);
Madan Jampania3770c32015-12-11 12:07:41 -0800205 eventHandler.shutdown();
Charles M.C. Chane148de82015-05-06 12:38:21 +0800206 providerService = null;
207 log.info("Stopped");
208 }
209
210 @Modified
211 public void modified(ComponentContext context) {
Charles M.C. Chane148de82015-05-06 12:38:21 +0800212 readComponentConfiguration(context);
Jonathan Hart9af322d2016-01-06 17:42:04 -0800213
214 if (requestInterceptsEnabled) {
215 requestIntercepts();
216 } else {
217 withdrawIntercepts();
218 }
Charles M.C. Chane148de82015-05-06 12:38:21 +0800219 }
220
221 /**
Thomas Vachuska27bee092015-06-23 19:03:10 -0700222 * Request packet intercepts.
Charles M.C. Chane148de82015-05-06 12:38:21 +0800223 */
Thomas Vachuska27bee092015-06-23 19:03:10 -0700224 private void requestIntercepts() {
Charles Chane6067892016-11-17 10:23:46 -0800225 // Use ARP
226 TrafficSelector arpSelector = DefaultTrafficSelector.builder()
227 .matchEthType(Ethernet.TYPE_ARP)
228 .build();
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700229 if (requestArp) {
Charles Chane6067892016-11-17 10:23:46 -0800230 packetService.requestPackets(arpSelector, PacketPriority.CONTROL, appId);
Thomas Vachuska27bee092015-06-23 19:03:10 -0700231 } else {
Charles Chane6067892016-11-17 10:23:46 -0800232 packetService.cancelPackets(arpSelector, PacketPriority.CONTROL, appId);
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800233 }
Thomas Vachuska27bee092015-06-23 19:03:10 -0700234
Charles Chane6067892016-11-17 10:23:46 -0800235 // Use IPv6 Neighbor Discovery
236 TrafficSelector ipv6NsSelector = DefaultTrafficSelector.builder()
237 .matchEthType(Ethernet.TYPE_IPV6)
238 .matchIPProtocol(IPv6.PROTOCOL_ICMP6)
239 .matchIcmpv6Type(ICMP6.NEIGHBOR_SOLICITATION)
240 .build();
241 TrafficSelector ipv6NaSelector = DefaultTrafficSelector.builder()
242 .matchEthType(Ethernet.TYPE_IPV6)
243 .matchIPProtocol(IPv6.PROTOCOL_ICMP6)
244 .matchIcmpv6Type(ICMP6.NEIGHBOR_ADVERTISEMENT)
245 .build();
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700246 if (requestIpv6ND) {
Charles Chane6067892016-11-17 10:23:46 -0800247 packetService.requestPackets(ipv6NsSelector, PacketPriority.CONTROL, appId);
248 packetService.requestPackets(ipv6NaSelector, PacketPriority.CONTROL, appId);
Thomas Vachuska27bee092015-06-23 19:03:10 -0700249 } else {
Charles Chane6067892016-11-17 10:23:46 -0800250 packetService.cancelPackets(ipv6NsSelector, PacketPriority.CONTROL, appId);
251 packetService.cancelPackets(ipv6NaSelector, PacketPriority.CONTROL, appId);
252 }
Thomas Vachuska27bee092015-06-23 19:03:10 -0700253 }
254
255 /**
256 * Withdraw packet intercepts.
257 */
258 private void withdrawIntercepts() {
259 TrafficSelector.Builder selector = DefaultTrafficSelector.builder();
260 selector.matchEthType(Ethernet.TYPE_ARP);
Aaron Kruglikov07a923d2015-07-03 13:30:57 -0700261 packetService.cancelPackets(selector.build(), PacketPriority.CONTROL, appId);
Thomas Vachuska27bee092015-06-23 19:03:10 -0700262
263 // IPv6 Neighbor Solicitation packet.
264 selector.matchEthType(Ethernet.TYPE_IPV6);
265 selector.matchIPProtocol(IPv6.PROTOCOL_ICMP6);
266 selector.matchIcmpv6Type(ICMP6.NEIGHBOR_SOLICITATION);
267 packetService.cancelPackets(selector.build(), PacketPriority.CONTROL, appId);
268
269 // IPv6 Neighbor Advertisement packet.
270 selector.matchIcmpv6Type(ICMP6.NEIGHBOR_ADVERTISEMENT);
271 packetService.cancelPackets(selector.build(), PacketPriority.CONTROL, appId);
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800272 }
273
274 /**
275 * Extracts properties from the component configuration context.
276 *
277 * @param context the component context
278 */
279 private void readComponentConfiguration(ComponentContext context) {
280 Dictionary<?, ?> properties = context.getProperties();
281 Boolean flag;
282
Jian Lid9b5f552016-03-11 18:15:31 -0800283 flag = Tools.isPropertyEnabled(properties, "hostRemovalEnabled");
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800284 if (flag == null) {
285 log.info("Host removal on port/device down events is not configured, " +
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700286 "using current value of {}", hostRemovalEnabled);
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800287 } else {
288 hostRemovalEnabled = flag;
289 log.info("Configured. Host removal on port/device down events is {}",
290 hostRemovalEnabled ? "enabled" : "disabled");
Thomas Vachuska33601602014-11-19 03:32:15 -0800291 }
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800292
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700293 flag = Tools.isPropertyEnabled(properties, "requestArp");
Charles Chane6067892016-11-17 10:23:46 -0800294 if (flag == null) {
295 log.info("Using ARP is not configured, " +
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700296 "using current value of {}", requestArp);
Charles Chane6067892016-11-17 10:23:46 -0800297 } else {
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700298 requestArp = flag;
Charles Chane6067892016-11-17 10:23:46 -0800299 log.info("Configured. Using ARP is {}",
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700300 requestArp ? "enabled" : "disabled");
Charles Chane6067892016-11-17 10:23:46 -0800301 }
302
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700303 flag = Tools.isPropertyEnabled(properties, "requestIpv6ND");
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800304 if (flag == null) {
305 log.info("Using IPv6 Neighbor Discovery is not configured, " +
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700306 "using current value of {}", requestIpv6ND);
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800307 } else {
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700308 requestIpv6ND = flag;
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800309 log.info("Configured. Using IPv6 Neighbor Discovery is {}",
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700310 requestIpv6ND ? "enabled" : "disabled");
Charles Chane6067892016-11-17 10:23:46 -0800311 }
312
313 flag = Tools.isPropertyEnabled(properties, "useDhcp");
314 if (flag == null) {
315 log.info("Using DHCP is not configured, " +
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700316 "using current value of {}", useDhcp);
Charles Chane6067892016-11-17 10:23:46 -0800317 } else {
318 useDhcp = flag;
319 log.info("Configured. Using DHCP is {}",
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700320 useDhcp ? "enabled" : "disabled");
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800321 }
Jonathan Hart9af322d2016-01-06 17:42:04 -0800322
Jian Lid9b5f552016-03-11 18:15:31 -0800323 flag = Tools.isPropertyEnabled(properties, "requestInterceptsEnabled");
Jonathan Hart9af322d2016-01-06 17:42:04 -0800324 if (flag == null) {
325 log.info("Request intercepts is not configured, " +
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700326 "using current value of {}", requestInterceptsEnabled);
Jonathan Hart9af322d2016-01-06 17:42:04 -0800327 } else {
328 requestInterceptsEnabled = flag;
329 log.info("Configured. Request intercepts is {}",
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700330 requestInterceptsEnabled ? "enabled" : "disabled");
Jonathan Hart9af322d2016-01-06 17:42:04 -0800331 }
Charles Chan35a32322017-08-14 11:42:11 -0700332
333 flag = Tools.isPropertyEnabled(properties, "multihomingEnabled");
334 if (flag == null) {
335 log.info("Multihoming is not configured, " +
336 "using current value of {}", multihomingEnabled);
337 } else {
338 multihomingEnabled = flag;
339 log.info("Configured. Multihoming is {}",
340 multihomingEnabled ? "enabled" : "disabled");
341 }
342
Pavlin Radoslavov93b606b2015-02-25 17:28:39 -0800343 }
344
alshabibe1cf87d2014-10-17 09:23:50 -0700345 @Override
346 public void triggerProbe(Host host) {
Saurav Dasb0ae6ee2017-03-04 16:08:47 -0800347 //log.info("Triggering probe on device {} ", host);
Jonathan Hartf353e402016-09-23 09:27:36 -0700348
349 // FIXME Disabling host probing for now, because sending packets from a
350 // broadcast MAC address caused problems when two ONOS networks were
351 // interconnected. Host probing should take into account the interface
352 // configuration when determining which source address to use.
353
354 //MastershipRole role = deviceService.getRole(host.location().deviceId());
355 //if (role.equals(MastershipRole.MASTER)) {
356 // host.ipAddresses().forEach(ip -> {
357 // sendProbe(host, ip);
358 // });
359 //} else {
360 // log.info("not the master, master will probe {}");
361 //}
sdn94b00152016-08-30 02:12:32 -0700362 }
363
364 private void sendProbe(Host host, IpAddress targetIp) {
365 Ethernet probePacket = null;
366 if (targetIp.isIp4()) {
367 // IPv4: Use ARP
368 probePacket = buildArpRequest(targetIp, host);
369 } else {
370 // IPv6: Use Neighbor Discovery
Jonathan Hartf353e402016-09-23 09:27:36 -0700371 //TODO need to implement ndp probe
sdn94b00152016-08-30 02:12:32 -0700372 log.info("Triggering probe on device {} ", host);
373 }
374
375 TrafficTreatment treatment = DefaultTrafficTreatment.builder().setOutput(host.location().port()).build();
376
377 OutboundPacket outboundPacket = new DefaultOutboundPacket(host.location().deviceId(), treatment,
378 ByteBuffer.wrap(probePacket.serialize()));
379
380 packetService.emit(outboundPacket);
381 }
382
Charles Chan888e20a2017-05-01 15:44:23 -0700383 // 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 -0700384 private Ethernet buildArpRequest(IpAddress targetIp, Host host) {
Charles Chan35a32322017-08-14 11:42:11 -0700385 return ARP.buildArpRequest(MacAddress.BROADCAST.toBytes(), Ip4Address.ZERO.toOctets(),
386 MacAddress.BROADCAST.toBytes(), targetIp.toOctets(),
387 MacAddress.BROADCAST.toBytes(), VlanId.NONE.toShort());
alshabibe1cf87d2014-10-17 09:23:50 -0700388 }
389
390 private class InternalHostProvider implements PacketProcessor {
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800391 /**
Charles Chan888e20a2017-05-01 15:44:23 -0700392 * Create or update host information.
393 * Will not update IP if IP is null, all zero or self-assigned.
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800394 *
Thomas Vachuska27bee092015-06-23 19:03:10 -0700395 * @param hid host ID
396 * @param mac source Mac address
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800397 * @param vlan VLAN ID
398 * @param hloc host location
Charles Chan888e20a2017-05-01 15:44:23 -0700399 * @param ip source IP address or null if not updating
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800400 */
Charles Chan888e20a2017-05-01 15:44:23 -0700401 private void createOrUpdateHost(HostId hid, MacAddress mac,
402 VlanId vlan, HostLocation hloc,
403 IpAddress ip) {
Charles Chan35a32322017-08-14 11:42:11 -0700404 Set<HostLocation> newLocations = Sets.newHashSet(hloc);
405
406 if (multihomingEnabled) {
407 Host existingHost = hostService.getHost(hid);
408 if (existingHost != null) {
409 Set<HostLocation> prevLocations = existingHost.locations();
410 newLocations.addAll(prevLocations);
411
412 if (!existingHost.locations().contains(hloc)) {
413 probeLocations(existingHost);
414 }
415 }
416 }
417
Charles Chan888e20a2017-05-01 15:44:23 -0700418 HostDescription desc = ip == null || ip.isZero() || ip.isSelfAssigned() ?
Charles Chan35a32322017-08-14 11:42:11 -0700419 new DefaultHostDescription(mac, vlan, newLocations, Sets.newHashSet(), false) :
420 new DefaultHostDescription(mac, vlan, newLocations, Sets.newHashSet(ip), false);
Sahil Lele3a0cdd52015-07-21 14:16:31 -0700421 try {
Ray Milkeydc083442016-02-22 11:27:57 -0800422 providerService.hostDetected(hid, desc, false);
Sahil Lele3a0cdd52015-07-21 14:16:31 -0700423 } catch (IllegalStateException e) {
424 log.debug("Host {} suppressed", hid);
425 }
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800426 }
alshabibe1cf87d2014-10-17 09:23:50 -0700427
Charles Chane6067892016-11-17 10:23:46 -0800428 /**
Charles Chan35a32322017-08-14 11:42:11 -0700429 * Start verification procedure of all previous locations by sending probes.
430 *
431 * @param host Host to be probed
432 */
433 private void probeLocations(Host host) {
434 host.locations().forEach(location -> {
435 MacAddress probeMac = providerService.addPendingHostLocation(host.id(), location);
436
437 host.ipAddresses().stream().findFirst().ifPresent(ip -> {
Charles Chan2fde6d42017-08-23 14:46:43 -0700438 log.debug("Probing host {} with {}", host.id(), ip);
Charles Chan35a32322017-08-14 11:42:11 -0700439 Ethernet probe;
440 if (ip.isIp4()) {
441 probe = ARP.buildArpRequest(probeMac.toBytes(), Ip4Address.ZERO.toOctets(),
442 host.id().mac().toBytes(), ip.toOctets(),
443 host.id().mac().toBytes(), host.id().vlanId().toShort());
444 } else {
445 probe = NeighborSolicitation.buildNdpSolicit(
446 ip.getIp6Address().toOctets(),
447 IPv6.getLinkLocalAddress(probeMac.toBytes()),
448 IPv6.getSolicitNodeAddress(ip.getIp6Address().toOctets()),
449 probeMac.toBytes(),
450 IPv6.getMCastMacAddress(ip.getIp6Address().toOctets()),
451 host.id().vlanId());
452 }
Charles Chanbb86b782017-09-13 16:14:22 -0700453
454 // NOTE: delay the probe a little bit to wait for the store synchronization is done
455 ScheduledExecutorService executorService = Executors.newSingleThreadScheduledExecutor();
456 executorService.schedule(() -> sendProbe(probe, location), 1000, TimeUnit.MILLISECONDS);
Charles Chan35a32322017-08-14 11:42:11 -0700457 });
458 });
459 }
460
461 /**
462 * Send the probe packet on given port.
463 *
464 * @param probe the probe packet
465 * @param connectPoint the port we want to probe
466 */
467 private void sendProbe(Ethernet probe, ConnectPoint connectPoint) {
468 log.info("Probing host {} on location {} with probeMac {}",
469 probe.getDestinationMAC(), connectPoint, probe.getSourceMAC());
470 TrafficTreatment treatment = DefaultTrafficTreatment.builder().setOutput(connectPoint.port()).build();
471 OutboundPacket outboundPacket = new DefaultOutboundPacket(connectPoint.deviceId(),
472 treatment, ByteBuffer.wrap(probe.serialize()));
473 packetService.emit(outboundPacket);
474 }
475
476 /**
Charles Chan888e20a2017-05-01 15:44:23 -0700477 * Updates IP address for an existing host.
Charles Chane6067892016-11-17 10:23:46 -0800478 *
479 * @param hid host ID
480 * @param ip IP address
481 */
Charles Chan888e20a2017-05-01 15:44:23 -0700482 private void updateHostIp(HostId hid, IpAddress ip) {
Charles Chane6067892016-11-17 10:23:46 -0800483 Host host = hostService.getHost(hid);
484 if (host == null) {
Charles Chan35a32322017-08-14 11:42:11 -0700485 log.warn("Fail to update IP for {}. Host does not exist", hid);
Charles Chane6067892016-11-17 10:23:46 -0800486 return;
487 }
488
Charles Chan888e20a2017-05-01 15:44:23 -0700489 HostDescription desc = new DefaultHostDescription(hid.mac(), hid.vlanId(),
Charles Chan35a32322017-08-14 11:42:11 -0700490 host.locations(), Sets.newHashSet(ip), false);
Charles Chane6067892016-11-17 10:23:46 -0800491 try {
492 providerService.hostDetected(hid, desc, false);
493 } catch (IllegalStateException e) {
494 log.debug("Host {} suppressed", hid);
495 }
496 }
497
alshabibe1cf87d2014-10-17 09:23:50 -0700498 @Override
499 public void process(PacketContext context) {
alshabib4a179dc2014-10-17 17:17:01 -0700500 if (context == null) {
501 return;
502 }
alshabibe1cf87d2014-10-17 09:23:50 -0700503
Thomas Vachuskaf845cf62015-03-24 10:13:09 -0700504 Ethernet eth = context.inPacket().parsed();
Jonathan Harte8600eb2015-01-12 10:30:45 -0800505 if (eth == null) {
506 return;
507 }
Jonathan Hartf353e402016-09-23 09:27:36 -0700508
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800509 MacAddress srcMac = eth.getSourceMAC();
Jonathan Hartf353e402016-09-23 09:27:36 -0700510 if (srcMac.isBroadcast() || srcMac.isMulticast()) {
511 return;
512 }
Jonathan Harte8600eb2015-01-12 10:30:45 -0800513
alshabibe1cf87d2014-10-17 09:23:50 -0700514 VlanId vlan = VlanId.vlanId(eth.getVlanID());
515 ConnectPoint heardOn = context.inPacket().receivedFrom();
516
Thomas Vachuskaf845cf62015-03-24 10:13:09 -0700517 // If this arrived on control port, bail out.
518 if (heardOn.port().isLogical()) {
519 return;
520 }
521
alshabibe1cf87d2014-10-17 09:23:50 -0700522 // If this is not an edge port, bail out.
523 Topology topology = topologyService.currentTopology();
524 if (topologyService.isInfrastructure(topology, heardOn)) {
525 return;
526 }
527
Thomas Vachuskaec9c7dd2015-09-03 18:30:04 -0700528 HostLocation hloc = new HostLocation(heardOn, System.currentTimeMillis());
alshabibe1cf87d2014-10-17 09:23:50 -0700529 HostId hid = HostId.hostId(eth.getSourceMAC(), vlan);
Charles Chan35a32322017-08-14 11:42:11 -0700530 MacAddress destMac = eth.getDestinationMAC();
531
532 // Receives a location probe. Invalid entry from the cache
533 if (multihomingEnabled && destMac.isOnos() && !MacAddress.NONE.equals(destMac)) {
534 log.info("Receives probe for {}/{} on {}", srcMac, vlan, heardOn);
535 providerService.removePendingHostLocation(destMac);
536 return;
537 }
alshabibe1cf87d2014-10-17 09:23:50 -0700538
Charles M.C. Chan7fee36a2014-12-31 00:19:59 +0800539 // ARP: possible new hosts, update both location and IP
alshabibe1cf87d2014-10-17 09:23:50 -0700540 if (eth.getEtherType() == Ethernet.TYPE_ARP) {
541 ARP arp = (ARP) eth.getPayload();
Pavlin Radoslavovd6612f92015-02-23 13:53:32 -0800542 IpAddress ip = IpAddress.valueOf(IpAddress.Version.INET,
543 arp.getSenderProtocolAddress());
Charles Chan888e20a2017-05-01 15:44:23 -0700544 createOrUpdateHost(hid, srcMac, vlan, hloc, ip);
alshabibe1cf87d2014-10-17 09:23:50 -0700545
Charles Chan5d5e0622015-09-25 13:00:06 -0700546 // IPv4: update location only
alshabibe1cf87d2014-10-17 09:23:50 -0700547 } else if (eth.getEtherType() == Ethernet.TYPE_IPV4) {
Yi Tsengaa417a62017-09-08 17:22:51 -0700548 // Update host location
549 createOrUpdateHost(hid, srcMac, vlan, hloc, null);
550 if (useDhcp) {
551 DHCP dhcp = findDhcp(eth).orElse(null);
552 // DHCP ACK: additionally update IP of DHCP client
553 if (dhcp != null && dhcp.getPacketType().equals(DHCP.MsgType.DHCPACK)) {
554 MacAddress hostMac = MacAddress.valueOf(dhcp.getClientHardwareAddress());
555 VlanId hostVlan = VlanId.vlanId(eth.getVlanID());
556 HostId hostId = HostId.hostId(hostMac, hostVlan);
557 updateHostIp(hostId, IpAddress.valueOf(dhcp.getYourIPAddress()));
Yi Tsengcfa637a2017-07-26 17:24:10 -0700558 }
Charles Chane6067892016-11-17 10:23:46 -0800559 }
Charles Chan5d5e0622015-09-25 13:00:06 -0700560 // NeighborAdvertisement and NeighborSolicitation: possible
561 // new hosts, update both location and IP.
562 //
563 // IPv6: update location only
Charles M.C. Chan7fee36a2014-12-31 00:19:59 +0800564 } else if (eth.getEtherType() == Ethernet.TYPE_IPV6) {
Charles M.C. Chan7fee36a2014-12-31 00:19:59 +0800565 IPv6 ipv6 = (IPv6) eth.getPayload();
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800566 IpAddress ip = IpAddress.valueOf(IpAddress.Version.INET6,
Thomas Vachuska27bee092015-06-23 19:03:10 -0700567 ipv6.getSourceAddress());
Charles M.C. Chan7fee36a2014-12-31 00:19:59 +0800568
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800569 // skip extension headers
570 IPacket pkt = ipv6;
571 while (pkt.getPayload() != null &&
572 pkt.getPayload() instanceof IExtensionHeader) {
573 pkt = pkt.getPayload();
574 }
Charles M.C. Chan9148d2d2015-04-27 03:36:39 +0800575 pkt = pkt.getPayload();
Yi Tsengfcf5dce2017-07-26 14:30:41 -0700576
577 // DHCPv6 protocol
578 DHCP6 dhcp6 = findDhcp6(pkt).orElse(null);
579 if (dhcp6 != null && useDhcp6) {
580 createOrUpdateHost(hid, srcMac, vlan, hloc, null);
581 handleDhcp6(dhcp6, vlan);
582 return;
583 }
584
Charles M.C. Chan9148d2d2015-04-27 03:36:39 +0800585 if (pkt != null && pkt instanceof ICMP6) {
Yi Tsengfcf5dce2017-07-26 14:30:41 -0700586 // Neighbor Discovery Protocol
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800587 pkt = pkt.getPayload();
Charles Chan178b0f52017-10-08 23:51:22 -0400588 if (pkt != null) {
589 // RouterSolicitation, RouterAdvertisement
590 if (pkt instanceof RouterAdvertisement || pkt instanceof RouterSolicitation) {
Charles M.C. Chan441d7da2015-03-17 21:03:39 +0800591 return;
Charles M.C. Chan7fee36a2014-12-31 00:19:59 +0800592 }
Charles Chan178b0f52017-10-08 23:51:22 -0400593 if (pkt instanceof NeighborSolicitation || pkt instanceof NeighborAdvertisement) {
594 // Duplicate Address Detection
595 if (ip.isZero()) {
596 return;
597 }
598 // NeighborSolicitation, NeighborAdvertisement
599 createOrUpdateHost(hid, srcMac, vlan, hloc, ip);
600
601 // Also learn from the target address of NeighborAdvertisement
602 if (pkt instanceof NeighborAdvertisement) {
603 NeighborAdvertisement na = (NeighborAdvertisement) pkt;
604 Ip6Address targetAddr = Ip6Address.valueOf(na.getTargetAddress());
605 createOrUpdateHost(hid, srcMac, vlan, hloc, targetAddr);
606 }
607 return;
608 }
Charles M.C. Chan7fee36a2014-12-31 00:19:59 +0800609 }
Charles M.C. Chan7fee36a2014-12-31 00:19:59 +0800610 }
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800611
Yi Tsengaa417a62017-09-08 17:22:51 -0700612 // multicast, exclude DHCPv6
613 if (eth.isMulticast() && dhcp6 == null) {
Charles M.C. Chan956cb692015-04-26 18:49:39 +0800614 return;
615 }
616
617 // normal IPv6 packets
Charles Chan888e20a2017-05-01 15:44:23 -0700618 createOrUpdateHost(hid, srcMac, vlan, hloc, null);
alshabibe1cf87d2014-10-17 09:23:50 -0700619 }
620 }
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700621
Yi Tsengfcf5dce2017-07-26 14:30:41 -0700622 /**
623 * Handles DHCPv6 packet, if message type is ACK, update IP address
624 * according to DHCPv6 payload (IA Address option).
625 *
626 * @param dhcp6 the DHCPv6 payload
627 * @param vlanId the vlan of this packet
628 */
629 private void handleDhcp6(DHCP6 dhcp6, VlanId vlanId) {
630 // extract the relay message if exist
631 while (dhcp6 != null && DHCP6.RELAY_MSG_TYPES.contains(dhcp6.getMsgType())) {
632 dhcp6 = dhcp6.getOptions().stream()
633 .filter(opt -> opt instanceof Dhcp6RelayOption)
634 .map(BasePacket::getPayload)
635 .map(pld -> (DHCP6) pld)
636 .findFirst()
637 .orElse(null);
638 }
639
640 if (dhcp6 == null) {
641 // Can't find dhcp payload
642 log.warn("Can't find dhcp payload from relay message");
643 return;
644 }
645
646 if (dhcp6.getMsgType() != DHCP6.MsgType.REPLY.value()) {
647 // Update IP address only when we received REPLY message
648 return;
649 }
650 Optional<Dhcp6ClientIdOption> clientIdOption = dhcp6.getOptions()
651 .stream()
652 .filter(opt -> opt instanceof Dhcp6ClientIdOption)
653 .map(opt -> (Dhcp6ClientIdOption) opt)
654 .findFirst();
655
656 if (!clientIdOption.isPresent()) {
657 // invalid DHCPv6 option
658 log.warn("Can't find client ID from DHCPv6 {}", dhcp6);
659 return;
660 }
661
662 byte[] linkLayerAddr = clientIdOption.get().getDuid().getLinkLayerAddress();
663 if (linkLayerAddr == null || linkLayerAddr.length != 6) {
664 // No any mac address found
665 log.warn("Can't find client mac from option {}", clientIdOption);
666 return;
667 }
668 MacAddress clientMac = MacAddress.valueOf(linkLayerAddr);
669
670 // Extract IPv6 address from IA NA ot IA TA option
671 Optional<Dhcp6IaNaOption> iaNaOption = dhcp6.getOptions()
672 .stream()
673 .filter(opt -> opt instanceof Dhcp6IaNaOption)
674 .map(opt -> (Dhcp6IaNaOption) opt)
675 .findFirst();
676 Optional<Dhcp6IaTaOption> iaTaOption = dhcp6.getOptions()
677 .stream()
678 .filter(opt -> opt instanceof Dhcp6IaTaOption)
679 .map(opt -> (Dhcp6IaTaOption) opt)
680 .findFirst();
681 Optional<Dhcp6IaAddressOption> iaAddressOption;
682 if (iaNaOption.isPresent()) {
683 iaAddressOption = iaNaOption.get().getOptions().stream()
684 .filter(opt -> opt instanceof Dhcp6IaAddressOption)
685 .map(opt -> (Dhcp6IaAddressOption) opt)
686 .findFirst();
687 } else if (iaTaOption.isPresent()) {
688 iaAddressOption = iaTaOption.get().getOptions().stream()
689 .filter(opt -> opt instanceof Dhcp6IaAddressOption)
690 .map(opt -> (Dhcp6IaAddressOption) opt)
691 .findFirst();
692 } else {
693 iaAddressOption = Optional.empty();
694 }
695 if (iaAddressOption.isPresent()) {
696 Ip6Address ip = iaAddressOption.get().getIp6Address();
697 HostId hostId = HostId.hostId(clientMac, vlanId);
698 updateHostIp(hostId, ip);
699 } else {
700 log.warn("Can't find IPv6 address from DHCPv6 {}", dhcp6);
701 }
702 }
703
Yi Tseng7a38f9a2017-06-09 14:36:40 -0700704 private Optional<DHCP> findDhcp(Ethernet eth) {
705 IPacket pkt = eth.getPayload();
706 return Stream.of(pkt)
707 .filter(Objects::nonNull)
708 .filter(p -> p instanceof IPv4)
709 .map(IPacket::getPayload)
710 .filter(Objects::nonNull)
711 .filter(p -> p instanceof UDP)
712 .map(IPacket::getPayload)
713 .filter(Objects::nonNull)
714 .filter(p -> p instanceof DHCP)
715 .map(p -> (DHCP) p)
716 .findFirst();
717 }
Yi Tsengfcf5dce2017-07-26 14:30:41 -0700718
719 private Optional<DHCP6> findDhcp6(IPacket pkt) {
720 return Stream.of(pkt)
721 .filter(Objects::nonNull)
722 .filter(p -> p instanceof UDP)
723 .map(IPacket::getPayload)
724 .filter(Objects::nonNull)
725 .filter(p -> p instanceof DHCP6)
726 .map(p -> (DHCP6) p)
727 .findFirst();
728 }
alshabibe1cf87d2014-10-17 09:23:50 -0700729 }
Thomas Vachuska33601602014-11-19 03:32:15 -0800730
731 // Auxiliary listener to device events.
732 private class InternalDeviceListener implements DeviceListener {
733 @Override
734 public void event(DeviceEvent event) {
Madan Jampania3770c32015-12-11 12:07:41 -0800735 eventHandler.execute(() -> handleEvent(event));
736 }
737
738 private void handleEvent(DeviceEvent event) {
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -0800739 Device device = event.subject();
740 switch (event.type()) {
Thomas Vachuska27bee092015-06-23 19:03:10 -0700741 case DEVICE_ADDED:
742 break;
743 case DEVICE_AVAILABILITY_CHANGED:
Charles Chan888e20a2017-05-01 15:44:23 -0700744 if (hostRemovalEnabled && !deviceService.isAvailable(device.id())) {
745 processDeviceDown(device.id());
Thomas Vachuska27bee092015-06-23 19:03:10 -0700746 }
747 break;
748 case DEVICE_SUSPENDED:
749 case DEVICE_UPDATED:
750 // Nothing to do?
751 break;
752 case DEVICE_REMOVED:
753 if (hostRemovalEnabled) {
Charles Chan888e20a2017-05-01 15:44:23 -0700754 processDeviceDown(device.id());
Thomas Vachuska27bee092015-06-23 19:03:10 -0700755 }
756 break;
757 case PORT_ADDED:
758 break;
759 case PORT_UPDATED:
Charles Chan888e20a2017-05-01 15:44:23 -0700760 if (hostRemovalEnabled && !event.port().isEnabled()) {
761 processPortDown(new ConnectPoint(device.id(), event.port().number()));
Thomas Vachuska27bee092015-06-23 19:03:10 -0700762 }
763 break;
764 case PORT_REMOVED:
765 // Nothing to do?
766 break;
767 default:
768 break;
Thomas Vachuska33601602014-11-19 03:32:15 -0800769 }
770 }
771 }
772
Charles Chan888e20a2017-05-01 15:44:23 -0700773 /**
774 * When a device goes down, update the location of affected hosts.
775 *
776 * @param deviceId the device that goes down
777 */
778 private void processDeviceDown(DeviceId deviceId) {
779 hostService.getConnectedHosts(deviceId).forEach(affectedHost -> affectedHost.locations().stream()
780 .filter(hostLocation -> hostLocation.deviceId().equals(deviceId))
781 .forEach(affectedLocation ->
782 providerService.removeLocationFromHost(affectedHost.id(), affectedLocation))
783 );
784 }
785
786 /**
787 * When a port goes down, update the location of affected hosts.
788 *
789 * @param connectPoint the port that goes down
790 */
791 private void processPortDown(ConnectPoint connectPoint) {
792 hostService.getConnectedHosts(connectPoint).forEach(affectedHost ->
793 providerService.removeLocationFromHost(affectedHost.id(), new HostLocation(connectPoint, 0L))
794 );
Thomas Vachuska33601602014-11-19 03:32:15 -0800795 }
796
alshabibe1cf87d2014-10-17 09:23:50 -0700797}