lishuai
Committed by Gerrit Code Review

[ONOS-3478] Add the implementation of SnatService interface.

Change-Id: Idae0300b8254a01e8e49abd77f9abd13c4b357fe
1 +/*
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 + */
16 +package org.onosproject.vtn.table.impl;
17 +
18 +import static com.google.common.base.Preconditions.checkNotNull;
19 +import static org.slf4j.LoggerFactory.getLogger;
20 +
21 +import org.onlab.osgi.DefaultServiceDirectory;
22 +import org.onlab.osgi.ServiceDirectory;
23 +import org.onlab.packet.Ethernet;
24 +import org.onlab.packet.IpAddress;
25 +import org.onlab.packet.IpPrefix;
26 +import org.onlab.packet.MacAddress;
27 +import org.onosproject.core.ApplicationId;
28 +import org.onosproject.net.DeviceId;
29 +import org.onosproject.net.flow.DefaultTrafficSelector;
30 +import org.onosproject.net.flow.DefaultTrafficTreatment;
31 +import org.onosproject.net.flow.TrafficSelector;
32 +import org.onosproject.net.flow.TrafficTreatment;
33 +import org.onosproject.net.flowobjective.DefaultForwardingObjective;
34 +import org.onosproject.net.flowobjective.FlowObjectiveService;
35 +import org.onosproject.net.flowobjective.ForwardingObjective;
36 +import org.onosproject.net.flowobjective.ForwardingObjective.Flag;
37 +import org.onosproject.net.flowobjective.Objective;
38 +import org.onosproject.vtn.table.SnatService;
39 +import org.onosproject.vtnrsc.SegmentationId;
40 +import org.slf4j.Logger;
41 +
42 +/**
43 + * Provides implementation of SnatService.
44 + */
45 +public class SnatServiceImpl implements SnatService {
46 + private final Logger log = getLogger(getClass());
47 +
48 + private static final int SNAT_PRIORITY = 0xffff;
49 + private static final int PREFIC_LENGTH = 32;
50 +
51 + private final FlowObjectiveService flowObjectiveService;
52 + private final ApplicationId appId;
53 +
54 + /**
55 + * Construct a SnatServiceImpl object.
56 + *
57 + * @param appId the application id of vtn
58 + */
59 + public SnatServiceImpl(ApplicationId appId) {
60 + this.appId = checkNotNull(appId, "ApplicationId can not be null");
61 + ServiceDirectory serviceDirectory = new DefaultServiceDirectory();
62 + this.flowObjectiveService = serviceDirectory.get(FlowObjectiveService.class);
63 + }
64 +
65 + @Override
66 + public void programRules(DeviceId deviceId, SegmentationId matchVni,
67 + IpAddress srcIP, MacAddress ethDst,
68 + MacAddress ethSrc, IpAddress ipSrc,
69 + SegmentationId actionVni, Objective.Operation type) {
70 + TrafficSelector selector = DefaultTrafficSelector.builder()
71 + .matchEthType(Ethernet.TYPE_IPV4)
72 + .matchTunnelId(Long.parseLong(matchVni.segmentationId()))
73 + .matchIPSrc(IpPrefix.valueOf(srcIP, PREFIC_LENGTH)).build();
74 +
75 + TrafficTreatment.Builder treatment = DefaultTrafficTreatment.builder();
76 + treatment.setEthDst(ethDst).setEthSrc(ethSrc).setIpSrc(ipSrc)
77 + .setTunnelId(Long.parseLong(actionVni.segmentationId()));
78 + ForwardingObjective.Builder objective = DefaultForwardingObjective
79 + .builder().withTreatment(treatment.build())
80 + .withSelector(selector).fromApp(appId).withFlag(Flag.SPECIFIC)
81 + .withPriority(SNAT_PRIORITY);
82 + if (type.equals(Objective.Operation.ADD)) {
83 + log.debug("RouteRules-->ADD");
84 + flowObjectiveService.forward(deviceId, objective.add());
85 + } else {
86 + log.debug("RouteRules-->REMOVE");
87 + flowObjectiveService.forward(deviceId, objective.remove());
88 + }
89 + }
90 +}