]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zserv.c
*: Convert thread_cancelXXX to event_cancelXXX
[mirror_frr.git] / zebra / zserv.c
CommitLineData
acddc0ed 1// SPDX-License-Identifier: GPL-2.0-or-later
bf094f69
QY
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.
718e3744 8 */
9
10#include <zebra.h>
d8647095
QY
11
12/* clang-format off */
bf094f69
QY
13#include <errno.h> /* for errno */
14#include <netinet/in.h> /* for sockaddr_in */
15#include <stdint.h> /* for uint8_t */
16#include <stdio.h> /* for snprintf */
17#include <sys/socket.h> /* for sockaddr_storage, AF_UNIX, accept... */
18#include <sys/stat.h> /* for umask, mode_t */
19#include <sys/un.h> /* for sockaddr_un */
20#include <time.h> /* for NULL, tm, gmtime, time_t */
21#include <unistd.h> /* for close, unlink, ssize_t */
22
23#include "lib/buffer.h" /* for BUFFER_EMPTY, BUFFER_ERROR, BUFFE... */
24#include "lib/command.h" /* for vty, install_element, CMD_SUCCESS... */
453844ab 25#include "lib/hook.h" /* for DEFINE_HOOK, DEFINE_KOOH, hook_call */
bf094f69
QY
26#include "lib/linklist.h" /* for ALL_LIST_ELEMENTS_RO, ALL_LIST_EL... */
27#include "lib/libfrr.h" /* for frr_zclient_addr */
28#include "lib/log.h" /* for zlog_warn, zlog_debug, safe_strerror */
29#include "lib/memory.h" /* for MTYPE_TMP, XCALLOC, XFREE */
30#include "lib/monotime.h" /* for monotime, ONE_DAY_SECOND, ONE_WEE... */
31#include "lib/network.h" /* for set_nonblocking */
32#include "lib/privs.h" /* for zebra_privs_t, ZPRIVS_LOWER, ZPRI... */
33#include "lib/route_types.h" /* for ZEBRA_ROUTE_MAX */
34#include "lib/sockopt.h" /* for setsockopt_so_recvbuf, setsockopt... */
35#include "lib/sockunion.h" /* for sockopt_reuseaddr, sockopt_reuseport */
36#include "lib/stream.h" /* for STREAM_SIZE, stream (ptr only), ... */
cb37cb33 37#include "event.h" /* for thread (ptr only), THREAD_ARG, ... */
bf094f69
QY
38#include "lib/vrf.h" /* for vrf_info_lookup, VRF_DEFAULT */
39#include "lib/vty.h" /* for vty_out, vty (ptr only) */
bf094f69 40#include "lib/zclient.h" /* for zmsghdr, ZEBRA_HEADER_SIZE, ZEBRA... */
52f6868d 41#include "lib/frr_pthread.h" /* for frr_pthread_new, frr_pthread_stop... */
ae6670d0 42#include "lib/frratomic.h" /* for atomic_load_explicit, atomic_stor... */
174482ef 43#include "lib/lib_errors.h" /* for generic ferr ids */
99a30b47 44#include "lib/printfrr.h" /* for string functions */
bf094f69
QY
45
46#include "zebra/debug.h" /* for various debugging macros */
bf094f69 47#include "zebra/rib.h" /* for rib_score_proto */
bf094f69 48#include "zebra/zapi_msg.h" /* for zserv_handle_commands */
bf094f69 49#include "zebra/zebra_vrf.h" /* for zebra_vrf_lookup_by_id, zvrf */
d8647095 50#include "zebra/zserv.h" /* for zserv */
3801e764 51#include "zebra/zebra_router.h"
364fed6b 52#include "zebra/zebra_errors.h" /* for error messages */
d8647095 53/* clang-format on */
6b0655a2 54
1002497a 55/* privileges */
edd7c245 56extern struct zebra_privs_t zserv_privs;
453844ab 57
cc3d8834
DS
58/* The listener socket for clients connecting to us */
59static int zsock;
60
aa9002a5
MS
61/* The lock that protects access to zapi client objects */
62static pthread_mutex_t client_mutex;
63
64static struct zserv *find_client_internal(uint8_t proto,
65 unsigned short instance,
66 uint32_t session_id);
67
c0ce4875
MS
68/* Mem type for zclients. */
69DEFINE_MTYPE_STATIC(ZEBRA, ZSERV_CLIENT, "ZClients");
aa9002a5 70
329e35da 71/*
f2efe6a3 72 * Client thread events.
329e35da 73 *
f2efe6a3 74 * These are used almost exclusively by client threads to drive their own event
24f8f979 75 * loops. The only exception is in zserv_client_create(), which pushes an
21ccc0cf 76 * initial ZSERV_CLIENT_READ event to start the API handler loop.
329e35da 77 */
21ccc0cf
QY
78enum zserv_client_event {
79 /* Schedule a socket read */
80 ZSERV_CLIENT_READ,
81 /* Schedule a buffer write */
82 ZSERV_CLIENT_WRITE,
21ccc0cf 83};
453844ab 84
21ccc0cf
QY
85/*
86 * Main thread events.
87 *
88 * These are used by client threads to notify the main thread about various
89 * events and to make processing requests.
90 */
91enum zserv_event {
92 /* Schedule listen job on Zebra API socket */
93 ZSERV_ACCEPT,
94 /* The calling client has packets on its input buffer */
95 ZSERV_PROCESS_MESSAGES,
96 /* The calling client wishes to be killed */
f3e33b69 97 ZSERV_HANDLE_CLIENT_FAIL,
21ccc0cf
QY
98};
99
100/*
101 * Zebra server event driver for all client threads.
102 *
907a2395 103 * This is essentially a wrapper around event_add_event() that centralizes
21ccc0cf
QY
104 * those scheduling calls into one place.
105 *
106 * All calls to this function schedule an event on the pthread running the
107 * provided client.
108 *
109 * client
110 * the client in question, and thread target
111 *
112 * event
113 * the event to notify them about
114 */
115static void zserv_client_event(struct zserv *client,
116 enum zserv_client_event event);
117
118/*
119 * Zebra server event driver for the main thread.
120 *
907a2395 121 * This is essentially a wrapper around event_add_event() that centralizes
21ccc0cf
QY
122 * those scheduling calls into one place.
123 *
124 * All calls to this function schedule an event on Zebra's main pthread.
125 *
126 * client
127 * the client in question
128 *
129 * event
130 * the event to notify the main thread about
131 */
132static void zserv_event(struct zserv *client, enum zserv_event event);
e16abbb3 133
e16abbb3 134
f2efe6a3 135/* Client thread lifecycle -------------------------------------------------- */
e16abbb3 136
c0ce4875
MS
137/*
138 * Free a zserv client object.
139 */
140void zserv_client_delete(struct zserv *client)
141{
142 XFREE(MTYPE_ZSERV_CLIENT, client);
143}
144
9bcbcae2 145/*
1002497a
QY
146 * Log zapi message to zlog.
147 *
148 * errmsg (optional)
149 * Debugging message
9bcbcae2 150 *
1002497a
QY
151 * msg
152 * The message
153 *
154 * hdr (optional)
155 * The message header
9bcbcae2 156 */
49b3b01f
QY
157void zserv_log_message(const char *errmsg, struct stream *msg,
158 struct zmsghdr *hdr)
1002497a
QY
159{
160 zlog_debug("Rx'd ZAPI message");
161 if (errmsg)
162 zlog_debug("%s", errmsg);
163 if (hdr) {
164 zlog_debug(" Length: %d", hdr->length);
165 zlog_debug("Command: %s", zserv_command_string(hdr->command));
166 zlog_debug(" VRF: %u", hdr->vrf_id);
167 }
9d72660d 168 stream_hexdump(msg);
9bcbcae2
QY
169}
170
f2efe6a3 171/*
17be83bf 172 * Gracefuly shut down a client connection.
f2efe6a3 173 *
f3e33b69
QY
174 * Cancel any pending tasks for the client's thread. Then schedule a task on
175 * the main thread to shut down the calling thread.
f2efe6a3 176 *
c0226378
QY
177 * It is not safe to close the client socket in this function. The socket is
178 * owned by the main thread.
179 *
f2efe6a3
QY
180 * Must be called from the client pthread, never the main thread.
181 */
f3e33b69 182static void zserv_client_fail(struct zserv *client)
f2efe6a3 183{
e914ccbe 184 flog_warn(EC_ZEBRA_CLIENT_IO_ERROR,
9df414fe 185 "Client '%s' encountered an error and is shutting down.",
f3e33b69
QY
186 zebra_route_string(client->proto));
187
c2ca5ee6 188 atomic_store_explicit(&client->pthread->running, false,
f3e33b69 189 memory_order_relaxed);
c0226378 190
f2efe6a3
QY
191 THREAD_OFF(client->t_read);
192 THREAD_OFF(client->t_write);
f3e33b69 193 zserv_event(client, ZSERV_HANDLE_CLIENT_FAIL);
f2efe6a3
QY
194}
195
1002497a 196/*
370d8dad
QY
197 * Write all pending messages to client socket.
198 *
29bed51b
QY
199 * This function first attempts to flush any buffered data. If unsuccessful,
200 * the function reschedules itself and returns. If successful, it pops all
201 * available messages from the output queue and continues to write data
202 * directly to the socket until the socket would block. If the socket never
203 * blocks and all data is written, the function returns without rescheduling
204 * itself. If the socket ends up throwing EWOULDBLOCK, the remaining data is
205 * buffered and the function reschedules itself.
370d8dad 206 *
29bed51b
QY
207 * The utility of the buffer is that it allows us to vastly reduce lock
208 * contention by allowing us to pop *all* messages off the output queue at once
209 * instead of locking and unlocking each time we want to pop a single message
210 * off the queue. The same thing could arguably be accomplished faster by
211 * allowing the main thread to write directly into the buffer instead of
212 * enqueuing packets onto an intermediary queue, but the intermediary queue
213 * allows us to expose information about input and output queues to the user in
214 * terms of number of packets rather than size of data.
1002497a 215 */
e6685141 216static void zserv_write(struct event *thread)
d62a17ae 217{
1002497a
QY
218 struct zserv *client = THREAD_ARG(thread);
219 struct stream *msg;
ce4f1050 220 uint32_t wcmd = 0;
29bed51b 221 struct stream_fifo *cache;
ccac1109 222 uint64_t time_now = monotime(NULL);
29bed51b
QY
223
224 /* If we have any data pending, try to flush it first */
ccd51bd2 225 switch (buffer_flush_all(client->wb, client->sock)) {
29bed51b
QY
226 case BUFFER_ERROR:
227 goto zwrite_fail;
228 case BUFFER_PENDING:
ccac1109
DL
229 frr_with_mutex (&client->stats_mtx) {
230 client->last_write_time = time_now;
231 }
29bed51b 232 zserv_client_event(client, ZSERV_CLIENT_WRITE);
cc9f21da 233 return;
29bed51b
QY
234 case BUFFER_EMPTY:
235 break;
236 }
237
238 cache = stream_fifo_new();
89f4e507 239
cb1991af 240 frr_with_mutex (&client->obuf_mtx) {
c2ca5ee6 241 while (stream_fifo_head(client->obuf_fifo))
370d8dad
QY
242 stream_fifo_push(cache,
243 stream_fifo_pop(client->obuf_fifo));
329e35da 244 }
329e35da 245
ccd51bd2
QY
246 if (cache->tail) {
247 msg = cache->tail;
370d8dad 248 stream_set_getp(msg, 0);
6e8e0925 249 wcmd = stream_getw_from(msg, ZAPI_HEADER_CMD_LOCATION);
ccd51bd2 250 }
822167e7 251
ccd51bd2
QY
252 while (stream_fifo_head(cache)) {
253 msg = stream_fifo_pop(cache);
254 buffer_put(client->wb, STREAM_DATA(msg), stream_get_endp(msg));
370d8dad
QY
255 stream_free(msg);
256 }
1002497a 257
822167e7 258 stream_fifo_free(cache);
1002497a 259
ccd51bd2
QY
260 /* If we have any data pending, try to flush it first */
261 switch (buffer_flush_all(client->wb, client->sock)) {
262 case BUFFER_ERROR:
263 goto zwrite_fail;
264 case BUFFER_PENDING:
ccac1109
DL
265 frr_with_mutex (&client->stats_mtx) {
266 client->last_write_time = time_now;
267 }
ccd51bd2 268 zserv_client_event(client, ZSERV_CLIENT_WRITE);
cc9f21da 269 return;
ccd51bd2
QY
270 case BUFFER_EMPTY:
271 break;
272 }
273
ccac1109
DL
274 frr_with_mutex (&client->stats_mtx) {
275 client->last_write_cmd = wcmd;
276 client->last_write_time = time_now;
277 }
cc9f21da 278 return;
29bed51b
QY
279
280zwrite_fail:
e914ccbe 281 flog_warn(EC_ZEBRA_CLIENT_WRITE_FAILED,
9df414fe 282 "%s: could not write to %s [fd = %d], closing.", __func__,
29bed51b 283 zebra_route_string(client->proto), client->sock);
f3e33b69 284 zserv_client_fail(client);
0c5e7be5
DS
285}
286
329e35da
QY
287/*
288 * Read and process data from a client socket.
289 *
290 * The responsibilities here are to read raw data from the client socket,
291 * validate the header, encapsulate it into a single stream object, push it
292 * onto the input queue and then notify the main thread that there is new data
293 * available.
294 *
295 * This function first looks for any data in the client structure's working
296 * input buffer. If data is present, it is assumed that reading stopped in a
297 * previous invocation of this task and needs to be resumed to finish a message.
298 * Otherwise, the socket data stream is assumed to be at the beginning of a new
299 * ZAPI message (specifically at the header). The header is read and validated.
300 * If the header passed validation then the length field found in the header is
301 * used to compute the total length of the message. That much data is read (but
302 * not inspected), appended to the header, placed into a stream and pushed onto
303 * the client's input queue. A task is then scheduled on the main thread to
304 * process the client's input queue. Finally, if all of this was successful,
305 * this task reschedules itself.
306 *
307 * Any failure in any of these actions is handled by terminating the client.
308 */
e6685141 309static void zserv_read(struct event *thread)
0c5e7be5 310{
ae6670d0 311 struct zserv *client = THREAD_ARG(thread);
0c5e7be5 312 int sock;
0c5e7be5 313 size_t already;
ae6670d0
QY
314 struct stream_fifo *cache;
315 uint32_t p2p_orig;
316
1572d9af
QY
317 uint32_t p2p;
318 struct zmsghdr hdr;
319
5ec5a716 320 p2p_orig = atomic_load_explicit(&zrouter.packets_to_process,
ae6670d0
QY
321 memory_order_relaxed);
322 cache = stream_fifo_new();
370d8dad 323 p2p = p2p_orig;
0c5e7be5 324 sock = THREAD_FD(thread);
0c5e7be5 325
43ea2c76 326 while (p2p) {
107afcd1
QY
327 ssize_t nb;
328 bool hdrvalid;
329 char errmsg[256];
330
1002497a
QY
331 already = stream_get_endp(client->ibuf_work);
332
5a762c8a 333 /* Read length and command (if we don't have it already). */
1002497a
QY
334 if (already < ZEBRA_HEADER_SIZE) {
335 nb = stream_read_try(client->ibuf_work, sock,
336 ZEBRA_HEADER_SIZE - already);
03f29018
DS
337 if ((nb == 0 || nb == -1)) {
338 if (IS_ZEBRA_DEBUG_EVENT)
339 zlog_debug("connection closed socket [%d]",
340 sock);
1002497a 341 goto zread_fail;
03f29018 342 }
1002497a 343 if (nb != (ssize_t)(ZEBRA_HEADER_SIZE - already)) {
5a762c8a 344 /* Try again later. */
1002497a 345 break;
5a762c8a
DS
346 }
347 already = ZEBRA_HEADER_SIZE;
0c5e7be5 348 }
0c5e7be5 349
5a762c8a 350 /* Reset to read from the beginning of the incoming packet. */
1002497a 351 stream_set_getp(client->ibuf_work, 0);
0c5e7be5 352
5a762c8a 353 /* Fetch header values */
1002497a 354 hdrvalid = zapi_parse_header(client->ibuf_work, &hdr);
0c5e7be5 355
1002497a
QY
356 if (!hdrvalid) {
357 snprintf(errmsg, sizeof(errmsg),
358 "%s: Message has corrupt header", __func__);
359 zserv_log_message(errmsg, client->ibuf_work, NULL);
360 goto zread_fail;
0c5e7be5 361 }
1002497a
QY
362
363 /* Validate header */
364 if (hdr.marker != ZEBRA_HEADER_MARKER
365 || hdr.version != ZSERV_VERSION) {
366 snprintf(
367 errmsg, sizeof(errmsg),
368 "Message has corrupt header\n%s: socket %d version mismatch, marker %d, version %d",
369 __func__, sock, hdr.marker, hdr.version);
370 zserv_log_message(errmsg, client->ibuf_work, &hdr);
371 goto zread_fail;
5a762c8a 372 }
1002497a
QY
373 if (hdr.length < ZEBRA_HEADER_SIZE) {
374 snprintf(
375 errmsg, sizeof(errmsg),
376 "Message has corrupt header\n%s: socket %d message length %u is less than header size %d",
377 __func__, sock, hdr.length, ZEBRA_HEADER_SIZE);
378 zserv_log_message(errmsg, client->ibuf_work, &hdr);
379 goto zread_fail;
380 }
381 if (hdr.length > STREAM_SIZE(client->ibuf_work)) {
382 snprintf(
383 errmsg, sizeof(errmsg),
384 "Message has corrupt header\n%s: socket %d message length %u exceeds buffer size %lu",
385 __func__, sock, hdr.length,
386 (unsigned long)STREAM_SIZE(client->ibuf_work));
1572d9af 387 zserv_log_message(errmsg, client->ibuf_work, &hdr);
1002497a 388 goto zread_fail;
0c5e7be5 389 }
0c5e7be5 390
5a762c8a 391 /* Read rest of data. */
1002497a
QY
392 if (already < hdr.length) {
393 nb = stream_read_try(client->ibuf_work, sock,
394 hdr.length - already);
03f29018
DS
395 if ((nb == 0 || nb == -1)) {
396 if (IS_ZEBRA_DEBUG_EVENT)
397 zlog_debug(
398 "connection closed [%d] when reading zebra data",
399 sock);
1002497a 400 goto zread_fail;
03f29018 401 }
1002497a 402 if (nb != (ssize_t)(hdr.length - already)) {
5a762c8a 403 /* Try again later. */
1002497a 404 break;
5a762c8a
DS
405 }
406 }
0c5e7be5 407
5a762c8a 408 /* Debug packet information. */
494247b5
DS
409 if (IS_ZEBRA_DEBUG_PACKET)
410 zlog_debug("zebra message[%s:%u:%u] comes from socket [%d]",
411 zserv_command_string(hdr.command),
412 hdr.vrf_id, hdr.length,
996c9314 413 sock);
0c5e7be5 414
1572d9af
QY
415 stream_set_getp(client->ibuf_work, 0);
416 struct stream *msg = stream_dup(client->ibuf_work);
417
418 stream_fifo_push(cache, msg);
419 stream_reset(client->ibuf_work);
43ea2c76 420 p2p--;
1572d9af
QY
421 }
422
423 if (p2p < p2p_orig) {
ccac1109
DL
424 uint64_t time_now = monotime(NULL);
425
1572d9af 426 /* update session statistics */
ccac1109
DL
427 frr_with_mutex (&client->stats_mtx) {
428 client->last_read_time = time_now;
429 client->last_read_cmd = hdr.command;
430 }
5a762c8a 431
1572d9af 432 /* publish read packets on client's input queue */
cb1991af 433 frr_with_mutex (&client->ibuf_mtx) {
1572d9af
QY
434 while (cache->head)
435 stream_fifo_push(client->ibuf_fifo,
436 stream_fifo_pop(cache));
329e35da 437 }
822167e7
QY
438
439 /* Schedule job to process those packets */
440 zserv_event(client, ZSERV_PROCESS_MESSAGES);
441
d62a17ae 442 }
443
1002497a 444 if (IS_ZEBRA_DEBUG_PACKET)
494247b5
DS
445 zlog_debug("Read %d packets from client: %s", p2p_orig - p2p,
446 zebra_route_string(client->proto));
1002497a 447
1002497a 448 /* Reschedule ourselves */
21ccc0cf 449 zserv_client_event(client, ZSERV_CLIENT_READ);
1002497a 450
1572d9af
QY
451 stream_fifo_free(cache);
452
cc9f21da 453 return;
1002497a
QY
454
455zread_fail:
1572d9af 456 stream_fifo_free(cache);
f3e33b69 457 zserv_client_fail(client);
718e3744 458}
459
21ccc0cf
QY
460static void zserv_client_event(struct zserv *client,
461 enum zserv_client_event event)
1002497a
QY
462{
463 switch (event) {
21ccc0cf 464 case ZSERV_CLIENT_READ:
907a2395
DS
465 event_add_read(client->pthread->master, zserv_read, client,
466 client->sock, &client->t_read);
1002497a 467 break;
21ccc0cf 468 case ZSERV_CLIENT_WRITE:
907a2395
DS
469 event_add_write(client->pthread->master, zserv_write, client,
470 client->sock, &client->t_write);
1002497a
QY
471 break;
472 }
473}
718e3744 474
f2efe6a3
QY
475/* Main thread lifecycle ---------------------------------------------------- */
476
f2efe6a3
QY
477/*
478 * Read and process messages from a client.
479 *
480 * This task runs on the main pthread. It is scheduled by client pthreads when
481 * they have new messages available on their input queues. The client is passed
482 * as the task argument.
483 *
484 * Each message is popped off the client's input queue and the action associated
485 * with the message is executed. This proceeds until there are no more messages,
904e0d88
QY
486 * an error occurs, or the processing limit is reached.
487 *
2561d12e 488 * The client's I/O thread can push at most zrouter.packets_to_process messages
822167e7 489 * onto the input buffer before notifying us there are packets to read. As long
2561d12e 490 * as we always process zrouter.packets_to_process messages here, then we can
822167e7
QY
491 * rely on the read thread to handle queuing this task enough times to process
492 * everything on the input queue.
f2efe6a3 493 */
e6685141 494static void zserv_process_messages(struct event *thread)
f2efe6a3
QY
495{
496 struct zserv *client = THREAD_ARG(thread);
f2efe6a3 497 struct stream *msg;
904e0d88 498 struct stream_fifo *cache = stream_fifo_new();
5ec5a716 499 uint32_t p2p = zrouter.packets_to_process;
dded2aba 500 bool need_resched = false;
f2efe6a3 501
cb1991af 502 frr_with_mutex (&client->ibuf_mtx) {
822167e7
QY
503 uint32_t i;
504 for (i = 0; i < p2p && stream_fifo_head(client->ibuf_fifo);
505 ++i) {
506 msg = stream_fifo_pop(client->ibuf_fifo);
507 stream_fifo_push(cache, msg);
508 }
904e0d88 509
822167e7 510 msg = NULL;
dded2aba
MS
511
512 /* Need to reschedule processing work if there are still
513 * packets in the fifo.
514 */
515 if (stream_fifo_head(client->ibuf_fifo))
516 need_resched = true;
f2efe6a3 517 }
f2efe6a3 518
79b3664a
MS
519 /* Process the batch of messages */
520 if (stream_fifo_head(cache))
521 zserv_handle_commands(client, cache);
904e0d88
QY
522
523 stream_fifo_free(cache);
524
dded2aba
MS
525 /* Reschedule ourselves if necessary */
526 if (need_resched)
527 zserv_event(client, ZSERV_PROCESS_MESSAGES);
f2efe6a3
QY
528}
529
21ccc0cf 530int zserv_send_message(struct zserv *client, struct stream *msg)
f2efe6a3 531{
cb1991af 532 frr_with_mutex (&client->obuf_mtx) {
f2efe6a3 533 stream_fifo_push(client->obuf_fifo, msg);
f2efe6a3 534 }
ccd51bd2
QY
535
536 zserv_client_event(client, ZSERV_CLIENT_WRITE);
537
f2efe6a3
QY
538 return 0;
539}
540
6e2a33a8
MS
541/*
542 * Send a batch of messages to a connected Zebra API client.
543 */
544int zserv_send_batch(struct zserv *client, struct stream_fifo *fifo)
545{
546 struct stream *msg;
547
cb1991af 548 frr_with_mutex (&client->obuf_mtx) {
6e2a33a8
MS
549 msg = stream_fifo_pop(fifo);
550 while (msg) {
551 stream_fifo_push(client->obuf_fifo, msg);
552 msg = stream_fifo_pop(fifo);
553 }
554 }
555
556 zserv_client_event(client, ZSERV_CLIENT_WRITE);
557
558 return 0;
559}
f2efe6a3
QY
560
561/* Hooks for client connect / disconnect */
21ccc0cf
QY
562DEFINE_HOOK(zserv_client_connect, (struct zserv *client), (client));
563DEFINE_KOOH(zserv_client_close, (struct zserv *client), (client));
f2efe6a3
QY
564
565/*
566 * Deinitialize zebra client.
567 *
568 * - Deregister and deinitialize related internal resources
17be83bf 569 * - Gracefuly close socket
f2efe6a3
QY
570 * - Free associated resources
571 * - Free client structure
572 *
e6685141 573 * This does *not* take any action on the struct event * fields. These are
f2efe6a3
QY
574 * managed by the owning pthread and any tasks associated with them must have
575 * been stopped prior to invoking this function.
576 */
21ccc0cf 577static void zserv_client_free(struct zserv *client)
f2efe6a3 578{
8062cbe2
S
579 if (client == NULL)
580 return;
581
21ccc0cf 582 hook_call(zserv_client_close, client);
f2efe6a3
QY
583
584 /* Close file descriptor. */
585 if (client->sock) {
586 unsigned long nroutes;
24db1a7b 587 unsigned long nnhgs;
f2efe6a3
QY
588
589 close(client->sock);
a580357a 590
6f4aee61 591 if (DYNAMIC_CLIENT_GR_DISABLED(client)) {
06302ecb
DS
592 zebra_mpls_client_cleanup_vrf_label(client->proto);
593
851140a7
S
594 nroutes = rib_score_proto(client->proto,
595 client->instance);
596 zlog_notice(
597 "client %d disconnected %lu %s routes removed from the rib",
598 client->sock, nroutes,
599 zebra_route_string(client->proto));
24db1a7b
SW
600
601 /* Not worrying about instance for now */
602 nnhgs = zebra_nhg_score_proto(client->proto);
603 zlog_notice(
604 "client %d disconnected %lu %s nhgs removed from the rib",
605 client->sock, nnhgs,
606 zebra_route_string(client->proto));
851140a7 607 }
f2efe6a3
QY
608 client->sock = -1;
609 }
610
611 /* Free stream buffers. */
612 if (client->ibuf_work)
613 stream_free(client->ibuf_work);
614 if (client->obuf_work)
615 stream_free(client->obuf_work);
616 if (client->ibuf_fifo)
617 stream_fifo_free(client->ibuf_fifo);
618 if (client->obuf_fifo)
619 stream_fifo_free(client->obuf_fifo);
620 if (client->wb)
621 buffer_free(client->wb);
622
623 /* Free buffer mutexes */
ccac1109 624 pthread_mutex_destroy(&client->stats_mtx);
f2efe6a3
QY
625 pthread_mutex_destroy(&client->obuf_mtx);
626 pthread_mutex_destroy(&client->ibuf_mtx);
627
628 /* Free bitmaps. */
49db7a7b 629 for (afi_t afi = AFI_IP; afi < AFI_MAX; afi++) {
24c370dd 630 for (int i = 0; i < ZEBRA_ROUTE_MAX; i++) {
f2efe6a3 631 vrf_bitmap_free(client->redist[afi][i]);
24c370dd
QY
632 redist_del_all_instances(&client->mi_redist[afi][i]);
633 }
f2efe6a3 634
49db7a7b 635 vrf_bitmap_free(client->redist_default[afi]);
98a3fb0a 636 vrf_bitmap_free(client->ridinfo[afi]);
7723e8d3 637 vrf_bitmap_free(client->nhrp_neighinfo[afi]);
49db7a7b 638 }
f2efe6a3 639
851140a7
S
640 /*
641 * If any instance are graceful restart enabled,
642 * client is not deleted
643 */
6f4aee61 644 if (DYNAMIC_CLIENT_GR_DISABLED(client)) {
851140a7
S
645 if (IS_ZEBRA_DEBUG_EVENT)
646 zlog_debug("%s: Deleting client %s", __func__,
647 zebra_route_string(client->proto));
c0ce4875 648 zserv_client_delete(client);
851140a7
S
649 } else {
650 /* Handle cases where client has GR instance. */
651 if (IS_ZEBRA_DEBUG_EVENT)
652 zlog_debug("%s: client %s restart enabled", __func__,
653 zebra_route_string(client->proto));
654 if (zebra_gr_client_disconnect(client) < 0)
655 zlog_err(
656 "%s: GR enabled but could not handle disconnect event",
657 __func__);
658 }
f2efe6a3
QY
659}
660
f3e33b69 661void zserv_close_client(struct zserv *client)
f2efe6a3 662{
aa9002a5 663 bool free_p = true;
f2efe6a3 664
aa9002a5
MS
665 if (client->pthread) {
666 /* synchronously stop and join pthread */
667 frr_pthread_stop(client->pthread, NULL);
f3e33b69 668
aa9002a5
MS
669 if (IS_ZEBRA_DEBUG_EVENT)
670 zlog_debug("Closing client '%s'",
671 zebra_route_string(client->proto));
f3e33b69 672
332beb64 673 event_cancel_event(zrouter.master, client);
aa9002a5
MS
674 THREAD_OFF(client->t_cleanup);
675 THREAD_OFF(client->t_process);
f2efe6a3 676
aa9002a5
MS
677 /* destroy pthread */
678 frr_pthread_destroy(client->pthread);
679 client->pthread = NULL;
680 }
681
682 /*
683 * Final check in case the client struct is in use in another
684 * pthread: if not in-use, continue and free the client
685 */
cb1991af 686 frr_with_mutex (&client_mutex) {
aa9002a5
MS
687 if (client->busy_count <= 0) {
688 /* remove from client list */
689 listnode_delete(zrouter.client_list, client);
690 } else {
691 /*
692 * The client session object may be in use, although
693 * the associated pthread is gone. Defer final
694 * cleanup.
695 */
696 client->is_closed = true;
697 free_p = false;
698 }
699 }
f3e33b69
QY
700
701 /* delete client */
aa9002a5
MS
702 if (free_p)
703 zserv_client_free(client);
f3e33b69
QY
704}
705
706/*
707 * This task is scheduled by a ZAPI client pthread on the main pthread when it
708 * wants to stop itself. When this executes, the client connection should
709 * already have been closed and the thread will most likely have died, but its
710 * resources still need to be cleaned up.
711 */
e6685141 712static void zserv_handle_client_fail(struct event *thread)
f3e33b69
QY
713{
714 struct zserv *client = THREAD_ARG(thread);
715
716 zserv_close_client(client);
f2efe6a3
QY
717}
718
719/*
720 * Create a new client.
721 *
722 * This is called when a new connection is accept()'d on the ZAPI socket. It
723 * initializes new client structure, notifies any subscribers of the connection
724 * event and spawns the client's thread.
725 *
726 * sock
727 * client's socket file descriptor
728 */
2875801f 729static struct zserv *zserv_client_create(int sock)
f2efe6a3
QY
730{
731 struct zserv *client;
f3f45626
DS
732 size_t stream_size =
733 MAX(ZEBRA_MAX_PACKET_SIZ, sizeof(struct zapi_route));
f2efe6a3
QY
734 int i;
735 afi_t afi;
736
c0ce4875 737 client = XCALLOC(MTYPE_ZSERV_CLIENT, sizeof(struct zserv));
f2efe6a3
QY
738
739 /* Make client input/output buffer. */
740 client->sock = sock;
741 client->ibuf_fifo = stream_fifo_new();
742 client->obuf_fifo = stream_fifo_new();
f3f45626
DS
743 client->ibuf_work = stream_new(stream_size);
744 client->obuf_work = stream_new(stream_size);
ccac1109 745 client->connect_time = monotime(NULL);
f2efe6a3
QY
746 pthread_mutex_init(&client->ibuf_mtx, NULL);
747 pthread_mutex_init(&client->obuf_mtx, NULL);
ccac1109 748 pthread_mutex_init(&client->stats_mtx, NULL);
f2efe6a3 749 client->wb = buffer_new(0);
8062cbe2 750 TAILQ_INIT(&(client->gr_info_queue));
f2efe6a3 751
f2efe6a3 752 /* Initialize flags */
49db7a7b 753 for (afi = AFI_IP; afi < AFI_MAX; afi++) {
f2efe6a3
QY
754 for (i = 0; i < ZEBRA_ROUTE_MAX; i++)
755 client->redist[afi][i] = vrf_bitmap_init();
49db7a7b 756 client->redist_default[afi] = vrf_bitmap_init();
98a3fb0a 757 client->ridinfo[afi] = vrf_bitmap_init();
7723e8d3 758 client->nhrp_neighinfo[afi] = vrf_bitmap_init();
49db7a7b 759 }
f2efe6a3 760
f2efe6a3 761 /* Add this client to linked list. */
cb1991af 762 frr_with_mutex (&client_mutex) {
aa9002a5
MS
763 listnode_add(zrouter.client_list, client);
764 }
f2efe6a3
QY
765
766 struct frr_pthread_attr zclient_pthr_attrs = {
f2efe6a3
QY
767 .start = frr_pthread_attr_default.start,
768 .stop = frr_pthread_attr_default.stop
769 };
770 client->pthread =
57019528
CS
771 frr_pthread_new(&zclient_pthr_attrs, "Zebra API client thread",
772 "zebra_apic");
f2efe6a3 773
f2efe6a3 774 /* start read loop */
21ccc0cf 775 zserv_client_event(client, ZSERV_CLIENT_READ);
f2efe6a3
QY
776
777 /* call callbacks */
21ccc0cf 778 hook_call(zserv_client_connect, client);
f2efe6a3
QY
779
780 /* start pthread */
781 frr_pthread_run(client->pthread, NULL);
2875801f
QY
782
783 return client;
f2efe6a3 784}
329e35da 785
aa9002a5
MS
786/*
787 * Retrieve a client object by the complete tuple of
788 * {protocol, instance, session}. This version supports use
789 * from a different pthread: the object will be returned marked
790 * in-use. The caller *must* release the client object with the
791 * release_client() api, to ensure that the in-use marker is cleared properly.
792 */
793struct zserv *zserv_acquire_client(uint8_t proto, unsigned short instance,
794 uint32_t session_id)
795{
796 struct zserv *client = NULL;
797
cb1991af 798 frr_with_mutex (&client_mutex) {
aa9002a5
MS
799 client = find_client_internal(proto, instance, session_id);
800 if (client) {
801 /* Don't return a dead/closed client object */
802 if (client->is_closed)
803 client = NULL;
804 else
805 client->busy_count++;
806 }
807 }
808
809 return client;
810}
811
812/*
813 * Release a client object that was acquired with the acquire_client() api.
814 * After this has been called, the caller must not use the client pointer -
815 * it may be freed if the client has closed.
816 */
817void zserv_release_client(struct zserv *client)
818{
aa9002a5
MS
819 /*
820 * Once we've decremented the client object's refcount, it's possible
821 * for it to be deleted as soon as we release the lock, so we won't
822 * touch the object again.
823 */
cb1991af 824 frr_with_mutex (&client_mutex) {
aa9002a5
MS
825 client->busy_count--;
826
827 if (client->busy_count <= 0) {
828 /*
829 * No more users of the client object. If the client
830 * session is closed, schedule cleanup on the zebra
831 * main pthread.
832 */
c8b27f2a 833 if (client->is_closed)
907a2395
DS
834 event_add_event(zrouter.master,
835 zserv_handle_client_fail,
836 client, 0, &client->t_cleanup);
aa9002a5
MS
837 }
838 }
839
840 /*
841 * Cleanup must take place on the zebra main pthread, so we've
842 * scheduled an event.
843 */
aa9002a5
MS
844}
845
21ccc0cf
QY
846/*
847 * Accept socket connection.
848 */
e6685141 849static void zserv_accept(struct event *thread)
718e3744 850{
d62a17ae 851 int accept_sock;
852 int client_sock;
853 struct sockaddr_in client;
854 socklen_t len;
855
856 accept_sock = THREAD_FD(thread);
718e3744 857
d62a17ae 858 /* Reregister myself. */
21ccc0cf 859 zserv_event(NULL, ZSERV_ACCEPT);
718e3744 860
d62a17ae 861 len = sizeof(struct sockaddr_in);
862 client_sock = accept(accept_sock, (struct sockaddr *)&client, &len);
719e9741 863
d62a17ae 864 if (client_sock < 0) {
450971aa 865 flog_err_sys(EC_LIB_SOCKET, "Can't accept zebra socket: %s",
9df414fe 866 safe_strerror(errno));
cc9f21da 867 return;
d62a17ae 868 }
718e3744 869
d62a17ae 870 /* Make client socket non-blocking. */
871 set_nonblocking(client_sock);
718e3744 872
d62a17ae 873 /* Create new zebra client. */
21ccc0cf 874 zserv_client_create(client_sock);
718e3744 875}
876
41674562
DS
877void zserv_close(void)
878{
879 /*
880 * On shutdown, let's close the socket down
881 * so that long running processes of killing the
882 * routing table doesn't leave us in a bad
883 * state where a client tries to reconnect
884 */
885 close(zsock);
886 zsock = -1;
aa9002a5
MS
887
888 /* Free client list's mutex */
889 pthread_mutex_destroy(&client_mutex);
41674562
DS
890}
891
21ccc0cf 892void zserv_start(char *path)
d62a17ae 893{
894 int ret;
d62a17ae 895 mode_t old_mask;
689f5a8c
DL
896 struct sockaddr_storage sa;
897 socklen_t sa_len;
d62a17ae 898
689f5a8c
DL
899 if (!frr_zclient_addr(&sa, &sa_len, path))
900 /* should be caught in zebra main() */
901 return;
d62a17ae 902
903 /* Set umask */
904 old_mask = umask(0077);
905
906 /* Make UNIX domain socket. */
cc3d8834
DS
907 zsock = socket(sa.ss_family, SOCK_STREAM, 0);
908 if (zsock < 0) {
450971aa 909 flog_err_sys(EC_LIB_SOCKET, "Can't create zserv socket: %s",
9df414fe 910 safe_strerror(errno));
d62a17ae 911 return;
912 }
913
689f5a8c 914 if (sa.ss_family != AF_UNIX) {
cc3d8834
DS
915 sockopt_reuseaddr(zsock);
916 sockopt_reuseport(zsock);
689f5a8c
DL
917 } else {
918 struct sockaddr_un *suna = (struct sockaddr_un *)&sa;
919 if (suna->sun_path[0])
920 unlink(suna->sun_path);
921 }
922
338b8e91
RW
923 setsockopt_so_recvbuf(zsock, 1048576);
924 setsockopt_so_sendbuf(zsock, 1048576);
689f5a8c 925
0cf6db21 926 frr_with_privs((sa.ss_family != AF_UNIX) ? &zserv_privs : NULL) {
cc3d8834 927 ret = bind(zsock, (struct sockaddr *)&sa, sa_len);
6bb30c2c 928 }
d62a17ae 929 if (ret < 0) {
1c50c1c0
QY
930 flog_err_sys(EC_LIB_SOCKET, "Can't bind zserv socket on %s: %s",
931 path, safe_strerror(errno));
cc3d8834
DS
932 close(zsock);
933 zsock = -1;
d62a17ae 934 return;
935 }
936
cc3d8834 937 ret = listen(zsock, 5);
d62a17ae 938 if (ret < 0) {
450971aa 939 flog_err_sys(EC_LIB_SOCKET,
9df414fe
QY
940 "Can't listen to zserv socket %s: %s", path,
941 safe_strerror(errno));
cc3d8834
DS
942 close(zsock);
943 zsock = -1;
d62a17ae 944 return;
945 }
946
947 umask(old_mask);
948
21ccc0cf 949 zserv_event(NULL, ZSERV_ACCEPT);
718e3744 950}
6b0655a2 951
21ccc0cf
QY
952void zserv_event(struct zserv *client, enum zserv_event event)
953{
954 switch (event) {
955 case ZSERV_ACCEPT:
907a2395 956 event_add_read(zrouter.master, zserv_accept, NULL, zsock, NULL);
21ccc0cf
QY
957 break;
958 case ZSERV_PROCESS_MESSAGES:
907a2395
DS
959 event_add_event(zrouter.master, zserv_process_messages, client,
960 0, &client->t_process);
21ccc0cf 961 break;
f3e33b69 962 case ZSERV_HANDLE_CLIENT_FAIL:
907a2395
DS
963 event_add_event(zrouter.master, zserv_handle_client_fail,
964 client, 0, &client->t_cleanup);
21ccc0cf
QY
965 }
966}
967
968
f2efe6a3
QY
969/* General purpose ---------------------------------------------------------- */
970
04b02fda 971#define ZEBRA_TIME_BUF 32
d62a17ae 972static char *zserv_time_buf(time_t *time1, char *buf, int buflen)
04b02fda 973{
d62a17ae 974 time_t now;
04b02fda 975
d62a17ae 976 assert(buf != NULL);
977 assert(buflen >= ZEBRA_TIME_BUF);
978 assert(time1 != NULL);
04b02fda 979
d62a17ae 980 if (!*time1) {
981 snprintf(buf, buflen, "never ");
982 return (buf);
983 }
04b02fda 984
d62a17ae 985 now = monotime(NULL);
986 now -= *time1;
d0636ead
MS
987
988 frrtime_to_interval(now, buf, buflen);
989
d62a17ae 990 return buf;
991}
992
8062cbe2 993/* Display client info details */
d62a17ae 994static void zebra_show_client_detail(struct vty *vty, struct zserv *client)
995{
996 char cbuf[ZEBRA_TIME_BUF], rbuf[ZEBRA_TIME_BUF];
997 char wbuf[ZEBRA_TIME_BUF], nhbuf[ZEBRA_TIME_BUF], mbuf[ZEBRA_TIME_BUF];
52f6868d 998 time_t connect_time, last_read_time, last_write_time;
0545c373 999 uint32_t last_read_cmd, last_write_cmd;
d62a17ae 1000
1001 vty_out(vty, "Client: %s", zebra_route_string(client->proto));
1002 if (client->instance)
4cb13707 1003 vty_out(vty, " Instance: %u", client->instance);
4e0b5b31
MS
1004 if (client->session_id)
1005 vty_out(vty, " [%u]", client->session_id);
d62a17ae 1006 vty_out(vty, "\n");
1007
1008 vty_out(vty, "------------------------ \n");
1009 vty_out(vty, "FD: %d \n", client->sock);
d62a17ae 1010
ccac1109
DL
1011 frr_with_mutex (&client->stats_mtx) {
1012 connect_time = client->connect_time;
1013 last_read_time = client->last_read_time;
1014 last_write_time = client->last_write_time;
1015
1016 last_read_cmd = client->last_read_cmd;
1017 last_write_cmd = client->last_write_cmd;
1018 }
52f6868d 1019
d62a17ae 1020 vty_out(vty, "Connect Time: %s \n",
52f6868d 1021 zserv_time_buf(&connect_time, cbuf, ZEBRA_TIME_BUF));
d62a17ae 1022 if (client->nh_reg_time) {
1023 vty_out(vty, "Nexthop Registry Time: %s \n",
1024 zserv_time_buf(&client->nh_reg_time, nhbuf,
1025 ZEBRA_TIME_BUF));
1026 if (client->nh_last_upd_time)
1027 vty_out(vty, "Nexthop Last Update Time: %s \n",
1028 zserv_time_buf(&client->nh_last_upd_time, mbuf,
1029 ZEBRA_TIME_BUF));
1030 else
1031 vty_out(vty, "No Nexthop Update sent\n");
1032 } else
1033 vty_out(vty, "Not registered for Nexthop Updates\n");
1034
3e6ff764
MS
1035 vty_out(vty,
1036 "Client will %sbe notified about the status of its routes.\n",
7ed5844b
DS
1037 client->notify_owner ? "" : "Not ");
1038
d62a17ae 1039 vty_out(vty, "Last Msg Rx Time: %s \n",
52f6868d 1040 zserv_time_buf(&last_read_time, rbuf, ZEBRA_TIME_BUF));
d62a17ae 1041 vty_out(vty, "Last Msg Tx Time: %s \n",
52f6868d
QY
1042 zserv_time_buf(&last_write_time, wbuf, ZEBRA_TIME_BUF));
1043 if (last_read_cmd)
d62a17ae 1044 vty_out(vty, "Last Rcvd Cmd: %s \n",
52f6868d
QY
1045 zserv_command_string(last_read_cmd));
1046 if (last_write_cmd)
d62a17ae 1047 vty_out(vty, "Last Sent Cmd: %s \n",
52f6868d 1048 zserv_command_string(last_write_cmd));
d62a17ae 1049 vty_out(vty, "\n");
1050
0037287b 1051 vty_out(vty, "Type Add Update Del \n");
d62a17ae 1052 vty_out(vty, "================================================== \n");
4cb13707 1053 vty_out(vty, "IPv4 %-12u%-12u%-12u\n", client->v4_route_add_cnt,
d62a17ae 1054 client->v4_route_upd8_cnt, client->v4_route_del_cnt);
4cb13707 1055 vty_out(vty, "IPv6 %-12u%-12u%-12u\n", client->v6_route_add_cnt,
d62a17ae 1056 client->v6_route_upd8_cnt, client->v6_route_del_cnt);
4cb13707 1057 vty_out(vty, "Redist:v4 %-12u%-12u%-12u\n", client->redist_v4_add_cnt,
d62a17ae 1058 0, client->redist_v4_del_cnt);
4cb13707 1059 vty_out(vty, "Redist:v6 %-12u%-12u%-12u\n", client->redist_v6_add_cnt,
d62a17ae 1060 0, client->redist_v6_del_cnt);
a9d8faf7
DS
1061 vty_out(vty, "VRF %-12u%-12u%-12u\n", client->vrfadd_cnt, 0,
1062 client->vrfdel_cnt);
4cb13707 1063 vty_out(vty, "Connected %-12u%-12u%-12u\n", client->ifadd_cnt, 0,
d62a17ae 1064 client->ifdel_cnt);
9691937d
DS
1065 vty_out(vty, "Interface %-12u%-12u%-12u\n", client->ifup_cnt, 0,
1066 client->ifdown_cnt);
a9d8faf7
DS
1067 vty_out(vty, "Intf Addr %-12u%-12u%-12u\n",
1068 client->connected_rt_add_cnt, 0, client->connected_rt_del_cnt);
4cb13707 1069 vty_out(vty, "BFD peer %-12u%-12u%-12u\n", client->bfd_peer_add_cnt,
d62a17ae 1070 client->bfd_peer_upd8_cnt, client->bfd_peer_del_cnt);
4cb13707 1071 vty_out(vty, "NHT v4 %-12u%-12u%-12u\n",
ab5990d8 1072 client->v4_nh_watch_add_cnt, 0, client->v4_nh_watch_rem_cnt);
4cb13707 1073 vty_out(vty, "NHT v6 %-12u%-12u%-12u\n",
ab5990d8 1074 client->v6_nh_watch_add_cnt, 0, client->v6_nh_watch_rem_cnt);
4cb13707 1075 vty_out(vty, "VxLAN SG %-12u%-12u%-12u\n", client->vxlan_sg_add_cnt,
4ab3321f 1076 0, client->vxlan_sg_del_cnt);
9691937d
DS
1077 vty_out(vty, "VNI %-12u%-12u%-12u\n", client->vniadd_cnt, 0,
1078 client->vnidel_cnt);
1079 vty_out(vty, "L3-VNI %-12u%-12u%-12u\n", client->l3vniadd_cnt, 0,
1080 client->l3vnidel_cnt);
1081 vty_out(vty, "MAC-IP %-12u%-12u%-12u\n", client->macipadd_cnt, 0,
1082 client->macipdel_cnt);
1083 vty_out(vty, "ES %-12u%-12u%-12u\n", client->local_es_add_cnt,
1084 0, client->local_es_del_cnt);
1085 vty_out(vty, "ES-EVI %-12u%-12u%-12u\n",
1086 client->local_es_evi_add_cnt, 0, client->local_es_evi_del_cnt);
a9d8faf7 1087 vty_out(vty, "Errors: %u\n", client->error_cnt);
d62a17ae 1088
03ed85a6
DS
1089#if defined DEV_BUILD
1090 vty_out(vty, "Input Fifo: %zu:%zu Output Fifo: %zu:%zu\n",
1091 client->ibuf_fifo->count, client->ibuf_fifo->max_count,
1092 client->obuf_fifo->count, client->obuf_fifo->max_count);
1093#endif
d62a17ae 1094 vty_out(vty, "\n");
8062cbe2
S
1095}
1096
1097/* Display stale client information */
1098static void zebra_show_stale_client_detail(struct vty *vty,
1099 struct zserv *client)
1100{
1101 char buf[PREFIX2STR_BUFFER];
8062cbe2
S
1102 time_t uptime;
1103 struct client_gr_info *info = NULL;
1104 struct zserv *s = NULL;
4e0b5b31 1105 bool first_p = true;
8062cbe2
S
1106
1107 TAILQ_FOREACH (info, &client->gr_info_queue, gr_info) {
4e0b5b31 1108 if (first_p) {
5bebe26d
MS
1109 vty_out(vty, "Stale Client Information\n");
1110 vty_out(vty, "------------------------\n");
1111
4e0b5b31
MS
1112 if (client->instance)
1113 vty_out(vty, " Instance: %u", client->instance);
1114 if (client->session_id)
1115 vty_out(vty, " [%u]", client->session_id);
5bebe26d 1116
4e0b5b31
MS
1117 first_p = false;
1118 }
5bebe26d 1119
8062cbe2
S
1120 vty_out(vty, "VRF : %s\n", vrf_id_to_name(info->vrf_id));
1121 vty_out(vty, "Capabilities : ");
1122 switch (info->capabilities) {
1123 case ZEBRA_CLIENT_GR_CAPABILITIES:
76ab1a97
DS
1124 vty_out(vty, "Graceful Restart(%u seconds)\n",
1125 info->stale_removal_time);
8062cbe2
S
1126 break;
1127 case ZEBRA_CLIENT_ROUTE_UPDATE_COMPLETE:
1128 case ZEBRA_CLIENT_ROUTE_UPDATE_PENDING:
1129 case ZEBRA_CLIENT_GR_DISABLE:
1130 case ZEBRA_CLIENT_RIB_STALE_TIME:
1131 vty_out(vty, "None\n");
1132 break;
1133 }
1134
1135 if (ZEBRA_CLIENT_GR_ENABLED(info->capabilities)) {
1136 if (info->stale_client_ptr) {
1137 s = (struct zserv *)(info->stale_client_ptr);
d0636ead 1138 uptime = monotime(NULL);
8062cbe2 1139 uptime -= s->restart_time;
d0636ead
MS
1140
1141 frrtime_to_interval(uptime, buf, sizeof(buf));
1142
1143 vty_out(vty, "Last restart time : %s ago\n",
1144 buf);
8062cbe2
S
1145
1146 vty_out(vty, "Stalepath removal time: %d sec\n",
1147 info->stale_removal_time);
1148 if (info->t_stale_removal) {
1149 vty_out(vty,
1150 "Stale delete timer: %ld sec\n",
1151 thread_timer_remain_second(
1152 info->t_stale_removal));
1153 }
1154 }
1155 vty_out(vty, "Current AFI : %d\n", info->current_afi);
2dbe669b
DA
1156 if (info->current_prefix)
1157 vty_out(vty, "Current prefix : %pFX\n",
1158 info->current_prefix);
8062cbe2
S
1159 }
1160 }
1161 vty_out(vty, "\n");
d62a17ae 1162 return;
1163}
1164
1165static void zebra_show_client_brief(struct vty *vty, struct zserv *client)
1166{
99a30b47 1167 char client_string[80];
d62a17ae 1168 char cbuf[ZEBRA_TIME_BUF], rbuf[ZEBRA_TIME_BUF];
1169 char wbuf[ZEBRA_TIME_BUF];
52f6868d
QY
1170 time_t connect_time, last_read_time, last_write_time;
1171
ccac1109
DL
1172 frr_with_mutex (&client->stats_mtx) {
1173 connect_time = client->connect_time;
1174 last_read_time = client->last_read_time;
1175 last_write_time = client->last_write_time;
1176 }
d62a17ae 1177
99a30b47
DS
1178 if (client->instance || client->session_id)
1179 snprintfrr(client_string, sizeof(client_string), "%s[%u:%u]",
1180 zebra_route_string(client->proto), client->instance,
1181 client->session_id);
1182 else
1183 snprintfrr(client_string, sizeof(client_string), "%s",
1184 zebra_route_string(client->proto));
1185
f2ada31c
DS
1186 vty_out(vty, "%-10s%12s %12s%12s %10d/%-10d %10d/%-10d\n",
1187 client_string,
52f6868d
QY
1188 zserv_time_buf(&connect_time, cbuf, ZEBRA_TIME_BUF),
1189 zserv_time_buf(&last_read_time, rbuf, ZEBRA_TIME_BUF),
1190 zserv_time_buf(&last_write_time, wbuf, ZEBRA_TIME_BUF),
d62a17ae 1191 client->v4_route_add_cnt + client->v4_route_upd8_cnt,
1192 client->v4_route_del_cnt,
1193 client->v6_route_add_cnt + client->v6_route_upd8_cnt,
1194 client->v6_route_del_cnt);
1195}
1196
aa9002a5
MS
1197/*
1198 * Common logic that searches the client list for a zapi client; this
1199 * MUST be called holding the client list mutex.
1200 */
1201static struct zserv *find_client_internal(uint8_t proto,
1202 unsigned short instance,
1203 uint32_t session_id)
d62a17ae 1204{
1205 struct listnode *node, *nnode;
aa9002a5 1206 struct zserv *client = NULL;
d62a17ae 1207
161e9ab7 1208 for (ALL_LIST_ELEMENTS(zrouter.client_list, node, nnode, client)) {
4e0b5b31
MS
1209 if (client->proto == proto && client->instance == instance &&
1210 client->session_id == session_id)
aa9002a5 1211 break;
d62a17ae 1212 }
1213
aa9002a5 1214 return client;
8ed6821e 1215}
1216
aa9002a5
MS
1217/*
1218 * Public api that searches for a client session; this version is
1219 * used from the zebra main pthread.
1220 */
4e0b5b31
MS
1221struct zserv *zserv_find_client(uint8_t proto, unsigned short instance)
1222{
aa9002a5
MS
1223 struct zserv *client;
1224
cb1991af 1225 frr_with_mutex (&client_mutex) {
aa9002a5
MS
1226 client = find_client_internal(proto, instance, 0);
1227 }
1228
1229 return client;
1230}
1231
1232/*
1233 * Retrieve a client by its protocol, instance number, and session id.
1234 */
1235struct zserv *zserv_find_client_session(uint8_t proto, unsigned short instance,
1236 uint32_t session_id)
1237{
1238 struct zserv *client;
1239
cb1991af 1240 frr_with_mutex (&client_mutex) {
aa9002a5
MS
1241 client = find_client_internal(proto, instance, session_id);
1242 }
1243
1244 return client;
1245
4e0b5b31
MS
1246}
1247
718e3744 1248/* This command is for debugging purpose. */
1249DEFUN (show_zebra_client,
1250 show_zebra_client_cmd,
1251 "show zebra client",
1252 SHOW_STR
41e7fb80 1253 ZEBRA_STR
b9ee4999 1254 "Client information\n")
718e3744 1255{
d62a17ae 1256 struct listnode *node;
1257 struct zserv *client;
718e3744 1258
8062cbe2 1259 for (ALL_LIST_ELEMENTS_RO(zrouter.client_list, node, client)) {
d62a17ae 1260 zebra_show_client_detail(vty, client);
5bebe26d 1261 /* Show GR info if present */
8062cbe2
S
1262 zebra_show_stale_client_detail(vty, client);
1263 }
04b02fda 1264
d62a17ae 1265 return CMD_SUCCESS;
04b02fda
DS
1266}
1267
1268/* This command is for debugging purpose. */
1269DEFUN (show_zebra_client_summary,
1270 show_zebra_client_summary_cmd,
1271 "show zebra client summary",
1272 SHOW_STR
41e7fb80 1273 ZEBRA_STR
b9ee4999
DS
1274 "Client information brief\n"
1275 "Brief Summary\n")
04b02fda 1276{
d62a17ae 1277 struct listnode *node;
1278 struct zserv *client;
04b02fda 1279
d62a17ae 1280 vty_out(vty,
f2ada31c 1281 "Name Connect Time Last Read Last Write IPv4 Routes IPv6 Routes\n");
d62a17ae 1282 vty_out(vty,
f2ada31c 1283 "------------------------------------------------------------------------------------------\n");
04b02fda 1284
161e9ab7 1285 for (ALL_LIST_ELEMENTS_RO(zrouter.client_list, node, client))
d62a17ae 1286 zebra_show_client_brief(vty, client);
fb018d25 1287
d62a17ae 1288 vty_out(vty, "Routes column shows (added+updated)/deleted\n");
1289 return CMD_SUCCESS;
718e3744 1290}
1291
581e797e
KS
1292static int zserv_client_close_cb(struct zserv *closed_client)
1293{
1294 struct listnode *node, *nnode;
1295 struct zserv *client = NULL;
1296
1297 for (ALL_LIST_ELEMENTS(zrouter.client_list, node, nnode, client)) {
1298 if (client->proto == closed_client->proto)
1299 continue;
1300
1301 zsend_client_close_notify(client, closed_client);
1302 }
1303
1304 return 0;
1305}
1306
5f145fb8 1307void zserv_init(void)
718e3744 1308{
d62a17ae 1309 /* Client list init. */
161e9ab7 1310 zrouter.client_list = list_new();
8062cbe2 1311 zrouter.stale_client_list = list_new();
21ccc0cf
QY
1312
1313 /* Misc init. */
cc3d8834 1314 zsock = -1;
aa9002a5 1315 pthread_mutex_init(&client_mutex, NULL);
718e3744 1316
d62a17ae 1317 install_element(ENABLE_NODE, &show_zebra_client_cmd);
1318 install_element(ENABLE_NODE, &show_zebra_client_summary_cmd);
581e797e
KS
1319
1320 hook_register(zserv_client_close, zserv_client_close_cb);
718e3744 1321}