blob: 500f8cf7e5f7b7b64ee915a0319f4c7f13f67c50 [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;
53import org.onosproject.net.pi.runtime.PiTableAction;
54import org.onosproject.net.pi.runtime.PiTableEntry;
Carmelo Cascone87b9b392017-10-02 18:33:20 +020055import org.onosproject.net.pi.runtime.PiTernaryFieldMatch;
Carmelo Casconeca94bcf2017-10-27 14:16:59 -070056import org.onosproject.pipelines.basic.PipeconfLoader;
Carmelo Cascone87b9b392017-10-02 18:33:20 +020057
58import java.util.Collection;
59import java.util.List;
60import java.util.Optional;
61import java.util.Random;
62
63import static org.hamcrest.CoreMatchers.equalTo;
64import static org.hamcrest.CoreMatchers.is;
65import static org.hamcrest.MatcherAssert.assertThat;
66import static org.onlab.util.ImmutableByteSequence.copyFrom;
67import static org.onlab.util.ImmutableByteSequence.fit;
68import 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
137 TrafficTreatment outPort2 = DefaultTrafficTreatment
138 .builder()
139 .setOutput(PortNumber.portNumber(outPort))
140 .build();
141
142 FlowRule rule1 = DefaultFlowRule.builder()
143 .forDevice(DEVICE_ID)
144 .forTable(tableId)
145 .fromApp(appId)
146 .withSelector(matchInPort1)
147 .withTreatment(outPort2)
148 .makeTemporary(timeout)
149 .withPriority(priority)
150 .build();
151
152 FlowRule rule2 = DefaultFlowRule.builder()
153 .forDevice(DEVICE_ID)
154 .forTable(tableId)
155 .fromApp(appId)
156 .withSelector(matchInPort1)
157 .withTreatment(outPort2)
158 .makeTemporary(timeout)
159 .withPriority(priority)
160 .build();
161
Carmelo Cascone326ad2d2017-11-28 18:09:13 -0800162 PiTableEntry entry1 = PiFlowRuleTranslatorImpl.translate(rule1, pipeconf, null);
163 PiTableEntry entry2 = PiFlowRuleTranslatorImpl.translate(rule1, pipeconf, null);
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200164
165 // check equality, i.e. same rules must produce same entries
166 new EqualsTester()
167 .addEqualityGroup(rule1, rule2)
168 .addEqualityGroup(entry1, entry2)
169 .testEquals();
170
Carmelo Cascone87892e22017-11-13 16:01:29 -0800171 int numMatchParams = pipeconf.pipelineModel().table(TBL_TABLE0_ID).get().matchFields().size();
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200172 // parse values stored in entry1
Carmelo Casconeca94bcf2017-10-27 14:16:59 -0700173 PiTernaryFieldMatch inPortParam = (PiTernaryFieldMatch) entry1.matchKey().fieldMatch(HDR_IN_PORT_ID).get();
174 PiTernaryFieldMatch ethDstParam = (PiTernaryFieldMatch) entry1.matchKey().fieldMatch(HDR_ETH_DST_ID).get();
175 PiTernaryFieldMatch ethSrcParam = (PiTernaryFieldMatch) entry1.matchKey().fieldMatch(HDR_ETH_SRC_ID).get();
176 PiTernaryFieldMatch ethTypeParam = (PiTernaryFieldMatch) entry1.matchKey().fieldMatch(HDR_ETH_TYPE_ID).get();
Carmelo Cascone87892e22017-11-13 16:01:29 -0800177 Optional<Double> expectedTimeout = pipeconf.pipelineModel().table(TBL_TABLE0_ID).get().supportsAging()
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200178 ? Optional.of((double) rule1.timeout()) : Optional.empty();
179
180 // check that the number of parameters in the entry is the same as the number of table keys
181 assertThat("Incorrect number of match parameters",
182 entry1.matchKey().fieldMatches().size(), is(equalTo(numMatchParams)));
183
184 // check that values stored in entry are the same used for the flow rule
185 assertThat("Incorrect inPort match param value",
186 inPortParam.value().asReadOnlyBuffer().getShort(), is(equalTo(inPort)));
187 assertThat("Incorrect inPort match param mask",
188 inPortParam.mask().asReadOnlyBuffer().getShort(), is(equalTo(IN_PORT_MASK)));
189 assertThat("Incorrect ethDestMac match param value",
190 ethDstParam.value().asArray(), is(equalTo(ethDstMac.toBytes())));
191 assertThat("Incorrect ethDestMac match param mask",
192 ethDstParam.mask().asArray(), is(equalTo(MacAddress.BROADCAST.toBytes())));
193 assertThat("Incorrect ethSrcMac match param value",
194 ethSrcParam.value().asArray(), is(equalTo(ethSrcMac.toBytes())));
195 assertThat("Incorrect ethSrcMac match param mask",
196 ethSrcParam.mask().asArray(), is(equalTo(MacAddress.BROADCAST.toBytes())));
197 assertThat("Incorrect ethType match param value",
198 ethTypeParam.value().asReadOnlyBuffer().getShort(), is(equalTo(ethType)));
199 assertThat("Incorrect ethType match param mask",
200 ethTypeParam.mask().asReadOnlyBuffer().getShort(), is(equalTo(ETH_TYPE_MASK)));
Yi Tseng02c4c572018-01-22 17:52:10 -0800201 // FIXME: re-enable when P4Runtime priority handling will be moved out of transltion service
202 // see PiFlowRuleTranslatorImpl
203 // assertThat("Incorrect priority value",
204 // entry1.priority().get(), is(equalTo(MAX_PI_PRIORITY - rule1.priority())));
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200205 assertThat("Incorrect timeout value",
206 entry1.timeout(), is(equalTo(expectedTimeout)));
207
208 }
209
210 private static GroupBucket outputBucket(int portNum) {
211 ImmutableByteSequence paramVal = copyFrom(portNum);
Carmelo Casconeca94bcf2017-10-27 14:16:59 -0700212 PiActionParam param = new PiActionParam(ACT_PRM_PORT_ID, paramVal);
213 PiTableAction action = PiAction.builder().withId(ACT_SET_EGRESS_PORT_ID).withParameter(param).build();
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200214 TrafficTreatment treatment = DefaultTrafficTreatment.builder()
215 .add(Instructions.piTableAction(action))
216 .build();
217 return DefaultGroupBucket.createSelectGroupBucket(treatment);
218 }
219
220 private static PiActionGroupMember outputMember(int portNum)
221 throws ImmutableByteSequence.ByteSequenceTrimException {
Carmelo Casconeca94bcf2017-10-27 14:16:59 -0700222 PiActionParam param = new PiActionParam(ACT_PRM_PORT_ID, fit(copyFrom(portNum), PORT_BITWIDTH));
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200223 PiAction piAction = PiAction.builder()
Carmelo Casconeca94bcf2017-10-27 14:16:59 -0700224 .withId(ACT_SET_EGRESS_PORT_ID)
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200225 .withParameter(param).build();
226 return PiActionGroupMember.builder()
227 .withAction(piAction)
228 .withId(PiActionGroupMemberId.of(BASE_MEM_ID + portNum))
229 .withWeight(DEFAULT_MEMBER_WEIGHT)
230 .build();
231 }
232
233 /**
234 * Test add group with buckets.
235 */
236 @Test
237 public void testTranslateGroups() throws Exception {
238
Carmelo Cascone326ad2d2017-11-28 18:09:13 -0800239 PiActionGroup piGroup1 = PiGroupTranslatorImpl.translate(GROUP, pipeconf, null);
240 PiActionGroup piGroup2 = PiGroupTranslatorImpl.translate(GROUP, pipeconf, null);
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200241
242 new EqualsTester()
243 .addEqualityGroup(piGroup1, piGroup2)
244 .testEquals();
245
246 assertThat("Group ID must be equal",
247 piGroup1.id().id(), is(equalTo(GROUP_ID.id())));
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200248 assertThat("Action profile ID must be equal",
Carmelo Casconeca94bcf2017-10-27 14:16:59 -0700249 piGroup1.actionProfileId(), is(equalTo(ACT_PRF_WCMP_SELECTOR_ID)));
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200250
251 // members installed
252 Collection<PiActionGroupMember> members = piGroup1.members();
253 assertThat("The number of group members must be equal",
254 piGroup1.members().size(), is(expectedMembers.size()));
255 assertThat("Group members must be equal",
256 members.containsAll(expectedMembers) && expectedMembers.containsAll(members));
257 }
258}