Bug 2460 - Converting ipv4 to ipv4Prefix requires mask
[ovsdb.git] / openstack / net-virt-providers / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / providers / openflow13 / services / OutboundNatService.java
1 /*
2  * Copyright (C) 2014 Red Hat, Inc.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Authors : Madhu Venugopal, Dave Tucker
9  */
10
11 package org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13.services;
12
13 import java.math.BigInteger;
14 import java.net.InetAddress;
15 import java.util.List;
16
17 import org.opendaylight.controller.sal.core.Node;
18 import org.opendaylight.controller.sal.utils.Status;
19 import org.opendaylight.controller.sal.utils.StatusCode;
20 import org.opendaylight.ovsdb.openstack.netvirt.api.Action;
21 import org.opendaylight.ovsdb.openstack.netvirt.api.Constants;
22 import org.opendaylight.ovsdb.openstack.netvirt.api.OutboundNatProvider;
23 import org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13.AbstractServiceInstance;
24 import org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13.OF13Provider;
25 import org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13.Service;
26 import org.opendaylight.ovsdb.utils.mdsal.openflow.InstructionUtils;
27 import org.opendaylight.ovsdb.utils.mdsal.openflow.MatchUtils;
28 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.Ipv4Prefix;
29 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowId;
30 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.table.FlowBuilder;
31 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.table.FlowKey;
32 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.flow.InstructionsBuilder;
33 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.flow.MatchBuilder;
34 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.instruction.list.Instruction;
35 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.instruction.list.InstructionBuilder;
36 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.instruction.list.InstructionKey;
37 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.NodeBuilder;
38
39 import com.google.common.collect.Lists;
40
41 public class OutboundNatService extends AbstractServiceInstance implements OutboundNatProvider {
42     public OutboundNatService() {
43         super(Service.OUTBOUND_NAT);
44     }
45
46     public OutboundNatService(Service service) {
47         super(service);
48     }
49
50     @Override
51     public Status programIpRewriteRule(Node node, Long dpid, String segmentationId, InetAddress matchAddress,
52                                        InetAddress rewriteAddress, Action action) {
53         String nodeName = Constants.OPENFLOW_NODE_PREFIX + dpid;
54
55         MatchBuilder matchBuilder = new MatchBuilder();
56         NodeBuilder nodeBuilder = OF13Provider.createNodeBuilder(nodeName);
57
58         // Instructions List Stores Individual Instructions
59         InstructionsBuilder isb = new InstructionsBuilder();
60         List<Instruction> instructions = Lists.newArrayList();
61         InstructionBuilder ib = new InstructionBuilder();
62
63         MatchUtils.createTunnelIDMatch(matchBuilder, new BigInteger(segmentationId));
64         MatchUtils.createDstL3IPv4Match(matchBuilder,
65                                         MatchUtils.iPv4PrefixFromIPv4Address(matchAddress.getHostAddress()));
66
67         // Set Dest IP address
68         InstructionUtils.createNwDstInstructions(ib,
69                                                  MatchUtils.iPv4PrefixFromIPv4Address(rewriteAddress.getHostAddress()));
70         ib.setOrder(0);
71         ib.setKey(new InstructionKey(0));
72         instructions.add(ib.build());
73
74         // Goto Next Table
75         ib = getMutablePipelineInstructionBuilder();
76         ib.setOrder(1);
77         ib.setKey(new InstructionKey(1));
78         instructions.add(ib.build());
79
80         FlowBuilder flowBuilder = new FlowBuilder();
81         flowBuilder.setMatch(matchBuilder.build());
82         flowBuilder.setInstructions(isb.setInstruction(instructions).build());
83
84         String flowId = "OutboundNAT_" + rewriteAddress.getHostAddress();
85         flowBuilder.setId(new FlowId(flowId));
86         FlowKey key = new FlowKey(new FlowId(flowId));
87         flowBuilder.setBarrier(true);
88         flowBuilder.setTableId(this.getTable());
89         flowBuilder.setKey(key);
90         flowBuilder.setPriority(1024);
91         flowBuilder.setFlowName(flowId);
92         flowBuilder.setHardTimeout(0);
93         flowBuilder.setIdleTimeout(0);
94         writeFlow(flowBuilder, nodeBuilder);
95
96         if (action.equals(Action.ADD)) {
97             writeFlow(flowBuilder, nodeBuilder);
98         } else {
99             removeFlow(flowBuilder, nodeBuilder);
100         }
101
102         // ToDo: WriteFlow/RemoveFlow should return something we can use to check success
103         return new Status(StatusCode.SUCCESS);
104     }
105
106     @Override
107     public Status programIpRewriteExclusion(Node node, Long dpid, String segmentationId, String excludedCidr,
108                                             Action action) {
109         String nodeName = Constants.OPENFLOW_NODE_PREFIX + dpid;
110
111         MatchBuilder matchBuilder = new MatchBuilder();
112         NodeBuilder nodeBuilder = OF13Provider.createNodeBuilder(nodeName);
113
114         // Instructions List Stores Individual Instructions
115         InstructionsBuilder isb = new InstructionsBuilder();
116         List<Instruction> instructions = Lists.newArrayList();
117         InstructionBuilder ib;
118
119         MatchUtils.createTunnelIDMatch(matchBuilder, new BigInteger(segmentationId));
120         MatchUtils.createDstL3IPv4Match(matchBuilder, new Ipv4Prefix(excludedCidr));
121
122         // Goto Next Table
123         ib = getMutablePipelineInstructionBuilder();
124         ib.setOrder(0);
125         ib.setKey(new InstructionKey(0));
126         instructions.add(ib.build());
127
128         FlowBuilder flowBuilder = new FlowBuilder();
129         flowBuilder.setMatch(matchBuilder.build());
130         flowBuilder.setInstructions(isb.setInstruction(instructions).build());
131
132         String flowId = "OutboundNATExclusion_" + excludedCidr;
133         flowBuilder.setId(new FlowId(flowId));
134         FlowKey key = new FlowKey(new FlowId(flowId));
135         flowBuilder.setBarrier(true);
136         flowBuilder.setTableId(this.getTable());
137         flowBuilder.setKey(key);
138         flowBuilder.setPriority(1024);
139         flowBuilder.setFlowName(flowId);
140         flowBuilder.setHardTimeout(0);
141         flowBuilder.setIdleTimeout(0);
142         writeFlow(flowBuilder, nodeBuilder);
143
144         if (action.equals(Action.ADD)) {
145             writeFlow(flowBuilder, nodeBuilder);
146         } else {
147             removeFlow(flowBuilder, nodeBuilder);
148         }
149
150         // ToDo: WriteFlow/RemoveFlow should return something we can use to check success
151         return new Status(StatusCode.SUCCESS);
152     }
153 }