blob: 9af674533d53e604d20a319fdd6c591084e33073 [file] [log] [blame]
Carmelo Cascone87b9b392017-10-02 18:33:20 +02001/*
2 * Copyright 2017-present Open Networking Foundation
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 */
16
17package org.onosproject.net.pi.impl;
18
19import com.google.common.collect.ImmutableList;
20import com.google.common.collect.ImmutableSet;
21import com.google.common.testing.EqualsTester;
22import org.junit.Before;
23import org.junit.Test;
24import org.onlab.packet.MacAddress;
25import org.onlab.util.ImmutableByteSequence;
26import org.onosproject.TestApplicationId;
Carmelo Cascone87b9b392017-10-02 18:33:20 +020027import org.onosproject.core.ApplicationId;
28import org.onosproject.core.DefaultApplicationId;
29import org.onosproject.core.GroupId;
30import org.onosproject.net.DeviceId;
31import org.onosproject.net.PortNumber;
32import org.onosproject.net.flow.DefaultFlowRule;
33import org.onosproject.net.flow.DefaultTrafficSelector;
34import org.onosproject.net.flow.DefaultTrafficTreatment;
35import org.onosproject.net.flow.FlowRule;
36import org.onosproject.net.flow.TrafficSelector;
37import org.onosproject.net.flow.TrafficTreatment;
38import org.onosproject.net.flow.instructions.Instructions;
39import org.onosproject.net.group.DefaultGroup;
40import org.onosproject.net.group.DefaultGroupBucket;
41import org.onosproject.net.group.DefaultGroupDescription;
42import org.onosproject.net.group.Group;
43import org.onosproject.net.group.GroupBucket;
44import org.onosproject.net.group.GroupBuckets;
45import org.onosproject.net.group.GroupDescription;
Carmelo Cascone87b9b392017-10-02 18:33:20 +020046import org.onosproject.net.pi.model.PiPipeconf;
Carmelo Cascone87b9b392017-10-02 18:33:20 +020047import org.onosproject.net.pi.runtime.PiAction;
48import org.onosproject.net.pi.runtime.PiActionGroup;
49import org.onosproject.net.pi.runtime.PiActionGroupMember;
50import org.onosproject.net.pi.runtime.PiActionGroupMemberId;
Carmelo Cascone87b9b392017-10-02 18:33:20 +020051import org.onosproject.net.pi.runtime.PiActionParam;
Carmelo Cascone87b9b392017-10-02 18:33:20 +020052import org.onosproject.net.pi.runtime.PiGroupKey;
Carmelo Cascone4256bde2018-03-23 18:02:15 -070053import org.onosproject.net.pi.runtime.PiMatchKey;
Carmelo Cascone87b9b392017-10-02 18:33:20 +020054import org.onosproject.net.pi.runtime.PiTableAction;
55import org.onosproject.net.pi.runtime.PiTableEntry;
Carmelo Cascone87b9b392017-10-02 18:33:20 +020056import org.onosproject.net.pi.runtime.PiTernaryFieldMatch;
Carmelo Casconeca94bcf2017-10-27 14:16:59 -070057import org.onosproject.pipelines.basic.PipeconfLoader;
Carmelo Cascone87b9b392017-10-02 18:33:20 +020058
59import java.util.Collection;
60import java.util.List;
61import java.util.Optional;
62import java.util.Random;
63
64import static org.hamcrest.CoreMatchers.equalTo;
65import static org.hamcrest.CoreMatchers.is;
66import static org.hamcrest.MatcherAssert.assertThat;
67import static org.onlab.util.ImmutableByteSequence.copyFrom;
Carmelo Cascone87b9b392017-10-02 18:33:20 +020068import static org.onosproject.net.group.GroupDescription.Type.SELECT;
Carmelo Casconeca94bcf2017-10-27 14:16:59 -070069import static org.onosproject.pipelines.basic.BasicConstants.ACT_PRF_WCMP_SELECTOR_ID;
70import static org.onosproject.pipelines.basic.BasicConstants.ACT_PRM_PORT_ID;
71import static org.onosproject.pipelines.basic.BasicConstants.ACT_SET_EGRESS_PORT_ID;
72import static org.onosproject.pipelines.basic.BasicConstants.HDR_ETH_DST_ID;
73import static org.onosproject.pipelines.basic.BasicConstants.HDR_ETH_SRC_ID;
74import static org.onosproject.pipelines.basic.BasicConstants.HDR_ETH_TYPE_ID;
75import static org.onosproject.pipelines.basic.BasicConstants.HDR_IN_PORT_ID;
76import static org.onosproject.pipelines.basic.BasicConstants.PORT_BITWIDTH;
77import static org.onosproject.pipelines.basic.BasicConstants.TBL_TABLE0_ID;
78import static org.onosproject.pipelines.basic.BasicConstants.TBL_WCMP_TABLE_ID;
Carmelo Cascone87b9b392017-10-02 18:33:20 +020079
80/**
Carmelo Cascone326ad2d2017-11-28 18:09:13 -080081 * Tests for {@link PiFlowRuleTranslatorImpl}.
Carmelo Cascone87b9b392017-10-02 18:33:20 +020082 */
83@SuppressWarnings("ConstantConditions")
84public class PiTranslatorServiceTest {
85
Carmelo Cascone87b9b392017-10-02 18:33:20 +020086 private static final short IN_PORT_MASK = 0x01ff; // 9-bit mask
87 private static final short ETH_TYPE_MASK = (short) 0xffff;
88 private static final DeviceId DEVICE_ID = DeviceId.deviceId("device:dummy:1");
89 private static final ApplicationId APP_ID = TestApplicationId.create("dummy");
Carmelo Cascone87b9b392017-10-02 18:33:20 +020090 private static final GroupId GROUP_ID = GroupId.valueOf(1);
Carmelo Cascone87b9b392017-10-02 18:33:20 +020091 private static final List<GroupBucket> BUCKET_LIST = ImmutableList.of(outputBucket(1),
92 outputBucket(2),
93 outputBucket(3)
94 );
Carmelo Casconeca94bcf2017-10-27 14:16:59 -070095 private static final PiGroupKey GROUP_KEY = new PiGroupKey(TBL_WCMP_TABLE_ID, ACT_PRF_WCMP_SELECTOR_ID,
96 GROUP_ID.id());
Carmelo Cascone87b9b392017-10-02 18:33:20 +020097 private static final GroupBuckets BUCKETS = new GroupBuckets(BUCKET_LIST);
98 private static final GroupDescription GROUP_DESC =
99 new DefaultGroupDescription(DEVICE_ID, SELECT, BUCKETS, GROUP_KEY, GROUP_ID.id(), APP_ID);
100 private static final Group GROUP = new DefaultGroup(GROUP_ID, GROUP_DESC);
101 private static final int DEFAULT_MEMBER_WEIGHT = 1;
102 private static final int BASE_MEM_ID = 65535;
103 private Collection<PiActionGroupMember> expectedMembers;
104
105 private Random random = new Random();
106 private PiPipeconf pipeconf;
107
108 @Before
109 public void setUp() throws Exception {
Carmelo Casconeca94bcf2017-10-27 14:16:59 -0700110 pipeconf = PipeconfLoader.BASIC_PIPECONF;
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200111 expectedMembers = ImmutableSet.of(outputMember(1),
112 outputMember(2),
113 outputMember(3));
114 }
115
116 @Test
117 public void testTranslateFlowRules() throws Exception {
118
119 ApplicationId appId = new DefaultApplicationId(1, "test");
120 int tableId = 0;
121 MacAddress ethDstMac = MacAddress.valueOf(random.nextLong());
122 MacAddress ethSrcMac = MacAddress.valueOf(random.nextLong());
123 short ethType = (short) (0x0000FFFF & random.nextInt());
124 short outPort = (short) random.nextInt(65);
125 short inPort = (short) random.nextInt(65);
126 int timeout = random.nextInt(100);
127 int priority = random.nextInt(100);
128
129 TrafficSelector matchInPort1 = DefaultTrafficSelector
130 .builder()
131 .matchInPort(PortNumber.portNumber(inPort))
132 .matchEthDst(ethDstMac)
133 .matchEthSrc(ethSrcMac)
134 .matchEthType(ethType)
135 .build();
136
Carmelo Cascone4256bde2018-03-23 18:02:15 -0700137 TrafficSelector emptySelector = DefaultTrafficSelector
138 .builder().build();
139
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200140 TrafficTreatment outPort2 = DefaultTrafficTreatment
141 .builder()
142 .setOutput(PortNumber.portNumber(outPort))
143 .build();
144
145 FlowRule rule1 = DefaultFlowRule.builder()
146 .forDevice(DEVICE_ID)
147 .forTable(tableId)
148 .fromApp(appId)
149 .withSelector(matchInPort1)
150 .withTreatment(outPort2)
151 .makeTemporary(timeout)
152 .withPriority(priority)
153 .build();
154
155 FlowRule rule2 = DefaultFlowRule.builder()
156 .forDevice(DEVICE_ID)
157 .forTable(tableId)
158 .fromApp(appId)
159 .withSelector(matchInPort1)
160 .withTreatment(outPort2)
161 .makeTemporary(timeout)
162 .withPriority(priority)
163 .build();
164
Carmelo Cascone4256bde2018-03-23 18:02:15 -0700165 FlowRule defActionRule = DefaultFlowRule.builder()
166 .forDevice(DEVICE_ID)
167 .forTable(tableId)
168 .fromApp(appId)
169 .withSelector(emptySelector)
170 .withTreatment(outPort2)
171 .makeTemporary(timeout)
172 .withPriority(priority)
173 .build();
174
Carmelo Cascone326ad2d2017-11-28 18:09:13 -0800175 PiTableEntry entry1 = PiFlowRuleTranslatorImpl.translate(rule1, pipeconf, null);
Carmelo Cascone4256bde2018-03-23 18:02:15 -0700176 PiTableEntry entry2 = PiFlowRuleTranslatorImpl.translate(rule2, pipeconf, null);
177 PiTableEntry defActionEntry = PiFlowRuleTranslatorImpl.translate(defActionRule, pipeconf, null);
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200178
179 // check equality, i.e. same rules must produce same entries
180 new EqualsTester()
181 .addEqualityGroup(rule1, rule2)
182 .addEqualityGroup(entry1, entry2)
183 .testEquals();
184
Carmelo Cascone87892e22017-11-13 16:01:29 -0800185 int numMatchParams = pipeconf.pipelineModel().table(TBL_TABLE0_ID).get().matchFields().size();
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200186 // parse values stored in entry1
Carmelo Casconeca94bcf2017-10-27 14:16:59 -0700187 PiTernaryFieldMatch inPortParam = (PiTernaryFieldMatch) entry1.matchKey().fieldMatch(HDR_IN_PORT_ID).get();
188 PiTernaryFieldMatch ethDstParam = (PiTernaryFieldMatch) entry1.matchKey().fieldMatch(HDR_ETH_DST_ID).get();
189 PiTernaryFieldMatch ethSrcParam = (PiTernaryFieldMatch) entry1.matchKey().fieldMatch(HDR_ETH_SRC_ID).get();
190 PiTernaryFieldMatch ethTypeParam = (PiTernaryFieldMatch) entry1.matchKey().fieldMatch(HDR_ETH_TYPE_ID).get();
Carmelo Cascone87892e22017-11-13 16:01:29 -0800191 Optional<Double> expectedTimeout = pipeconf.pipelineModel().table(TBL_TABLE0_ID).get().supportsAging()
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200192 ? Optional.of((double) rule1.timeout()) : Optional.empty();
193
194 // check that the number of parameters in the entry is the same as the number of table keys
195 assertThat("Incorrect number of match parameters",
196 entry1.matchKey().fieldMatches().size(), is(equalTo(numMatchParams)));
197
198 // check that values stored in entry are the same used for the flow rule
199 assertThat("Incorrect inPort match param value",
200 inPortParam.value().asReadOnlyBuffer().getShort(), is(equalTo(inPort)));
201 assertThat("Incorrect inPort match param mask",
202 inPortParam.mask().asReadOnlyBuffer().getShort(), is(equalTo(IN_PORT_MASK)));
203 assertThat("Incorrect ethDestMac match param value",
204 ethDstParam.value().asArray(), is(equalTo(ethDstMac.toBytes())));
205 assertThat("Incorrect ethDestMac match param mask",
206 ethDstParam.mask().asArray(), is(equalTo(MacAddress.BROADCAST.toBytes())));
207 assertThat("Incorrect ethSrcMac match param value",
208 ethSrcParam.value().asArray(), is(equalTo(ethSrcMac.toBytes())));
209 assertThat("Incorrect ethSrcMac match param mask",
210 ethSrcParam.mask().asArray(), is(equalTo(MacAddress.BROADCAST.toBytes())));
211 assertThat("Incorrect ethType match param value",
212 ethTypeParam.value().asReadOnlyBuffer().getShort(), is(equalTo(ethType)));
213 assertThat("Incorrect ethType match param mask",
214 ethTypeParam.mask().asReadOnlyBuffer().getShort(), is(equalTo(ETH_TYPE_MASK)));
Yi Tseng02c4c572018-01-22 17:52:10 -0800215 // FIXME: re-enable when P4Runtime priority handling will be moved out of transltion service
216 // see PiFlowRuleTranslatorImpl
217 // assertThat("Incorrect priority value",
218 // entry1.priority().get(), is(equalTo(MAX_PI_PRIORITY - rule1.priority())));
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200219 assertThat("Incorrect timeout value",
220 entry1.timeout(), is(equalTo(expectedTimeout)));
Carmelo Cascone4256bde2018-03-23 18:02:15 -0700221 assertThat("Match key should be empty",
222 defActionEntry.matchKey(), is(equalTo(PiMatchKey.EMPTY)));
223 assertThat("Priority should not be set", !defActionEntry.priority().isPresent());
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200224
225 }
226
227 private static GroupBucket outputBucket(int portNum) {
228 ImmutableByteSequence paramVal = copyFrom(portNum);
Carmelo Casconeca94bcf2017-10-27 14:16:59 -0700229 PiActionParam param = new PiActionParam(ACT_PRM_PORT_ID, paramVal);
230 PiTableAction action = PiAction.builder().withId(ACT_SET_EGRESS_PORT_ID).withParameter(param).build();
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200231 TrafficTreatment treatment = DefaultTrafficTreatment.builder()
232 .add(Instructions.piTableAction(action))
233 .build();
234 return DefaultGroupBucket.createSelectGroupBucket(treatment);
235 }
236
237 private static PiActionGroupMember outputMember(int portNum)
238 throws ImmutableByteSequence.ByteSequenceTrimException {
Carmelo Cascone8a571af2018-04-06 23:17:04 -0700239 PiActionParam param = new PiActionParam(ACT_PRM_PORT_ID, copyFrom(portNum).fit(PORT_BITWIDTH));
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200240 PiAction piAction = PiAction.builder()
Carmelo Casconeca94bcf2017-10-27 14:16:59 -0700241 .withId(ACT_SET_EGRESS_PORT_ID)
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200242 .withParameter(param).build();
243 return PiActionGroupMember.builder()
244 .withAction(piAction)
245 .withId(PiActionGroupMemberId.of(BASE_MEM_ID + portNum))
246 .withWeight(DEFAULT_MEMBER_WEIGHT)
247 .build();
248 }
249
250 /**
251 * Test add group with buckets.
252 */
253 @Test
254 public void testTranslateGroups() throws Exception {
255
Carmelo Cascone326ad2d2017-11-28 18:09:13 -0800256 PiActionGroup piGroup1 = PiGroupTranslatorImpl.translate(GROUP, pipeconf, null);
257 PiActionGroup piGroup2 = PiGroupTranslatorImpl.translate(GROUP, pipeconf, null);
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200258
259 new EqualsTester()
260 .addEqualityGroup(piGroup1, piGroup2)
261 .testEquals();
262
263 assertThat("Group ID must be equal",
264 piGroup1.id().id(), is(equalTo(GROUP_ID.id())));
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200265 assertThat("Action profile ID must be equal",
Carmelo Casconeca94bcf2017-10-27 14:16:59 -0700266 piGroup1.actionProfileId(), is(equalTo(ACT_PRF_WCMP_SELECTOR_ID)));
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200267
268 // members installed
269 Collection<PiActionGroupMember> members = piGroup1.members();
270 assertThat("The number of group members must be equal",
271 piGroup1.members().size(), is(expectedMembers.size()));
272 assertThat("Group members must be equal",
273 members.containsAll(expectedMembers) && expectedMembers.containsAll(members));
274 }
275}