FD.io VPP  v19.04.1-1-ge4a0f9f
Vector Packet Processing
stat_segment.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 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 
16 #ifndef included_stat_segment_h
17 #define included_stat_segment_h
18 
19 #include <stdatomic.h>
20 #include <vlib/vlib.h>
21 #include <vppinfra/socket.h>
23 
24 typedef enum
25 {
39 
40 #define foreach_stat_segment_counter_name \
41  _(VECTOR_RATE, SCALAR_INDEX, vector_rate, /sys) \
42  _(INPUT_RATE, SCALAR_INDEX, input_rate, /sys) \
43  _(LAST_UPDATE, SCALAR_INDEX, last_update, /sys) \
44  _(LAST_STATS_CLEAR, SCALAR_INDEX, last_stats_clear, /sys) \
45  _(HEARTBEAT, SCALAR_INDEX, heartbeat, /sys) \
46  _(NODE_CLOCKS, COUNTER_VECTOR_SIMPLE, clocks, /sys/node) \
47  _(NODE_VECTORS, COUNTER_VECTOR_SIMPLE, vectors, /sys/node) \
48  _(NODE_CALLS, COUNTER_VECTOR_SIMPLE, calls, /sys/node) \
49  _(NODE_SUSPENDS, COUNTER_VECTOR_SIMPLE, suspends, /sys/node) \
50  _(INTERFACE_NAMES, NAME_VECTOR, names, /if) \
51  _(NODE_NAMES, NAME_VECTOR, names, /sys/node)
52 
53 typedef struct
54 {
56  union {
57  uint64_t offset;
58  uint64_t index;
59  uint64_t value;
60  };
61  uint64_t offset_vector;
62  char name[128]; // TODO change this to pointer to "somewhere"
64 
65 /* Default stat segment 32m */
66 #define STAT_SEGMENT_DEFAULT_SIZE (32<<20)
67 
68 /*
69  * Shared header first in the shared memory segment.
70  */
71 typedef struct
72 {
73  atomic_int_fast64_t epoch;
74  atomic_int_fast64_t in_progress;
75  atomic_int_fast64_t directory_offset;
76  atomic_int_fast64_t error_offset;
77  atomic_int_fast64_t stats_offset;
79 
80 static inline uint64_t
81 stat_segment_offset (void *start, void *data)
82 {
83  return (char *) data - (char *) start;
84 }
85 
86 static inline void *
87 stat_segment_pointer (void *start, uint64_t offset)
88 {
89  return ((char *) start + offset);
90 }
91 
93 
94 typedef struct {
99 
100 typedef struct
101 {
102  /* internal, does not point to shared memory */
104 
105  /* statistics segment */
110 
114  ssize_t memory_size;
116  void *last;
117  void *heap;
118  stat_segment_shared_header_t *shared_header; /* pointer to shared memory segment */
119  int memfd;
120 
121  u64 last_input_packets; // OLE REMOVE?
123 
125 
126 clib_error_t *
127 stat_segment_register_gauge (u8 *names, stat_segment_update_fn update_fn, u32 index);
128 
129 #endif
Definition: stat_segment.h:53
stat_segment_main_t stat_segment_main
Definition: stat_segment.c:25
stat_segment_gauges_pool_t * gauges
Definition: stat_segment.h:103
stat_segment_shared_header_t * shared_header
Definition: stat_segment.h:118
uint64_t index
Definition: stat_segment.h:58
stat_segment_directory_entry_t * directory_vector
Definition: stat_segment.h:107
unsigned long u64
Definition: types.h:89
static uint64_t stat_segment_offset(void *start, void *data)
Definition: stat_segment.h:81
clib_error_t * stat_segment_register_gauge(u8 *names, stat_segment_update_fn update_fn, u32 index)
Definition: stat_segment.c:661
int i
u8 data[128]
Definition: ipsec.api:248
unsigned char u8
Definition: types.h:56
void(* stat_segment_update_fn)(stat_segment_directory_entry_t *e, u32 i)
Definition: stat_segment.h:92
atomic_int_fast64_t in_progress
Definition: stat_segment.h:74
uint64_t value
Definition: stat_segment.h:59
stat_segment_update_fn fn
Definition: stat_segment.h:96
unsigned int u32
Definition: types.h:88
static void * stat_segment_pointer(void *start, uint64_t offset)
Definition: stat_segment.h:87
uint64_t offset
Definition: stat_segment.h:57
stat_segment_counter_t
Definition: stat_segment.h:24
u8 name[64]
Definition: memclnt.api:152
stat_directory_type_t
Definition: stat_client.h:27
uint64_t offset_vector
Definition: stat_segment.h:61
struct _socket_t clib_socket_t
atomic_int_fast64_t epoch
Definition: stat_segment.h:73
template key/value backing page structure
Definition: bihash_doc.h:44
uword * directory_vector_by_name
Definition: stat_segment.h:106
u64 uword
Definition: types.h:112
clib_socket_t * socket
Definition: stat_segment.h:112
atomic_int_fast64_t stats_offset
Definition: stat_segment.h:77
atomic_int_fast64_t error_offset
Definition: stat_segment.h:76
clib_spinlock_t * stat_segment_lockp
Definition: stat_segment.h:111
atomic_int_fast64_t directory_offset
Definition: stat_segment.h:75
stat_directory_type_t type
Definition: stat_segment.h:55