ipsec: IPSec protection for multi-point tunnel interfaces
[vpp.git] / src / vnet / ip / ip_types_api.c
1 /*
2  * Copyright (c) 2018 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 #include <vlibapi/api_types.h>
17 #include <vnet/ip/ip_types_api.h>
18
19 #define vl_typedefs             /* define message structures */
20 #include <vnet/vnet_all_api_h.h>
21 #undef vl_typedefs
22
23 #define vl_endianfun            /* define message structures */
24 #include <vnet/vnet_all_api_h.h>
25 #undef vl_endianfun
26
27 /* instantiate all the print functions we know about */
28 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
29 #define vl_printfun
30 #include <vnet/vnet_all_api_h.h>
31 #undef vl_printfun
32
33 int
34 ip_address_family_decode (int _af, ip_address_family_t * out)
35 {
36   vl_api_address_family_t af = clib_host_to_net_u32 (_af);
37
38   switch (af)
39     {
40     case ADDRESS_IP4:
41       *out = AF_IP4;
42       return (0);
43     case ADDRESS_IP6:
44       *out = AF_IP6;
45       return (0);
46     }
47   return (-1);
48 }
49
50 int
51 ip_address_family_encode (ip_address_family_t af)
52 {
53   switch (af)
54     {
55     case AF_IP4:
56       return (clib_host_to_net_u32 (ADDRESS_IP4));
57     case AF_IP6:
58       return (clib_host_to_net_u32 (ADDRESS_IP6));
59     }
60
61   ASSERT (0);
62   return (clib_host_to_net_u32 (ADDRESS_IP4));
63 }
64
65 int
66 ip_proto_decode (int _ipp, ip_protocol_t * out)
67 {
68   ip_protocol_t ipp = clib_host_to_net_u32 (_ipp);
69
70   switch (ipp)
71     {
72 #define ip_protocol(n,s)                       \
73       case IP_PROTOCOL_##s:                    \
74         *out = IP_PROTOCOL_##s;                \
75         return (0);
76 #include "protocols.def"
77 #undef ip_protocol
78     }
79   return (-1);
80 }
81
82 int
83 ip_proto_encode (ip_protocol_t ipp)
84 {
85   switch (ipp)
86     {
87 #define ip_protocol(n,s)                                \
88       case IP_PROTOCOL_##s:                             \
89         return (clib_host_to_net_u32 (IP_PROTOCOL_##s));
90 #include "protocols.def"
91 #undef ip_protocol
92     }
93
94   ASSERT (0);
95   return (clib_host_to_net_u32 (IP_API_PROTO_TCP));
96 }
97
98 ip_dscp_t
99 ip_dscp_decode (u8 in)
100 {
101   return ((ip_dscp_t) in);
102 }
103
104 u8
105 ip_dscp_encode (ip_dscp_t dscp)
106 {
107   return (dscp);
108 }
109
110 void
111 ip6_address_encode (const ip6_address_t * in, vl_api_ip6_address_t out)
112 {
113   clib_memcpy (out, in, sizeof (*in));
114 }
115
116 void
117 ip6_address_decode (const vl_api_ip6_address_t in, ip6_address_t * out)
118 {
119   clib_memcpy (out, in, sizeof (*out));
120 }
121
122 void
123 ip4_address_encode (const ip4_address_t * in, vl_api_ip4_address_t out)
124 {
125   clib_memcpy (out, in, sizeof (*in));
126 }
127
128 void
129 ip4_address_decode (const vl_api_ip4_address_t in, ip4_address_t * out)
130 {
131   clib_memcpy (out, in, sizeof (*out));
132 }
133
134 static ip46_type_t
135 ip_address_union_decode (const vl_api_address_union_t * in,
136                          vl_api_address_family_t af, ip46_address_t * out)
137 {
138   ip46_type_t type;
139
140   switch (clib_net_to_host_u32 (af))
141     {
142     case ADDRESS_IP4:
143       clib_memset (out, 0, sizeof (*out));
144       clib_memcpy (&out->ip4, &in->ip4, sizeof (out->ip4));
145       type = IP46_TYPE_IP4;
146       break;
147     case ADDRESS_IP6:
148       clib_memcpy (&out->ip6, &in->ip6, sizeof (out->ip6));
149       type = IP46_TYPE_IP6;
150       break;
151     default:
152       ASSERT (!"Unknown address family in API address type");
153       type = IP46_TYPE_ANY;
154       break;
155     }
156
157   return type;
158 }
159
160 ip46_type_t
161 ip_address_decode (const vl_api_address_t * in, ip46_address_t * out)
162 {
163   return (ip_address_union_decode (&in->un, in->af, out));
164 }
165
166 void
167 ip_address_decode2 (const vl_api_address_t * in, ip_address_t * out)
168 {
169   switch (clib_net_to_host_u32 (in->af))
170     {
171     case ADDRESS_IP4:
172       clib_memset (out, 0, sizeof (*out));
173       clib_memcpy (&ip_addr_v4 (out), &in->un.ip4, sizeof (ip_addr_v4 (out)));
174       out->version = AF_IP4;
175       break;
176     case ADDRESS_IP6:
177       clib_memcpy (&ip_addr_v6 (out), &in->un.ip6, sizeof (ip_addr_v6 (out)));
178       out->version = AF_IP6;
179       break;
180     default:
181       ASSERT (!"Unknown address family in API address type");
182       break;
183     }
184 }
185
186 static void
187 ip_address_union_encode (const ip46_address_t * in,
188                          vl_api_address_family_t af,
189                          vl_api_address_union_t * out)
190 {
191   if (ADDRESS_IP6 == clib_net_to_host_u32 (af))
192     ip6_address_encode (&in->ip6, out->ip6);
193   else
194     ip4_address_encode (&in->ip4, out->ip4);
195 }
196
197 void
198 ip_address_encode (const ip46_address_t * in,
199                    ip46_type_t type, vl_api_address_t * out)
200 {
201   switch (type)
202     {
203     case IP46_TYPE_IP4:
204       out->af = clib_net_to_host_u32 (ADDRESS_IP4);
205       break;
206     case IP46_TYPE_IP6:
207       out->af = clib_net_to_host_u32 (ADDRESS_IP6);
208       break;
209     case IP46_TYPE_ANY:
210       if (ip46_address_is_ip4 (in))
211         out->af = clib_net_to_host_u32 (ADDRESS_IP4);
212       else
213         out->af = clib_net_to_host_u32 (ADDRESS_IP6);
214       break;
215     }
216   ip_address_union_encode (in, out->af, &out->un);
217 }
218
219 void
220 ip_address_encode2 (const ip_address_t * in, vl_api_address_t * out)
221 {
222   switch (in->version)
223     {
224     case AF_IP4:
225       out->af = clib_net_to_host_u32 (ADDRESS_IP4);
226       ip4_address_encode (&in->ip.v4, out->un.ip4);
227       break;
228     case AF_IP6:
229       out->af = clib_net_to_host_u32 (ADDRESS_IP6);
230       ip6_address_encode (&in->ip.v6, out->un.ip6);
231       break;
232     }
233 }
234
235 void
236 ip_prefix_decode (const vl_api_prefix_t * in, fib_prefix_t * out)
237 {
238   switch (clib_net_to_host_u32 (in->address.af))
239     {
240     case ADDRESS_IP4:
241       out->fp_proto = FIB_PROTOCOL_IP4;
242       break;
243     case ADDRESS_IP6:
244       out->fp_proto = FIB_PROTOCOL_IP6;
245       break;
246     }
247   out->fp_len = in->len;
248   out->___fp___pad = 0;
249   ip_address_decode (&in->address, &out->fp_addr);
250 }
251
252 void
253 ip_prefix_encode (const fib_prefix_t * in, vl_api_prefix_t * out)
254 {
255   out->len = in->fp_len;
256   ip_address_encode (&in->fp_addr,
257                      fib_proto_to_ip46 (in->fp_proto), &out->address);
258 }
259
260 void
261 ip_mprefix_encode (const mfib_prefix_t * in, vl_api_mprefix_t * out)
262 {
263   out->af = (FIB_PROTOCOL_IP6 == in->fp_proto ? ADDRESS_IP6 : ADDRESS_IP4);
264   out->af = clib_host_to_net_u32 (out->af);
265   out->grp_address_length = clib_host_to_net_u16 (in->fp_len);
266
267   ip_address_union_encode (&in->fp_grp_addr, out->af, &out->grp_address);
268   ip_address_union_encode (&in->fp_src_addr, out->af, &out->src_address);
269 }
270
271 void
272 ip_mprefix_decode (const vl_api_mprefix_t * in, mfib_prefix_t * out)
273 {
274   out->fp_proto = (ADDRESS_IP6 == clib_net_to_host_u32 (in->af) ?
275                    FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4);
276   out->fp_len = clib_net_to_host_u16 (in->grp_address_length);
277   out->___fp___pad = 0;
278
279   ip_address_union_decode (&in->grp_address, in->af, &out->fp_grp_addr);
280   ip_address_union_decode (&in->src_address, in->af, &out->fp_src_addr);
281
282   if (!ip46_address_is_zero (&out->fp_src_addr))
283     out->fp_len = (out->fp_proto == FIB_PROTOCOL_IP6 ? 256 : 64);
284 }
285
286 /*
287  * fd.io coding-style-patch-verification: ON
288  *
289  * Local Variables:
290  * eval: (c-set-style "gnu")
291  * End:
292  */