blob: 0b287335bbf529dc9d7b97fd682917841797339e [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
Paul Atkinsd747dd92021-09-22 14:56:17 +010039ipfix_exporter_t *
Paul Atkins51404842021-10-04 15:43:56 +010040vnet_ipfix_exporter_lookup (const ip_address_t *ipfix_collector)
Paul Atkinsd747dd92021-09-22 14:56:17 +010041{
42 flow_report_main_t *frm = &flow_report_main;
43 ipfix_exporter_t *exp;
44
45 pool_foreach (exp, frm->exporters)
46 {
Paul Atkins51404842021-10-04 15:43:56 +010047 if (ip_address_cmp (&exp->ipfix_collector, ipfix_collector) == 0)
Paul Atkinsd747dd92021-09-22 14:56:17 +010048 return exp;
49 }
50
51 return NULL;
52}
53
54/*
55 * For backwards compatibility reasons index 0 in the set of exporters
56 * is alwyas used for the exporter created via the set_ipfix_exporter
57 * API.
58 */
59#define USE_INDEX_0 true
60#define USE_ANY_INDEX false
61
Paul Atkinsa6e131e2021-09-22 14:18:45 +010062static int
63vl_api_set_ipfix_exporter_t_internal (
64 u32 client_index, vl_api_address_t *mp_collector_address,
65 u16 mp_collector_port, vl_api_address_t *mp_src_address, u32 mp_vrf_id,
Paul Atkinsd747dd92021-09-22 14:56:17 +010066 u32 mp_path_mtu, u32 mp_template_interval, bool mp_udp_checksum,
67 bool use_index_0, bool is_create)
Pavel Kotucekeb9e6662017-01-24 13:40:26 +010068{
69 vlib_main_t *vm = vlib_get_main ();
70 flow_report_main_t *frm = &flow_report_main;
Paul Atkinsd747dd92021-09-22 14:56:17 +010071 ipfix_exporter_t *exp;
Paul Vinciguerra21b83e92019-06-24 09:55:46 -040072 vl_api_registration_t *reg;
Paul Atkins51404842021-10-04 15:43:56 +010073 ip_address_t collector, src;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +010074 u16 collector_port = UDP_DST_PORT_ipfix;
75 u32 path_mtu;
76 u32 template_interval;
77 u8 udp_checksum;
78 u32 fib_id;
79 u32 fib_index = ~0;
Paul Atkins51404842021-10-04 15:43:56 +010080 u32 ip_header_size;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +010081
Paul Atkinsa6e131e2021-09-22 14:18:45 +010082 reg = vl_api_client_index_to_registration (client_index);
Paul Vinciguerra21b83e92019-06-24 09:55:46 -040083 if (!reg)
Paul Atkinsa6e131e2021-09-22 14:18:45 +010084 return VNET_API_ERROR_UNIMPLEMENTED;
Paul Vinciguerra21b83e92019-06-24 09:55:46 -040085
Paul Atkinsd747dd92021-09-22 14:56:17 +010086 if (use_index_0)
Paul Atkins51404842021-10-04 15:43:56 +010087 {
88 /*
89 * In this case we update the existing exporter. There is no delete
90 * for exp[0]
91 */
92 exp = &frm->exporters[0];
93
94 /* Collector address must be IPv4 for exp[0] */
95 collector.version = AF_IP4;
96 ip4_address_decode (mp_collector_address->un.ip4, &collector.ip.ip4);
97 }
Paul Atkinsd747dd92021-09-22 14:56:17 +010098 else
99 {
Paul Atkins51404842021-10-04 15:43:56 +0100100 ip_address_decode2 (mp_collector_address, &collector);
Paul Atkinsd747dd92021-09-22 14:56:17 +0100101 if (is_create)
102 {
103 exp = vnet_ipfix_exporter_lookup (&collector);
104 if (!exp)
105 {
106 /* Create a new exporter instead of updating an existing one */
107 if (pool_elts (frm->exporters) >= IPFIX_EXPORTERS_MAX)
108 return VNET_API_ERROR_INVALID_VALUE;
109 pool_get (frm->exporters, exp);
Paul Atkinsd747dd92021-09-22 14:56:17 +0100110 }
111 }
112 else
113 {
114 /* Delete the exporter */
115 exp = vnet_ipfix_exporter_lookup (&collector);
116 if (!exp)
117 return VNET_API_ERROR_NO_SUCH_ENTRY;
118
119 pool_put (frm->exporters, exp);
120 return 0;
121 }
122 }
123
Paul Atkinsa6e131e2021-09-22 14:18:45 +0100124 collector_port = ntohs (mp_collector_port);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100125 if (collector_port == (u16) ~ 0)
126 collector_port = UDP_DST_PORT_ipfix;
Paul Atkins51404842021-10-04 15:43:56 +0100127 ip_address_decode2 (mp_src_address, &src);
Paul Atkinsa6e131e2021-09-22 14:18:45 +0100128 fib_id = ntohl (mp_vrf_id);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100129
130 ip4_main_t *im = &ip4_main;
131 if (fib_id == ~0)
132 {
133 fib_index = ~0;
134 }
135 else
136 {
137 uword *p = hash_get (im->fib_index_by_table_id, fib_id);
138 if (!p)
Paul Atkinsa6e131e2021-09-22 14:18:45 +0100139 return VNET_API_ERROR_NO_SUCH_FIB;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100140 fib_index = p[0];
141 }
142
Paul Atkinsa6e131e2021-09-22 14:18:45 +0100143 path_mtu = ntohl (mp_path_mtu);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100144 if (path_mtu == ~0)
145 path_mtu = 512; // RFC 7011 section 10.3.3.
Paul Atkinsa6e131e2021-09-22 14:18:45 +0100146 template_interval = ntohl (mp_template_interval);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100147 if (template_interval == ~0)
148 template_interval = 20;
Paul Atkinsa6e131e2021-09-22 14:18:45 +0100149 udp_checksum = mp_udp_checksum;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100150
Paul Atkins51404842021-10-04 15:43:56 +0100151 /*
152 * If the collector address is set then the src must be too.
153 * Collector address can be set to 0 to disable exporter
154 */
155 if (!ip_address_is_zero (&collector) && ip_address_is_zero (&src))
156 return VNET_API_ERROR_INVALID_VALUE;
157 if (collector.version != src.version)
Paul Atkinsa6e131e2021-09-22 14:18:45 +0100158 return VNET_API_ERROR_INVALID_VALUE;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100159
160 if (path_mtu > 1450 /* vpp does not support fragmentation */ )
Paul Atkinsa6e131e2021-09-22 14:18:45 +0100161 return VNET_API_ERROR_INVALID_VALUE;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100162
163 if (path_mtu < 68)
Paul Atkinsa6e131e2021-09-22 14:18:45 +0100164 return VNET_API_ERROR_INVALID_VALUE;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100165
Paul Atkins19a5f232021-09-27 21:30:13 +0100166 /* Calculate how much header data we need. */
Paul Atkins51404842021-10-04 15:43:56 +0100167 if (collector.version == AF_IP4)
168 ip_header_size = sizeof (ip4_header_t);
169 else
170 ip_header_size = sizeof (ip6_header_t);
171 exp->all_headers_size = ip_header_size + sizeof (udp_header_t) +
Paul Atkins19a5f232021-09-27 21:30:13 +0100172 sizeof (ipfix_message_header_t) +
173 sizeof (ipfix_set_header_t);
174
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100175 /* Reset report streams if we are reconfiguring IP addresses */
Paul Atkins51404842021-10-04 15:43:56 +0100176 if (ip_address_cmp (&exp->ipfix_collector, &collector) ||
177 ip_address_cmp (&exp->src_address, &src) ||
Paul Atkins9ec64492021-09-21 20:49:12 +0100178 exp->collector_port != collector_port)
Paul Atkins40f9a7a2021-09-22 10:06:23 +0100179 vnet_flow_reports_reset (exp);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100180
Paul Atkins51404842021-10-04 15:43:56 +0100181 exp->ipfix_collector = collector;
Paul Atkins9ec64492021-09-21 20:49:12 +0100182 exp->collector_port = collector_port;
Paul Atkins51404842021-10-04 15:43:56 +0100183 exp->src_address = src;
Paul Atkins9ec64492021-09-21 20:49:12 +0100184 exp->fib_index = fib_index;
185 exp->path_mtu = path_mtu;
186 exp->template_interval = template_interval;
187 exp->udp_checksum = udp_checksum;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100188
189 /* Turn on the flow reporting process */
190 vlib_process_signal_event (vm, flow_report_process_node.index, 1, 0);
191
Paul Atkinsa6e131e2021-09-22 14:18:45 +0100192 return 0;
193}
194
195static void
196vl_api_set_ipfix_exporter_t_handler (vl_api_set_ipfix_exporter_t *mp)
197{
198 vl_api_set_ipfix_exporter_reply_t *rmp;
199 flow_report_main_t *frm = &flow_report_main;
200 int rv = vl_api_set_ipfix_exporter_t_internal (
201 mp->client_index, &mp->collector_address, mp->collector_port,
202 &mp->src_address, mp->vrf_id, mp->path_mtu, mp->template_interval,
Paul Atkinsd747dd92021-09-22 14:56:17 +0100203 mp->udp_checksum, USE_INDEX_0, 0);
Paul Atkinsa6e131e2021-09-22 14:18:45 +0100204
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100205 REPLY_MACRO (VL_API_SET_IPFIX_EXPORTER_REPLY);
206}
207
208static void
Paul Atkinsd747dd92021-09-22 14:56:17 +0100209vl_api_ipfix_exporter_create_delete_t_handler (
210 vl_api_ipfix_exporter_create_delete_t *mp)
211{
212 vl_api_ipfix_exporter_create_delete_reply_t *rmp;
213 flow_report_main_t *frm = &flow_report_main;
214 int rv = vl_api_set_ipfix_exporter_t_internal (
215 mp->client_index, &mp->collector_address, mp->collector_port,
216 &mp->src_address, mp->vrf_id, mp->path_mtu, mp->template_interval,
217 mp->udp_checksum, USE_ANY_INDEX, mp->is_create);
218
219 REPLY_MACRO (VL_API_IPFIX_EXPORTER_CREATE_DELETE_REPLY);
220}
221
222static void
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100223vl_api_ipfix_exporter_dump_t_handler (vl_api_ipfix_exporter_dump_t * mp)
224{
225 flow_report_main_t *frm = &flow_report_main;
Paul Atkins9ec64492021-09-21 20:49:12 +0100226 ipfix_exporter_t *exp = pool_elt_at_index (flow_report_main.exporters, 0);
Florin Coras6c4dae22018-01-09 06:39:23 -0800227 vl_api_registration_t *reg;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100228 vl_api_ipfix_exporter_details_t *rmp;
229 ip4_main_t *im = &ip4_main;
230 u32 vrf_id;
231
Florin Coras6c4dae22018-01-09 06:39:23 -0800232 reg = vl_api_client_index_to_registration (mp->client_index);
233 if (!reg)
Paul Vinciguerra21b83e92019-06-24 09:55:46 -0400234 return;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100235
236 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400237 clib_memset (rmp, 0, sizeof (*rmp));
Paul Atkins5df0b342021-09-23 10:55:25 +0100238 rmp->_vl_msg_id =
239 ntohs ((REPLY_MSG_ID_BASE) + VL_API_IPFIX_EXPORTER_DETAILS);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100240 rmp->context = mp->context;
Jakub Grajciar2f71a882019-10-10 14:21:22 +0200241
Paul Atkins51404842021-10-04 15:43:56 +0100242 ip_address_encode2 (&exp->ipfix_collector, &rmp->collector_address);
Paul Atkins9ec64492021-09-21 20:49:12 +0100243 rmp->collector_port = htons (exp->collector_port);
Paul Atkins51404842021-10-04 15:43:56 +0100244 ip_address_encode2 (&exp->src_address, &rmp->src_address);
Jakub Grajciar2f71a882019-10-10 14:21:22 +0200245
Paul Atkins9ec64492021-09-21 20:49:12 +0100246 if (exp->fib_index == ~0)
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100247 vrf_id = ~0;
248 else
Paul Atkins9ec64492021-09-21 20:49:12 +0100249 vrf_id = im->fibs[exp->fib_index].ft_table_id;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100250 rmp->vrf_id = htonl (vrf_id);
Paul Atkins9ec64492021-09-21 20:49:12 +0100251 rmp->path_mtu = htonl (exp->path_mtu);
252 rmp->template_interval = htonl (exp->template_interval);
253 rmp->udp_checksum = (exp->udp_checksum != 0);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100254
Florin Coras6c4dae22018-01-09 06:39:23 -0800255 vl_api_send_msg (reg, (u8 *) rmp);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100256}
257
258static void
Paul Atkinsacb0d2d2021-09-23 09:28:50 +0100259ipfix_all_fill_details (vl_api_ipfix_all_exporter_details_t *rmp,
260 ipfix_exporter_t *exp)
261{
262 ip4_main_t *im = &ip4_main;
Paul Atkinsacb0d2d2021-09-23 09:28:50 +0100263 u32 vrf_id;
264
Paul Atkins51404842021-10-04 15:43:56 +0100265 ip_address_encode2 (&exp->ipfix_collector, &rmp->collector_address);
Paul Atkinsacb0d2d2021-09-23 09:28:50 +0100266 rmp->collector_port = htons (exp->collector_port);
Paul Atkins51404842021-10-04 15:43:56 +0100267 ip_address_encode2 (&exp->src_address, &rmp->src_address);
Paul Atkinsacb0d2d2021-09-23 09:28:50 +0100268
269 if (exp->fib_index == ~0)
270 vrf_id = ~0;
271 else
272 vrf_id = im->fibs[exp->fib_index].ft_table_id;
273 rmp->vrf_id = htonl (vrf_id);
274 rmp->path_mtu = htonl (exp->path_mtu);
275 rmp->template_interval = htonl (exp->template_interval);
276 rmp->udp_checksum = (exp->udp_checksum != 0);
277}
278
279static void
280ipfix_all_exporter_details (flow_report_main_t *frm, u32 index,
281 vl_api_registration_t *rp, u32 context)
282{
283 ipfix_exporter_t *exp = pool_elt_at_index (frm->exporters, index);
284
285 vl_api_ipfix_all_exporter_details_t *rmp;
286
287 REPLY_MACRO_DETAILS4 (VL_API_IPFIX_ALL_EXPORTER_DETAILS, rp, context,
288 ({ ipfix_all_fill_details (rmp, exp); }));
289}
290
291static void
292vl_api_ipfix_all_exporter_get_t_handler (vl_api_ipfix_all_exporter_get_t *mp)
293{
294 flow_report_main_t *frm = &flow_report_main;
295 vl_api_ipfix_all_exporter_get_reply_t *rmp;
296 int rv = 0;
297
298 REPLY_AND_DETAILS_MACRO (
299 VL_API_IPFIX_ALL_EXPORTER_GET_REPLY, frm->exporters,
300 ({ ipfix_all_exporter_details (frm, cursor, rp, mp->context); }));
301}
302
303static void
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100304 vl_api_set_ipfix_classify_stream_t_handler
305 (vl_api_set_ipfix_classify_stream_t * mp)
306{
307 vl_api_set_ipfix_classify_stream_reply_t *rmp;
308 flow_report_classify_main_t *fcm = &flow_report_classify_main;
309 flow_report_main_t *frm = &flow_report_main;
Paul Atkins40f9a7a2021-09-22 10:06:23 +0100310 ipfix_exporter_t *exp = &frm->exporters[0];
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100311 u32 domain_id = 0;
312 u32 src_port = UDP_DST_PORT_ipfix;
313 int rv = 0;
314
315 domain_id = ntohl (mp->domain_id);
316 src_port = ntohs (mp->src_port);
317
318 if (fcm->src_port != 0 &&
319 (fcm->domain_id != domain_id || fcm->src_port != (u16) src_port))
320 {
Paul Atkins40f9a7a2021-09-22 10:06:23 +0100321 int rv = vnet_stream_change (exp, fcm->domain_id, fcm->src_port,
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100322 domain_id, (u16) src_port);
323 ASSERT (rv == 0);
324 }
325
326 fcm->domain_id = domain_id;
327 fcm->src_port = (u16) src_port;
328
329 REPLY_MACRO (VL_API_SET_IPFIX_CLASSIFY_STREAM_REPLY);
330}
331
332static void
333 vl_api_ipfix_classify_stream_dump_t_handler
334 (vl_api_ipfix_classify_stream_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 vl_api_ipfix_classify_stream_details_t *rmp;
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 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400345 clib_memset (rmp, 0, sizeof (*rmp));
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100346 rmp->_vl_msg_id = ntohs (VL_API_IPFIX_CLASSIFY_STREAM_DETAILS);
347 rmp->context = mp->context;
348 rmp->domain_id = htonl (fcm->domain_id);
349 rmp->src_port = htons (fcm->src_port);
350
Florin Coras6c4dae22018-01-09 06:39:23 -0800351 vl_api_send_msg (reg, (u8 *) rmp);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100352}
353
354static void
355 vl_api_ipfix_classify_table_add_del_t_handler
356 (vl_api_ipfix_classify_table_add_del_t * mp)
357{
358 vl_api_ipfix_classify_table_add_del_reply_t *rmp;
Paul Vinciguerra21b83e92019-06-24 09:55:46 -0400359 vl_api_registration_t *reg;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100360 flow_report_classify_main_t *fcm = &flow_report_classify_main;
361 flow_report_main_t *frm = &flow_report_main;
Paul Atkins40f9a7a2021-09-22 10:06:23 +0100362 ipfix_exporter_t *exp = &frm->exporters[0];
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100363 vnet_flow_report_add_del_args_t args;
364 ipfix_classify_table_t *table;
365 int is_add;
366 u32 classify_table_index;
367 u8 ip_version;
368 u8 transport_protocol;
369 int rv = 0;
370
Paul Vinciguerra21b83e92019-06-24 09:55:46 -0400371 reg = vl_api_client_index_to_registration (mp->client_index);
372 if (!reg)
373 return;
374
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100375 classify_table_index = ntohl (mp->table_id);
Alexander Chernavinf6cf57c2020-09-30 10:36:10 -0400376 ip_version = (mp->ip_version == ADDRESS_IP4) ? 4 : 6;
377 transport_protocol = mp->transport_protocol;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100378 is_add = mp->is_add;
379
380 if (fcm->src_port == 0)
381 {
382 /* call set_ipfix_classify_stream first */
383 rv = VNET_API_ERROR_UNSPECIFIED;
384 goto out;
385 }
386
Dave Barachb7b92992018-10-17 10:38:51 -0400387 clib_memset (&args, 0, sizeof (args));
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100388
389 table = 0;
390 int i;
391 for (i = 0; i < vec_len (fcm->tables); i++)
392 if (ipfix_classify_table_index_valid (i))
393 if (fcm->tables[i].classify_table_index == classify_table_index)
394 {
395 table = &fcm->tables[i];
396 break;
397 }
398
399 if (is_add)
400 {
401 if (table)
402 {
403 rv = VNET_API_ERROR_VALUE_EXIST;
404 goto out;
405 }
406 table = ipfix_classify_add_table ();
407 table->classify_table_index = classify_table_index;
408 }
409 else
410 {
411 if (!table)
412 {
413 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
414 goto out;
415 }
416 }
417
418 table->ip_version = ip_version;
419 table->transport_protocol = transport_protocol;
420
421 args.opaque.as_uword = table - fcm->tables;
422 args.rewrite_callback = ipfix_classify_template_rewrite;
423 args.flow_data_callback = ipfix_classify_send_flows;
424 args.is_add = is_add;
425 args.domain_id = fcm->domain_id;
426 args.src_port = fcm->src_port;
427
Paul Atkins40f9a7a2021-09-22 10:06:23 +0100428 rv = vnet_flow_report_add_del (exp, &args, NULL);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100429
430 /* If deleting, or add failed */
431 if (is_add == 0 || (rv && is_add))
432 ipfix_classify_delete_table (table - fcm->tables);
433
434out:
435 REPLY_MACRO (VL_API_SET_IPFIX_CLASSIFY_STREAM_REPLY);
436}
437
438static void
439send_ipfix_classify_table_details (u32 table_index,
Florin Coras6c4dae22018-01-09 06:39:23 -0800440 vl_api_registration_t * reg, u32 context)
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100441{
442 flow_report_classify_main_t *fcm = &flow_report_classify_main;
443 vl_api_ipfix_classify_table_details_t *mp;
444
445 ipfix_classify_table_t *table = &fcm->tables[table_index];
446
447 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400448 clib_memset (mp, 0, sizeof (*mp));
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100449 mp->_vl_msg_id = ntohs (VL_API_IPFIX_CLASSIFY_TABLE_DETAILS);
450 mp->context = context;
451 mp->table_id = htonl (table->classify_table_index);
Alexander Chernavinf6cf57c2020-09-30 10:36:10 -0400452 mp->ip_version = (table->ip_version == 4) ? ADDRESS_IP4 : ADDRESS_IP6;
453 mp->transport_protocol = table->transport_protocol;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100454
Florin Coras6c4dae22018-01-09 06:39:23 -0800455 vl_api_send_msg (reg, (u8 *) mp);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100456}
457
458static void
459 vl_api_ipfix_classify_table_dump_t_handler
460 (vl_api_ipfix_classify_table_dump_t * mp)
461{
462 flow_report_classify_main_t *fcm = &flow_report_classify_main;
Florin Coras6c4dae22018-01-09 06:39:23 -0800463 vl_api_registration_t *reg;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100464 u32 i;
465
Florin Coras6c4dae22018-01-09 06:39:23 -0800466 reg = vl_api_client_index_to_registration (mp->client_index);
467 if (!reg)
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100468 return;
469
470 for (i = 0; i < vec_len (fcm->tables); i++)
471 if (ipfix_classify_table_index_valid (i))
Florin Coras6c4dae22018-01-09 06:39:23 -0800472 send_ipfix_classify_table_details (i, reg, mp->context);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100473}
474
Paul Vinciguerra21b83e92019-06-24 09:55:46 -0400475static void
476vl_api_ipfix_flush_t_handler (vl_api_ipfix_flush_t * mp)
477{
Filip Tehlar53dea272021-06-21 10:57:49 +0000478 flow_report_main_t *frm = &flow_report_main;
Paul Vinciguerra21b83e92019-06-24 09:55:46 -0400479 vl_api_ipfix_flush_reply_t *rmp;
480 vl_api_registration_t *reg;
481 vlib_main_t *vm = vlib_get_main ();
482 int rv = 0;
483
484 reg = vl_api_client_index_to_registration (mp->client_index);
485 if (!reg)
486 return;
487
488 /* poke the flow reporting process */
489 vlib_process_signal_event (vm, flow_report_process_node.index,
490 1 /* type_opaque */ , 0 /* data */ );
491
492 REPLY_MACRO (VL_API_IPFIX_FLUSH_REPLY);
493}
494
Filip Tehlar53dea272021-06-21 10:57:49 +0000495#include <vnet/ipfix-export/ipfix_export.api.c>
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100496static clib_error_t *
497flow_api_hookup (vlib_main_t * vm)
498{
Filip Tehlar53dea272021-06-21 10:57:49 +0000499 flow_report_main_t *frm = &flow_report_main;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100500 /*
501 * Set up the (msg_name, crc, message-id) table
502 */
Filip Tehlar53dea272021-06-21 10:57:49 +0000503 REPLY_MSG_ID_BASE = setup_message_id_table ();
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100504
505 return 0;
506}
507
508VLIB_API_INIT_FUNCTION (flow_api_hookup);
509
510/*
511 * fd.io coding-style-patch-verification: ON
512 *
513 * Local Variables:
514 * eval: (c-set-style "gnu")
515 * End:
516 */