blob: d9671c69ff27deb2f247253f93820ee27e5dfe2a [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>
Damjan Marion8973b072022-03-01 15:51:18 +010028#include <vlib/stats/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;
Ole Troan04853c62023-02-17 14:23:48 +010039 bool via_symlink;
Ole Troan2fee1672018-08-23 13:00:53 +020040 union
41 {
Ole Troan58492a82018-09-04 13:19:12 +020042 double scalar_value;
Ole Troan233e4682019-05-16 15:01:34 +020043 counter_t *error_vector;
Ole Troan2fee1672018-08-23 13:00:53 +020044 counter_t **simple_counter_vec;
45 vlib_counter_t **combined_counter_vec;
Ole Troan703908a2019-02-26 16:37:03 +010046 uint8_t **name_vector;
Ole Troan2fee1672018-08-23 13:00:53 +020047 };
48} stat_segment_data_t;
49
Dave Barach531969e2019-08-14 09:35:41 -040050typedef struct
51{
52 uint64_t current_epoch;
Damjan Marion8973b072022-03-01 15:51:18 +010053 vlib_stats_shared_header_t *shared_header;
54 vlib_stats_entry_t *directory_vector;
Dave Barach531969e2019-08-14 09:35:41 -040055 ssize_t memory_size;
Ole Troanfdc67802020-08-10 11:59:20 +020056 uint64_t timeout;
Dave Barach531969e2019-08-14 09:35:41 -040057} stat_client_main_t;
58
59extern stat_client_main_t stat_client_main;
60
Paul Vinciguerra56421092018-11-21 16:34:09 -080061stat_client_main_t *stat_client_get (void);
62void stat_client_free (stat_client_main_t * sm);
Neale Ranns318d7942018-12-03 01:53:32 -080063int stat_segment_connect_r (const char *socket_name, stat_client_main_t * sm);
64int stat_segment_connect (const char *socket_name);
Paul Vinciguerra56421092018-11-21 16:34:09 -080065void stat_segment_disconnect_r (stat_client_main_t * sm);
Ole Troan2fee1672018-08-23 13:00:53 +020066void stat_segment_disconnect (void);
Mohsin Kazmi90a9fdf2018-12-04 14:31:15 +000067uint8_t **stat_segment_string_vector (uint8_t ** string_vector,
68 const char *string);
Ole Troan73202102018-08-31 00:29:48 +020069int stat_segment_vec_len (void *vec);
Ole Troan82540182018-10-22 09:41:29 +020070void stat_segment_vec_free (void *vec);
Paul Vinciguerra56421092018-11-21 16:34:09 -080071uint32_t *stat_segment_ls_r (uint8_t ** patterns, stat_client_main_t * sm);
Ole Troan58492a82018-09-04 13:19:12 +020072uint32_t *stat_segment_ls (uint8_t ** pattern);
Paul Vinciguerra56421092018-11-21 16:34:09 -080073stat_segment_data_t *stat_segment_dump_r (uint32_t * stats,
74 stat_client_main_t * sm);
Ole Troan58492a82018-09-04 13:19:12 +020075stat_segment_data_t *stat_segment_dump (uint32_t * counter_vec);
Paul Vinciguerra56421092018-11-21 16:34:09 -080076stat_segment_data_t *stat_segment_dump_entry_r (uint32_t index,
77 stat_client_main_t * sm);
Ole Troan58492a82018-09-04 13:19:12 +020078stat_segment_data_t *stat_segment_dump_entry (uint32_t index);
Ole Troan58492a82018-09-04 13:19:12 +020079
Paul Vinciguerra56421092018-11-21 16:34:09 -080080void stat_segment_data_free (stat_segment_data_t * res);
81double stat_segment_heartbeat_r (stat_client_main_t * sm);
Ole Troan58492a82018-09-04 13:19:12 +020082double stat_segment_heartbeat (void);
83
Ole Troancbb8f582019-04-15 08:53:46 +020084char *stat_segment_index_to_name_r (uint32_t index, stat_client_main_t * sm);
Ole Troan58492a82018-09-04 13:19:12 +020085char *stat_segment_index_to_name (uint32_t index);
Ole Troanb63dbc52019-06-14 10:26:14 +020086uint64_t stat_segment_version (void);
87uint64_t stat_segment_version_r (stat_client_main_t * sm);
Ole Troan2fee1672018-08-23 13:00:53 +020088
Dave Barach531969e2019-08-14 09:35:41 -040089typedef struct
90{
91 uint64_t epoch;
92} stat_segment_access_t;
93
Ole Troanfdc67802020-08-10 11:59:20 +020094static inline uint64_t
95_time_now_nsec (void)
96{
97 struct timespec ts;
98 clock_gettime (CLOCK_REALTIME, &ts);
99 return 1e9 * ts.tv_sec + ts.tv_nsec;
100}
101
Ole Troan7d29e322020-07-21 08:46:08 +0200102static inline void *
103stat_segment_adjust (stat_client_main_t * sm, void *data)
104{
Vratko Polak18a71d82020-12-02 18:45:16 +0100105 char *csh = (char *) sm->shared_header;
106 char *p = csh + ((char *) data - (char *) sm->shared_header->base);
107 if (p > csh && p + sizeof (p) < csh + sm->memory_size)
108 return (void *) p;
Ole Troan65c56c82020-10-21 11:55:28 +0200109 return 0;
Ole Troan7d29e322020-07-21 08:46:08 +0200110}
111
Vratko Polak9a412bc2020-08-14 18:00:33 +0200112/*
113 * Returns 0 on success, -1 on failure (timeout)
114 */
Ole Troanfdc67802020-08-10 11:59:20 +0200115static inline int
Dave Barach531969e2019-08-14 09:35:41 -0400116stat_segment_access_start (stat_segment_access_t * sa,
117 stat_client_main_t * sm)
118{
Damjan Marion8973b072022-03-01 15:51:18 +0100119 vlib_stats_shared_header_t *shared_header = sm->shared_header;
Ole Troanfdc67802020-08-10 11:59:20 +0200120 uint64_t max_time;
121
Dave Barach531969e2019-08-14 09:35:41 -0400122 sa->epoch = shared_header->epoch;
Ole Troanfdc67802020-08-10 11:59:20 +0200123 if (sm->timeout)
124 {
125 max_time = _time_now_nsec () + sm->timeout;
126 while (shared_header->in_progress != 0 && _time_now_nsec () < max_time)
127 ;
128 }
129 else
130 {
131 while (shared_header->in_progress != 0)
132 ;
133 }
Damjan Marion8973b072022-03-01 15:51:18 +0100134 sm->directory_vector = (vlib_stats_entry_t *) stat_segment_adjust (
135 sm, (void *) sm->shared_header->directory_vector);
Ole Troanfdc67802020-08-10 11:59:20 +0200136 if (sm->timeout)
137 return _time_now_nsec () < max_time ? 0 : -1;
138 return 0;
139}
140
141/*
142 * set maximum number of nano seconds to wait for in_progress state
143 */
144static inline void
145stat_segment_set_timeout_nsec (stat_client_main_t * sm, uint64_t timeout)
146{
147 sm->timeout = timeout;
Dave Barach531969e2019-08-14 09:35:41 -0400148}
149
Rajesh Goel76500862020-09-03 18:38:03 +0530150/*
151 * set maximum number of nano seconds to wait for in_progress state
152 * this function can be called directly by module using shared stat
153 * segment
154 */
155static inline void
156stat_segment_set_timeout (uint64_t timeout)
157{
158 stat_client_main_t *sm = &stat_client_main;
159 stat_segment_set_timeout_nsec (sm, timeout);
160}
161
162
Dave Barach531969e2019-08-14 09:35:41 -0400163static inline bool
164stat_segment_access_end (stat_segment_access_t * sa, stat_client_main_t * sm)
165{
Damjan Marion8973b072022-03-01 15:51:18 +0100166 vlib_stats_shared_header_t *shared_header = sm->shared_header;
Dave Barach531969e2019-08-14 09:35:41 -0400167
168 if (shared_header->epoch != sa->epoch || shared_header->in_progress)
169 return false;
170 return true;
171}
172
Ole Troan2fee1672018-08-23 13:00:53 +0200173#endif /* included_stat_client_h */
174
175/*
176 * fd.io coding-style-patch-verification: ON
177 *
178 * Local Variables:
179 * eval: (c-set-style "gnu")
180 * End:
181 */