blob: 052d9692c8893d5540f40334212556fc2afb3ca5 [file] [log] [blame]
Ole Troan2fee1672018-08-23 13:00:53 +02001/*
2 * stat_client.h - Library for access to VPP statistics segment
3 *
4 * Copyright (c) 2018 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17#ifndef included_stat_client_h
18#define included_stat_client_h
19
Ole Troand577e1f2019-04-29 13:38:52 +020020#define STAT_VERSION_MAJOR 1
Ole Troan233e4682019-05-16 15:01:34 +020021#define STAT_VERSION_MINOR 2
Ole Troand577e1f2019-04-29 13:38:52 +020022
Ole Troan58492a82018-09-04 13:19:12 +020023#include <stdint.h>
Ole Troan2152e1c2018-11-23 23:07:13 +010024#include <unistd.h>
Ole Troan58492a82018-09-04 13:19:12 +020025#include <vlib/counter_types.h>
Ole Troanfdc67802020-08-10 11:59:20 +020026#include <time.h>
Dave Barach531969e2019-08-14 09:35:41 -040027#include <stdbool.h>
28#include <vpp/stats/stat_segment_shared.h>
Ole Troan2152e1c2018-11-23 23:07:13 +010029
30/* Default socket to exchange segment fd */
YohanPipereau71dd9d52019-06-06 16:34:14 +020031/* TODO: Get from runtime directory */
Ole Troan2152e1c2018-11-23 23:07:13 +010032#define STAT_SEGMENT_SOCKET_FILE "/run/vpp/stats.sock"
YohanPipereau71dd9d52019-06-06 16:34:14 +020033#define STAT_SEGMENT_SOCKET_FILENAME "stats.sock"
Ole Troan2152e1c2018-11-23 23:07:13 +010034
Paul Vinciguerra56421092018-11-21 16:34:09 -080035typedef struct
36{
Ole Troan2fee1672018-08-23 13:00:53 +020037 char *name;
38 stat_directory_type_t type;
39 union
40 {
Ole Troan58492a82018-09-04 13:19:12 +020041 double scalar_value;
Ole Troan233e4682019-05-16 15:01:34 +020042 counter_t *error_vector;
Ole Troan2fee1672018-08-23 13:00:53 +020043 counter_t **simple_counter_vec;
44 vlib_counter_t **combined_counter_vec;
Ole Troan703908a2019-02-26 16:37:03 +010045 uint8_t **name_vector;
Ole Troan2fee1672018-08-23 13:00:53 +020046 };
47} stat_segment_data_t;
48
Dave Barach531969e2019-08-14 09:35:41 -040049typedef struct
50{
51 uint64_t current_epoch;
52 stat_segment_shared_header_t *shared_header;
53 stat_segment_directory_entry_t *directory_vector;
54 ssize_t memory_size;
Ole Troanfdc67802020-08-10 11:59:20 +020055 uint64_t timeout;
Dave Barach531969e2019-08-14 09:35:41 -040056} stat_client_main_t;
57
58extern stat_client_main_t stat_client_main;
59
Paul Vinciguerra56421092018-11-21 16:34:09 -080060stat_client_main_t *stat_client_get (void);
61void stat_client_free (stat_client_main_t * sm);
Neale Ranns318d7942018-12-03 01:53:32 -080062int stat_segment_connect_r (const char *socket_name, stat_client_main_t * sm);
63int stat_segment_connect (const char *socket_name);
Paul Vinciguerra56421092018-11-21 16:34:09 -080064void stat_segment_disconnect_r (stat_client_main_t * sm);
Ole Troan2fee1672018-08-23 13:00:53 +020065void stat_segment_disconnect (void);
Mohsin Kazmi90a9fdf2018-12-04 14:31:15 +000066uint8_t **stat_segment_string_vector (uint8_t ** string_vector,
67 const char *string);
Ole Troan73202102018-08-31 00:29:48 +020068int stat_segment_vec_len (void *vec);
Ole Troan82540182018-10-22 09:41:29 +020069void stat_segment_vec_free (void *vec);
Paul Vinciguerra56421092018-11-21 16:34:09 -080070uint32_t *stat_segment_ls_r (uint8_t ** patterns, stat_client_main_t * sm);
Ole Troan58492a82018-09-04 13:19:12 +020071uint32_t *stat_segment_ls (uint8_t ** pattern);
Paul Vinciguerra56421092018-11-21 16:34:09 -080072stat_segment_data_t *stat_segment_dump_r (uint32_t * stats,
73 stat_client_main_t * sm);
Ole Troan58492a82018-09-04 13:19:12 +020074stat_segment_data_t *stat_segment_dump (uint32_t * counter_vec);
Paul Vinciguerra56421092018-11-21 16:34:09 -080075stat_segment_data_t *stat_segment_dump_entry_r (uint32_t index,
76 stat_client_main_t * sm);
Ole Troan58492a82018-09-04 13:19:12 +020077stat_segment_data_t *stat_segment_dump_entry (uint32_t index);
Ole Troan58492a82018-09-04 13:19:12 +020078
Paul Vinciguerra56421092018-11-21 16:34:09 -080079void stat_segment_data_free (stat_segment_data_t * res);
80double stat_segment_heartbeat_r (stat_client_main_t * sm);
Ole Troan58492a82018-09-04 13:19:12 +020081double stat_segment_heartbeat (void);
82
Ole Troancbb8f582019-04-15 08:53:46 +020083char *stat_segment_index_to_name_r (uint32_t index, stat_client_main_t * sm);
Ole Troan58492a82018-09-04 13:19:12 +020084char *stat_segment_index_to_name (uint32_t index);
Ole Troanb63dbc52019-06-14 10:26:14 +020085uint64_t stat_segment_version (void);
86uint64_t stat_segment_version_r (stat_client_main_t * sm);
Ole Troan2fee1672018-08-23 13:00:53 +020087
Dave Barach531969e2019-08-14 09:35:41 -040088typedef struct
89{
90 uint64_t epoch;
91} stat_segment_access_t;
92
Ole Troanfdc67802020-08-10 11:59:20 +020093/*
94 * Returns 0 on success, -1 on failure (timeout)
95 */
96static inline uint64_t
97_time_now_nsec (void)
98{
99 struct timespec ts;
100 clock_gettime (CLOCK_REALTIME, &ts);
101 return 1e9 * ts.tv_sec + ts.tv_nsec;
102}
103
104static inline int
Dave Barach531969e2019-08-14 09:35:41 -0400105stat_segment_access_start (stat_segment_access_t * sa,
106 stat_client_main_t * sm)
107{
108 stat_segment_shared_header_t *shared_header = sm->shared_header;
Ole Troanfdc67802020-08-10 11:59:20 +0200109 uint64_t max_time;
110
Dave Barach531969e2019-08-14 09:35:41 -0400111 sa->epoch = shared_header->epoch;
Ole Troanfdc67802020-08-10 11:59:20 +0200112 if (sm->timeout)
113 {
114 max_time = _time_now_nsec () + sm->timeout;
115 while (shared_header->in_progress != 0 && _time_now_nsec () < max_time)
116 ;
117 }
118 else
119 {
120 while (shared_header->in_progress != 0)
121 ;
122 }
Dave Barach531969e2019-08-14 09:35:41 -0400123 sm->directory_vector = (stat_segment_directory_entry_t *)
124 stat_segment_pointer (sm->shared_header,
125 sm->shared_header->directory_offset);
Ole Troanfdc67802020-08-10 11:59:20 +0200126 if (sm->timeout)
127 return _time_now_nsec () < max_time ? 0 : -1;
128 return 0;
129}
130
131/*
132 * set maximum number of nano seconds to wait for in_progress state
133 */
134static inline void
135stat_segment_set_timeout_nsec (stat_client_main_t * sm, uint64_t timeout)
136{
137 sm->timeout = timeout;
Dave Barach531969e2019-08-14 09:35:41 -0400138}
139
140static inline bool
141stat_segment_access_end (stat_segment_access_t * sa, stat_client_main_t * sm)
142{
143 stat_segment_shared_header_t *shared_header = sm->shared_header;
144
145 if (shared_header->epoch != sa->epoch || shared_header->in_progress)
146 return false;
147 return true;
148}
149
150
Ole Troan2fee1672018-08-23 13:00:53 +0200151#endif /* included_stat_client_h */
152
153/*
154 * fd.io coding-style-patch-verification: ON
155 *
156 * Local Variables:
157 * eval: (c-set-style "gnu")
158 * End:
159 */