blob: b26345b86edb884c7b6f2e7609fc67cd3ebe58e3 [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>
20#include <vnet/pg/pg.h>
21#include <vnet/ethernet/ethernet.h>
22#include <vnet/ethernet/packet.h>
23#include <vnet/ip/ip_packet.h>
24#include <vnet/ip/ip4_packet.h>
25#include <vnet/ip/ip6_packet.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050026#include <vnet/udp/udp.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070027#include <vlib/cli.h>
28#include <vppinfra/error.h>
29#include <vppinfra/hash.h>
30#include <vppinfra/cache.h>
31
32#include <vnet/flow/ipfix_packet.h>
33
34/* Used to build the rewrite */
Swarup Nayak6bcac062017-11-26 23:11:40 +053035typedef struct
36{
Ed Warnickecb9cada2015-12-08 15:45:58 -070037 ip4_header_t ip4;
38 udp_header_t udp;
39 ipfix_template_packet_t ipfix;
40} ip4_ipfix_template_packet_t;
41
42struct flow_report_main;
43struct flow_report;
44
Swarup Nayak6bcac062017-11-26 23:11:40 +053045typedef u8 *(vnet_flow_rewrite_callback_t) (struct flow_report_main *,
46 struct flow_report *,
47 ip4_address_t *,
48 ip4_address_t *, u16);
Ed Warnickecb9cada2015-12-08 15:45:58 -070049
Swarup Nayak6bcac062017-11-26 23:11:40 +053050typedef vlib_frame_t *(vnet_flow_data_callback_t) (struct flow_report_main *,
51 struct flow_report *,
52 vlib_frame_t *, u32 *,
53 u32);
Juraj Slobodaffa652a2016-08-07 23:43:42 -070054
Swarup Nayak6bcac062017-11-26 23:11:40 +053055typedef union
56{
57 void *as_ptr;
Juraj Slobodaffa652a2016-08-07 23:43:42 -070058 uword as_uword;
59} opaque_t;
60
Swarup Nayak6bcac062017-11-26 23:11:40 +053061typedef struct
62{
Juraj Slobodaffa652a2016-08-07 23:43:42 -070063 u32 domain_id;
64 u32 sequence_number;
65 u16 src_port;
66 u16 n_reports;
67 u16 next_template_no;
68} flow_report_stream_t;
69
Swarup Nayak6bcac062017-11-26 23:11:40 +053070typedef struct flow_report
71{
Ed Warnickecb9cada2015-12-08 15:45:58 -070072 /* ipfix rewrite, set by callback */
Swarup Nayak6bcac062017-11-26 23:11:40 +053073 u8 *rewrite;
Juraj Slobodaffa652a2016-08-07 23:43:42 -070074 u16 template_id;
75 u32 stream_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070076 f64 last_template_sent;
77 int update_rewrite;
78
79 /* Bitmap of fields to send */
Swarup Nayak6bcac062017-11-26 23:11:40 +053080 uword *fields_to_send;
Ed Warnickecb9cada2015-12-08 15:45:58 -070081
82 /* Opaque data */
Juraj Slobodaffa652a2016-08-07 23:43:42 -070083 opaque_t opaque;
Ed Warnickecb9cada2015-12-08 15:45:58 -070084
85 /* build-the-rewrite callback */
86 vnet_flow_rewrite_callback_t *rewrite_callback;
87
88 /* Send-flow-data callback */
89 vnet_flow_data_callback_t *flow_data_callback;
90} flow_report_t;
91
Swarup Nayak6bcac062017-11-26 23:11:40 +053092typedef struct flow_report_main
93{
94 flow_report_t *reports;
95 flow_report_stream_t *streams;
Ed Warnickecb9cada2015-12-08 15:45:58 -070096
Juraj Sloboda5a49bb92016-07-07 03:23:15 -070097 /* ipfix collector ip address, port, our ip address, fib index */
Ed Warnickecb9cada2015-12-08 15:45:58 -070098 ip4_address_t ipfix_collector;
Juraj Sloboda5a49bb92016-07-07 03:23:15 -070099 u16 collector_port;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100 ip4_address_t src_address;
Juraj Sloboda86634f02016-07-01 06:12:58 -0700101 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102
Juraj Sloboda5a49bb92016-07-07 03:23:15 -0700103 /* Path MTU */
104 u32 path_mtu;
105
106 /* time interval in seconds after which to resend templates */
107 u32 template_interval;
108
Juraj Slobodaffa652a2016-08-07 23:43:42 -0700109 /* UDP checksum calculation enable flag */
110 u8 udp_checksum;
111
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112 /* time scale transform. Joy. */
113 u32 unix_time_0;
114 f64 vlib_time_0;
115
116 /* convenience variables */
Swarup Nayak6bcac062017-11-26 23:11:40 +0530117 vlib_main_t *vlib_main;
118 vnet_main_t *vnet_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119} flow_report_main_t;
120
Juraj Sloboda837fbb12016-07-06 23:11:47 -0700121extern flow_report_main_t flow_report_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122
Damjan Marionb8abf872016-03-14 20:02:35 +0100123extern vlib_node_registration_t flow_report_process_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124
125int vnet_flow_report_enable_disable (u32 sw_if_index, u32 table_index,
Swarup Nayak6bcac062017-11-26 23:11:40 +0530126 int enable_disable);
127typedef struct
128{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129 vnet_flow_data_callback_t *flow_data_callback;
130 vnet_flow_rewrite_callback_t *rewrite_callback;
Juraj Slobodaffa652a2016-08-07 23:43:42 -0700131 opaque_t opaque;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700132 int is_add;
133 u32 domain_id;
Juraj Sloboda483f6682016-07-06 17:04:06 -0700134 u16 src_port;
Swarup Nayak6bcac062017-11-26 23:11:40 +0530135} vnet_flow_report_add_del_args_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136
Swarup Nayak6bcac062017-11-26 23:11:40 +0530137int vnet_flow_report_add_del (flow_report_main_t * frm,
138 vnet_flow_report_add_del_args_t * a,
139 u16 * template_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140
Swarup Nayak6bcac062017-11-26 23:11:40 +0530141clib_error_t *flow_report_add_del_error_to_clib_error (int error);
Juraj Sloboda24648ad2016-09-06 04:43:52 -0700142
Juraj Sloboda837fbb12016-07-06 23:11:47 -0700143void vnet_flow_reports_reset (flow_report_main_t * frm);
144
Juraj Slobodaffa652a2016-08-07 23:43:42 -0700145void vnet_stream_reset (flow_report_main_t * frm, u32 stream_index);
146
147int vnet_stream_change (flow_report_main_t * frm,
Swarup Nayak6bcac062017-11-26 23:11:40 +0530148 u32 old_domain_id, u16 old_src_port,
149 u32 new_domain_id, u16 new_src_port);
Juraj Slobodaffa652a2016-08-07 23:43:42 -0700150
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151#endif /* __included_vnet_flow_report_h__ */
Swarup Nayak6bcac062017-11-26 23:11:40 +0530152
153/*
154 * fd.io coding-style-patch-verification: ON
155 *
156 * Local Variables:
157 * eval: (c-set-style "gnu")
158 * End:
159 */