blob: 9a091f40509f0d3cf7a0c8334523a89378a50a7f [file] [log] [blame]
alshabibfaa1e362015-04-02 15:01:54 -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.driver.pipeline;
17
18import com.google.common.util.concurrent.SettableFuture;
Srikanth Vavilapallif5b234a2015-04-21 13:04:13 -070019
alshabibfaa1e362015-04-02 15:01:54 -070020import org.onlab.osgi.ServiceDirectory;
21import org.onosproject.core.DefaultGroupId;
22import org.onosproject.net.DeviceId;
23import org.onosproject.net.behaviour.Pipeliner;
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070024import org.onosproject.net.behaviour.PipelinerContext;
Thomas Vachuskafacc3f52015-04-10 08:58:36 -070025import org.onosproject.net.driver.AbstractHandlerBehaviour;
alshabibfaa1e362015-04-02 15:01:54 -070026import org.onosproject.net.flow.DefaultFlowRule;
Srikanth Vavilapallif5b234a2015-04-21 13:04:13 -070027import org.onosproject.net.flow.DefaultTrafficTreatment;
alshabibfaa1e362015-04-02 15:01:54 -070028import org.onosproject.net.flow.FlowRule;
29import org.onosproject.net.flow.FlowRuleOperations;
30import org.onosproject.net.flow.FlowRuleOperationsContext;
31import org.onosproject.net.flow.FlowRuleService;
32import org.onosproject.net.flow.TrafficSelector;
Srikanth Vavilapallif5b234a2015-04-21 13:04:13 -070033import org.onosproject.net.flow.TrafficTreatment;
34import org.onosproject.net.flow.instructions.Instructions;
alshabibfaa1e362015-04-02 15:01:54 -070035import org.onosproject.net.flowobjective.FilteringObjective;
36import org.onosproject.net.flowobjective.ForwardingObjective;
alshabib77b88482015-04-07 15:47:50 -070037import org.onosproject.net.flowobjective.NextObjective;
alshabib2a441c62015-04-13 18:39:38 -070038import org.onosproject.net.flowobjective.ObjectiveError;
alshabibfaa1e362015-04-02 15:01:54 -070039import org.slf4j.Logger;
40
alshabibfaa1e362015-04-02 15:01:54 -070041import static org.slf4j.LoggerFactory.getLogger;
42
43/**
44 * Simple single table pipeline abstraction.
45 */
Thomas Vachuskafacc3f52015-04-10 08:58:36 -070046public class DefaultSingleTablePipeline extends AbstractHandlerBehaviour implements Pipeliner {
alshabibfaa1e362015-04-02 15:01:54 -070047
48 private final Logger log = getLogger(getClass());
49
50 private ServiceDirectory serviceDirectory;
51 private FlowRuleService flowRuleService;
52 private DeviceId deviceId;
53
54 @Override
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070055 public void init(DeviceId deviceId, PipelinerContext context) {
56 this.serviceDirectory = context.directory();
alshabibfaa1e362015-04-02 15:01:54 -070057 this.deviceId = deviceId;
58
59 flowRuleService = serviceDirectory.get(FlowRuleService.class);
alshabibfaa1e362015-04-02 15:01:54 -070060 }
61
62 @Override
alshabib2a441c62015-04-13 18:39:38 -070063 public void filter(FilteringObjective filter) {
alshabibfaa1e362015-04-02 15:01:54 -070064 throw new UnsupportedOperationException("Single table does not filter.");
65 }
66
67 @Override
alshabib2a441c62015-04-13 18:39:38 -070068 public void forward(ForwardingObjective fwd) {
alshabibfaa1e362015-04-02 15:01:54 -070069 FlowRuleOperations.Builder flowBuilder = FlowRuleOperations.builder();
alshabibfaa1e362015-04-02 15:01:54 -070070
alshabib2a441c62015-04-13 18:39:38 -070071 if (fwd.flag() != ForwardingObjective.Flag.VERSATILE) {
72 throw new UnsupportedOperationException(
73 "Only VERSATILE is supported.");
74 }
alshabibfaa1e362015-04-02 15:01:54 -070075
alshabib2a441c62015-04-13 18:39:38 -070076 TrafficSelector selector = fwd.selector();
Srikanth Vavilapallif5b234a2015-04-21 13:04:13 -070077 TrafficTreatment treatment = fwd.treatment();
78 if ((fwd.treatment().deferred().size() == 0) &&
79 (fwd.treatment().immediate().size() == 0) &&
80 (fwd.treatment().tableTransition() == null) &&
81 (!fwd.treatment().clearedDeferred())) {
82 TrafficTreatment.Builder flowTreatment = DefaultTrafficTreatment.builder();
83 flowTreatment.add(Instructions.createDrop());
84 treatment = flowTreatment.build();
85 }
alshabibfaa1e362015-04-02 15:01:54 -070086
alshabib2a441c62015-04-13 18:39:38 -070087 FlowRule rule = new DefaultFlowRule(deviceId, selector,
Srikanth Vavilapallif5b234a2015-04-21 13:04:13 -070088 treatment,
alshabib2a441c62015-04-13 18:39:38 -070089 fwd.priority(), fwd.appId(),
90 new DefaultGroupId(fwd.id()),
91 fwd.timeout(), fwd.permanent());
alshabibfaa1e362015-04-02 15:01:54 -070092
alshabib2a441c62015-04-13 18:39:38 -070093 switch (fwd.op()) {
alshabibfaa1e362015-04-02 15:01:54 -070094
alshabib2a441c62015-04-13 18:39:38 -070095 case ADD:
96 flowBuilder.add(rule);
97 break;
98 case REMOVE:
99 flowBuilder.remove(rule);
100 break;
101 default:
102 log.warn("Unknown operation {}", fwd.op());
103 }
104
alshabibfaa1e362015-04-02 15:01:54 -0700105
106 SettableFuture<Boolean> future = SettableFuture.create();
107
108 flowRuleService.apply(flowBuilder.build(new FlowRuleOperationsContext() {
109 @Override
110 public void onSuccess(FlowRuleOperations ops) {
alshabib2a441c62015-04-13 18:39:38 -0700111 if (fwd.context().isPresent()) {
112 fwd.context().get().onSuccess(fwd);
113 }
alshabibfaa1e362015-04-02 15:01:54 -0700114 }
115
116 @Override
117 public void onError(FlowRuleOperations ops) {
alshabib2a441c62015-04-13 18:39:38 -0700118 if (fwd.context().isPresent()) {
119 fwd.context().get().onError(fwd, ObjectiveError.FLOWINSTALLATIONFAILED);
120 }
alshabibfaa1e362015-04-02 15:01:54 -0700121 }
122 }));
alshabib2a441c62015-04-13 18:39:38 -0700123
alshabibfaa1e362015-04-02 15:01:54 -0700124 }
alshabib77b88482015-04-07 15:47:50 -0700125
126 @Override
alshabib2a441c62015-04-13 18:39:38 -0700127 public void next(NextObjective nextObjective) {
alshabib77b88482015-04-07 15:47:50 -0700128 throw new UnsupportedOperationException("Single table does not next hop.");
129 }
130
alshabibfaa1e362015-04-02 15:01:54 -0700131}