docs: Use newer Ubuntu LTS in tutorial
[vpp.git] / src / vnet / ipip / ipip_api.c
1 /*
2  * ipip_api.c - ipip api
3  *
4  * Copyright (c) 2018 Cisco and/or its affiliates.
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #include <vlibmemory/api.h>
19 #include <vnet/api_errno.h>
20 #include <vnet/fib/fib_table.h>
21 #include <vnet/interface.h>
22 #include <vnet/ipip/ipip.h>
23 #include <vnet/vnet.h>
24 #include <vnet/ip/ip_types_api.h>
25 #include <vnet/tunnel/tunnel_types_api.h>
26
27 #include <vnet/ipip/ipip.api_enum.h>
28 #include <vnet/ipip/ipip.api_types.h>
29
30 #define REPLY_MSG_ID_BASE im->msg_id_base
31 #include <vlibapi/api_helper_macros.h>
32
33 static void
34 vl_api_ipip_add_tunnel_t_handler (vl_api_ipip_add_tunnel_t * mp)
35 {
36   ipip_main_t *im = &ipip_main;
37   vl_api_ipip_add_tunnel_reply_t *rmp;
38   int rv = 0;
39   u32 fib_index, sw_if_index = ~0;
40   tunnel_encap_decap_flags_t flags;
41   ip46_address_t src, dst;
42   ip46_type_t itype[2];
43   tunnel_mode_t mode;
44
45   itype[0] = ip_address_decode (&mp->tunnel.src, &src);
46   itype[1] = ip_address_decode (&mp->tunnel.dst, &dst);
47
48   if (itype[0] != itype[1])
49     {
50       rv = VNET_API_ERROR_INVALID_PROTOCOL;
51       goto out;
52     }
53
54   if (ip46_address_is_equal (&src, &dst))
55     {
56       rv = VNET_API_ERROR_SAME_SRC_DST;
57       goto out;
58     }
59
60   rv = tunnel_encap_decap_flags_decode (mp->tunnel.flags, &flags);
61
62   if (rv)
63     goto out;
64
65   rv = tunnel_mode_decode (mp->tunnel.mode, &mode);
66
67   if (rv)
68     goto out;
69
70   fib_index = fib_table_find (fib_proto_from_ip46 (itype[0]),
71                               ntohl (mp->tunnel.table_id));
72
73   if (~0 == fib_index)
74     {
75       rv = VNET_API_ERROR_NO_SUCH_FIB;
76     }
77   else
78     {
79       rv = ipip_add_tunnel ((itype[0] == IP46_TYPE_IP6 ?
80                              IPIP_TRANSPORT_IP6 :
81                              IPIP_TRANSPORT_IP4),
82                             ntohl (mp->tunnel.instance), &src, &dst,
83                             fib_index, flags,
84                             ip_dscp_decode (mp->tunnel.dscp), mode,
85                             &sw_if_index);
86     }
87
88 out:
89   REPLY_MACRO2(VL_API_IPIP_ADD_TUNNEL_REPLY,
90   ({
91     rmp->sw_if_index = ntohl(sw_if_index);
92   }));
93 }
94
95 static void
96 vl_api_ipip_del_tunnel_t_handler (vl_api_ipip_del_tunnel_t * mp)
97 {
98   ipip_main_t *im = &ipip_main;
99   vl_api_ipip_del_tunnel_reply_t *rmp;
100
101   int rv = ipip_del_tunnel (ntohl (mp->sw_if_index));
102
103   REPLY_MACRO (VL_API_IPIP_DEL_TUNNEL_REPLY);
104 }
105
106 static vl_api_tunnel_mode_t
107 ipip_tunnel_mode_encode (ipip_mode_t mode)
108 {
109   switch (mode)
110     {
111     case IPIP_MODE_P2P:
112       return TUNNEL_API_MODE_P2P;
113     case IPIP_MODE_P2MP:
114       return TUNNEL_API_MODE_MP;
115     case IPIP_MODE_6RD:
116       return TUNNEL_API_MODE_P2P;
117     default:
118       return TUNNEL_API_MODE_P2P;
119     }
120 }
121
122 static void
123 send_ipip_tunnel_details (ipip_tunnel_t * t, vl_api_ipip_tunnel_dump_t * mp)
124 {
125   ipip_main_t *im = &ipip_main;
126   vl_api_ipip_tunnel_details_t *rmp;
127   bool is_ipv6 = t->transport == IPIP_TRANSPORT_IP6 ? true : false;
128   ip46_type_t ip_type = is_ipv6 ? IP46_TYPE_IP6 : IP46_TYPE_IP4;
129   fib_table_t *ft;
130
131   ft = fib_table_get (t->fib_index,
132                       (is_ipv6 ? FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4));
133
134   REPLY_MACRO_DETAILS2 (
135     VL_API_IPIP_TUNNEL_DETAILS, ({
136       ip_address_encode (&t->tunnel_src, ip_type, &rmp->tunnel.src);
137       ip_address_encode (&t->tunnel_dst, ip_type, &rmp->tunnel.dst);
138       rmp->tunnel.table_id = htonl (ft->ft_table_id);
139       rmp->tunnel.instance = htonl (t->user_instance);
140       rmp->tunnel.sw_if_index = htonl (t->sw_if_index);
141       rmp->tunnel.dscp = ip_dscp_encode (t->dscp);
142       rmp->tunnel.flags = tunnel_encap_decap_flags_encode (t->flags);
143       rmp->tunnel.mode = ipip_tunnel_mode_encode (t->mode);
144     }));
145 }
146
147 static void
148 vl_api_ipip_tunnel_dump_t_handler (vl_api_ipip_tunnel_dump_t * mp)
149 {
150   ipip_main_t *im = &ipip_main;
151   ipip_tunnel_t *t;
152   u32 sw_if_index;
153
154   sw_if_index = ntohl (mp->sw_if_index);
155
156   if (sw_if_index == ~0)
157     {
158     pool_foreach (t, im->tunnels)
159      {
160       send_ipip_tunnel_details(t, mp);
161     }
162     }
163   else
164     {
165       t = ipip_tunnel_db_find_by_sw_if_index (sw_if_index);
166       if (t)
167         send_ipip_tunnel_details (t, mp);
168     }
169 }
170
171 static void
172 vl_api_ipip_6rd_add_tunnel_t_handler (vl_api_ipip_6rd_add_tunnel_t * mp)
173 {
174   ipip_main_t *im = &ipip_main;
175   vl_api_ipip_6rd_add_tunnel_reply_t *rmp;
176   u32 sixrd_tunnel_index, ip4_fib_index, ip6_fib_index;
177   int rv;
178
179   sixrd_tunnel_index = ~0;
180   ip4_fib_index = fib_table_find (FIB_PROTOCOL_IP4, ntohl (mp->ip4_table_id));
181   ip6_fib_index = fib_table_find (FIB_PROTOCOL_IP6, ntohl (mp->ip6_table_id));
182
183   if (~0 == ip4_fib_index || ~0 == ip6_fib_index)
184
185     {
186       rv = VNET_API_ERROR_NO_SUCH_FIB;
187     }
188   else
189     {
190       rv = sixrd_add_tunnel ((ip6_address_t *) & mp->ip6_prefix.address,
191                              mp->ip6_prefix.len,
192                              (ip4_address_t *) & mp->ip4_prefix.address,
193                              mp->ip4_prefix.len,
194                              (ip4_address_t *) & mp->ip4_src,
195                              mp->security_check,
196                              ip4_fib_index, ip6_fib_index,
197                              &sixrd_tunnel_index);
198     }
199
200   REPLY_MACRO2 (VL_API_IPIP_6RD_ADD_TUNNEL_REPLY,
201   ({
202     rmp->sw_if_index = htonl (sixrd_tunnel_index);
203   }));
204 }
205
206 static void
207 vl_api_ipip_6rd_del_tunnel_t_handler (vl_api_ipip_6rd_del_tunnel_t * mp)
208 {
209   ipip_main_t *im = &ipip_main;
210   vl_api_ipip_6rd_del_tunnel_reply_t *rmp;
211
212   int rv = sixrd_del_tunnel (ntohl (mp->sw_if_index));
213
214   REPLY_MACRO (VL_API_IPIP_6RD_DEL_TUNNEL_REPLY);
215 }
216
217 /*
218  * ipip_api_hookup
219  * Add vpe's API message handlers to the table.
220  * vlib has already mapped shared memory and
221  * added the client registration handlers.
222  * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
223  */
224 /* API definitions */
225 #include <vnet/format_fns.h>
226 #include <vnet/ipip/ipip.api.c>
227
228 static clib_error_t *
229 ipip_api_hookup (vlib_main_t * vm)
230 {
231   ipip_main_t *im = &ipip_main;
232
233   /*
234    * Set up the (msg_name, crc, message-id) table
235    */
236   im->msg_id_base = setup_message_id_table ();
237
238   return 0;
239 }
240
241 VLIB_API_INIT_FUNCTION (ipip_api_hookup);
242
243 /*
244  * fd.io coding-style-patch-verification: ON
245  *
246  * Local Variables:
247  * eval: (c-set-style "gnu")
248  * End:
249  */