blob: 7e4f1fe8626977471c30a89e134e8186e8e012bc [file] [log] [blame]
Pavel Kotucekeb9e6662017-01-24 13:40:26 +01001/*
2 *------------------------------------------------------------------
3 * flow_api.c - flow 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>
Jakub Grajciar2f71a882019-10-10 14:21:22 +020022#include <vnet/ip/ip_types_api.h>
Florin Corasb040f982020-10-20 14:59:43 -070023#include <vnet/udp/udp_local.h>
Pavel Kotucekeb9e6662017-01-24 13:40:26 +010024
25#include <vnet/interface.h>
26#include <vnet/api_errno.h>
27
28#include <vnet/fib/fib_table.h>
Ole Troana9855ef2018-05-02 12:45:10 +020029#include <vnet/ipfix-export/flow_report.h>
30#include <vnet/ipfix-export/flow_report_classify.h>
Pavel Kotucekeb9e6662017-01-24 13:40:26 +010031
Filip Tehlar53dea272021-06-21 10:57:49 +000032#include <vnet/format_fns.h>
33#include <vnet/ipfix-export/ipfix_export.api_enum.h>
34#include <vnet/ipfix-export/ipfix_export.api_types.h>
Pavel Kotucekeb9e6662017-01-24 13:40:26 +010035
Filip Tehlar53dea272021-06-21 10:57:49 +000036#define REPLY_MSG_ID_BASE frm->msg_id_base
Pavel Kotucekeb9e6662017-01-24 13:40:26 +010037#include <vlibapi/api_helper_macros.h>
38
Pavel Kotucekeb9e6662017-01-24 13:40:26 +010039static void
40vl_api_set_ipfix_exporter_t_handler (vl_api_set_ipfix_exporter_t * mp)
41{
42 vlib_main_t *vm = vlib_get_main ();
43 flow_report_main_t *frm = &flow_report_main;
Paul Atkins9ec64492021-09-21 20:49:12 +010044 ipfix_exporter_t *exp = pool_elt_at_index (frm->exporters, 0);
Paul Vinciguerra21b83e92019-06-24 09:55:46 -040045 vl_api_registration_t *reg;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +010046 vl_api_set_ipfix_exporter_reply_t *rmp;
47 ip4_address_t collector, src;
48 u16 collector_port = UDP_DST_PORT_ipfix;
49 u32 path_mtu;
50 u32 template_interval;
51 u8 udp_checksum;
52 u32 fib_id;
53 u32 fib_index = ~0;
54 int rv = 0;
55
Paul Vinciguerra21b83e92019-06-24 09:55:46 -040056 reg = vl_api_client_index_to_registration (mp->client_index);
57 if (!reg)
58 return;
59
Jakub Grajciar2f71a882019-10-10 14:21:22 +020060 if (mp->src_address.af == ADDRESS_IP6
61 || mp->collector_address.af == ADDRESS_IP6)
62 {
63 rv = VNET_API_ERROR_UNIMPLEMENTED;
64 goto out;
65 }
66
67 ip4_address_decode (mp->collector_address.un.ip4, &collector);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +010068 collector_port = ntohs (mp->collector_port);
69 if (collector_port == (u16) ~ 0)
70 collector_port = UDP_DST_PORT_ipfix;
Jakub Grajciar2f71a882019-10-10 14:21:22 +020071 ip4_address_decode (mp->src_address.un.ip4, &src);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +010072 fib_id = ntohl (mp->vrf_id);
73
74 ip4_main_t *im = &ip4_main;
75 if (fib_id == ~0)
76 {
77 fib_index = ~0;
78 }
79 else
80 {
81 uword *p = hash_get (im->fib_index_by_table_id, fib_id);
82 if (!p)
83 {
84 rv = VNET_API_ERROR_NO_SUCH_FIB;
85 goto out;
86 }
87 fib_index = p[0];
88 }
89
90 path_mtu = ntohl (mp->path_mtu);
91 if (path_mtu == ~0)
92 path_mtu = 512; // RFC 7011 section 10.3.3.
93 template_interval = ntohl (mp->template_interval);
94 if (template_interval == ~0)
95 template_interval = 20;
96 udp_checksum = mp->udp_checksum;
97
Alexander Chernavin67ec7522020-10-01 08:57:59 -040098 if (collector.as_u32 != 0 && src.as_u32 == 0)
Pavel Kotucekeb9e6662017-01-24 13:40:26 +010099 {
100 rv = VNET_API_ERROR_INVALID_VALUE;
101 goto out;
102 }
103
104 if (path_mtu > 1450 /* vpp does not support fragmentation */ )
105 {
106 rv = VNET_API_ERROR_INVALID_VALUE;
107 goto out;
108 }
109
110 if (path_mtu < 68)
111 {
112 rv = VNET_API_ERROR_INVALID_VALUE;
113 goto out;
114 }
115
116 /* Reset report streams if we are reconfiguring IP addresses */
Paul Atkins9ec64492021-09-21 20:49:12 +0100117 if (exp->ipfix_collector.as_u32 != collector.as_u32 ||
118 exp->src_address.as_u32 != src.as_u32 ||
119 exp->collector_port != collector_port)
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100120 vnet_flow_reports_reset (frm);
121
Paul Atkins9ec64492021-09-21 20:49:12 +0100122 exp->ipfix_collector.as_u32 = collector.as_u32;
123 exp->collector_port = collector_port;
124 exp->src_address.as_u32 = src.as_u32;
125 exp->fib_index = fib_index;
126 exp->path_mtu = path_mtu;
127 exp->template_interval = template_interval;
128 exp->udp_checksum = udp_checksum;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100129
130 /* Turn on the flow reporting process */
131 vlib_process_signal_event (vm, flow_report_process_node.index, 1, 0);
132
133out:
134 REPLY_MACRO (VL_API_SET_IPFIX_EXPORTER_REPLY);
135}
136
137static void
138vl_api_ipfix_exporter_dump_t_handler (vl_api_ipfix_exporter_dump_t * mp)
139{
140 flow_report_main_t *frm = &flow_report_main;
Paul Atkins9ec64492021-09-21 20:49:12 +0100141 ipfix_exporter_t *exp = pool_elt_at_index (flow_report_main.exporters, 0);
Florin Coras6c4dae22018-01-09 06:39:23 -0800142 vl_api_registration_t *reg;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100143 vl_api_ipfix_exporter_details_t *rmp;
144 ip4_main_t *im = &ip4_main;
Jakub Grajciar2f71a882019-10-10 14:21:22 +0200145 ip46_address_t collector = {.as_u64[0] = 0,.as_u64[1] = 0 };
146 ip46_address_t src = {.as_u64[0] = 0,.as_u64[1] = 0 };
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100147 u32 vrf_id;
148
Florin Coras6c4dae22018-01-09 06:39:23 -0800149 reg = vl_api_client_index_to_registration (mp->client_index);
150 if (!reg)
Paul Vinciguerra21b83e92019-06-24 09:55:46 -0400151 return;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100152
153 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400154 clib_memset (rmp, 0, sizeof (*rmp));
Paul Atkins5df0b342021-09-23 10:55:25 +0100155 rmp->_vl_msg_id =
156 ntohs ((REPLY_MSG_ID_BASE) + VL_API_IPFIX_EXPORTER_DETAILS);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100157 rmp->context = mp->context;
Jakub Grajciar2f71a882019-10-10 14:21:22 +0200158
Paul Atkins9ec64492021-09-21 20:49:12 +0100159 memcpy (&collector.ip4, &exp->ipfix_collector, sizeof (ip4_address_t));
Jakub Grajciar2f71a882019-10-10 14:21:22 +0200160 ip_address_encode (&collector, IP46_TYPE_IP4, &rmp->collector_address);
161
Paul Atkins9ec64492021-09-21 20:49:12 +0100162 rmp->collector_port = htons (exp->collector_port);
Jakub Grajciar2f71a882019-10-10 14:21:22 +0200163
Paul Atkins9ec64492021-09-21 20:49:12 +0100164 memcpy (&src.ip4, &exp->src_address, sizeof (ip4_address_t));
Jakub Grajciar2f71a882019-10-10 14:21:22 +0200165 ip_address_encode (&src, IP46_TYPE_IP4, &rmp->src_address);
166
Paul Atkins9ec64492021-09-21 20:49:12 +0100167 if (exp->fib_index == ~0)
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100168 vrf_id = ~0;
169 else
Paul Atkins9ec64492021-09-21 20:49:12 +0100170 vrf_id = im->fibs[exp->fib_index].ft_table_id;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100171 rmp->vrf_id = htonl (vrf_id);
Paul Atkins9ec64492021-09-21 20:49:12 +0100172 rmp->path_mtu = htonl (exp->path_mtu);
173 rmp->template_interval = htonl (exp->template_interval);
174 rmp->udp_checksum = (exp->udp_checksum != 0);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100175
Florin Coras6c4dae22018-01-09 06:39:23 -0800176 vl_api_send_msg (reg, (u8 *) rmp);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100177}
178
179static void
180 vl_api_set_ipfix_classify_stream_t_handler
181 (vl_api_set_ipfix_classify_stream_t * mp)
182{
183 vl_api_set_ipfix_classify_stream_reply_t *rmp;
184 flow_report_classify_main_t *fcm = &flow_report_classify_main;
185 flow_report_main_t *frm = &flow_report_main;
186 u32 domain_id = 0;
187 u32 src_port = UDP_DST_PORT_ipfix;
188 int rv = 0;
189
190 domain_id = ntohl (mp->domain_id);
191 src_port = ntohs (mp->src_port);
192
193 if (fcm->src_port != 0 &&
194 (fcm->domain_id != domain_id || fcm->src_port != (u16) src_port))
195 {
196 int rv = vnet_stream_change (frm, fcm->domain_id, fcm->src_port,
197 domain_id, (u16) src_port);
198 ASSERT (rv == 0);
199 }
200
201 fcm->domain_id = domain_id;
202 fcm->src_port = (u16) src_port;
203
204 REPLY_MACRO (VL_API_SET_IPFIX_CLASSIFY_STREAM_REPLY);
205}
206
207static void
208 vl_api_ipfix_classify_stream_dump_t_handler
209 (vl_api_ipfix_classify_stream_dump_t * mp)
210{
211 flow_report_classify_main_t *fcm = &flow_report_classify_main;
Florin Coras6c4dae22018-01-09 06:39:23 -0800212 vl_api_registration_t *reg;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100213 vl_api_ipfix_classify_stream_details_t *rmp;
214
Florin Coras6c4dae22018-01-09 06:39:23 -0800215 reg = vl_api_client_index_to_registration (mp->client_index);
216 if (!reg)
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100217 return;
218
219 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400220 clib_memset (rmp, 0, sizeof (*rmp));
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100221 rmp->_vl_msg_id = ntohs (VL_API_IPFIX_CLASSIFY_STREAM_DETAILS);
222 rmp->context = mp->context;
223 rmp->domain_id = htonl (fcm->domain_id);
224 rmp->src_port = htons (fcm->src_port);
225
Florin Coras6c4dae22018-01-09 06:39:23 -0800226 vl_api_send_msg (reg, (u8 *) rmp);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100227}
228
229static void
230 vl_api_ipfix_classify_table_add_del_t_handler
231 (vl_api_ipfix_classify_table_add_del_t * mp)
232{
233 vl_api_ipfix_classify_table_add_del_reply_t *rmp;
Paul Vinciguerra21b83e92019-06-24 09:55:46 -0400234 vl_api_registration_t *reg;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100235 flow_report_classify_main_t *fcm = &flow_report_classify_main;
236 flow_report_main_t *frm = &flow_report_main;
237 vnet_flow_report_add_del_args_t args;
238 ipfix_classify_table_t *table;
239 int is_add;
240 u32 classify_table_index;
241 u8 ip_version;
242 u8 transport_protocol;
243 int rv = 0;
244
Paul Vinciguerra21b83e92019-06-24 09:55:46 -0400245 reg = vl_api_client_index_to_registration (mp->client_index);
246 if (!reg)
247 return;
248
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100249 classify_table_index = ntohl (mp->table_id);
Alexander Chernavinf6cf57c2020-09-30 10:36:10 -0400250 ip_version = (mp->ip_version == ADDRESS_IP4) ? 4 : 6;
251 transport_protocol = mp->transport_protocol;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100252 is_add = mp->is_add;
253
254 if (fcm->src_port == 0)
255 {
256 /* call set_ipfix_classify_stream first */
257 rv = VNET_API_ERROR_UNSPECIFIED;
258 goto out;
259 }
260
Dave Barachb7b92992018-10-17 10:38:51 -0400261 clib_memset (&args, 0, sizeof (args));
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100262
263 table = 0;
264 int i;
265 for (i = 0; i < vec_len (fcm->tables); i++)
266 if (ipfix_classify_table_index_valid (i))
267 if (fcm->tables[i].classify_table_index == classify_table_index)
268 {
269 table = &fcm->tables[i];
270 break;
271 }
272
273 if (is_add)
274 {
275 if (table)
276 {
277 rv = VNET_API_ERROR_VALUE_EXIST;
278 goto out;
279 }
280 table = ipfix_classify_add_table ();
281 table->classify_table_index = classify_table_index;
282 }
283 else
284 {
285 if (!table)
286 {
287 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
288 goto out;
289 }
290 }
291
292 table->ip_version = ip_version;
293 table->transport_protocol = transport_protocol;
294
295 args.opaque.as_uword = table - fcm->tables;
296 args.rewrite_callback = ipfix_classify_template_rewrite;
297 args.flow_data_callback = ipfix_classify_send_flows;
298 args.is_add = is_add;
299 args.domain_id = fcm->domain_id;
300 args.src_port = fcm->src_port;
301
Ole Troan5c749732017-03-13 13:39:52 +0100302 rv = vnet_flow_report_add_del (frm, &args, NULL);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100303
304 /* If deleting, or add failed */
305 if (is_add == 0 || (rv && is_add))
306 ipfix_classify_delete_table (table - fcm->tables);
307
308out:
309 REPLY_MACRO (VL_API_SET_IPFIX_CLASSIFY_STREAM_REPLY);
310}
311
312static void
313send_ipfix_classify_table_details (u32 table_index,
Florin Coras6c4dae22018-01-09 06:39:23 -0800314 vl_api_registration_t * reg, u32 context)
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100315{
316 flow_report_classify_main_t *fcm = &flow_report_classify_main;
317 vl_api_ipfix_classify_table_details_t *mp;
318
319 ipfix_classify_table_t *table = &fcm->tables[table_index];
320
321 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400322 clib_memset (mp, 0, sizeof (*mp));
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100323 mp->_vl_msg_id = ntohs (VL_API_IPFIX_CLASSIFY_TABLE_DETAILS);
324 mp->context = context;
325 mp->table_id = htonl (table->classify_table_index);
Alexander Chernavinf6cf57c2020-09-30 10:36:10 -0400326 mp->ip_version = (table->ip_version == 4) ? ADDRESS_IP4 : ADDRESS_IP6;
327 mp->transport_protocol = table->transport_protocol;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100328
Florin Coras6c4dae22018-01-09 06:39:23 -0800329 vl_api_send_msg (reg, (u8 *) mp);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100330}
331
332static void
333 vl_api_ipfix_classify_table_dump_t_handler
334 (vl_api_ipfix_classify_table_dump_t * mp)
335{
336 flow_report_classify_main_t *fcm = &flow_report_classify_main;
Florin Coras6c4dae22018-01-09 06:39:23 -0800337 vl_api_registration_t *reg;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100338 u32 i;
339
Florin Coras6c4dae22018-01-09 06:39:23 -0800340 reg = vl_api_client_index_to_registration (mp->client_index);
341 if (!reg)
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100342 return;
343
344 for (i = 0; i < vec_len (fcm->tables); i++)
345 if (ipfix_classify_table_index_valid (i))
Florin Coras6c4dae22018-01-09 06:39:23 -0800346 send_ipfix_classify_table_details (i, reg, mp->context);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100347}
348
Paul Vinciguerra21b83e92019-06-24 09:55:46 -0400349static void
350vl_api_ipfix_flush_t_handler (vl_api_ipfix_flush_t * mp)
351{
Filip Tehlar53dea272021-06-21 10:57:49 +0000352 flow_report_main_t *frm = &flow_report_main;
Paul Vinciguerra21b83e92019-06-24 09:55:46 -0400353 vl_api_ipfix_flush_reply_t *rmp;
354 vl_api_registration_t *reg;
355 vlib_main_t *vm = vlib_get_main ();
356 int rv = 0;
357
358 reg = vl_api_client_index_to_registration (mp->client_index);
359 if (!reg)
360 return;
361
362 /* poke the flow reporting process */
363 vlib_process_signal_event (vm, flow_report_process_node.index,
364 1 /* type_opaque */ , 0 /* data */ );
365
366 REPLY_MACRO (VL_API_IPFIX_FLUSH_REPLY);
367}
368
Filip Tehlar53dea272021-06-21 10:57:49 +0000369#include <vnet/ipfix-export/ipfix_export.api.c>
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100370static clib_error_t *
371flow_api_hookup (vlib_main_t * vm)
372{
Filip Tehlar53dea272021-06-21 10:57:49 +0000373 flow_report_main_t *frm = &flow_report_main;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100374 /*
375 * Set up the (msg_name, crc, message-id) table
376 */
Filip Tehlar53dea272021-06-21 10:57:49 +0000377 REPLY_MSG_ID_BASE = setup_message_id_table ();
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100378
379 return 0;
380}
381
382VLIB_API_INIT_FUNCTION (flow_api_hookup);
383
384/*
385 * fd.io coding-style-patch-verification: ON
386 *
387 * Local Variables:
388 * eval: (c-set-style "gnu")
389 * End:
390 */