FD.io VPP  v18.10-32-g1161dda
Vector Packet Processing
stats_to_be_deprecated.h
Go to the documentation of this file.
1 /*
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_stats_h__
16 #define __included_stats_h__
17 
18 #include <time.h>
19 #include <vlib/vlib.h>
20 #include <vnet/vnet.h>
21 #include <vnet/interface.h>
22 #include <pthread.h>
23 #include <vlib/threads.h>
24 #include <vnet/fib/fib_table.h>
25 #include <vnet/mfib/mfib_table.h>
26 #include <vlib/unix/unix.h>
27 #include <vlibmemory/api.h>
29 
30 typedef struct
31 {
32  volatile u32 lock;
33  volatile u32 release_hint;
36  int tag;
38 
39 /**
40  * @brief stats request registration indexes
41  *
42  */
43 /* from .../vnet/vnet/ip/lookup.c. Yuck */
44 /* *INDENT-OFF* */
45 typedef CLIB_PACKED (struct
46 {
49  u32 index: 26;
50 }) ip4_route_t;
51 /* *INDENT-ON* */
52 
53 typedef struct
54 {
58 } ip6_route_t;
59 
60 typedef struct
61 {
62  ip4_route_t *ip4routes;
70 
71 typedef struct
72 {
79 
80 typedef enum
81 {
82 #define stats_reg(n) IDX_##n,
83 #include <vpp/stats/stats.reg>
84 #undef stats_reg
87 
88 typedef struct
89 {
90  //Standard client information
94 
96 
97 typedef struct
98 {
99  void *mheap;
100  pthread_t thread_self;
101  pthread_t thread_handle;
102 
105 
106  /*
107  * stats_registrations is a vector, indexed by
108  * IDX_xxxx_COUNTER generated for each streaming
109  * stat a client can register for. (see stats.reg)
110  *
111  * The values in the vector refer to pools.
112  *
113  * The pool is of type vpe_client_stats_registration_t
114  *
115  * This typedef consists of:
116  *
117  * u32 item: This is the instance of the IDX_xxxx_COUNTER a
118  * client is interested in.
119  * vpe_client_registration_t *clients: The list of clients interested.
120  *
121  * e.g.
122  * stats_registrations[IDX_INTERFACE_SIMPLE_COUNTERS] refers to a pool
123  * containing elements:
124  *
125  * u32 item = sw_if_index1
126  * clients = ["clienta","clientb"]
127  *
128  * When clients == NULL the pool element is freed. When the pool is empty
129  *
130  * ie
131  * 0 == pool_elts(stats_registrations[IDX_INTERFACE_SIMPLE_COUNTERS]
132  *
133  * then there is no need to process INTERFACE_SIMPLE_COUNTERS
134  *
135  * Note that u32 item = ~0 is the simple case for ALL interfaces or fibs.
136  *
137  */
138 
141 
142  /* control-plane data structure lock */
144 
145  /* bail out of FIB walk if set */
147 
148  /* Vectors for Distribution funcs: do_ip4_fibs and do_ip6_fibs. */
150 
151  /*
152  Working vector vars so as to not thrash memory allocator.
153  Has effect of making "static"
154  */
157 
158  /* convenience */
163 } stats_main_t;
164 
165 extern stats_main_t stats_main;
166 
167 #endif /* __included_stats_h__ */
168 
169 /*
170  * fd.io coding-style-patch-verification: ON
171  *
172  * Local Variables:
173  * eval: (c-set-style "gnu")
174  * End:
175  */
vpe_client_registration_t ** clients_tmp
typedef address
Definition: ip_types.api:35
do_ip46_fibs_t do_ip46_fibs
vpe_client_registration_t * clients
mfib_table_t ** mfibs
vlib_main_t * vlib_main
vpe_client_stats_registration_t ** regs_tmp
unsigned int u32
Definition: types.h:88
ip6_route_t * ip6routes
u8 address_length
Definition: ip_types.api:42
unsigned short u16
Definition: types.h:57
ip4_route_t * ip4routes
API main structure, used by both vpp and binary API clients.
Definition: api_common.h:201
clib_longjmp_t jmp_buf
Aggregrate type for a prefix.
Definition: mfib_types.h:24
signed int i32
Definition: types.h:77
uword ** stats_registration_hash
vpe_client_stats_registration_t ** stats_registrations
data_structure_lock_t * data_structure_lock
vnet_interface_main_t * interface_main
stats_main_t stats_main
u64 uword
Definition: types.h:112
A protocol Independent IP multicast FIB table.
Definition: mfib_table.h:35
vnet_main_t * vnet_main
typedef CLIB_PACKED(struct{ip4_address_t address;u32 address_length:6;u32 index:26;}) ip4_route_t
stats request registration indexes
mfib_prefix_t * mroutes
A protocol Independent FIB table.
Definition: fib_table.h:69
ip6_address_t address