ipsec: IPSec protection for multi-point tunnel interfaces
[vpp.git] / src / vnet / teib / teib_api.c
1 /*
2  *------------------------------------------------------------------
3  * teib_api.c - teib api
4  *
5  * Copyright (c) 2016 Cisco and/or its affiliates.
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at:
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *------------------------------------------------------------------
18  */
19
20 #include <vnet/vnet.h>
21 #include <vlibmemory/api.h>
22
23 #include <vnet/api_errno.h>
24 #include <vnet/teib/teib.h>
25 #include <vnet/ip/ip_types_api.h>
26 #include <vnet/fib/fib_table.h>
27
28 /* define message IDs */
29 #include <vnet/format_fns.h>
30 #include <vnet/teib/teib.api_enum.h>
31 #include <vnet/teib/teib.api_types.h>
32
33 static u32 teib_base_msg_id;
34 #define REPLY_MSG_ID_BASE teib_base_msg_id
35
36 #include <vlibapi/api_helper_macros.h>
37
38 static void
39 vl_api_teib_entry_add_del_t_handler (vl_api_teib_entry_add_del_t * mp)
40 {
41   vl_api_teib_entry_add_del_reply_t *rmp;
42   ip46_address_t peer, nh;
43   int rv;
44
45   VALIDATE_SW_IF_INDEX ((&mp->entry));
46
47   ip_address_decode (&mp->entry.peer, &peer);
48   ip_address_decode (&mp->entry.nh, &nh);
49
50   if (mp->is_add)
51     rv = teib_entry_add (ntohl (mp->entry.sw_if_index), &peer,
52                          ntohl (mp->entry.nh_table_id), &nh);
53   else
54     rv = teib_entry_del (ntohl (mp->entry.sw_if_index), &peer);
55
56   BAD_SW_IF_INDEX_LABEL;
57
58   REPLY_MACRO (VL_API_TEIB_ENTRY_ADD_DEL_REPLY);
59 }
60
61 typedef struct vl_api_teib_send_t_
62 {
63   vl_api_registration_t *reg;
64   u32 context;
65 } vl_api_teib_send_t;
66
67 static walk_rc_t
68 vl_api_teib_send_one (index_t nei, void *arg)
69 {
70   vl_api_teib_details_t *mp;
71   vl_api_teib_send_t *ctx = arg;
72   const teib_entry_t *ne;
73   const fib_prefix_t *pfx;
74
75   mp = vl_msg_api_alloc_zero (sizeof (*mp));
76   mp->_vl_msg_id = ntohs (VL_API_TEIB_DETAILS + REPLY_MSG_ID_BASE);
77   mp->context = ctx->context;
78
79   ne = teib_entry_get (nei);
80   pfx = teib_entry_get_nh (ne);
81
82   ip_address_encode (teib_entry_get_peer (ne), IP46_TYPE_ANY,
83                      &mp->entry.peer);
84   ip_address_encode (&pfx->fp_addr, IP46_TYPE_ANY, &mp->entry.nh);
85   mp->entry.nh_table_id =
86     htonl (fib_table_get_table_id
87            (teib_entry_get_fib_index (ne), pfx->fp_proto));
88   mp->entry.sw_if_index = htonl (teib_entry_get_sw_if_index (ne));
89
90   vl_api_send_msg (ctx->reg, (u8 *) mp);
91
92   return (WALK_CONTINUE);
93 }
94
95 static void
96 vl_api_teib_dump_t_handler (vl_api_teib_dump_t * mp)
97 {
98   vl_api_registration_t *reg;
99
100   reg = vl_api_client_index_to_registration (mp->client_index);
101   if (!reg)
102     return;
103
104   vl_api_teib_send_t ctx = {
105     .reg = reg,
106     .context = mp->context,
107   };
108
109   teib_walk (vl_api_teib_send_one, &ctx);
110 }
111
112 /*
113  * teib_api_hookup
114  * Add vpe's API message handlers to the table.
115  * vlib has already mapped shared memory and
116  * added the client registration handlers.
117  * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
118  */
119 #include <vnet/teib/teib.api.c>
120
121 static clib_error_t *
122 teib_api_hookup (vlib_main_t * vm)
123 {
124   teib_base_msg_id = setup_message_id_table ();
125
126   return (NULL);
127 }
128
129 VLIB_API_INIT_FUNCTION (teib_api_hookup);
130
131 /*
132  * fd.io coding-style-patch-verification: ON
133  *
134  * Local Variables:
135  * eval: (c-set-style "gnu")
136  * End:
137  */