Port NSH plugin to VPP
[vpp.git] / src / plugins / nsh / nsh-md2-ioam / nsh_md2_ioam_api.c
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 /*
16  *-----------------------------------------------------------------------
17  * nsh_md2_ioam_api.c - iOAM for NSH/LISP-GPE related APIs to create
18  *               and maintain profiles
19  *-----------------------------------------------------------------------
20  */
21
22 #include <vnet/vnet.h>
23 #include <vlib/unix/plugin.h>
24 #include <vnet/plugin/plugin.h>
25 #include <nsh/nsh-md2-ioam/nsh_md2_ioam.h>
26
27 #include <vlibapi/api.h>
28 #include <vlibmemory/api.h>
29
30 /* define message structures */
31 #define vl_typedefs
32 #include <nsh/nsh.api.h>
33 #undef vl_typedefs
34
35 /* define generated endian-swappers */
36 #define vl_endianfun
37 #include <nsh/nsh.api.h>
38 #undef vl_endianfun
39
40 /* instantiate all the print functions we know about */
41 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
42 #define vl_printfun
43 #include <nsh/nsh.api.h>
44 #undef vl_printfun
45
46 u8 *nsh_trace_main = NULL;
47 static clib_error_t *
48 nsh_md2_ioam_init (vlib_main_t * vm)
49 {
50   nsh_md2_ioam_main_t *sm = &nsh_md2_ioam_main;
51   clib_error_t *error = 0;
52
53   nsh_trace_main =
54     (u8 *) vlib_get_plugin_symbol ("ioam_plugin.so", "trace_main");
55
56   if (!nsh_trace_main)
57     return error;
58
59   vec_new (nsh_md2_ioam_sw_interface_t, pool_elts (sm->sw_interfaces));
60   sm->dst_by_ip4 = hash_create_mem (0, sizeof (fib_prefix_t), sizeof (uword));
61
62   sm->dst_by_ip6 = hash_create_mem (0, sizeof (fib_prefix_t), sizeof (uword));
63
64   nsh_md2_ioam_interface_init ();
65
66   return error;
67 }
68
69 VLIB_INIT_FUNCTION (nsh_md2_ioam_init);
70
71 /*
72  * fd.io coding-style-patch-verification: ON
73  *
74  * Local Variables:
75  * eval: (c-set-style "gnu")
76  * End:
77  */