aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts/generate_version_h
diff options
context:
space:
mode:
authorMatthew G Smith <mgsmith@netgate.com>2019-08-06 08:43:50 -0500
committerNeale Ranns <nranns@cisco.com>2019-08-15 10:15:32 +0000
commit5025d40a1134272ab57c3c3f10311e31a65cd63c (patch)
treef747e725d22e75295a1c946d0975dad1c01c8c23 /src/scripts/generate_version_h
parent531969ef614bdc15c45dae0f1b5e90afaf86eb7b (diff)
dpdk: ipsec tunnel support for ip6-in-ip4
Type: feature If an attempt was made to send an IPv6 packet over an IPv4 tunnel, the DPDK esp_encrypt did not complete setting up the crypto operation for a buffer, but still queued the crypto operations that were allocated. This results in a SEGV when attempting to dequeue them in dpdk-crypto-input. Allow IPv6 packets to be sent over a v4 tunnel when using the DPDK plugin esp crypto nodes. Change-Id: Ic9a4cd69b7fc06a17ab2f64ae806ec2ceacfef27 Signed-off-by: Matthew Smith <mgsmith@netgate.com>
Diffstat (limited to 'src/scripts/generate_version_h')
0 files changed, 0 insertions, 0 deletions
Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/*
 * 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.vpp.jvpp.nsh.test;

import java.util.concurrent.Future;
import java.util.Objects;

import io.fd.vpp.jvpp.JVpp;
import io.fd.vpp.jvpp.JVppRegistry;
import io.fd.vpp.jvpp.JVppRegistryImpl;
import io.fd.vpp.jvpp.VppCallbackException;
import io.fd.vpp.jvpp.VppJNIConnection;

import io.fd.vpp.jvpp.nsh.dto.*;
import io.fd.vpp.jvpp.nsh.callback.*;
import io.fd.vpp.jvpp.nsh.*;
import io.fd.vpp.jvpp.nsh.future.FutureJVppNshFacade;

/**
 * Tests the Nsh Jvpp wrapper (future API). Run using:
 * 
 * sudo java -cp path/to/jvpp-registry-16.09-SNAPSHOT.jar:path/to/nsh-sfc-16.09-SNAPSHOT.jar io.fd.vpp.jvpp.nsh.test.NshFutureApiTest
 */
public class NshFutureApiTest {

    public static void main(String[] args) throws Exception {
    	testFutureApi();
    }

    private static void testFutureApi() throws Exception {    	
        System.out.println("Testing Java future API for NSH plugin");
        JVppRegistry registry = new JVppRegistryImpl("NshFutureApiTest");
        JVpp jvpp = new JVppNshImpl();
        FutureJVppNshFacade jvppFacade = new FutureJVppNshFacade(registry, jvpp);

        
        testNshAddDelEntry(jvppFacade);
        testNshEntryDump(jvppFacade);

        System.out.println("Disconnecting...");
        registry.close();
        Thread.sleep(1000);
    }
    
    private static void testNshAddDelEntry(final FutureJVppNshFacade jvppFacade) throws Exception {
    	System.out.println("Sending NshAddDelEntry request...");
        final NshAddDelEntry request = new NshAddDelEntry();
        
        request.isAdd = 1;
        int nsp = 1;
    	int nsi = 2;
    	request.nspNsi = (nsp<<8) | nsi;
    	request.mdType = 1;
    	request.verOC = 0;
    	request.length = 6;
    	request.nextProtocol = 1;
        
    	final Future<NshAddDelEntryReply> replyFuture = jvppFacade.nshAddDelEntry(request).toCompletableFuture();
        final NshAddDelEntryReply reply = replyFuture.get();
        
        System.out.printf("Received NshAddDelEntryReply: context=%d\n", reply.context);
    }
    
    private static void testNshEntryDump(final FutureJVppNshFacade jvppFacade) throws Exception {
        System.out.println("Sending NshEntryDump request...");
    	final Future<NshEntryDetailsReplyDump> replyFuture = jvppFacade.nshEntryDump(new NshEntryDump()).toCompletableFuture();
        final NshEntryDetailsReplyDump reply = replyFuture.get();
        for (NshEntryDetails details : reply.nshEntryDetails) {
            Objects.requireNonNull(details, "reply.nshEntryDetails contains null element!");
        	System.out.printf("Received NshEntryDetails: context=%d, nspNsi=%d, mdType=%d, verOC=%d, length=%d, nextProtocol=%d\n",
        	    details.context, details.nspNsi, details.mdType, details.verOC, details.length, details.nextProtocol);
        }
    }
    
}