blob: 6e7a9ce230a27c7a63d4468074db75850ae9f97d [file] [log] [blame]
Thomas Vachuskac40d4632015-04-09 16:55:03 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * 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
7 *
8 * 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.
15 */
16package org.onosproject.provider.nil;
17
18import com.google.common.collect.Lists;
19import org.onlab.osgi.ServiceDirectory;
20import org.onlab.packet.ChassisId;
21import org.onlab.packet.IpAddress;
22import org.onlab.packet.MacAddress;
23import org.onlab.packet.VlanId;
24import org.onosproject.cluster.ClusterService;
25import org.onosproject.cluster.NodeId;
26import org.onosproject.mastership.MastershipService;
27import org.onosproject.net.ConnectPoint;
28import org.onosproject.net.Device;
29import org.onosproject.net.DeviceId;
30import org.onosproject.net.Host;
31import org.onosproject.net.HostId;
32import org.onosproject.net.HostLocation;
33import org.onosproject.net.Link;
34import org.onosproject.net.Port;
35import org.onosproject.net.PortNumber;
36import org.onosproject.net.device.DefaultDeviceDescription;
37import org.onosproject.net.device.DefaultPortDescription;
38import org.onosproject.net.device.DeviceAdminService;
39import org.onosproject.net.device.DeviceDescription;
40import org.onosproject.net.device.DeviceEvent;
41import org.onosproject.net.device.DeviceListener;
42import org.onosproject.net.device.DeviceProviderService;
43import org.onosproject.net.device.PortDescription;
44import org.onosproject.net.host.DefaultHostDescription;
45import org.onosproject.net.host.HostDescription;
46import org.onosproject.net.host.HostProviderService;
47import org.onosproject.net.host.HostService;
48import org.onosproject.net.link.DefaultLinkDescription;
49import org.onosproject.net.link.LinkProviderService;
50import org.onosproject.net.link.LinkService;
51import org.slf4j.Logger;
52import org.slf4j.LoggerFactory;
53
54import java.util.List;
55import java.util.concurrent.CountDownLatch;
56import java.util.concurrent.TimeUnit;
57
58import static org.onlab.util.Tools.toHex;
59import static org.onosproject.net.HostId.hostId;
60import static org.onosproject.net.Link.Type.DIRECT;
61import static org.onosproject.net.PortNumber.portNumber;
62import static org.onosproject.net.device.DeviceEvent.Type.*;
63import static org.onosproject.provider.nil.NullProviders.SCHEME;
64
65/**
66 * Abstraction of a provider capable to simulate some network topology.
67 */
68public abstract class TopologySimulator {
69
70 protected final Logger log = LoggerFactory.getLogger(getClass());
71
72 protected String[] topoShape;
73 protected int deviceCount;
74 protected int hostCount;
75
76 protected ServiceDirectory directory;
77 protected NodeId localNode;
78
79 protected ClusterService clusterService;
80 protected MastershipService mastershipService;
81
82 protected DeviceAdminService deviceService;
83 protected HostService hostService;
84 protected LinkService linkService;
85
86 protected DeviceProviderService deviceProviderService;
87 protected HostProviderService hostProviderService;
88 protected LinkProviderService linkProviderService;
89
90 protected int maxWaitSeconds = 1;
91 protected int infrastructurePorts = 2;
92 protected CountDownLatch deviceLatch;
93
94 protected final List<DeviceId> deviceIds = Lists.newArrayList();
95
96 private DeviceListener deviceEventCounter = new DeviceEventCounter();
97
98 /**
99 * Initializes a new topology simulator with access to the specified service
100 * directory and various provider services.
101 *
102 * @param topoShape topology shape specifier
103 * @param deviceCount number of devices in the topology
104 * @param hostCount number of hosts per device
105 * @param directory service directory
106 * @param deviceProviderService device provider service
107 * @param hostProviderService host provider service
108 * @param linkProviderService link provider service
109 */
110 protected void init(String topoShape, int deviceCount, int hostCount,
111 ServiceDirectory directory,
112 DeviceProviderService deviceProviderService,
113 HostProviderService hostProviderService,
114 LinkProviderService linkProviderService) {
115 this.deviceCount = deviceCount;
116 this.hostCount = hostCount;
117 this.directory = directory;
118
119 this.clusterService = directory.get(ClusterService.class);
120 this.mastershipService = directory.get(MastershipService.class);
121
122 this.deviceService = directory.get(DeviceAdminService.class);
123 this.hostService = directory.get(HostService.class);
124 this.linkService = directory.get(LinkService.class);
125 this.deviceProviderService = deviceProviderService;
126 this.hostProviderService = hostProviderService;
127 this.linkProviderService = linkProviderService;
128
129 localNode = clusterService.getLocalNode().id();
130
131 processTopoShape(topoShape);
132 }
133
134 /**
135 * Processes the topology shape specifier.
136 *
137 * @param shape topology shape specifier
138 */
139 protected void processTopoShape(String shape) {
140 this.topoShape = shape.split(",");
141 }
142
143 /**
144 * Sets up network topology simulation.
145 */
146 public void setUpTopology() {
147 prepareForDeviceEvents(deviceCount);
148 createDevices();
149 waitForDeviceEvents();
150
151 createLinks();
152 createHosts();
153 }
154
155 /**
156 * Creates simulated devices.
157 */
158 protected void createDevices() {
159 for (int i = 0; i < deviceCount; i++) {
160 createDevice(i + 1);
161 }
162 }
163
164 /**
165 * Creates simulated links.
166 */
167 protected abstract void createLinks();
168
169 /**
170 * Creates simulated hosts.
171 */
172 protected abstract void createHosts();
173
174 /**
175 * Creates simulated device.
176 *
177 * @param i index of the device id in the list.
178 */
179 protected void createDevice(int i) {
180 DeviceId id = DeviceId.deviceId(SCHEME + ":" + toHex(i));
181 DeviceDescription desc =
182 new DefaultDeviceDescription(id.uri(), Device.Type.SWITCH,
183 "ON.Lab", "0.1", "0.1", "1234",
184 new ChassisId(i));
185 deviceProviderService.deviceConnected(id, desc);
186 deviceProviderService.updatePorts(id, buildPorts(hostCount + infrastructurePorts));
187 deviceIds.add(id);
188 }
189
190 /**
191 * Creates simulated link between two devices.
192 *
193 * @param i index of one simulated device
194 * @param j index of another simulated device
195 */
196 protected void createLink(int i, int j) {
197 ConnectPoint one = new ConnectPoint(deviceIds.get(i), PortNumber.portNumber(1));
198 ConnectPoint two = new ConnectPoint(deviceIds.get(j), PortNumber.portNumber(2));
199 linkProviderService.linkDetected(new DefaultLinkDescription(one, two, DIRECT));
200 linkProviderService.linkDetected(new DefaultLinkDescription(two, one, DIRECT));
201 }
202
203 /**
204 * Creates simularted hosts for the specified device.
205 *
206 * @param deviceId device identifier
207 * @param portOffset port offset where to start attaching hosts
208 */
209 protected void createHosts(DeviceId deviceId, int portOffset) {
210 String s = deviceId.toString();
211 byte dByte = Byte.parseByte(s.substring(s.length() - 1), 16);
212 // TODO: this limits the simulation to 256 devices & 256 hosts/device.
213 byte[] macBytes = new byte[]{0, 0, 0, 0, dByte, 0};
214 byte[] ipBytes = new byte[]{(byte) 192, (byte) 168, dByte, 0};
215
216 for (int i = 0; i < hostCount; i++) {
217 int port = portOffset + i + 1;
218 macBytes[5] = (byte) (i + 1);
219 ipBytes[3] = (byte) (i + 1);
220 HostId id = hostId(MacAddress.valueOf(macBytes), VlanId.NONE);
221 IpAddress ip = IpAddress.valueOf(IpAddress.Version.INET, ipBytes);
222 hostProviderService.hostDetected(id, description(id, ip, deviceId, port));
223 }
224 }
225
226 /**
227 * Prepares to count device added/available/removed events.
228 *
229 * @param count number of events to count
230 */
231 protected void prepareForDeviceEvents(int count) {
232 deviceLatch = new CountDownLatch(count);
233 deviceService.addListener(deviceEventCounter);
234 }
235
236 /**
237 * Waits for all expected device added/available/removed events.
238 */
239 protected void waitForDeviceEvents() {
240 try {
241 deviceLatch.await(maxWaitSeconds, TimeUnit.SECONDS);
242 } catch (InterruptedException e) {
243 log.warn("Device events did not arrive in time");
244 }
245 deviceService.removeListener(deviceEventCounter);
246 }
247
248
249 /**
250 * Tears down network topology simulation.
251 */
252 public void tearDownTopology() {
253 removeHosts();
254 removeLinks();
255 removeDevices();
256 }
257
258 /**
259 * Removes any hosts previously advertised by this provider.
260 */
261 protected void removeHosts() {
262 hostService.getHosts()
263 .forEach(host -> hostProviderService.hostVanished(host.id()));
264 }
265
266 /**
267 * Removes any links previously advertised by this provider.
268 */
269 protected void removeLinks() {
270 linkService.getLinks()
271 .forEach(link -> linkProviderService.linkVanished(description(link)));
272 }
273
274 /**
275 * Removes any devices previously advertised by this provider.
276 */
277 protected void removeDevices() {
278 prepareForDeviceEvents(deviceService.getDeviceCount());
279 deviceService.getDevices()
280 .forEach(device -> deviceService.removeDevice(device.id()));
281 waitForDeviceEvents();
282 }
283
284
285 /**
286 * Produces a device description from the given device.
287 *
288 * @param device device to copy
289 * @return device description
290 */
291 static DeviceDescription description(Device device) {
292 return new DefaultDeviceDescription(device.id().uri(), device.type(),
293 device.manufacturer(),
294 device.hwVersion(), device.swVersion(),
295 device.serialNumber(), device.chassisId());
296 }
297
298 /**
299 * Produces a link description from the given link.
300 *
301 * @param link link to copy
302 * @return link description
303 */
304 static DefaultLinkDescription description(Link link) {
305 return new DefaultLinkDescription(link.src(), link.dst(), link.type());
306 }
307
308 /**
309 * Produces a host description from the given host.
310 *
311 * @param host host to copy
312 * @return host description
313 */
314 static DefaultHostDescription description(Host host) {
315 return new DefaultHostDescription(host.mac(), host.vlan(), host.location(),
316 host.ipAddresses());
317 }
318
319 /**
320 * Generates a host description from the given id and location information.
321 *
322 * @param hostId host identifier
323 * @param ip host IP
324 * @param deviceId edge device
325 * @param port edge port
326 * @return host description
327 */
328 static HostDescription description(HostId hostId, IpAddress ip,
329 DeviceId deviceId, int port) {
330 HostLocation location = new HostLocation(deviceId, portNumber(port), 0L);
331 return new DefaultHostDescription(hostId.mac(), hostId.vlanId(), location, ip);
332 }
333
334 /**
335 * Generates a list of a configured number of ports.
336 *
337 * @param portCount number of ports
338 * @return list of ports
339 */
340 protected List<PortDescription> buildPorts(int portCount) {
341 List<PortDescription> ports = Lists.newArrayList();
342 for (int i = 0; i < portCount; i++) {
343 ports.add(new DefaultPortDescription(PortNumber.portNumber(i), true,
344 Port.Type.COPPER, 0));
345 }
346 return ports;
347 }
348
349 // Counts down number of device added/available/removed events.
350 private class DeviceEventCounter implements DeviceListener {
351 @Override
352 public void event(DeviceEvent event) {
353 DeviceEvent.Type type = event.type();
354 if (type == DEVICE_ADDED || type == DEVICE_REMOVED ||
355 type == DEVICE_AVAILABILITY_CHANGED) {
356 deviceLatch.countDown();
357 }
358 }
359 }
360}