summaryrefslogtreecommitdiffstats
path: root/nat/nat2vpp/src/main/java/io/fd/hc2vpp/nat/read/ExternalIpPoolCustomizer.java
blob: 451c694d1329f733cb9d9830f00743ad37188d53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/*
 * Copyright (c) 2016 Cisco and/or its affiliates.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package io.fd.hc2vpp.nat.read;

import static com.google.common.base.Preconditions.checkNotNull;

import io.fd.hc2vpp.common.translate.util.Ipv4Translator;
import io.fd.hc2vpp.common.translate.util.JvppReplyConsumer;
import io.fd.honeycomb.translate.read.ReadContext;
import io.fd.honeycomb.translate.read.ReadFailedException;
import io.fd.honeycomb.translate.spi.read.Initialized;
import io.fd.honeycomb.translate.spi.read.InitializingListReaderCustomizer;
import io.fd.honeycomb.translate.util.RWUtils;
import io.fd.honeycomb.translate.util.read.cache.DumpCacheManager;
import io.fd.vpp.jvpp.snat.dto.Nat64PoolAddrDetails;
import io.fd.vpp.jvpp.snat.dto.Nat64PoolAddrDetailsReplyDump;
import io.fd.vpp.jvpp.snat.dto.Nat64PoolAddrDump;
import io.fd.vpp.jvpp.snat.dto.SnatAddressDetails;
import io.fd.vpp.jvpp.snat.dto.SnatAddressDetailsReplyDump;
import io.fd.vpp.jvpp.snat.dto.SnatAddressDump;
import io.fd.vpp.jvpp.snat.future.FutureJVppSnatFacade;
import java.util.Collections;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.LongStream;
import javax.annotation.Nonnull;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Prefix;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.nat.rev150908.nat.parameters.ExternalIpAddressPool;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.nat.rev150908.nat.parameters.ExternalIpAddressPoolBuilder;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.nat.rev150908.nat.parameters.ExternalIpAddressPoolKey;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.nat.rev150908.nat.state.nat.instances.NatInstance;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.nat.rev150908.nat.state.nat.instances.NatInstanceKey;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.nat.rev150908.nat.state.nat.instances.nat.instance.NatCurrentConfigBuilder;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.vpp.nat.rev170804.ExternalIpAddressPoolStateAugmentation;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.vpp.nat.rev170804.ExternalIpAddressPoolStateAugmentationBuilder;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.vpp.nat.rev170804.NatPoolType;
import org.opendaylight.yangtools.concepts.Builder;
import org.opendaylight.yangtools.yang.binding.DataObject;
import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

final class ExternalIpPoolCustomizer implements
        InitializingListReaderCustomizer<ExternalIpAddressPool, ExternalIpAddressPoolKey, ExternalIpAddressPoolBuilder>,
        JvppReplyConsumer, Ipv4Translator {

    private static final Logger LOG = LoggerFactory.getLogger(ExternalIpPoolCustomizer.class);

    private final DumpCacheManager<SnatAddressDetailsReplyDump, Void> nat44DumpMgr;
    private final DumpCacheManager<Nat64PoolAddrDetailsReplyDump, Void> nat64DumpMgr;

    ExternalIpPoolCustomizer(@Nonnull final FutureJVppSnatFacade jvppSnat) {
        checkNotNull(jvppSnat, "jvppSnat should not be null");
        this.nat44DumpMgr = new DumpCacheManager.DumpCacheManagerBuilder<SnatAddressDetailsReplyDump, Void>()
                .withExecutor((id, params) -> getReplyForRead(jvppSnat.snatAddressDump(new SnatAddressDump()).toCompletableFuture(), id))
                .acceptOnly(SnatAddressDetailsReplyDump.class)
                .build();
        this.nat64DumpMgr = new DumpCacheManager.DumpCacheManagerBuilder<Nat64PoolAddrDetailsReplyDump, Void>()
                .withExecutor((id, params) -> getReplyForRead(jvppSnat.nat64PoolAddrDump(new Nat64PoolAddrDump()).toCompletableFuture(), id))
                .acceptOnly(Nat64PoolAddrDetailsReplyDump.class)
                .build();
    }

    private static void setPoolType(@Nonnull final ExternalIpAddressPoolBuilder builder, final NatPoolType poolType) {
        builder.addAugmentation(ExternalIpAddressPoolStateAugmentation.class,
                new ExternalIpAddressPoolStateAugmentationBuilder().setPoolType(poolType).build());
    }

    static InstanceIdentifier<ExternalIpAddressPool> getCfgId(final @Nonnull InstanceIdentifier<ExternalIpAddressPool> id) {
        return NatInstanceCustomizer.getCfgId(RWUtils.cutId(id, NatInstance.class))
                .child(ExternalIpAddressPool.class, id.firstKeyOf(ExternalIpAddressPool.class));
    }

    @Nonnull
    @Override
    public ExternalIpAddressPoolBuilder getBuilder(@Nonnull final InstanceIdentifier<ExternalIpAddressPool> id) {
        return new ExternalIpAddressPoolBuilder();
    }

    @Override
    public void readCurrentAttributes(@Nonnull final InstanceIdentifier<ExternalIpAddressPool> id,
                                      @Nonnull final ExternalIpAddressPoolBuilder builder,
                                      @Nonnull final ReadContext ctx) throws ReadFailedException {
        LOG.trace("Reading current attributes for external IP pool: {}", id);

        final Long poolId = id.firstKeyOf(ExternalIpAddressPool.class).getPoolId();
        final List<SnatAddressDetails> nat44Details =
                nat44DumpMgr.getDump(id, ctx.getModificationCache(), null)
                        .or(new SnatAddressDetailsReplyDump()).snatAddressDetails;
        final int nat44PoolCount = nat44Details.size();

        // Uses ID<->address mapping as defined by getAllIds (nat44 mappings go before nat64):
        if (poolId < nat44PoolCount) {
            final SnatAddressDetails detail = nat44Details.get(Math.toIntExact(poolId));
            readPoolIp(builder, detail.ipAddress);
            setPoolType(builder, NatPoolType.Nat44);
        } else {
            final List<Nat64PoolAddrDetails> nat64Details = nat64DumpMgr.getDump(id, ctx.getModificationCache(), null)
                    .or(new Nat64PoolAddrDetailsReplyDump()).nat64PoolAddrDetails;
            final int nat64PoolCount = nat64Details.size();
            final int nat64PoolPosition = Math.toIntExact(poolId) - nat44PoolCount;
            if (nat64PoolPosition < nat64PoolCount) {
                final Nat64PoolAddrDetails detail = nat64Details.get(nat64PoolPosition);
                readPoolIp(builder, detail.address);
                setPoolType(builder, NatPoolType.Nat64);
            } else {
                // Address pool for given ID is missing (legal state).
                // Pool ID is computed based on data obtained by nat44 & nat64 dumps (see getAllIds for more info).
                // IP address might get different poolId in two consecutive reads even if it was not modified in between.
                LOG.trace("External IP pool: {} not found (nat44PoolCount={}, nat64PoolCount={})", id, nat44PoolCount, nat64PoolCount);
                return;
            }
        }

        builder.setPoolId(poolId);
        LOG.trace("External IP pool: {}. Read as: {}", id, builder);
    }

    private void readPoolIp(@Nonnull final ExternalIpAddressPoolBuilder builder, @Nonnull final byte[] address) {
        builder.setExternalIpPool(new Ipv4Prefix(arrayToIpv4AddressNoZone(address).getValue() + "/32"));
    }

    @Nonnull
    @Override
    public List<ExternalIpAddressPoolKey> getAllIds(@Nonnull final InstanceIdentifier<ExternalIpAddressPool> id,
                                                    @Nonnull final ReadContext ctx) throws ReadFailedException {
        final NatInstanceKey natKey = id.firstKeyOf(NatInstance.class);
        if (!natKey.equals(NatInstanceCustomizer.DEFAULT_VRF_ID)) {
            // IP Pools are not vrf aware ... so they are only visible under default vrf (nat-instance)
            return Collections.emptyList();
        }

        LOG.trace("Listing IDs for all external IP pools within nat-instance(vrf):{}", natKey);

        // Since VPP returns every single (unordered) address instead of address range,
        // there is no way to determine what the original ranges were when writing the data into VPP.

        // That's why the write and read is not symmetrical in terms of data structure, instead,
        // this customizer also returns every single address as a 32 prefix and assigns an artificial key to them

        long addressCount = nat44DumpMgr.getDump(id, ctx.getModificationCache(), null)
                .or(new SnatAddressDetailsReplyDump()).snatAddressDetails.stream()
                .count();

        // The ietf-nat model groups address pools for Nat44 and Nat64 under the same list,
        // but VPP uses different APIs, so we need an other dump:

        addressCount += nat64DumpMgr.getDump(id, ctx.getModificationCache(), null)
                .or(new Nat64PoolAddrDetailsReplyDump()).nat64PoolAddrDetails.stream()
                .count();

        final List<ExternalIpAddressPoolKey> ids = LongStream.range(0, addressCount)
                .mapToObj(ExternalIpAddressPoolKey::new)
                .collect(Collectors.toList());

        LOG.trace("List of external IP pool ids: {}", ids);
        return ids;
    }

    @Override
    public void merge(@Nonnull final Builder<? extends DataObject> builder,
                      @Nonnull final List<ExternalIpAddressPool> readData) {
        ((NatCurrentConfigBuilder) builder).setExternalIpAddressPool(readData);
    }

    @Override
    public Initialized<ExternalIpAddressPool> init(
            @Nonnull final InstanceIdentifier<ExternalIpAddressPool> id,
            @Nonnull final ExternalIpAddressPool readValue,
            @Nonnull final ReadContext ctx) {
        return Initialized.create(getCfgId(id), readValue);
    }
}