dhcp ip: DSCP settings for transmitted DHCP packets
[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 (!"Unkown 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 static void
167 ip_address_union_encode (const ip46_address_t * in,
168                          vl_api_address_family_t af,
169                          vl_api_address_union_t * out)
170 {
171   if (ADDRESS_IP6 == clib_net_to_host_u32 (af))
172     ip6_address_encode (&in->ip6, out->ip6);
173   else
174     ip4_address_encode (&in->ip4, out->ip4);
175 }
176
177 void
178 ip_address_encode (const ip46_address_t * in,
179                    ip46_type_t type, vl_api_address_t * out)
180 {
181   switch (type)
182     {
183     case IP46_TYPE_IP4:
184       out->af = clib_net_to_host_u32 (ADDRESS_IP4);
185       break;
186     case IP46_TYPE_IP6:
187       out->af = clib_net_to_host_u32 (ADDRESS_IP6);
188       break;
189     case IP46_TYPE_ANY:
190       if (ip46_address_is_ip4 (in))
191         out->af = clib_net_to_host_u32 (ADDRESS_IP4);
192       else
193         out->af = clib_net_to_host_u32 (ADDRESS_IP6);
194       break;
195     }
196   ip_address_union_encode (in, out->af, &out->un);
197 }
198
199 void
200 ip_prefix_decode (const vl_api_prefix_t * in, fib_prefix_t * out)
201 {
202   switch (clib_net_to_host_u32 (in->address.af))
203     {
204     case ADDRESS_IP4:
205       out->fp_proto = FIB_PROTOCOL_IP4;
206       break;
207     case ADDRESS_IP6:
208       out->fp_proto = FIB_PROTOCOL_IP6;
209       break;
210     }
211   out->fp_len = in->len;
212   out->___fp___pad = 0;
213   ip_address_decode (&in->address, &out->fp_addr);
214 }
215
216 void
217 ip_prefix_encode (const fib_prefix_t * in, vl_api_prefix_t * out)
218 {
219   out->len = in->fp_len;
220   ip_address_encode (&in->fp_addr,
221                      fib_proto_to_ip46 (in->fp_proto), &out->address);
222 }
223
224 void
225 ip_mprefix_encode (const mfib_prefix_t * in, vl_api_mprefix_t * out)
226 {
227   out->af = (FIB_PROTOCOL_IP6 == in->fp_proto ? ADDRESS_IP6 : ADDRESS_IP4);
228   out->af = clib_host_to_net_u32 (out->af);
229   out->grp_address_length = clib_host_to_net_u16 (in->fp_len);
230
231   ip_address_union_encode (&in->fp_grp_addr, out->af, &out->grp_address);
232   ip_address_union_encode (&in->fp_src_addr, out->af, &out->src_address);
233 }
234
235 void
236 ip_mprefix_decode (const vl_api_mprefix_t * in, mfib_prefix_t * out)
237 {
238   out->fp_proto = (ADDRESS_IP6 == clib_net_to_host_u32 (in->af) ?
239                    FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4);
240   out->fp_len = clib_net_to_host_u16 (in->grp_address_length);
241
242   ip_address_union_decode (&in->grp_address, in->af, &out->fp_grp_addr);
243   ip_address_union_decode (&in->src_address, in->af, &out->fp_src_addr);
244
245   if (!ip46_address_is_zero (&out->fp_src_addr))
246     out->fp_len = (out->fp_proto == FIB_PROTOCOL_IP6 ? 256 : 64);
247 }
248
249 /*
250  * fd.io coding-style-patch-verification: ON
251  *
252  * Local Variables:
253  * eval: (c-set-style "gnu")
254  * End:
255  */