blob: d1f308011b8fcb6925eecbb91864ed424a8dd0a3 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 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#ifndef __included_vnet_flow_report_h__
16#define __included_vnet_flow_report_h__
17
18#include <vlib/vlib.h>
19#include <vnet/vnet.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070020#include <vnet/ethernet/ethernet.h>
21#include <vnet/ethernet/packet.h>
22#include <vnet/ip/ip_packet.h>
23#include <vnet/ip/ip4_packet.h>
24#include <vnet/ip/ip6_packet.h>
Florin Corasb040f982020-10-20 14:59:43 -070025#include <vnet/udp/udp_packet.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070026#include <vlib/cli.h>
27#include <vppinfra/error.h>
28#include <vppinfra/hash.h>
29#include <vppinfra/cache.h>
30
Ole Troana9855ef2018-05-02 12:45:10 +020031#include <vnet/ipfix-export/ipfix_packet.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070032
Dave Barach2be45812018-05-13 08:50:25 -040033/* ipfix field definitions for a particular report */
34typedef struct
35{
36 u32 info_element;
37 u32 size;
38} ipfix_report_element_t;
39
Ed Warnickecb9cada2015-12-08 15:45:58 -070040/* Used to build the rewrite */
Swarup Nayak6bcac062017-11-26 23:11:40 +053041typedef struct
42{
Ed Warnickecb9cada2015-12-08 15:45:58 -070043 ip4_header_t ip4;
44 udp_header_t udp;
45 ipfix_template_packet_t ipfix;
46} ip4_ipfix_template_packet_t;
47
48struct flow_report_main;
49struct flow_report;
50
Swarup Nayak6bcac062017-11-26 23:11:40 +053051typedef vlib_frame_t *(vnet_flow_data_callback_t) (struct flow_report_main *,
52 struct flow_report *,
53 vlib_frame_t *, u32 *,
54 u32);
Juraj Slobodaffa652a2016-08-07 23:43:42 -070055
Dave Barach2be45812018-05-13 08:50:25 -040056typedef u8 *(vnet_flow_rewrite_callback_t) (struct flow_report_main *,
57 struct flow_report *,
58 ip4_address_t *,
59 ip4_address_t *, u16,
60 ipfix_report_element_t * elts,
61 u32 n_elts, u32 * stream_index);
62
63u8 *vnet_flow_rewrite_generic_callback (struct flow_report_main *,
64 struct flow_report *,
65 ip4_address_t *,
66 ip4_address_t *, u16,
67 ipfix_report_element_t * elts,
68 u32 n_elts, u32 * stream_index);
69
Swarup Nayak6bcac062017-11-26 23:11:40 +053070typedef union
71{
72 void *as_ptr;
Juraj Slobodaffa652a2016-08-07 23:43:42 -070073 uword as_uword;
74} opaque_t;
75
Swarup Nayak6bcac062017-11-26 23:11:40 +053076typedef struct
77{
Juraj Slobodaffa652a2016-08-07 23:43:42 -070078 u32 domain_id;
79 u32 sequence_number;
80 u16 src_port;
81 u16 n_reports;
82 u16 next_template_no;
83} flow_report_stream_t;
84
Swarup Nayak6bcac062017-11-26 23:11:40 +053085typedef struct flow_report
86{
Ed Warnickecb9cada2015-12-08 15:45:58 -070087 /* ipfix rewrite, set by callback */
Swarup Nayak6bcac062017-11-26 23:11:40 +053088 u8 *rewrite;
Juraj Slobodaffa652a2016-08-07 23:43:42 -070089 u16 template_id;
90 u32 stream_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070091 f64 last_template_sent;
92 int update_rewrite;
93
94 /* Bitmap of fields to send */
Swarup Nayak6bcac062017-11-26 23:11:40 +053095 uword *fields_to_send;
Ed Warnickecb9cada2015-12-08 15:45:58 -070096
97 /* Opaque data */
Juraj Slobodaffa652a2016-08-07 23:43:42 -070098 opaque_t opaque;
Ed Warnickecb9cada2015-12-08 15:45:58 -070099
Dave Barach2be45812018-05-13 08:50:25 -0400100 /* build-the-template-packet rewrite callback */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101 vnet_flow_rewrite_callback_t *rewrite_callback;
Dave Barach2be45812018-05-13 08:50:25 -0400102 ipfix_report_element_t *report_elements;
103 u32 n_report_elements;
104 u32 *stream_indexp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105
106 /* Send-flow-data callback */
107 vnet_flow_data_callback_t *flow_data_callback;
108} flow_report_t;
109
Paul Atkins9ec64492021-09-21 20:49:12 +0100110/*
111 * The maximum number of ipfix exporters we can have at once
112 */
113#define IPFIX_EXPORTERS_MAX 5
114
115/*
116 * We support multiple exporters. Each one has its own configured
117 * destination, and its own set of reports and streams.
118 */
119typedef struct ipfix_exporter
Swarup Nayak6bcac062017-11-26 23:11:40 +0530120{
121 flow_report_t *reports;
122 flow_report_stream_t *streams;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123
Juraj Sloboda5a49bb92016-07-07 03:23:15 -0700124 /* ipfix collector ip address, port, our ip address, fib index */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125 ip4_address_t ipfix_collector;
Juraj Sloboda5a49bb92016-07-07 03:23:15 -0700126 u16 collector_port;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127 ip4_address_t src_address;
Juraj Sloboda86634f02016-07-01 06:12:58 -0700128 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129
Juraj Sloboda5a49bb92016-07-07 03:23:15 -0700130 /* Path MTU */
131 u32 path_mtu;
132
133 /* time interval in seconds after which to resend templates */
134 u32 template_interval;
135
Juraj Slobodaffa652a2016-08-07 23:43:42 -0700136 /* UDP checksum calculation enable flag */
137 u8 udp_checksum;
Paul Atkins9ec64492021-09-21 20:49:12 +0100138} ipfix_exporter_t;
139
140typedef struct flow_report_main
141{
142 /*
143 * A pool of the exporters. Entry 0 is always there for backwards
144 * compatability reasons. Entries 1 and above have to be created by
145 * the users.
146 */
147 ipfix_exporter_t *exporters;
Juraj Slobodaffa652a2016-08-07 23:43:42 -0700148
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149 /* time scale transform. Joy. */
150 u32 unix_time_0;
151 f64 vlib_time_0;
152
153 /* convenience variables */
Swarup Nayak6bcac062017-11-26 23:11:40 +0530154 vlib_main_t *vlib_main;
155 vnet_main_t *vnet_main;
Filip Tehlar53dea272021-06-21 10:57:49 +0000156
157 u16 msg_id_base;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158} flow_report_main_t;
159
Juraj Sloboda837fbb12016-07-06 23:11:47 -0700160extern flow_report_main_t flow_report_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161
Damjan Marionb8abf872016-03-14 20:02:35 +0100162extern vlib_node_registration_t flow_report_process_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163
Swarup Nayak6bcac062017-11-26 23:11:40 +0530164typedef struct
165{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166 vnet_flow_data_callback_t *flow_data_callback;
167 vnet_flow_rewrite_callback_t *rewrite_callback;
Dave Barach2be45812018-05-13 08:50:25 -0400168 ipfix_report_element_t *report_elements;
169 u32 n_report_elements;
Juraj Slobodaffa652a2016-08-07 23:43:42 -0700170 opaque_t opaque;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171 int is_add;
172 u32 domain_id;
Juraj Sloboda483f6682016-07-06 17:04:06 -0700173 u16 src_port;
Dave Barach2be45812018-05-13 08:50:25 -0400174 u32 *stream_indexp;
Swarup Nayak6bcac062017-11-26 23:11:40 +0530175} vnet_flow_report_add_del_args_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176
Swarup Nayak6bcac062017-11-26 23:11:40 +0530177int vnet_flow_report_add_del (flow_report_main_t * frm,
178 vnet_flow_report_add_del_args_t * a,
179 u16 * template_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700180
Swarup Nayak6bcac062017-11-26 23:11:40 +0530181clib_error_t *flow_report_add_del_error_to_clib_error (int error);
Juraj Sloboda24648ad2016-09-06 04:43:52 -0700182
Juraj Sloboda837fbb12016-07-06 23:11:47 -0700183void vnet_flow_reports_reset (flow_report_main_t * frm);
184
Juraj Slobodaffa652a2016-08-07 23:43:42 -0700185void vnet_stream_reset (flow_report_main_t * frm, u32 stream_index);
186
187int vnet_stream_change (flow_report_main_t * frm,
Swarup Nayak6bcac062017-11-26 23:11:40 +0530188 u32 old_domain_id, u16 old_src_port,
189 u32 new_domain_id, u16 new_src_port);
Juraj Slobodaffa652a2016-08-07 23:43:42 -0700190
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191#endif /* __included_vnet_flow_report_h__ */
Swarup Nayak6bcac062017-11-26 23:11:40 +0530192
193/*
194 * fd.io coding-style-patch-verification: ON
195 *
196 * Local Variables:
197 * eval: (c-set-style "gnu")
198 * End:
199 */