blob: deee9d6909a5bc7e38787d2fcca0504c2c466191 [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 Vinciguerra21b83e92019-06-24 09:55:46 -040044 vl_api_registration_t *reg;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +010045 vl_api_set_ipfix_exporter_reply_t *rmp;
46 ip4_address_t collector, src;
47 u16 collector_port = UDP_DST_PORT_ipfix;
48 u32 path_mtu;
49 u32 template_interval;
50 u8 udp_checksum;
51 u32 fib_id;
52 u32 fib_index = ~0;
53 int rv = 0;
54
Paul Vinciguerra21b83e92019-06-24 09:55:46 -040055 reg = vl_api_client_index_to_registration (mp->client_index);
56 if (!reg)
57 return;
58
Jakub Grajciar2f71a882019-10-10 14:21:22 +020059 if (mp->src_address.af == ADDRESS_IP6
60 || mp->collector_address.af == ADDRESS_IP6)
61 {
62 rv = VNET_API_ERROR_UNIMPLEMENTED;
63 goto out;
64 }
65
66 ip4_address_decode (mp->collector_address.un.ip4, &collector);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +010067 collector_port = ntohs (mp->collector_port);
68 if (collector_port == (u16) ~ 0)
69 collector_port = UDP_DST_PORT_ipfix;
Jakub Grajciar2f71a882019-10-10 14:21:22 +020070 ip4_address_decode (mp->src_address.un.ip4, &src);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +010071 fib_id = ntohl (mp->vrf_id);
72
73 ip4_main_t *im = &ip4_main;
74 if (fib_id == ~0)
75 {
76 fib_index = ~0;
77 }
78 else
79 {
80 uword *p = hash_get (im->fib_index_by_table_id, fib_id);
81 if (!p)
82 {
83 rv = VNET_API_ERROR_NO_SUCH_FIB;
84 goto out;
85 }
86 fib_index = p[0];
87 }
88
89 path_mtu = ntohl (mp->path_mtu);
90 if (path_mtu == ~0)
91 path_mtu = 512; // RFC 7011 section 10.3.3.
92 template_interval = ntohl (mp->template_interval);
93 if (template_interval == ~0)
94 template_interval = 20;
95 udp_checksum = mp->udp_checksum;
96
Alexander Chernavin67ec7522020-10-01 08:57:59 -040097 if (collector.as_u32 != 0 && src.as_u32 == 0)
Pavel Kotucekeb9e6662017-01-24 13:40:26 +010098 {
99 rv = VNET_API_ERROR_INVALID_VALUE;
100 goto out;
101 }
102
103 if (path_mtu > 1450 /* vpp does not support fragmentation */ )
104 {
105 rv = VNET_API_ERROR_INVALID_VALUE;
106 goto out;
107 }
108
109 if (path_mtu < 68)
110 {
111 rv = VNET_API_ERROR_INVALID_VALUE;
112 goto out;
113 }
114
115 /* Reset report streams if we are reconfiguring IP addresses */
116 if (frm->ipfix_collector.as_u32 != collector.as_u32 ||
117 frm->src_address.as_u32 != src.as_u32 ||
118 frm->collector_port != collector_port)
119 vnet_flow_reports_reset (frm);
120
121 frm->ipfix_collector.as_u32 = collector.as_u32;
122 frm->collector_port = collector_port;
123 frm->src_address.as_u32 = src.as_u32;
124 frm->fib_index = fib_index;
125 frm->path_mtu = path_mtu;
126 frm->template_interval = template_interval;
127 frm->udp_checksum = udp_checksum;
128
129 /* Turn on the flow reporting process */
130 vlib_process_signal_event (vm, flow_report_process_node.index, 1, 0);
131
132out:
133 REPLY_MACRO (VL_API_SET_IPFIX_EXPORTER_REPLY);
134}
135
136static void
137vl_api_ipfix_exporter_dump_t_handler (vl_api_ipfix_exporter_dump_t * mp)
138{
139 flow_report_main_t *frm = &flow_report_main;
Florin Coras6c4dae22018-01-09 06:39:23 -0800140 vl_api_registration_t *reg;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100141 vl_api_ipfix_exporter_details_t *rmp;
142 ip4_main_t *im = &ip4_main;
Jakub Grajciar2f71a882019-10-10 14:21:22 +0200143 ip46_address_t collector = {.as_u64[0] = 0,.as_u64[1] = 0 };
144 ip46_address_t src = {.as_u64[0] = 0,.as_u64[1] = 0 };
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100145 u32 vrf_id;
146
Florin Coras6c4dae22018-01-09 06:39:23 -0800147 reg = vl_api_client_index_to_registration (mp->client_index);
148 if (!reg)
Paul Vinciguerra21b83e92019-06-24 09:55:46 -0400149 return;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100150
151 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400152 clib_memset (rmp, 0, sizeof (*rmp));
Paul Atkins5df0b342021-09-23 10:55:25 +0100153 rmp->_vl_msg_id =
154 ntohs ((REPLY_MSG_ID_BASE) + VL_API_IPFIX_EXPORTER_DETAILS);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100155 rmp->context = mp->context;
Jakub Grajciar2f71a882019-10-10 14:21:22 +0200156
157 memcpy (&collector.ip4, &frm->ipfix_collector, sizeof (ip4_address_t));
158 ip_address_encode (&collector, IP46_TYPE_IP4, &rmp->collector_address);
159
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100160 rmp->collector_port = htons (frm->collector_port);
Jakub Grajciar2f71a882019-10-10 14:21:22 +0200161
162 memcpy (&src.ip4, &frm->src_address, sizeof (ip4_address_t));
163 ip_address_encode (&src, IP46_TYPE_IP4, &rmp->src_address);
164
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100165 if (frm->fib_index == ~0)
166 vrf_id = ~0;
167 else
168 vrf_id = im->fibs[frm->fib_index].ft_table_id;
169 rmp->vrf_id = htonl (vrf_id);
170 rmp->path_mtu = htonl (frm->path_mtu);
171 rmp->template_interval = htonl (frm->template_interval);
172 rmp->udp_checksum = (frm->udp_checksum != 0);
173
Florin Coras6c4dae22018-01-09 06:39:23 -0800174 vl_api_send_msg (reg, (u8 *) rmp);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100175}
176
177static void
178 vl_api_set_ipfix_classify_stream_t_handler
179 (vl_api_set_ipfix_classify_stream_t * mp)
180{
181 vl_api_set_ipfix_classify_stream_reply_t *rmp;
182 flow_report_classify_main_t *fcm = &flow_report_classify_main;
183 flow_report_main_t *frm = &flow_report_main;
184 u32 domain_id = 0;
185 u32 src_port = UDP_DST_PORT_ipfix;
186 int rv = 0;
187
188 domain_id = ntohl (mp->domain_id);
189 src_port = ntohs (mp->src_port);
190
191 if (fcm->src_port != 0 &&
192 (fcm->domain_id != domain_id || fcm->src_port != (u16) src_port))
193 {
194 int rv = vnet_stream_change (frm, fcm->domain_id, fcm->src_port,
195 domain_id, (u16) src_port);
196 ASSERT (rv == 0);
197 }
198
199 fcm->domain_id = domain_id;
200 fcm->src_port = (u16) src_port;
201
202 REPLY_MACRO (VL_API_SET_IPFIX_CLASSIFY_STREAM_REPLY);
203}
204
205static void
206 vl_api_ipfix_classify_stream_dump_t_handler
207 (vl_api_ipfix_classify_stream_dump_t * mp)
208{
209 flow_report_classify_main_t *fcm = &flow_report_classify_main;
Florin Coras6c4dae22018-01-09 06:39:23 -0800210 vl_api_registration_t *reg;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100211 vl_api_ipfix_classify_stream_details_t *rmp;
212
Florin Coras6c4dae22018-01-09 06:39:23 -0800213 reg = vl_api_client_index_to_registration (mp->client_index);
214 if (!reg)
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100215 return;
216
217 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400218 clib_memset (rmp, 0, sizeof (*rmp));
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100219 rmp->_vl_msg_id = ntohs (VL_API_IPFIX_CLASSIFY_STREAM_DETAILS);
220 rmp->context = mp->context;
221 rmp->domain_id = htonl (fcm->domain_id);
222 rmp->src_port = htons (fcm->src_port);
223
Florin Coras6c4dae22018-01-09 06:39:23 -0800224 vl_api_send_msg (reg, (u8 *) rmp);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100225}
226
227static void
228 vl_api_ipfix_classify_table_add_del_t_handler
229 (vl_api_ipfix_classify_table_add_del_t * mp)
230{
231 vl_api_ipfix_classify_table_add_del_reply_t *rmp;
Paul Vinciguerra21b83e92019-06-24 09:55:46 -0400232 vl_api_registration_t *reg;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100233 flow_report_classify_main_t *fcm = &flow_report_classify_main;
234 flow_report_main_t *frm = &flow_report_main;
235 vnet_flow_report_add_del_args_t args;
236 ipfix_classify_table_t *table;
237 int is_add;
238 u32 classify_table_index;
239 u8 ip_version;
240 u8 transport_protocol;
241 int rv = 0;
242
Paul Vinciguerra21b83e92019-06-24 09:55:46 -0400243 reg = vl_api_client_index_to_registration (mp->client_index);
244 if (!reg)
245 return;
246
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100247 classify_table_index = ntohl (mp->table_id);
Alexander Chernavinf6cf57c2020-09-30 10:36:10 -0400248 ip_version = (mp->ip_version == ADDRESS_IP4) ? 4 : 6;
249 transport_protocol = mp->transport_protocol;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100250 is_add = mp->is_add;
251
252 if (fcm->src_port == 0)
253 {
254 /* call set_ipfix_classify_stream first */
255 rv = VNET_API_ERROR_UNSPECIFIED;
256 goto out;
257 }
258
Dave Barachb7b92992018-10-17 10:38:51 -0400259 clib_memset (&args, 0, sizeof (args));
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100260
261 table = 0;
262 int i;
263 for (i = 0; i < vec_len (fcm->tables); i++)
264 if (ipfix_classify_table_index_valid (i))
265 if (fcm->tables[i].classify_table_index == classify_table_index)
266 {
267 table = &fcm->tables[i];
268 break;
269 }
270
271 if (is_add)
272 {
273 if (table)
274 {
275 rv = VNET_API_ERROR_VALUE_EXIST;
276 goto out;
277 }
278 table = ipfix_classify_add_table ();
279 table->classify_table_index = classify_table_index;
280 }
281 else
282 {
283 if (!table)
284 {
285 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
286 goto out;
287 }
288 }
289
290 table->ip_version = ip_version;
291 table->transport_protocol = transport_protocol;
292
293 args.opaque.as_uword = table - fcm->tables;
294 args.rewrite_callback = ipfix_classify_template_rewrite;
295 args.flow_data_callback = ipfix_classify_send_flows;
296 args.is_add = is_add;
297 args.domain_id = fcm->domain_id;
298 args.src_port = fcm->src_port;
299
Ole Troan5c749732017-03-13 13:39:52 +0100300 rv = vnet_flow_report_add_del (frm, &args, NULL);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100301
302 /* If deleting, or add failed */
303 if (is_add == 0 || (rv && is_add))
304 ipfix_classify_delete_table (table - fcm->tables);
305
306out:
307 REPLY_MACRO (VL_API_SET_IPFIX_CLASSIFY_STREAM_REPLY);
308}
309
310static void
311send_ipfix_classify_table_details (u32 table_index,
Florin Coras6c4dae22018-01-09 06:39:23 -0800312 vl_api_registration_t * reg, u32 context)
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100313{
314 flow_report_classify_main_t *fcm = &flow_report_classify_main;
315 vl_api_ipfix_classify_table_details_t *mp;
316
317 ipfix_classify_table_t *table = &fcm->tables[table_index];
318
319 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400320 clib_memset (mp, 0, sizeof (*mp));
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100321 mp->_vl_msg_id = ntohs (VL_API_IPFIX_CLASSIFY_TABLE_DETAILS);
322 mp->context = context;
323 mp->table_id = htonl (table->classify_table_index);
Alexander Chernavinf6cf57c2020-09-30 10:36:10 -0400324 mp->ip_version = (table->ip_version == 4) ? ADDRESS_IP4 : ADDRESS_IP6;
325 mp->transport_protocol = table->transport_protocol;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100326
Florin Coras6c4dae22018-01-09 06:39:23 -0800327 vl_api_send_msg (reg, (u8 *) mp);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100328}
329
330static void
331 vl_api_ipfix_classify_table_dump_t_handler
332 (vl_api_ipfix_classify_table_dump_t * mp)
333{
334 flow_report_classify_main_t *fcm = &flow_report_classify_main;
Florin Coras6c4dae22018-01-09 06:39:23 -0800335 vl_api_registration_t *reg;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100336 u32 i;
337
Florin Coras6c4dae22018-01-09 06:39:23 -0800338 reg = vl_api_client_index_to_registration (mp->client_index);
339 if (!reg)
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100340 return;
341
342 for (i = 0; i < vec_len (fcm->tables); i++)
343 if (ipfix_classify_table_index_valid (i))
Florin Coras6c4dae22018-01-09 06:39:23 -0800344 send_ipfix_classify_table_details (i, reg, mp->context);
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100345}
346
Paul Vinciguerra21b83e92019-06-24 09:55:46 -0400347static void
348vl_api_ipfix_flush_t_handler (vl_api_ipfix_flush_t * mp)
349{
Filip Tehlar53dea272021-06-21 10:57:49 +0000350 flow_report_main_t *frm = &flow_report_main;
Paul Vinciguerra21b83e92019-06-24 09:55:46 -0400351 vl_api_ipfix_flush_reply_t *rmp;
352 vl_api_registration_t *reg;
353 vlib_main_t *vm = vlib_get_main ();
354 int rv = 0;
355
356 reg = vl_api_client_index_to_registration (mp->client_index);
357 if (!reg)
358 return;
359
360 /* poke the flow reporting process */
361 vlib_process_signal_event (vm, flow_report_process_node.index,
362 1 /* type_opaque */ , 0 /* data */ );
363
364 REPLY_MACRO (VL_API_IPFIX_FLUSH_REPLY);
365}
366
Filip Tehlar53dea272021-06-21 10:57:49 +0000367#include <vnet/ipfix-export/ipfix_export.api.c>
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100368static clib_error_t *
369flow_api_hookup (vlib_main_t * vm)
370{
Filip Tehlar53dea272021-06-21 10:57:49 +0000371 flow_report_main_t *frm = &flow_report_main;
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100372 /*
373 * Set up the (msg_name, crc, message-id) table
374 */
Filip Tehlar53dea272021-06-21 10:57:49 +0000375 REPLY_MSG_ID_BASE = setup_message_id_table ();
Pavel Kotucekeb9e6662017-01-24 13:40:26 +0100376
377 return 0;
378}
379
380VLIB_API_INIT_FUNCTION (flow_api_hookup);
381
382/*
383 * fd.io coding-style-patch-verification: ON
384 *
385 * Local Variables:
386 * eval: (c-set-style "gnu")
387 * End:
388 */