blob: 7612b860efe146a5f724e18a42484e0034d30e3c [file] [log] [blame]
Jimmy Jin10852392017-01-24 13:45:13 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Jimmy Jin10852392017-01-24 13:45:13 -08003 *
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 */
16
17package org.onosproject.driver.optical.protection;
18
MaoLu937cf422017-03-03 23:31:46 -080019import org.onosproject.core.CoreService;
Jimmy Jin10852392017-01-24 13:45:13 -080020import org.onosproject.net.DeviceId;
21import org.onosproject.net.ConnectPoint;
22import org.onosproject.net.FilteredConnectPoint;
23import org.onosproject.net.Link;
24import org.onosproject.net.LinkKey;
25import org.onosproject.net.Port;
26import org.onosproject.net.PortNumber;
27import org.onosproject.net.behaviour.protection.ProtectedTransportEndpointDescription;
28import org.onosproject.net.behaviour.protection.ProtectedTransportEndpointState;
29import org.onosproject.net.behaviour.protection.ProtectionConfigBehaviour;
30import org.onosproject.net.behaviour.protection.TransportEndpointDescription;
31import org.onosproject.net.behaviour.protection.TransportEndpointId;
32import org.onosproject.net.behaviour.protection.TransportEndpointState;
33import org.onosproject.net.config.NetworkConfigService;
34import org.onosproject.net.config.basics.BasicLinkConfig;
35import org.onosproject.net.device.DeviceService;
36import org.onosproject.net.driver.AbstractHandlerBehaviour;
37import org.onosproject.net.flow.DefaultFlowRule;
38import org.onosproject.net.flow.DefaultTrafficSelector;
39import org.onosproject.net.flow.DefaultTrafficTreatment;
40import org.onosproject.net.flow.FlowRule;
41import org.onosproject.net.flow.FlowRuleService;
42import org.onosproject.net.flow.TrafficSelector;
43import org.onosproject.net.flow.TrafficTreatment;
44import org.onosproject.net.link.LinkService;
45import org.onosproject.net.optical.OpticalAnnotations;
46import org.slf4j.Logger;
47import org.slf4j.LoggerFactory;
48
49import java.util.ArrayList;
50import java.util.HashMap;
51import java.util.List;
52import java.util.Map;
53import java.util.Set;
54import java.util.concurrent.CompletableFuture;
55
56import static org.onosproject.net.LinkKey.linkKey;
57
58/**
59 * Implementations of the protection behaviours for Oplink Optical Protection Switch (OPS).
60 * - Oplink OPS has 3 logical bi-directional ports (6 uni-directional physical ports):
61 * - port 1 is primary port for network side
62 * - port 2 is secondary port for network side.
63 * - port 3 is connected to the client side port;
64 * - Traffic protection
65 * - Traffic(Optical light) from client port is broadcasted (50/50 split) to
66 * both primary and secondary ports all the time.
67 * - In fault free condition, traffic from primary port is bridged to client port and
68 * in the case of primary port fails (LOS), traffic is bridged from secondary port to client port.
69 * - User initiated switch (to primary or secondary) is also supported.
70 */
71public class OplinkSwitchProtection extends AbstractHandlerBehaviour implements ProtectionConfigBehaviour {
72
73 private static final int VIRTUAL_PORT = 0;
74 private static final int PRIMARY_PORT = 1;
75 private static final int SECONDARY_PORT = 2;
76 private static final int CLIENT_PORT = 3;
MaoLu937cf422017-03-03 23:31:46 -080077 private static final int FLOWRULE_PRIORITY = 88;
Jimmy Jin10852392017-01-24 13:45:13 -080078 private static final String PRIMARY_ID = "primary_port";
79 private static final String SECONDARY_ID = "secondary_port";
80 private static final String OPLINK_FINGERPRINT = "OplinkOPS";
MaoLu937cf422017-03-03 23:31:46 -080081 private static final String APP_ID = "org.onosproject.drivers.optical";
Jimmy Jin10852392017-01-24 13:45:13 -080082
83 protected final Logger log = LoggerFactory.getLogger(getClass());
84
Jimmy Jin10852392017-01-24 13:45:13 -080085 @Override
86 public CompletableFuture<ConnectPoint> createProtectionEndpoint(
87 ProtectedTransportEndpointDescription configuration) {
88 //This OPS device only support one protection group of port 2 and port 3
89
90 CompletableFuture result = new CompletableFuture<ConnectPoint>();
91
92 //add flow from client port to virtual port. This set device in auto switch mode
93 addFlow(PortNumber.portNumber(VIRTUAL_PORT));
94
Frank Wangd8ab0962017-08-11 11:09:30 +080095 //add a virtual link between two virtual ports of this device and peer
Jimmy Jin10852392017-01-24 13:45:13 -080096 addLinkToPeer(configuration.peer());
97
MaoLu937cf422017-03-03 23:31:46 -080098 result.complete(new ConnectPoint(data().deviceId(), PortNumber.portNumber(VIRTUAL_PORT)));
Jimmy Jin10852392017-01-24 13:45:13 -080099
100 return result;
101 }
102
103 @Override
104 public CompletableFuture<ConnectPoint> updateProtectionEndpoint(
105 ConnectPoint identifier, ProtectedTransportEndpointDescription configuration) {
106
107 log.warn("Update protection configuration is not supported by this device");
108
109 CompletableFuture result = new CompletableFuture<ConnectPoint>();
MaoLu937cf422017-03-03 23:31:46 -0800110 result.complete(new ConnectPoint(data().deviceId(), PortNumber.portNumber(VIRTUAL_PORT)));
Jimmy Jin10852392017-01-24 13:45:13 -0800111
112 return result;
113 }
114
115 @Override
116 public CompletableFuture<Boolean> deleteProtectionEndpoint(ConnectPoint identifier) {
117 //OPS has only one protection group
118 CompletableFuture result = new CompletableFuture<Boolean>();
119
120 if (identifier.port().toLong() == VIRTUAL_PORT) {
Frank Wangd8ab0962017-08-11 11:09:30 +0800121 //add a link between two virtual ports of this device and peer
Jimmy Jin10852392017-01-24 13:45:13 -0800122 removeLinkToPeer(getPeerId());
123 deleteFlow();
124 result.complete(true);
125 } else {
126 result.complete(false);
127 }
128
129 return result;
130 }
131
132 @Override
133 public CompletableFuture<Map<ConnectPoint, ProtectedTransportEndpointDescription>> getProtectionEndpointConfigs() {
MaoLu937cf422017-03-03 23:31:46 -0800134 ConnectPoint cp = new ConnectPoint(data().deviceId(), PortNumber.portNumber(VIRTUAL_PORT));
Jimmy Jin10852392017-01-24 13:45:13 -0800135
136 Map<ConnectPoint, ProtectedTransportEndpointDescription> protectedGroups = new HashMap<>();
137 CompletableFuture result = new CompletableFuture<Map<ConnectPoint, ProtectedTransportEndpointDescription>>();
138
139 protectedGroups.put(cp, getProtectedTransportEndpointDescription());
140 result.complete(protectedGroups);
141
142 return result;
143 }
144
145 @Override
146 public CompletableFuture<Map<ConnectPoint, ProtectedTransportEndpointState>> getProtectionEndpointStates() {
MaoLu937cf422017-03-03 23:31:46 -0800147 ConnectPoint cp = new ConnectPoint(data().deviceId(), PortNumber.portNumber(VIRTUAL_PORT));
Jimmy Jin10852392017-01-24 13:45:13 -0800148
149 Map<ConnectPoint, ProtectedTransportEndpointState> protectedGroups = new HashMap<>();
150 CompletableFuture result = new CompletableFuture<Map<ConnectPoint, ProtectedTransportEndpointState>>();
151
152 protectedGroups.put(cp, getProtectedTransportEndpointState());
153 result.complete(protectedGroups);
154
155 return result;
156 }
157
Jimmy Jin10852392017-01-24 13:45:13 -0800158 @Override
MaoLu66858772017-05-11 19:38:01 -0700159 public CompletableFuture<Void> switchToForce(ConnectPoint identifier, int index) {
160 // TODO
161 // Currently not supported for openflow device.
162 CompletableFuture<Void> future = new CompletableFuture<>();
163 future.completeExceptionally(new UnsupportedOperationException());
164 return future;
165 }
Jimmy Jin10852392017-01-24 13:45:13 -0800166
MaoLu66858772017-05-11 19:38:01 -0700167 @Override
168 public CompletableFuture<Void> switchToManual(ConnectPoint identifier, int index) {
169 return getProtectionEndpointConfig(identifier)
170 .thenApply(m -> m.paths().get(index))
171 .thenApply(m -> switchDevice(m.output().connectPoint().port()))
172 .thenApply(m -> null);
173 }
174
175 @Override
176 public CompletableFuture<Void> switchToAutomatic(ConnectPoint identifier) {
177 switchDevice(PortNumber.portNumber(VIRTUAL_PORT));
178 return CompletableFuture.completedFuture(null);
179 }
180
181 /**
182 * port: PRIMARY_PORT - manual switch to primary port.
183 * SECONDARY_PORT - manual switch to Secondary port.
184 * VIRTUAL_PORT - automatic switch mode.
185 */
186 private boolean switchDevice(PortNumber port) {
187 // TODO
188 // If the flow operations do not go through, the controller would be in an inconsistent state.
189 // Using listener can be a hack to imitate async API, to workaround the issue.
190 // But can probably get tricky to do it correctly, ensuring not leaving dangling listener, etc.
191 deleteFlow();
192 addFlow(port);
193 return true;
Jimmy Jin10852392017-01-24 13:45:13 -0800194 }
195
196 /*
197 * return the protected endpoint description of this devices
198 */
199 private ProtectedTransportEndpointDescription getProtectedTransportEndpointDescription() {
200 List<TransportEndpointDescription> teds = new ArrayList<>();
201 FilteredConnectPoint fcpPrimary = new FilteredConnectPoint(
202 new ConnectPoint(data().deviceId(), PortNumber.portNumber(PRIMARY_PORT)));
203 FilteredConnectPoint fcpSecondary = new FilteredConnectPoint(
204 new ConnectPoint(data().deviceId(), PortNumber.portNumber(SECONDARY_PORT)));
205 TransportEndpointDescription tedPrimary = TransportEndpointDescription.builder()
206 .withOutput(fcpPrimary).build();
207 TransportEndpointDescription tedSecondary = TransportEndpointDescription.builder()
208 .withOutput(fcpSecondary).build();
209
210 teds.add(tedPrimary);
211 teds.add(tedSecondary);
MaoLu937cf422017-03-03 23:31:46 -0800212 return ProtectedTransportEndpointDescription.of(teds, getPeerId(), OPLINK_FINGERPRINT);
Jimmy Jin10852392017-01-24 13:45:13 -0800213 }
214
215 /*
216 * get endpoint state attributes
217 */
218 private Map<String, String> getProtectionStateAttributes(PortNumber portNumber) {
219 Map<String, String> attributes = new HashMap<>();
220
221 //get status form port annotations, the status is update by hand shaker driver periodically
MaoLu937cf422017-03-03 23:31:46 -0800222 Port port = handler().get(DeviceService.class).getPort(data().deviceId(), portNumber);
Jimmy Jin10852392017-01-24 13:45:13 -0800223 if (port != null) {
224 String portStatus = port.annotations().value(OpticalAnnotations.INPUT_PORT_STATUS);
225 attributes.put(OpticalAnnotations.INPUT_PORT_STATUS, portStatus);
226 }
227 return attributes;
228 }
229
MaoLua8998df2017-03-15 14:20:38 -0700230 /*
231 * get activer port number
232 */
233 private int getActivePort() {
MaoLu937cf422017-03-03 23:31:46 -0800234 Port port = handler().get(DeviceService.class)
235 .getPort(data().deviceId(), PortNumber.portNumber(PRIMARY_PORT));
Jimmy Jin10852392017-01-24 13:45:13 -0800236 if (port != null) {
237 if (port.annotations().value(OpticalAnnotations.INPUT_PORT_STATUS)
238 .equals(OpticalAnnotations.STATUS_IN_SERVICE)) {
239 return PRIMARY_PORT;
240 }
241 }
242 return SECONDARY_PORT;
243 }
244
245 /*
MaoLua8998df2017-03-15 14:20:38 -0700246 * get active path index
247 */
248 private int getActiveIndex(List<TransportEndpointState> pathStates) {
249 long activePort = (long) getActivePort();
250 int activeIndex = 0;
251 for (TransportEndpointState state : pathStates) {
252 if (state.description().output().connectPoint().port().toLong() == activePort) {
253 return activeIndex;
254 }
255 ++activeIndex;
256 }
257 return ProtectedTransportEndpointState.ACTIVE_UNKNOWN;
258 }
259
260 /*
Jimmy Jin10852392017-01-24 13:45:13 -0800261 * get protected endpoint state
262 */
263 private ProtectedTransportEndpointState getProtectedTransportEndpointState() {
264 List<TransportEndpointState> tess = new ArrayList<>();
MaoLu937cf422017-03-03 23:31:46 -0800265 PortNumber portPrimary = PortNumber.portNumber(PRIMARY_PORT);
266 PortNumber portSecondary = PortNumber.portNumber(SECONDARY_PORT);
Jimmy Jin10852392017-01-24 13:45:13 -0800267 FilteredConnectPoint fcpPrimary = new FilteredConnectPoint(
MaoLu937cf422017-03-03 23:31:46 -0800268 new ConnectPoint(data().deviceId(), portPrimary));
Jimmy Jin10852392017-01-24 13:45:13 -0800269 FilteredConnectPoint fcpSecondary = new FilteredConnectPoint(
MaoLu937cf422017-03-03 23:31:46 -0800270 new ConnectPoint(data().deviceId(), portSecondary));
Jimmy Jin10852392017-01-24 13:45:13 -0800271 TransportEndpointDescription tedPrimary = TransportEndpointDescription.builder()
272 .withOutput(fcpPrimary).build();
273 TransportEndpointDescription tedSecondary = TransportEndpointDescription.builder()
274 .withOutput(fcpSecondary).build();
275
276 TransportEndpointState tesPrimary = TransportEndpointState.builder()
277 .withDescription(tedPrimary)
278 .withId(TransportEndpointId.of(PRIMARY_ID))
MaoLu937cf422017-03-03 23:31:46 -0800279 .addAttributes(getProtectionStateAttributes(portPrimary))
Jimmy Jin10852392017-01-24 13:45:13 -0800280 .build();
281 TransportEndpointState tesSecondary = TransportEndpointState.builder()
282 .withDescription(tedSecondary)
283 .withId(TransportEndpointId.of(SECONDARY_ID))
MaoLu937cf422017-03-03 23:31:46 -0800284 .addAttributes(getProtectionStateAttributes((portSecondary)))
Jimmy Jin10852392017-01-24 13:45:13 -0800285 .build();
286
287 tess.add(tesPrimary);
288 tess.add(tesSecondary);
289 return ProtectedTransportEndpointState.builder()
290 .withDescription(getProtectedTransportEndpointDescription())
291 .withPathStates(tess)
MaoLua8998df2017-03-15 14:20:38 -0700292 .withActivePathIndex(getActiveIndex(tess))
Jimmy Jin10852392017-01-24 13:45:13 -0800293 .build();
294 }
295
296 /*
297 * - Protection switch is controlled by setting up flow on the device
298 * - There is only one flow on the device at any point
299 * - A flow from virtual port to client port indicates the device is in auto switch mode
300 * - A flow from primary port to client port indicates the device is manually switched to primary
301 * - A flow from secondary port to client port indicates the device is manually switched to secondary
302 */
303 private void addFlow(PortNumber workingPort) {
MaoLu937cf422017-03-03 23:31:46 -0800304 // set working port as flow's input port
305 TrafficSelector selector = DefaultTrafficSelector.builder()
306 .matchInPort(workingPort)
307 .build();
308 // the flow's output port is always the clinet port
309 TrafficTreatment treatment = DefaultTrafficTreatment.builder()
310 .setOutput(PortNumber.portNumber(CLIENT_PORT))
311 .build();
312 FlowRule flowRule = DefaultFlowRule.builder()
313 .forDevice(data().deviceId())
314 .fromApp(handler().get(CoreService.class).getAppId(APP_ID))
315 .withPriority(FLOWRULE_PRIORITY)
316 .withSelector(selector)
317 .withTreatment(treatment)
318 .makePermanent()
319 .build();
Jimmy Jin10852392017-01-24 13:45:13 -0800320
321 // install flow rule
MaoLu937cf422017-03-03 23:31:46 -0800322 handler().get(FlowRuleService.class).applyFlowRules(flowRule);
Jimmy Jin10852392017-01-24 13:45:13 -0800323 }
324 /*
325 Delete all the flows to put device in default mode.
326 */
327 private void deleteFlow() {
328 // remove all the flows.
MaoLu937cf422017-03-03 23:31:46 -0800329 handler().get(FlowRuleService.class).purgeFlowRules(data().deviceId());
Jimmy Jin10852392017-01-24 13:45:13 -0800330 }
331
332 private void addLinkToPeer(DeviceId peerId) {
333
334 if (peerId == null) {
335 log.warn("PeerID is null for device {}", data().deviceId());
336 return;
337 }
338 ConnectPoint dstCp = new ConnectPoint(data().deviceId(), PortNumber.portNumber(VIRTUAL_PORT));
339 ConnectPoint srcCp = new ConnectPoint(peerId, PortNumber.portNumber(VIRTUAL_PORT));
340 LinkKey link = linkKey(srcCp, dstCp);
MaoLu937cf422017-03-03 23:31:46 -0800341 BasicLinkConfig cfg = handler().get(NetworkConfigService.class)
342 .addConfig(link, BasicLinkConfig.class);
Jimmy Jin10852392017-01-24 13:45:13 -0800343 cfg.type(Link.Type.VIRTUAL);
344 cfg.apply();
345 }
346
347 private void removeLinkToPeer(DeviceId peerId) {
348 if (peerId == null) {
349 log.warn("PeerID is null for device {}", data().deviceId());
350 return;
351 }
352 ConnectPoint dstCp = new ConnectPoint(data().deviceId(), PortNumber.portNumber(VIRTUAL_PORT));
353 ConnectPoint srcCp = new ConnectPoint(peerId, PortNumber.portNumber(VIRTUAL_PORT));
354 LinkKey link = linkKey(srcCp, dstCp);
MaoLu937cf422017-03-03 23:31:46 -0800355 handler().get(NetworkConfigService.class).removeConfig(link, BasicLinkConfig.class);
Jimmy Jin10852392017-01-24 13:45:13 -0800356 }
357
358 private DeviceId getPeerId() {
359 ConnectPoint dstCp = new ConnectPoint(data().deviceId(), PortNumber.portNumber(VIRTUAL_PORT));
MaoLu937cf422017-03-03 23:31:46 -0800360 Set<Link> links = handler().get(LinkService.class).getIngressLinks(dstCp);
Jimmy Jin10852392017-01-24 13:45:13 -0800361
362 for (Link l : links) {
363 if (l.type() == Link.Type.VIRTUAL) {
Frank Wangd8ab0962017-08-11 11:09:30 +0800364 // this device is the destination and peer is the source.
Jimmy Jin10852392017-01-24 13:45:13 -0800365 return l.src().deviceId();
366 }
367 }
368
MaoLu937cf422017-03-03 23:31:46 -0800369 return data().deviceId();
Jimmy Jin10852392017-01-24 13:45:13 -0800370 }
371}