blob: 5f553bcb9f77e2d988649c696f7bd5222365b2a5 [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_vat_h__
16#define __included_vat_h__
17
18#include <stdio.h>
19#include <setjmp.h>
20#include <vppinfra/clib.h>
21#include <vppinfra/format.h>
22#include <vppinfra/error.h>
23#include <vppinfra/time.h>
24#include <vppinfra/macros.h>
25#include <vnet/vnet.h>
26#include <vlib/vlib.h>
27#include <vlib/unix/unix.h>
28#include <vlibapi/api.h>
29#include <vlibmemory/api.h>
30
31#include "vat/json_format.h"
32
33typedef struct {
34 u8 * interface_name;
35 u32 sw_if_index;
36 /* Subinterface ID. A number 0-N to uniquely identify this subinterface under the super interface*/
37 u32 sub_id;
38
39 /* 0 = dot1q, 1=dot1ad */
40 u8 sub_dot1ad;
41
42 /* Number of tags 0-2 */
43 u8 sub_number_of_tags;
44 u16 sub_outer_vlan_id;
45 u16 sub_inner_vlan_id;
46 u8 sub_exact_match;
47 u8 sub_default;
48 u8 sub_outer_vlan_id_any;
49 u8 sub_inner_vlan_id_any;
50
51 /* vlan tag rewrite */
52 u32 vtr_op;
53 u32 vtr_push_dot1q;
54 u32 vtr_tag1;
55 u32 vtr_tag2;
56} sw_interface_subif_t;
57
58typedef struct {
59 u8 ip[16];
60 u8 prefix_length;
61} ip_address_details_t;
62
63typedef struct {
64 u8 present;
65 ip_address_details_t * addr;
66} ip_details_t;
67
68typedef struct {
69 u64 packets;
70 u64 bytes;
71} interface_counter_t;
72
73typedef struct {
74 struct in_addr address;
75 u8 address_length;
76 u64 packets;
77 u64 bytes;
78} ip4_fib_counter_t;
79
80typedef struct {
81 struct in6_addr address;
82 u8 address_length;
83 u64 packets;
84 u64 bytes;
85} ip6_fib_counter_t;
86
87typedef struct {
Andrej Kozemcakd9831182016-06-20 08:47:57 +020088 u8 * locator_set_name;
89 u32 locator_set_index;
90} locator_set_msg_t;
91
92typedef struct {
93 u8 local;
94 u32 sw_if_index;
95 u8 is_ipv6;
96 u8 ip_address[16];
97 u8 priority;
98 u8 weight;
99} locator_msg_t;
100
101typedef struct {
Andrej Kozemcak6cc6f912016-07-13 13:01:01 +0200102 u32 locator_set_index;
103 u8 is_local;
104 u8 eid_type;
105 u32 vni;
106 u8 eid[16];
107 u8 eid_prefix_len;
108 u32 ttl;
109 u8 authoritative;
110} eid_table_t;
111
112typedef struct {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113 /* vpe input queue */
114 unix_shared_memory_queue_t * vl_input_queue;
115
116 /* interface name table */
117 uword * sw_if_index_by_interface_name;
118
119 /* subinterface table */
120 sw_interface_subif_t * sw_if_subif_table;
121
Dave Barachb44e9bc2016-02-19 09:06:23 -0500122 /* Graph node table */
123 uword * graph_node_index_by_name;
124 vlib_node_t ** graph_nodes;
125
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126 /* ip tables */
127 ip_details_t * ip_details_by_sw_if_index[2];
128
129 /* sw_if_index of currently processed interface */
130 u32 current_sw_if_index;
131
132 /* remember that we are dumping ipv6 */
133 u8 is_ipv6;
134
135 /* function table */
136 uword * function_by_name;
137
138 /* help strings */
139 uword * help_by_name;
140
141 /* macro table */
142 macro_main_t macro_main;
143
144 /* Errors by number */
145 uword * error_string_by_error_number;
146
Dave Barachb44e9bc2016-02-19 09:06:23 -0500147
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148 /* Main thread can spin (w/ timeout) here if needed */
149 u32 async_mode;
150 u32 async_errors;
151 volatile u32 result_ready;
152 volatile i32 retval;
Keith Burns (alagalah)802255c2016-06-13 16:56:04 -0700153 volatile u32 sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154 volatile u8 *shmem_result;
155
156 /* our client index */
157 u32 my_client_index;
158
159 /* Time is of the essence... */
160 clib_time_t clib_time;
161
162 /* Unwind (so we can quit) */
163 jmp_buf jump_buf;
164
165 /* temporary parse buffer */
166 unformat_input_t *input;
167
168 /* input buffer */
169 u8 * inbuf;
170
171 /* stdio input / output FILEs */
172 FILE *ifp, *ofp;
173 u8 * current_file;
174 u32 input_line_number;
175
176 /* exec mode toggle */
177 int exec_mode;
178
179 /* Regenerate the interface table */
180 volatile int regenerate_interface_table;
181
182 /* flag for JSON output format */
183 u8 json_output;
184
185 /* flag for interface event display */
186 u8 interface_event_display;
187
188 /* JSON tree used in composing dump api call results */
189 vat_json_node_t json_tree;
190
191 /* counters */
192 u64 **simple_interface_counters;
193 interface_counter_t **combined_interface_counters;
194 ip4_fib_counter_t **ip4_fib_counters;
195 u32 *ip4_fib_counters_vrf_id_by_index;
196 ip6_fib_counter_t **ip6_fib_counters;
197 u32 *ip6_fib_counters_vrf_id_by_index;
198
Andrej Kozemcakd9831182016-06-20 08:47:57 +0200199 /* Lisp */
200 u8 noprint_msg;
201 locator_set_msg_t * locator_set_msg;
202 locator_msg_t * locator_msg;
Andrej Kozemcak6cc6f912016-07-13 13:01:01 +0200203 eid_table_t * eid_tables;
Andrej Kozemcakd9831182016-06-20 08:47:57 +0200204
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205} vat_main_t;
206
207vat_main_t vat_main;
208
209static inline f64 vat_time_now (vat_main_t *vam)
210{
211 return clib_time_now (&vam->clib_time);
212}
213
214#define errmsg(fmt,args...) \
215do { \
216 if(vam->ifp != stdin) \
217 fformat(vam->ofp,"%s(%d): ", vam->current_file, \
218 vam->input_line_number); \
219 fformat(vam->ofp, fmt, ##args); \
220 fflush(vam->ofp); \
221} while(0);
222
223void vat_api_hookup (vat_main_t *vam);
224int api_sw_interface_dump (vat_main_t * vam);
225void do_one_file (vat_main_t * vam);
226int exec (vat_main_t * vam);
227
228/* Plugin API library functions */
229char *vat_plugin_path;
230char *vat_plugin_name_filter;
231void vat_plugin_api_reference(void);
232uword unformat_sw_if_index (unformat_input_t * input, va_list * args);
233uword unformat_ip4_address (unformat_input_t * input, va_list * args);
234uword unformat_ethernet_address (unformat_input_t * input, va_list * args);
235uword unformat_ethernet_type_host_byte_order (unformat_input_t * input,
236 va_list * args);
237uword unformat_ip6_address (unformat_input_t * input, va_list * args);
238u8 * format_ip4_address (u8 * s, va_list * args);
239u8 * format_ethernet_address (u8 * s, va_list * args);
240
241
242#endif /* __included_vat_h__ */