]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zserv.h
Merge pull request #13649 from donaldsharp/unlock_the_node_or_else
[mirror_frr.git] / zebra / zserv.h
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Zebra API server.
4 * Portions:
5 * Copyright (C) 1997-1999 Kunihiro Ishiguro
6 * Copyright (C) 2015-2018 Cumulus Networks, Inc.
7 * et al.
8 */
9
10 #ifndef _ZEBRA_ZSERV_H
11 #define _ZEBRA_ZSERV_H
12
13 /* clang-format off */
14 #include <stdint.h> /* for uint32_t, uint8_t */
15 #include <time.h> /* for time_t */
16
17 #include "lib/route_types.h" /* for ZEBRA_ROUTE_MAX */
18 #include "lib/zebra.h" /* for AFI_MAX */
19 #include "lib/vrf.h" /* for vrf_bitmap_t */
20 #include "lib/zclient.h" /* for redist_proto */
21 #include "lib/stream.h" /* for stream, stream_fifo */
22 #include "frrevent.h" /* for thread, thread_master */
23 #include "lib/linklist.h" /* for list */
24 #include "lib/workqueue.h" /* for work_queue */
25 #include "lib/hook.h" /* for DECLARE_HOOK, DECLARE_KOOH */
26 /* clang-format on */
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31
32 struct zebra_vrf;
33
34 /* Default port information. */
35 #define ZEBRA_VTY_PORT 2601
36
37 /* Default configuration filename. */
38 #define DEFAULT_CONFIG_FILE "zebra.conf"
39
40 #define ZEBRA_RMAP_DEFAULT_UPDATE_TIMER 5 /* disabled by default */
41
42
43 /* Stale route marker timer */
44 #define ZEBRA_DEFAULT_STALE_UPDATE_DELAY 1
45
46 /* Count of stale routes processed in timer context */
47 #define ZEBRA_MAX_STALE_ROUTE_COUNT 50000
48
49 /* Graceful Restart information */
50 struct client_gr_info {
51 /* VRF for which GR enabled */
52 vrf_id_t vrf_id;
53
54 /* Stale time and GR cap */
55 uint32_t stale_removal_time;
56 enum zserv_client_capabilities capabilities;
57
58 /* GR commands */
59 bool do_delete;
60 bool gr_enable;
61 bool stale_client;
62
63 /* Route sync and enable flags for AFI/SAFI */
64 bool af_enabled[AFI_MAX];
65 bool route_sync[AFI_MAX];
66
67 /* Book keeping */
68 void *stale_client_ptr;
69 struct event *t_stale_removal;
70
71 TAILQ_ENTRY(client_gr_info) gr_info;
72 };
73
74 /* Client structure. */
75 struct zserv {
76 /* Client pthread */
77 struct frr_pthread *pthread;
78
79 /* Client file descriptor. */
80 int sock;
81
82 /* Attributes used to permit access to zapi clients from
83 * other pthreads: the client has a busy counter, and a
84 * 'closed' flag. These attributes are managed using a
85 * lock, via the acquire_client() and release_client() apis.
86 */
87 int busy_count;
88 bool is_closed;
89
90 /* Input/output buffer to the client. */
91 pthread_mutex_t ibuf_mtx;
92 struct stream_fifo *ibuf_fifo;
93 pthread_mutex_t obuf_mtx;
94 struct stream_fifo *obuf_fifo;
95
96 /* Private I/O buffers */
97 struct stream *ibuf_work;
98 struct stream *obuf_work;
99
100 /* Buffer of data waiting to be written to client. */
101 struct buffer *wb;
102
103 /* Threads for read/write. */
104 struct event *t_read;
105 struct event *t_write;
106
107 /* Event for message processing, for the main pthread */
108 struct event *t_process;
109
110 /* Event for the main pthread */
111 struct event *t_cleanup;
112
113 /* This client's redistribute flag. */
114 struct redist_proto mi_redist[AFI_MAX][ZEBRA_ROUTE_MAX];
115 vrf_bitmap_t redist[AFI_MAX][ZEBRA_ROUTE_MAX];
116
117 /* Redistribute default route flag. */
118 vrf_bitmap_t redist_default[AFI_MAX];
119
120 /* Router-id information. */
121 vrf_bitmap_t ridinfo[AFI_MAX];
122
123 /* Router-id information. */
124 vrf_bitmap_t nhrp_neighinfo[AFI_MAX];
125
126 bool notify_owner;
127
128 /* Indicates if client is synchronous. */
129 bool synchronous;
130
131 /* client's protocol and session info */
132 uint8_t proto;
133 uint16_t instance;
134 uint32_t session_id;
135
136 /*
137 * Interested for MLAG Updates, and also stores the client
138 * interested message mask
139 */
140 bool mlag_updates_interested;
141 uint32_t mlag_reg_mask1;
142
143 /* Statistics */
144 uint32_t redist_v4_add_cnt;
145 uint32_t redist_v4_del_cnt;
146 uint32_t redist_v6_add_cnt;
147 uint32_t redist_v6_del_cnt;
148 uint32_t v4_route_add_cnt;
149 uint32_t v4_route_upd8_cnt;
150 uint32_t v4_route_del_cnt;
151 uint32_t v6_route_add_cnt;
152 uint32_t v6_route_del_cnt;
153 uint32_t v6_route_upd8_cnt;
154 uint32_t connected_rt_add_cnt;
155 uint32_t connected_rt_del_cnt;
156 uint32_t ifup_cnt;
157 uint32_t ifdown_cnt;
158 uint32_t ifadd_cnt;
159 uint32_t ifdel_cnt;
160 uint32_t if_bfd_cnt;
161 uint32_t bfd_peer_add_cnt;
162 uint32_t bfd_peer_upd8_cnt;
163 uint32_t bfd_peer_del_cnt;
164 uint32_t bfd_peer_replay_cnt;
165 uint32_t vrfadd_cnt;
166 uint32_t vrfdel_cnt;
167 uint32_t if_vrfchg_cnt;
168 uint32_t bfd_client_reg_cnt;
169 uint32_t vniadd_cnt;
170 uint32_t vnidel_cnt;
171 uint32_t l3vniadd_cnt;
172 uint32_t l3vnidel_cnt;
173 uint32_t macipadd_cnt;
174 uint32_t macipdel_cnt;
175 uint32_t prefixadd_cnt;
176 uint32_t prefixdel_cnt;
177 uint32_t v4_nh_watch_add_cnt;
178 uint32_t v4_nh_watch_rem_cnt;
179 uint32_t v6_nh_watch_add_cnt;
180 uint32_t v6_nh_watch_rem_cnt;
181 uint32_t vxlan_sg_add_cnt;
182 uint32_t vxlan_sg_del_cnt;
183 uint32_t local_es_add_cnt;
184 uint32_t local_es_del_cnt;
185 uint32_t local_es_evi_add_cnt;
186 uint32_t local_es_evi_del_cnt;
187 uint32_t error_cnt;
188
189 time_t nh_reg_time;
190 time_t nh_dereg_time;
191 time_t nh_last_upd_time;
192
193 /*
194 * Session information.
195 *
196 * These are not synchronous with respect to each other. For instance,
197 * last_read_cmd may contain a value that has been read in the future
198 * relative to last_read_time.
199 */
200
201 pthread_mutex_t stats_mtx;
202 /* BEGIN covered by stats_mtx */
203
204 /* monotime of client creation */
205 uint64_t connect_time;
206 /* monotime of last message received */
207 uint64_t last_read_time;
208 /* monotime of last message sent */
209 uint64_t last_write_time;
210 /* command code of last message read */
211 uint64_t last_read_cmd;
212 /* command code of last message written */
213 uint64_t last_write_cmd;
214
215 /* END covered by stats_mtx */
216
217 /*
218 * Number of instances configured with
219 * graceful restart
220 */
221 uint32_t gr_instance_count;
222 time_t restart_time;
223
224 /*
225 * Graceful restart information for
226 * each instance
227 */
228 TAILQ_HEAD(info_list, client_gr_info) gr_info_queue;
229 };
230
231 #define ZAPI_HANDLER_ARGS \
232 struct zserv *client, struct zmsghdr *hdr, struct stream *msg, \
233 struct zebra_vrf *zvrf
234
235 /* Hooks for client connect / disconnect */
236 DECLARE_HOOK(zserv_client_connect, (struct zserv *client), (client));
237 DECLARE_KOOH(zserv_client_close, (struct zserv *client), (client));
238
239 #define DYNAMIC_CLIENT_GR_DISABLED(_client) \
240 ((_client->proto <= ZEBRA_ROUTE_CONNECT) \
241 || !(_client->gr_instance_count))
242
243 /*
244 * Initialize Zebra API server.
245 *
246 * Installs CLI commands and creates the client list.
247 */
248 extern void zserv_init(void);
249
250 /*
251 * Stop the Zebra API server.
252 *
253 * closes the socket
254 */
255 extern void zserv_close(void);
256
257 /*
258 * Start Zebra API server.
259 *
260 * Allocates resources, creates the server socket and begins listening on the
261 * socket.
262 *
263 * path
264 * where to place the Unix domain socket
265 */
266 extern void zserv_start(char *path);
267
268 /*
269 * Send a message to a connected Zebra API client.
270 *
271 * client
272 * the client to send to
273 *
274 * msg
275 * the message to send
276 */
277 extern int zserv_send_message(struct zserv *client, struct stream *msg);
278
279 /*
280 * Send a batch of messages to a connected Zebra API client.
281 *
282 * client
283 * the client to send to
284 *
285 * fifo
286 * the list of messages to send
287 */
288 extern int zserv_send_batch(struct zserv *client, struct stream_fifo *fifo);
289
290 /*
291 * Retrieve a client by its protocol and instance number.
292 *
293 * proto
294 * protocol number
295 *
296 * instance
297 * instance number
298 *
299 * Returns:
300 * The Zebra API client.
301 */
302 extern struct zserv *zserv_find_client(uint8_t proto, unsigned short instance);
303
304 /*
305 * Retrieve a client by its protocol, instance number, and session id.
306 *
307 * proto
308 * protocol number
309 *
310 * instance
311 * instance number
312 *
313 * session_id
314 * session id
315 *
316 * Returns:
317 * The Zebra API client.
318 */
319 struct zserv *zserv_find_client_session(uint8_t proto, unsigned short instance,
320 uint32_t session_id);
321
322 /*
323 * Retrieve a client object by the complete tuple of
324 * {protocol, instance, session}. This version supports use
325 * from a different pthread: the object will be returned marked
326 * in-use. The caller *must* release the client object with the
327 * release_client() api, to ensure that the in-use marker is cleared properly.
328 *
329 * Returns:
330 * The Zebra API client.
331 */
332 extern struct zserv *zserv_acquire_client(uint8_t proto,
333 unsigned short instance,
334 uint32_t session_id);
335
336 /*
337 * Release a client object that was acquired with the acquire_client() api.
338 * After this has been called, the pointer must not be used - it may be freed
339 * in another pthread if the client has closed.
340 */
341 extern void zserv_release_client(struct zserv *client);
342
343 /*
344 * Close a client.
345 *
346 * Kills a client's thread, removes the client from the client list and cleans
347 * up its resources.
348 *
349 * client
350 * the client to close
351 */
352 extern void zserv_close_client(struct zserv *client);
353
354 /*
355 * Free memory for a zserv client object - note that this does not
356 * clean up the internal allocations associated with the zserv client,
357 * this just free the struct's memory.
358 */
359 void zserv_client_delete(struct zserv *client);
360
361 /*
362 * Log a ZAPI message hexdump.
363 *
364 * errmsg
365 * Error message to include with packet hexdump
366 *
367 * msg
368 * Message to log
369 *
370 * hdr
371 * Message header
372 */
373 void zserv_log_message(const char *errmsg, struct stream *msg,
374 struct zmsghdr *hdr);
375
376 /* TODO */
377 __attribute__((__noreturn__)) void zebra_finalize(struct event *event);
378
379 /*
380 * Graceful restart functions.
381 */
382 extern int zebra_gr_client_disconnect(struct zserv *client);
383 extern void zebra_gr_client_reconnect(struct zserv *client);
384 extern void zebra_gr_stale_client_cleanup(struct list *client_list);
385 extern void zread_client_capabilities(struct zserv *client, struct zmsghdr *hdr,
386 struct stream *msg,
387 struct zebra_vrf *zvrf);
388
389 #ifdef __cplusplus
390 }
391 #endif
392
393 #endif /* _ZEBRA_ZEBRA_H */