]> git.proxmox.com Git - mirror_frr.git/blame - lib/log.c
lib: implement route map northbound
[mirror_frr.git] / lib / log.c
CommitLineData
274a4a44 1/*
274a4a44 2 * Logging of zebra
718e3744 3 * Copyright (C) 1997, 1998, 1999 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
896014f4
DL
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
718e3744 20 */
21
ab0181ee 22#define FRR_DEFINE_DESC_TABLE
e0ca5fde 23
718e3744 24#include <zebra.h>
25
8613585e 26#include "zclient.h"
718e3744 27#include "log.h"
deaa50db 28#include "log_int.h"
718e3744 29#include "memory.h"
30#include "command.h"
481bc15f 31#include "lib_errors.h"
77d9c926 32#include "lib/hook.h"
807f5b98 33#include "printfrr.h"
00dffa8c 34#include "frr_pthread.h"
481bc15f 35
7d149b8e 36#ifndef SUNOS_5
37#include <sys/un.h>
38#endif
30a2231a
PJ
39/* for printstack on solaris */
40#ifdef HAVE_UCONTEXT_H
41#include <ucontext.h>
42#endif
718e3744 43
68b8a15f
DL
44#ifdef HAVE_LIBUNWIND
45#define UNW_LOCAL_ONLY
46#include <libunwind.h>
47#include <dlfcn.h>
48#endif
49
4a1ab8e4
DL
50DEFINE_MTYPE_STATIC(LIB, ZLOG, "Logging")
51
77d9c926
EDP
52/* hook for external logging */
53DEFINE_HOOK(zebra_ext_log, (int priority, const char *format, va_list args),
54 (priority, format, args));
55
d62a17ae 56static int logfile_fd = -1; /* Used in signal handler. */
1e221354 57
718e3744 58struct zlog *zlog_default = NULL;
d34cb7f0 59bool zlog_startup_stderr = true;
718e3744 60
dd73dca9 61/* lock protecting zlog_default for mt-safe zlog */
c17faa4b 62static pthread_mutex_t loglock = PTHREAD_MUTEX_INITIALIZER;
dd73dca9 63
d62a17ae 64const char *zlog_priority[] = {
65 "emergencies", "alerts", "critical", "errors", "warnings",
66 "notifications", "informational", "debugging", NULL,
718e3744 67};
718e3744 68
c0dc2346
SW
69static char zlog_filters[ZLOG_FILTERS_MAX][ZLOG_FILTER_LENGTH_MAX + 1];
70static uint8_t zlog_filter_count;
71
fc2a67dd
SW
72/*
73 * look for a match on the filter in the current filters, loglock must be held
74 */
c0dc2346
SW
75static int zlog_filter_lookup(const char *lookup)
76{
c0dc2346
SW
77 for (int i = 0; i < zlog_filter_count; i++) {
78 if (strncmp(lookup, zlog_filters[i], sizeof(zlog_filters[0]))
79 == 0)
80 return i;
81 }
82 return -1;
83}
84
85void zlog_filter_clear(void)
86{
00dffa8c
DL
87 frr_with_mutex(&loglock) {
88 zlog_filter_count = 0;
89 }
c0dc2346
SW
90}
91
92int zlog_filter_add(const char *filter)
93{
00dffa8c
DL
94 frr_with_mutex(&loglock) {
95 if (zlog_filter_count >= ZLOG_FILTERS_MAX)
96 return 1;
c0dc2346 97
00dffa8c
DL
98 if (zlog_filter_lookup(filter) != -1)
99 /* Filter already present */
100 return -1;
ec1d9775 101
00dffa8c
DL
102 strlcpy(zlog_filters[zlog_filter_count], filter,
103 sizeof(zlog_filters[0]));
c0dc2346 104
00dffa8c
DL
105 if (zlog_filters[zlog_filter_count][0] == '\0')
106 /* Filter was either empty or didn't get copied
107 * correctly
108 */
109 return -1;
c0dc2346 110
00dffa8c 111 zlog_filter_count++;
c0dc2346 112 }
00dffa8c 113 return 0;
c0dc2346
SW
114}
115
116int zlog_filter_del(const char *filter)
117{
00dffa8c
DL
118 frr_with_mutex(&loglock) {
119 int found_idx = zlog_filter_lookup(filter);
120 int last_idx = zlog_filter_count - 1;
c0dc2346 121
00dffa8c
DL
122 if (found_idx == -1)
123 /* Didn't find the filter to delete */
124 return -1;
c0dc2346 125
00dffa8c
DL
126 /* Adjust the filter array */
127 memmove(zlog_filters[found_idx], zlog_filters[found_idx + 1],
128 (last_idx - found_idx) * sizeof(zlog_filters[0]));
c0dc2346 129
00dffa8c
DL
130 zlog_filter_count--;
131 }
132 return 0;
c0dc2346
SW
133}
134
135/* Dump all filters to buffer, delimited by new line */
136int zlog_filter_dump(char *buf, size_t max_size)
137{
c0dc2346
SW
138 int len = 0;
139
00dffa8c
DL
140 frr_with_mutex(&loglock) {
141 for (int i = 0; i < zlog_filter_count; i++) {
142 int ret;
143 ret = snprintf(buf + len, max_size - len, " %s\n",
144 zlog_filters[i]);
145 len += ret;
146 if ((ret < 0) || ((size_t)len >= max_size))
147 return -1;
c0dc2346
SW
148 }
149 }
150
c0dc2346
SW
151 return len;
152}
153
7a49a5b5
DS
154/*
155 * write_wrapper
156 *
157 * glibc has declared that the return value from write *must* not be
158 * ignored.
159 * gcc see's this problem and issues a warning for the line.
160 *
161 * Why is this a big deal you say? Because both of them are right
162 * and if you have -Werror enabled then all calls to write
163 * generate a build error and the build stops.
164 *
165 * clang has helpfully allowed this construct:
166 * (void)write(...)
167 * to tell the compiler yeah I know it has a return value
168 * I don't care about it at this time.
169 * gcc doesn't have this ability.
170 *
171 * This code was written such that it didn't care about the
172 * return value from write. At this time do I want
173 * to go through and fix and test this code for correctness.
174 * So just wrapper the bad behavior and move on.
175 */
d62a17ae 176static void write_wrapper(int fd, const void *buf, size_t count)
7a49a5b5 177{
d62a17ae 178 if (write(fd, buf, count) <= 0)
179 return;
7a49a5b5 180
d62a17ae 181 return;
7a49a5b5 182}
6b0655a2 183
56b40679
QY
184/**
185 * Looks up a message in a message list by key.
186 *
187 * If the message is not found, returns the provided error message.
188 *
189 * Terminates when it hits a struct message that's all zeros.
190 *
191 * @param mz the message list
192 * @param kz the message key
193 * @param nf the message to return if not found
194 * @return the message
195 */
d62a17ae 196const char *lookup_msg(const struct message *mz, int kz, const char *nf)
56b40679 197{
d62a17ae 198 static struct message nt = {0};
199 const char *rz = nf ? nf : "(no message found)";
200 const struct message *pnt;
201 for (pnt = mz; memcmp(pnt, &nt, sizeof(struct message)); pnt++)
202 if (pnt->key == kz) {
203 rz = pnt->str ? pnt->str : rz;
204 break;
205 }
206 return rz;
56b40679 207}
718e3744 208
56b40679 209/* For time string format. */
d62a17ae 210size_t quagga_timestamp(int timestamp_precision, char *buf, size_t buflen)
718e3744 211{
d62a17ae 212 static struct {
213 time_t last;
214 size_t len;
215 char buf[28];
216 } cache;
217 struct timeval clock;
218
219 gettimeofday(&clock, NULL);
220
221 /* first, we update the cache if the time has changed */
222 if (cache.last != clock.tv_sec) {
223 struct tm *tm;
224 cache.last = clock.tv_sec;
225 tm = localtime(&cache.last);
226 cache.len = strftime(cache.buf, sizeof(cache.buf),
227 "%Y/%m/%d %H:%M:%S", tm);
228 }
229 /* note: it's not worth caching the subsecond part, because
230 chances are that back-to-back calls are not sufficiently close
231 together
232 for the clock not to have ticked forward */
233
234 if (buflen > cache.len) {
235 memcpy(buf, cache.buf, cache.len);
236 if ((timestamp_precision > 0)
237 && (buflen > cache.len + 1 + timestamp_precision)) {
238 /* should we worry about locale issues? */
239 static const int divisor[] = {0, 100000, 10000, 1000,
240 100, 10, 1};
241 int prec;
242 char *p = buf + cache.len + 1
243 + (prec = timestamp_precision);
244 *p-- = '\0';
245 while (prec > 6)
246 /* this is unlikely to happen, but protect anyway */
247 {
248 *p-- = '0';
249 prec--;
250 }
251 clock.tv_usec /= divisor[prec];
252 do {
253 *p-- = '0' + (clock.tv_usec % 10);
254 clock.tv_usec /= 10;
255 } while (--prec > 0);
256 *p = '.';
257 return cache.len + 1 + timestamp_precision;
258 }
259 buf[cache.len] = '\0';
260 return cache.len;
1ed72e0b 261 }
d62a17ae 262 if (buflen > 0)
263 buf[0] = '\0';
264 return 0;
1ed72e0b 265}
718e3744 266
fc2a67dd 267static inline void timestamp_control_render(struct timestamp_control *ctl)
1ed72e0b 268{
d62a17ae 269 if (!ctl->already_rendered) {
270 ctl->len = quagga_timestamp(ctl->precision, ctl->buf,
271 sizeof(ctl->buf));
272 ctl->already_rendered = 1;
273 }
fc2a67dd
SW
274}
275
276/* Utility routine for current time printing. */
277static void time_print(FILE *fp, struct timestamp_control *ctl)
278{
279 timestamp_control_render(ctl);
d62a17ae 280 fprintf(fp, "%s ", ctl->buf);
718e3744 281}
d62a17ae 282
fc2a67dd
SW
283static int time_print_buf(char *buf, int len, int max_size,
284 struct timestamp_control *ctl)
285{
286 timestamp_control_render(ctl);
287
288 if (ctl->len + 1 >= (unsigned long)max_size)
289 return -1;
290
291 return snprintf(buf + len, max_size - len, "%s ", ctl->buf);
292}
6b0655a2 293
d34cb7f0 294static void vzlog_file(struct zlog *zl, struct timestamp_control *tsctl,
996c9314 295 const char *proto_str, int record_priority, int priority,
807f5b98 296 FILE *fp, const char *msg)
d34cb7f0 297{
d34cb7f0
DL
298 time_print(fp, tsctl);
299 if (record_priority)
300 fprintf(fp, "%s: ", zlog_priority[priority]);
301
807f5b98 302 fprintf(fp, "%s%s\n", proto_str, msg);
d34cb7f0
DL
303 fflush(fp);
304}
305
fc2a67dd
SW
306/* Search a buf for the filter strings, loglock must be held */
307static int search_buf(const char *buf)
308{
309 char *found = NULL;
310
311 for (int i = 0; i < zlog_filter_count; i++) {
312 found = strstr(buf, zlog_filters[i]);
313 if (found != NULL)
314 return 0;
315 }
316
317 return -1;
318}
319
320/* Filter out a log */
321static int vzlog_filter(struct zlog *zl, struct timestamp_control *tsctl,
322 const char *proto_str, int priority, const char *msg)
323{
324 int len = 0;
325 int ret = 0;
326 char buf[1024] = "";
327
328 ret = time_print_buf(buf, len, sizeof(buf), tsctl);
329
330 len += ret;
331 if ((ret < 0) || ((size_t)len >= sizeof(buf)))
ec1d9775 332 goto search;
fc2a67dd
SW
333
334 if (zl && zl->record_priority)
335 snprintf(buf + len, sizeof(buf) - len, "%s: %s: %s",
336 zlog_priority[priority], proto_str, msg);
337 else
338 snprintf(buf + len, sizeof(buf) - len, "%s: %s", proto_str,
339 msg);
340
ec1d9775 341search:
fc2a67dd
SW
342 return search_buf(buf);
343}
344
718e3744 345/* va_list version of zlog. */
d62a17ae 346void vzlog(int priority, const char *format, va_list args)
718e3744 347{
00dffa8c 348 frr_mutex_lock_autounlock(&loglock);
dd73dca9 349
fc2a67dd 350 char proto_str[32] = "";
d62a17ae 351 int original_errno = errno;
fc2a67dd 352 struct timestamp_control tsctl = {};
d62a17ae 353 tsctl.already_rendered = 0;
354 struct zlog *zl = zlog_default;
807f5b98 355 char buf[256], *msg;
d62a17ae 356
fc2a67dd
SW
357 if (zl == NULL) {
358 tsctl.precision = 0;
359 } else {
360 tsctl.precision = zl->timestamp_precision;
361 if (zl->instance)
362 sprintf(proto_str, "%s[%d]: ", zl->protoname,
363 zl->instance);
364 else
365 sprintf(proto_str, "%s: ", zl->protoname);
366 }
77d9c926 367
807f5b98
DL
368 msg = vasnprintfrr(MTYPE_TMP, buf, sizeof(buf), format, args);
369
fc2a67dd
SW
370 /* If it doesn't match on a filter, do nothing with the debug log */
371 if ((priority == LOG_DEBUG) && zlog_filter_count
00a7f422 372 && vzlog_filter(zl, &tsctl, proto_str, priority, msg))
fc2a67dd 373 goto out;
fc2a67dd
SW
374
375 /* call external hook */
376 hook_call(zebra_ext_log, priority, format, args);
377
d62a17ae 378 /* When zlog_default is also NULL, use stderr for logging. */
379 if (zl == NULL) {
d62a17ae 380 time_print(stderr, &tsctl);
807f5b98 381 fprintf(stderr, "%s: %s\n", "unknown", msg);
d62a17ae 382 fflush(stderr);
807f5b98 383 goto out;
d62a17ae 384 }
d62a17ae 385
386 /* Syslog output */
807f5b98
DL
387 if (priority <= zl->maxlvl[ZLOG_DEST_SYSLOG])
388 syslog(priority | zlog_default->facility, "%s", msg);
d62a17ae 389
d62a17ae 390 /* File output. */
d34cb7f0 391 if ((priority <= zl->maxlvl[ZLOG_DEST_FILE]) && zl->fp)
996c9314 392 vzlog_file(zl, &tsctl, proto_str, zl->record_priority, priority,
807f5b98 393 zl->fp, msg);
d62a17ae 394
d34cb7f0
DL
395 /* fixed-config logging to stderr while we're stating up & haven't
396 * daemonized / reached mainloop yet
397 *
398 * note the "else" on stdout output -- we don't want to print the same
399 * message to both stderr and stdout. */
400 if (zlog_startup_stderr && priority <= LOG_WARNING)
807f5b98 401 vzlog_file(zl, &tsctl, proto_str, 1, priority, stderr, msg);
d34cb7f0 402 else if (priority <= zl->maxlvl[ZLOG_DEST_STDOUT])
996c9314 403 vzlog_file(zl, &tsctl, proto_str, zl->record_priority, priority,
807f5b98 404 stdout, msg);
d62a17ae 405
406 /* Terminal monitor. */
407 if (priority <= zl->maxlvl[ZLOG_DEST_MONITOR])
408 vty_log((zl->record_priority ? zlog_priority[priority] : NULL),
807f5b98 409 proto_str, msg, &tsctl);
d62a17ae 410
807f5b98
DL
411out:
412 if (msg != buf)
413 XFREE(MTYPE_TMP, msg);
d62a17ae 414 errno = original_errno;
718e3744 415}
416
d62a17ae 417int vzlog_test(int priority)
65efcfce 418{
00dffa8c 419 frr_mutex_lock_autounlock(&loglock);
dd73dca9 420
d62a17ae 421 struct zlog *zl = zlog_default;
422
423 /* When zlog_default is also NULL, use stderr for logging. */
dd73dca9 424 if (zl == NULL)
00dffa8c 425 return 1;
d62a17ae 426 /* Syslog output */
dd73dca9 427 else if (priority <= zl->maxlvl[ZLOG_DEST_SYSLOG])
00dffa8c 428 return 1;
d62a17ae 429 /* File output. */
dd73dca9 430 else if ((priority <= zl->maxlvl[ZLOG_DEST_FILE]) && zl->fp)
00dffa8c 431 return 1;
d62a17ae 432 /* stdout output. */
dd73dca9 433 else if (priority <= zl->maxlvl[ZLOG_DEST_STDOUT])
00dffa8c 434 return 1;
d62a17ae 435 /* Terminal monitor. */
dd73dca9 436 else if (priority <= zl->maxlvl[ZLOG_DEST_MONITOR])
00dffa8c 437 return 1;
dd73dca9 438
00dffa8c 439 return 0;
65efcfce
LB
440}
441
c22f6d8c
DL
442/*
443 * crash handling
444 *
445 * NB: only AS-Safe (async-signal) functions can be used here!
446 */
7d149b8e 447
7d149b8e 448/* Needs to be enhanced to support Solaris. */
d62a17ae 449static int syslog_connect(void)
7d149b8e 450{
451#ifdef SUNOS_5
d62a17ae 452 return -1;
7d149b8e 453#else
d62a17ae 454 int fd;
d62a17ae 455 struct sockaddr_un addr;
7d149b8e 456
d62a17ae 457 if ((fd = socket(AF_UNIX, SOCK_DGRAM, 0)) < 0)
458 return -1;
459 addr.sun_family = AF_UNIX;
7d149b8e 460#ifdef _PATH_LOG
461#define SYSLOG_SOCKET_PATH _PATH_LOG
462#else
463#define SYSLOG_SOCKET_PATH "/dev/log"
464#endif
c22f6d8c 465 strlcpy(addr.sun_path, SYSLOG_SOCKET_PATH, sizeof(addr.sun_path));
7d149b8e 466#undef SYSLOG_SOCKET_PATH
d62a17ae 467 if (connect(fd, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
468 close(fd);
469 return -1;
470 }
471 return fd;
7d149b8e 472#endif
473}
474
d62a17ae 475static void syslog_sigsafe(int priority, const char *msg, size_t msglen)
7d149b8e 476{
d62a17ae 477 static int syslog_fd = -1;
478 char buf[sizeof("<1234567890>ripngd[1234567890]: ") + msglen + 50];
c22f6d8c 479 struct fbuf fb = { .buf = buf, .pos = buf, .len = sizeof(buf) };
7d149b8e 480
d62a17ae 481 if ((syslog_fd < 0) && ((syslog_fd = syslog_connect()) < 0))
482 return;
7d149b8e 483
d62a17ae 484 /* forget about the timestamp, too difficult in a signal handler */
c22f6d8c
DL
485 bprintfrr(&fb, "<%d>%s", priority, zlog_default->ident);
486 if (zlog_default->syslog_options & LOG_PID)
487 bprintfrr(&fb, "[%ld]", (long)getpid());
488 bprintfrr(&fb, ": %s", msg);
489 write_wrapper(syslog_fd, fb.buf, fb.pos - fb.buf);
7d149b8e 490}
491
d62a17ae 492static int open_crashlog(void)
1e221354 493{
c22f6d8c
DL
494 char crashlog_buf[PATH_MAX];
495 const char *crashlog_default = "/var/tmp/frr.crashlog", *crashlog;
59a06a91 496
c22f6d8c
DL
497 if (!zlog_default || !zlog_default->ident)
498 crashlog = crashlog_default;
499 else {
500 snprintfrr(crashlog_buf, sizeof(crashlog_buf),
501 "/var/tmp/frr.%s.crashlog", zlog_default->ident);
502 crashlog = crashlog_buf;
d62a17ae 503 }
c22f6d8c
DL
504 return open(crashlog, O_WRONLY | O_CREAT | O_EXCL, LOGFILE_MASK);
505}
59a06a91 506
d62a17ae 507/* N.B. implicit priority is most severe */
1e221354 508#define PRI LOG_CRIT
274a4a44 509
c22f6d8c
DL
510static void crash_write(struct fbuf *fb, char *msgstart)
511{
512 if (fb->pos == fb->buf)
513 return;
514 if (!msgstart)
515 msgstart = fb->buf;
516
d62a17ae 517 /* If no file logging configured, try to write to fallback log file. */
518 if ((logfile_fd >= 0) || ((logfile_fd = open_crashlog()) >= 0))
c22f6d8c 519 write(logfile_fd, fb->buf, fb->pos - fb->buf);
d62a17ae 520 if (!zlog_default)
c22f6d8c 521 write(STDERR_FILENO, fb->buf, fb->pos - fb->buf);
d62a17ae 522 else {
523 if (PRI <= zlog_default->maxlvl[ZLOG_DEST_STDOUT])
c22f6d8c 524 write(STDOUT_FILENO, fb->buf, fb->pos - fb->buf);
d62a17ae 525 /* Remove trailing '\n' for monitor and syslog */
c22f6d8c 526 fb->pos--;
d62a17ae 527 if (PRI <= zlog_default->maxlvl[ZLOG_DEST_MONITOR])
c22f6d8c 528 vty_log_fixed(fb->buf, fb->pos - fb->buf);
d62a17ae 529 if (PRI <= zlog_default->maxlvl[ZLOG_DEST_SYSLOG])
530 syslog_sigsafe(PRI | zlog_default->facility, msgstart,
c22f6d8c 531 fb->pos - msgstart);
d62a17ae 532 }
c22f6d8c 533}
59a06a91 534
c22f6d8c
DL
535/* Note: the goal here is to use only async-signal-safe functions. */
536void zlog_signal(int signo, const char *action, void *siginfo_v,
537 void *program_counter)
538{
c22f6d8c 539 siginfo_t *siginfo = siginfo_v;
c22f6d8c
DL
540 time_t now;
541 char buf[sizeof("DEFAULT: Received signal S at T (si_addr 0xP, PC 0xP); aborting...")
542 + 100];
543 char *msgstart;
544 struct fbuf fb = { .buf = buf, .pos = buf, .len = sizeof(buf) };
545
546 time(&now);
547 if (zlog_default)
548 bprintfrr(&fb, "%s: ", zlog_default->protoname);
549
550 msgstart = fb.pos;
551
552 bprintfrr(&fb, "Received signal %d at %lld", signo, (long long)now);
c22f6d8c
DL
553 if (program_counter)
554 bprintfrr(&fb, " (si_addr 0x%tx, PC 0x%tx)",
555 (ptrdiff_t)siginfo->si_addr,
556 (ptrdiff_t)program_counter);
557 else
558 bprintfrr(&fb, " (si_addr 0x%tx)",
559 (ptrdiff_t)siginfo->si_addr);
c22f6d8c
DL
560 bprintfrr(&fb, "; %s\n", action);
561
562 crash_write(&fb, msgstart);
563
564 zlog_backtrace_sigsafe(PRI, program_counter);
565
566 fb.pos = buf;
d62a17ae 567
d62a17ae 568 struct thread *tc;
569 tc = pthread_getspecific(thread_current);
d1265948 570
c22f6d8c
DL
571 if (!tc)
572 bprintfrr(&fb, "no thread information available\n");
573 else
574 bprintfrr(&fb, "in thread %s scheduled from %s:%d\n",
575 tc->funcname, tc->schedfrom, tc->schedfrom_line);
d1265948 576
c22f6d8c 577 crash_write(&fb, NULL);
063ee52a 578}
579
580/* Log a backtrace using only async-signal-safe functions.
581 Needs to be enhanced to support syslog logging. */
d62a17ae 582void zlog_backtrace_sigsafe(int priority, void *program_counter)
063ee52a 583{
68b8a15f 584#ifdef HAVE_LIBUNWIND
c22f6d8c
DL
585 char buf[256];
586 struct fbuf fb = { .buf = buf, .len = sizeof(buf) };
68b8a15f
DL
587 unw_cursor_t cursor;
588 unw_context_t uc;
589 unw_word_t ip, off, sp;
590 Dl_info dlinfo;
591
592 unw_getcontext(&uc);
593 unw_init_local(&cursor, &uc);
594 while (unw_step(&cursor) > 0) {
595 char name[128] = "?";
596
597 unw_get_reg(&cursor, UNW_REG_IP, &ip);
598 unw_get_reg(&cursor, UNW_REG_SP, &sp);
599
c22f6d8c
DL
600 if (!unw_get_proc_name(&cursor, buf, sizeof(buf), &off))
601 snprintfrr(name, sizeof(name), "%s+%#lx",
602 buf, (long)off);
68b8a15f 603
c22f6d8c
DL
604 fb.pos = buf;
605 if (unw_is_signal_frame(&cursor))
606 bprintfrr(&fb, " ---- signal ----\n");
607 bprintfrr(&fb, "%-30s %16lx %16lx", name, (long)ip, (long)sp);
608 if (dladdr((void *)ip, &dlinfo))
609 bprintfrr(&fb, " %s (mapped at %p)",
610 dlinfo.dli_fname, dlinfo.dli_fbase);
611 bprintfrr(&fb, "\n");
612 crash_write(&fb, NULL);
68b8a15f
DL
613 }
614#elif defined(HAVE_GLIBC_BACKTRACE) || defined(HAVE_PRINTSTACK)
d62a17ae 615 static const char pclabel[] = "Program counter: ";
616 void *array[64];
617 int size;
c22f6d8c
DL
618 char buf[128];
619 struct fbuf fb = { .buf = buf, .pos = buf, .len = sizeof(buf) };
620 char **bt = NULL;
59a06a91 621
fb66b29c 622#ifdef HAVE_GLIBC_BACKTRACE
d62a17ae 623 size = backtrace(array, array_size(array));
624 if (size <= 0 || (size_t)size > array_size(array))
625 return;
626
627#define DUMP(FD) \
628 { \
629 if (program_counter) { \
630 write_wrapper(FD, pclabel, sizeof(pclabel) - 1); \
631 backtrace_symbols_fd(&program_counter, 1, FD); \
632 } \
c22f6d8c 633 write_wrapper(FD, fb.buf, fb.pos - fb.buf); \
d62a17ae 634 backtrace_symbols_fd(array, size, FD); \
635 }
fb66b29c 636#elif defined(HAVE_PRINTSTACK)
aa0e96ed
QY
637 size = 0;
638
d62a17ae 639#define DUMP(FD) \
640 { \
641 if (program_counter) \
642 write_wrapper((FD), pclabel, sizeof(pclabel) - 1); \
c22f6d8c 643 write_wrapper((FD), fb.buf, fb.pos - fb.buf); \
d62a17ae 644 printstack((FD)); \
645 }
fb66b29c
PJ
646#endif /* HAVE_GLIBC_BACKTRACE, HAVE_PRINTSTACK */
647
c22f6d8c 648 bprintfrr(&fb, "Backtrace for %d stack frames:\n", size);
d62a17ae 649
650 if ((logfile_fd >= 0) || ((logfile_fd = open_crashlog()) >= 0))
651 DUMP(logfile_fd)
652 if (!zlog_default)
653 DUMP(STDERR_FILENO)
654 else {
655 if (priority <= zlog_default->maxlvl[ZLOG_DEST_STDOUT])
656 DUMP(STDOUT_FILENO)
657 /* Remove trailing '\n' for monitor and syslog */
c22f6d8c 658 fb.pos--;
d62a17ae 659 if (priority <= zlog_default->maxlvl[ZLOG_DEST_MONITOR])
c22f6d8c 660 vty_log_fixed(fb.buf, fb.pos - fb.buf);
d62a17ae 661 if (priority <= zlog_default->maxlvl[ZLOG_DEST_SYSLOG])
c22f6d8c
DL
662 syslog_sigsafe(priority | zlog_default->facility,
663 fb.buf, fb.pos - fb.buf);
d62a17ae 664 {
665 int i;
94fc1dd4 666#ifdef HAVE_GLIBC_BACKTRACE
d62a17ae 667 bt = backtrace_symbols(array, size);
94fc1dd4 668#endif
d62a17ae 669 /* Just print the function addresses. */
670 for (i = 0; i < size; i++) {
c22f6d8c 671 fb.pos = buf;
d62a17ae 672 if (bt)
c22f6d8c
DL
673 bprintfrr(&fb, "%s", bt[i]);
674 else
675 bprintfrr(&fb, "[bt %d] 0x%tx", i,
676 (ptrdiff_t)(array[i]));
d62a17ae 677 if (priority
678 <= zlog_default->maxlvl[ZLOG_DEST_MONITOR])
c22f6d8c 679 vty_log_fixed(fb.buf, fb.pos - fb.buf);
d62a17ae 680 if (priority
681 <= zlog_default->maxlvl[ZLOG_DEST_SYSLOG])
c22f6d8c
DL
682 syslog_sigsafe(priority
683 | zlog_default->facility,
684 fb.buf, fb.pos - fb.buf);
d62a17ae 685 }
686 if (bt)
687 free(bt);
688 }
689 }
59a06a91 690#undef DUMP
fb66b29c 691#endif /* HAVE_STRACK_TRACE */
063ee52a 692}
693
d62a17ae 694void zlog_backtrace(int priority)
063ee52a 695{
68b8a15f
DL
696#ifdef HAVE_LIBUNWIND
697 char buf[100];
698 unw_cursor_t cursor;
699 unw_context_t uc;
700 unw_word_t ip, off, sp;
701 Dl_info dlinfo;
702
703 unw_getcontext(&uc);
704 unw_init_local(&cursor, &uc);
705 zlog(priority, "Backtrace:");
706 while (unw_step(&cursor) > 0) {
707 char name[128] = "?";
708
709 unw_get_reg(&cursor, UNW_REG_IP, &ip);
710 unw_get_reg(&cursor, UNW_REG_SP, &sp);
711
712 if (unw_is_signal_frame(&cursor))
713 zlog(priority, " ---- signal ----");
714
715 if (!unw_get_proc_name(&cursor, buf, sizeof(buf), &off))
716 snprintf(name, sizeof(name), "%s+%#lx",
717 buf, (long)off);
718
719 if (dladdr((void *)ip, &dlinfo))
720 zlog(priority, "%-30s %16lx %16lx %s (mapped at %p)",
721 name, (long)ip, (long)sp,
722 dlinfo.dli_fname, dlinfo.dli_fbase);
723 else
724 zlog(priority, "%-30s %16lx %16lx",
725 name, (long)ip, (long)sp);
726 }
727#elif defined(HAVE_GLIBC_BACKTRACE)
d62a17ae 728 void *array[20];
729 int size, i;
730 char **strings;
731
732 size = backtrace(array, array_size(array));
733 if (size <= 0 || (size_t)size > array_size(array)) {
09c866e3 734 flog_err_sys(
450971aa 735 EC_LIB_SYSTEM_CALL,
09c866e3
QY
736 "Cannot get backtrace, returned invalid # of frames %d "
737 "(valid range is between 1 and %lu)",
738 size, (unsigned long)(array_size(array)));
d62a17ae 739 return;
740 }
741 zlog(priority, "Backtrace for %d stack frames:", size);
742 if (!(strings = backtrace_symbols(array, size))) {
450971aa 743 flog_err_sys(EC_LIB_SYSTEM_CALL,
09c866e3 744 "Cannot get backtrace symbols (out of memory?)");
d62a17ae 745 for (i = 0; i < size; i++)
746 zlog(priority, "[bt %d] %p", i, array[i]);
747 } else {
748 for (i = 0; i < size; i++)
749 zlog(priority, "[bt %d] %s", i, strings[i]);
750 free(strings);
751 }
68b8a15f
DL
752#else /* !HAVE_GLIBC_BACKTRACE && !HAVE_LIBUNWIND */
753 zlog(priority, "No backtrace available on this platform.");
754#endif
59a06a91 755}
756
d62a17ae 757void zlog(int priority, const char *format, ...)
718e3744 758{
d62a17ae 759 va_list args;
718e3744 760
d62a17ae 761 va_start(args, format);
762 vzlog(priority, format, args);
763 va_end(args);
718e3744 764}
765
d62a17ae 766#define ZLOG_FUNC(FUNCNAME, PRIORITY) \
767 void FUNCNAME(const char *format, ...) \
768 { \
769 va_list args; \
770 va_start(args, format); \
771 vzlog(PRIORITY, format, args); \
772 va_end(args); \
773 }
718e3744 774
d246bd96 775ZLOG_FUNC(zlog_err, LOG_ERR)
718e3744 776
d246bd96 777ZLOG_FUNC(zlog_warn, LOG_WARNING)
718e3744 778
d246bd96 779ZLOG_FUNC(zlog_info, LOG_INFO)
718e3744 780
d246bd96 781ZLOG_FUNC(zlog_notice, LOG_NOTICE)
718e3744 782
d246bd96 783ZLOG_FUNC(zlog_debug, LOG_DEBUG)
718e3744 784
d246bd96 785#undef ZLOG_FUNC
718e3744 786
d62a17ae 787void zlog_thread_info(int log_level)
d1265948 788{
d62a17ae 789 struct thread *tc;
790 tc = pthread_getspecific(thread_current);
791
792 if (tc)
793 zlog(log_level,
794 "Current thread function %s, scheduled from "
795 "file %s, line %u",
796 tc->funcname, tc->schedfrom, tc->schedfrom_line);
797 else
798 zlog(log_level, "Current thread not known/applicable");
d1265948
DL
799}
800
d62a17ae 801void _zlog_assert_failed(const char *assertion, const char *file,
802 unsigned int line, const char *function)
cee3df1e 803{
d62a17ae 804 /* Force fallback file logging? */
805 if (zlog_default && !zlog_default->fp
806 && ((logfile_fd = open_crashlog()) >= 0)
807 && ((zlog_default->fp = fdopen(logfile_fd, "w")) != NULL))
808 zlog_default->maxlvl[ZLOG_DEST_FILE] = LOG_ERR;
809 zlog(LOG_CRIT, "Assertion `%s' failed in file %s, line %u, function %s",
810 assertion, file, line, (function ? function : "?"));
811 zlog_backtrace(LOG_CRIT);
812 zlog_thread_info(LOG_CRIT);
9eed278b 813 log_memstats(stderr, "log");
d62a17ae 814 abort();
cee3df1e 815}
816
d62a17ae 817void memory_oom(size_t size, const char *name)
3b4cd783 818{
450971aa 819 flog_err_sys(EC_LIB_SYSTEM_CALL,
09c866e3
QY
820 "out of memory: failed to allocate %zu bytes for %s"
821 "object",
822 size, name);
3b4cd783
DL
823 zlog_backtrace(LOG_ERR);
824 abort();
825}
6b0655a2 826
718e3744 827/* Open log stream */
d7c0a89a
QY
828void openzlog(const char *progname, const char *protoname,
829 unsigned short instance, int syslog_flags, int syslog_facility)
718e3744 830{
d62a17ae 831 struct zlog *zl;
d7c0a89a 832 unsigned int i;
718e3744 833
d62a17ae 834 zl = XCALLOC(MTYPE_ZLOG, sizeof(struct zlog));
718e3744 835
d62a17ae 836 zl->ident = progname;
837 zl->protoname = protoname;
838 zl->instance = instance;
839 zl->facility = syslog_facility;
840 zl->syslog_options = syslog_flags;
718e3744 841
d62a17ae 842 /* Set default logging levels. */
843 for (i = 0; i < array_size(zl->maxlvl); i++)
844 zl->maxlvl[i] = ZLOG_DISABLED;
845 zl->maxlvl[ZLOG_DEST_MONITOR] = LOG_DEBUG;
846 zl->default_lvl = LOG_DEBUG;
274a4a44 847
d62a17ae 848 openlog(progname, syslog_flags, zl->facility);
dd73dca9 849
00dffa8c
DL
850 frr_with_mutex(&loglock) {
851 zlog_default = zl;
852 }
3f11a103
DL
853
854#ifdef HAVE_GLIBC_BACKTRACE
d62a17ae 855 /* work around backtrace() using lazily resolved dynamically linked
856 * symbols, which will otherwise cause funny breakage in the SEGV
857 * handler.
858 * (particularly, the dynamic linker can call malloc(), which uses locks
859 * in programs linked with -pthread, thus can deadlock.) */
860 void *bt[4];
861 backtrace(bt, array_size(bt));
862 free(backtrace_symbols(bt, 0));
863 backtrace_symbols_fd(bt, 0, 0);
3f11a103 864#endif
718e3744 865}
866
d62a17ae 867void closezlog(void)
718e3744 868{
00dffa8c
DL
869 frr_mutex_lock_autounlock(&loglock);
870
d62a17ae 871 struct zlog *zl = zlog_default;
bf1013e6 872
d62a17ae 873 closelog();
228da428 874
d62a17ae 875 if (zl->fp != NULL)
876 fclose(zl->fp);
718e3744 877
0a22ddfb 878 XFREE(MTYPE_ZLOG, zl->filename);
7e69d993 879
d62a17ae 880 XFREE(MTYPE_ZLOG, zl);
881 zlog_default = NULL;
718e3744 882}
883
884/* Called from command.c. */
d62a17ae 885void zlog_set_level(zlog_dest_t dest, int log_level)
718e3744 886{
00dffa8c
DL
887 frr_with_mutex(&loglock) {
888 zlog_default->maxlvl[dest] = log_level;
889 }
718e3744 890}
891
d62a17ae 892int zlog_set_file(const char *filename, int log_level)
718e3744 893{
dd73dca9 894 struct zlog *zl;
d62a17ae 895 FILE *fp;
896 mode_t oldumask;
dd73dca9 897 int ret = 1;
d62a17ae 898
899 /* There is opend file. */
900 zlog_reset_file();
901
902 /* Open file. */
903 oldumask = umask(0777 & ~LOGFILE_MASK);
904 fp = fopen(filename, "a");
905 umask(oldumask);
dd73dca9
QY
906 if (fp == NULL) {
907 ret = 0;
908 } else {
00dffa8c
DL
909 frr_with_mutex(&loglock) {
910 zl = zlog_default;
911
912 /* Set flags. */
913 zl->filename = XSTRDUP(MTYPE_ZLOG, filename);
914 zl->maxlvl[ZLOG_DEST_FILE] = log_level;
915 zl->fp = fp;
916 logfile_fd = fileno(fp);
917 }
dd73dca9 918 }
d62a17ae 919
dd73dca9 920 return ret;
718e3744 921}
922
923/* Reset opend file. */
d62a17ae 924int zlog_reset_file(void)
718e3744 925{
00dffa8c 926 frr_mutex_lock_autounlock(&loglock);
dd73dca9 927
d62a17ae 928 struct zlog *zl = zlog_default;
718e3744 929
d62a17ae 930 if (zl->fp)
931 fclose(zl->fp);
932 zl->fp = NULL;
933 logfile_fd = -1;
934 zl->maxlvl[ZLOG_DEST_FILE] = ZLOG_DISABLED;
718e3744 935
0a22ddfb 936 XFREE(MTYPE_ZLOG, zl->filename);
d62a17ae 937 zl->filename = NULL;
718e3744 938
d62a17ae 939 return 1;
718e3744 940}
941
942/* Reopen log file. */
d62a17ae 943int zlog_rotate(void)
718e3744 944{
dd73dca9
QY
945 pthread_mutex_lock(&loglock);
946
d62a17ae 947 struct zlog *zl = zlog_default;
948 int level;
dd73dca9 949 int ret = 1;
d62a17ae 950
951 if (zl->fp)
952 fclose(zl->fp);
953 zl->fp = NULL;
954 logfile_fd = -1;
955 level = zl->maxlvl[ZLOG_DEST_FILE];
956 zl->maxlvl[ZLOG_DEST_FILE] = ZLOG_DISABLED;
957
958 if (zl->filename) {
959 mode_t oldumask;
960 int save_errno;
961
962 oldumask = umask(0777 & ~LOGFILE_MASK);
963 zl->fp = fopen(zl->filename, "a");
964 save_errno = errno;
965 umask(oldumask);
966 if (zl->fp == NULL) {
dce2036b
QY
967
968 pthread_mutex_unlock(&loglock);
969
09c866e3 970 flog_err_sys(
450971aa 971 EC_LIB_SYSTEM_CALL,
09c866e3
QY
972 "Log rotate failed: cannot open file %s for append: %s",
973 zl->filename, safe_strerror(save_errno));
dd73dca9 974 ret = -1;
dce2036b
QY
975
976 pthread_mutex_lock(&loglock);
dd73dca9
QY
977 } else {
978 logfile_fd = fileno(zl->fp);
979 zl->maxlvl[ZLOG_DEST_FILE] = level;
d62a17ae 980 }
d62a17ae 981 }
982
dd73dca9
QY
983 pthread_mutex_unlock(&loglock);
984
985 return ret;
718e3744 986}
6b0655a2 987
ca359769 988/* Wrapper around strerror to handle case where it returns NULL. */
d62a17ae 989const char *safe_strerror(int errnum)
ca359769 990{
d62a17ae 991 const char *s = strerror(errnum);
992 return (s != NULL) ? s : "Unknown error";
ca359769 993}
f52d13cb 994
d6d672aa
PJ
995#define DESC_ENTRY(T) [(T)] = { (T), (#T), '\0' }
996static const struct zebra_desc_table command_types[] = {
d62a17ae 997 DESC_ENTRY(ZEBRA_INTERFACE_ADD),
998 DESC_ENTRY(ZEBRA_INTERFACE_DELETE),
999 DESC_ENTRY(ZEBRA_INTERFACE_ADDRESS_ADD),
1000 DESC_ENTRY(ZEBRA_INTERFACE_ADDRESS_DELETE),
1001 DESC_ENTRY(ZEBRA_INTERFACE_UP),
1002 DESC_ENTRY(ZEBRA_INTERFACE_DOWN),
e0ae31b8 1003 DESC_ENTRY(ZEBRA_INTERFACE_SET_MASTER),
0e51b4a3
RW
1004 DESC_ENTRY(ZEBRA_ROUTE_ADD),
1005 DESC_ENTRY(ZEBRA_ROUTE_DELETE),
7ea7b86e 1006 DESC_ENTRY(ZEBRA_ROUTE_NOTIFY_OWNER),
d62a17ae 1007 DESC_ENTRY(ZEBRA_REDISTRIBUTE_ADD),
1008 DESC_ENTRY(ZEBRA_REDISTRIBUTE_DELETE),
1009 DESC_ENTRY(ZEBRA_REDISTRIBUTE_DEFAULT_ADD),
1010 DESC_ENTRY(ZEBRA_REDISTRIBUTE_DEFAULT_DELETE),
1011 DESC_ENTRY(ZEBRA_ROUTER_ID_ADD),
1012 DESC_ENTRY(ZEBRA_ROUTER_ID_DELETE),
1013 DESC_ENTRY(ZEBRA_ROUTER_ID_UPDATE),
1014 DESC_ENTRY(ZEBRA_HELLO),
4cf8bb32 1015 DESC_ENTRY(ZEBRA_CAPABILITIES),
d62a17ae 1016 DESC_ENTRY(ZEBRA_NEXTHOP_REGISTER),
1017 DESC_ENTRY(ZEBRA_NEXTHOP_UNREGISTER),
1018 DESC_ENTRY(ZEBRA_NEXTHOP_UPDATE),
1019 DESC_ENTRY(ZEBRA_INTERFACE_NBR_ADDRESS_ADD),
1020 DESC_ENTRY(ZEBRA_INTERFACE_NBR_ADDRESS_DELETE),
1021 DESC_ENTRY(ZEBRA_INTERFACE_BFD_DEST_UPDATE),
1022 DESC_ENTRY(ZEBRA_IMPORT_ROUTE_REGISTER),
1023 DESC_ENTRY(ZEBRA_IMPORT_ROUTE_UNREGISTER),
1024 DESC_ENTRY(ZEBRA_IMPORT_CHECK_UPDATE),
d62a17ae 1025 DESC_ENTRY(ZEBRA_BFD_DEST_REGISTER),
1026 DESC_ENTRY(ZEBRA_BFD_DEST_DEREGISTER),
1027 DESC_ENTRY(ZEBRA_BFD_DEST_UPDATE),
1028 DESC_ENTRY(ZEBRA_BFD_DEST_REPLAY),
74489921
RW
1029 DESC_ENTRY(ZEBRA_REDISTRIBUTE_ROUTE_ADD),
1030 DESC_ENTRY(ZEBRA_REDISTRIBUTE_ROUTE_DEL),
d62a17ae 1031 DESC_ENTRY(ZEBRA_VRF_UNREGISTER),
1032 DESC_ENTRY(ZEBRA_VRF_ADD),
1033 DESC_ENTRY(ZEBRA_VRF_DELETE),
c83c5e44 1034 DESC_ENTRY(ZEBRA_VRF_LABEL),
d62a17ae 1035 DESC_ENTRY(ZEBRA_INTERFACE_VRF_UPDATE),
1036 DESC_ENTRY(ZEBRA_BFD_CLIENT_REGISTER),
4cf8bb32 1037 DESC_ENTRY(ZEBRA_BFD_CLIENT_DEREGISTER),
d62a17ae 1038 DESC_ENTRY(ZEBRA_INTERFACE_ENABLE_RADV),
1039 DESC_ENTRY(ZEBRA_INTERFACE_DISABLE_RADV),
1040 DESC_ENTRY(ZEBRA_IPV4_NEXTHOP_LOOKUP_MRIB),
1041 DESC_ENTRY(ZEBRA_INTERFACE_LINK_PARAMS),
1042 DESC_ENTRY(ZEBRA_MPLS_LABELS_ADD),
1043 DESC_ENTRY(ZEBRA_MPLS_LABELS_DELETE),
ea6b290b 1044 DESC_ENTRY(ZEBRA_MPLS_LABELS_REPLACE),
d62a17ae 1045 DESC_ENTRY(ZEBRA_IPMR_ROUTE_STATS),
1046 DESC_ENTRY(ZEBRA_LABEL_MANAGER_CONNECT),
f533be73 1047 DESC_ENTRY(ZEBRA_LABEL_MANAGER_CONNECT_ASYNC),
d62a17ae 1048 DESC_ENTRY(ZEBRA_GET_LABEL_CHUNK),
1049 DESC_ENTRY(ZEBRA_RELEASE_LABEL_CHUNK),
4cf8bb32
DS
1050 DESC_ENTRY(ZEBRA_FEC_REGISTER),
1051 DESC_ENTRY(ZEBRA_FEC_UNREGISTER),
1052 DESC_ENTRY(ZEBRA_FEC_UPDATE),
d62a17ae 1053 DESC_ENTRY(ZEBRA_ADVERTISE_ALL_VNI),
1a98c087 1054 DESC_ENTRY(ZEBRA_ADVERTISE_DEFAULT_GW),
fc08a52f 1055 DESC_ENTRY(ZEBRA_ADVERTISE_SVI_MACIP),
31310b25 1056 DESC_ENTRY(ZEBRA_ADVERTISE_SUBNET),
50f74cf1 1057 DESC_ENTRY(ZEBRA_LOCAL_ES_ADD),
1058 DESC_ENTRY(ZEBRA_LOCAL_ES_DEL),
d62a17ae 1059 DESC_ENTRY(ZEBRA_VNI_ADD),
1060 DESC_ENTRY(ZEBRA_VNI_DEL),
b7cfce93
MK
1061 DESC_ENTRY(ZEBRA_L3VNI_ADD),
1062 DESC_ENTRY(ZEBRA_L3VNI_DEL),
d62a17ae 1063 DESC_ENTRY(ZEBRA_REMOTE_VTEP_ADD),
1064 DESC_ENTRY(ZEBRA_REMOTE_VTEP_DEL),
1065 DESC_ENTRY(ZEBRA_MACIP_ADD),
1066 DESC_ENTRY(ZEBRA_MACIP_DEL),
31310b25
MK
1067 DESC_ENTRY(ZEBRA_IP_PREFIX_ROUTE_ADD),
1068 DESC_ENTRY(ZEBRA_IP_PREFIX_ROUTE_DEL),
d62a17ae 1069 DESC_ENTRY(ZEBRA_REMOTE_MACIP_ADD),
1070 DESC_ENTRY(ZEBRA_REMOTE_MACIP_DEL),
3950b52c 1071 DESC_ENTRY(ZEBRA_DUPLICATE_ADDR_DETECTION),
6833ae01 1072 DESC_ENTRY(ZEBRA_PW_ADD),
1073 DESC_ENTRY(ZEBRA_PW_DELETE),
1074 DESC_ENTRY(ZEBRA_PW_SET),
1075 DESC_ENTRY(ZEBRA_PW_UNSET),
1076 DESC_ENTRY(ZEBRA_PW_STATUS_UPDATE),
e16abbb3
DS
1077 DESC_ENTRY(ZEBRA_RULE_ADD),
1078 DESC_ENTRY(ZEBRA_RULE_DELETE),
1079 DESC_ENTRY(ZEBRA_RULE_NOTIFY_OWNER),
75fb51c1
PG
1080 DESC_ENTRY(ZEBRA_TABLE_MANAGER_CONNECT),
1081 DESC_ENTRY(ZEBRA_GET_TABLE_CHUNK),
1082 DESC_ENTRY(ZEBRA_RELEASE_TABLE_CHUNK),
d59c13af
PG
1083 DESC_ENTRY(ZEBRA_IPSET_CREATE),
1084 DESC_ENTRY(ZEBRA_IPSET_DESTROY),
1085 DESC_ENTRY(ZEBRA_IPSET_ENTRY_ADD),
1086 DESC_ENTRY(ZEBRA_IPSET_ENTRY_DELETE),
4cf8bb32
DS
1087 DESC_ENTRY(ZEBRA_IPSET_NOTIFY_OWNER),
1088 DESC_ENTRY(ZEBRA_IPSET_ENTRY_NOTIFY_OWNER),
1089 DESC_ENTRY(ZEBRA_IPTABLE_ADD),
1090 DESC_ENTRY(ZEBRA_IPTABLE_DELETE),
1091 DESC_ENTRY(ZEBRA_IPTABLE_NOTIFY_OWNER),
fbac9605 1092 DESC_ENTRY(ZEBRA_VXLAN_FLOOD_CONTROL),
4ab3321f
AK
1093 DESC_ENTRY(ZEBRA_VXLAN_SG_ADD),
1094 DESC_ENTRY(ZEBRA_VXLAN_SG_DEL),
ecbbc3a7 1095 DESC_ENTRY(ZEBRA_VXLAN_SG_REPLAY),
9ab0b2a3 1096 DESC_ENTRY(ZEBRA_ERROR),
be7bbe52 1097 DESC_ENTRY(ZEBRA_CLIENT_CAPABILITIES)};
d6d672aa
PJ
1098#undef DESC_ENTRY
1099
d62a17ae 1100static const struct zebra_desc_table unknown = {0, "unknown", '?'};
d6d672aa 1101
d7c0a89a 1102static const struct zebra_desc_table *zroute_lookup(unsigned int zroute)
f52d13cb 1103{
d7c0a89a 1104 unsigned int i;
d62a17ae 1105
1106 if (zroute >= array_size(route_types)) {
450971aa 1107 flog_err(EC_LIB_DEVELOPMENT, "unknown zebra route type: %u",
1c50c1c0 1108 zroute);
d62a17ae 1109 return &unknown;
1110 }
1111 if (zroute == route_types[zroute].type)
1112 return &route_types[zroute];
1113 for (i = 0; i < array_size(route_types); i++) {
1114 if (zroute == route_types[i].type) {
1115 zlog_warn(
1116 "internal error: route type table out of order "
1117 "while searching for %u, please notify developers",
1118 zroute);
1119 return &route_types[i];
1120 }
1121 }
450971aa 1122 flog_err(EC_LIB_DEVELOPMENT,
1c50c1c0 1123 "internal error: cannot find route type %u in table!", zroute);
d62a17ae 1124 return &unknown;
f52d13cb 1125}
1126
d7c0a89a 1127const char *zebra_route_string(unsigned int zroute)
f52d13cb 1128{
d62a17ae 1129 return zroute_lookup(zroute)->string;
f52d13cb 1130}
1131
d7c0a89a 1132char zebra_route_char(unsigned int zroute)
f52d13cb 1133{
d62a17ae 1134 return zroute_lookup(zroute)->chr;
f52d13cb 1135}
d6d672aa 1136
d62a17ae 1137const char *zserv_command_string(unsigned int command)
d6d672aa 1138{
d62a17ae 1139 if (command >= array_size(command_types)) {
450971aa 1140 flog_err(EC_LIB_DEVELOPMENT, "unknown zserv command type: %u",
1c50c1c0 1141 command);
d62a17ae 1142 return unknown.string;
1143 }
1144 return command_types[command].string;
d6d672aa 1145}
7514fb77 1146
d62a17ae 1147int proto_name2num(const char *s)
7514fb77 1148{
d62a17ae 1149 unsigned i;
7514fb77 1150
d62a17ae 1151 for (i = 0; i < array_size(route_types); ++i)
1152 if (strcasecmp(s, route_types[i].string) == 0)
1153 return route_types[i].type;
1154 return -1;
7514fb77 1155}
e0ca5fde 1156
d62a17ae 1157int proto_redistnum(int afi, const char *s)
e0ca5fde 1158{
d62a17ae 1159 if (!s)
1160 return -1;
1161
1162 if (afi == AFI_IP) {
1163 if (strmatch(s, "kernel"))
1164 return ZEBRA_ROUTE_KERNEL;
1165 else if (strmatch(s, "connected"))
1166 return ZEBRA_ROUTE_CONNECT;
1167 else if (strmatch(s, "static"))
1168 return ZEBRA_ROUTE_STATIC;
1169 else if (strmatch(s, "rip"))
1170 return ZEBRA_ROUTE_RIP;
1171 else if (strmatch(s, "eigrp"))
1172 return ZEBRA_ROUTE_EIGRP;
1173 else if (strmatch(s, "ospf"))
1174 return ZEBRA_ROUTE_OSPF;
1175 else if (strmatch(s, "isis"))
1176 return ZEBRA_ROUTE_ISIS;
1177 else if (strmatch(s, "bgp"))
1178 return ZEBRA_ROUTE_BGP;
1179 else if (strmatch(s, "table"))
1180 return ZEBRA_ROUTE_TABLE;
1181 else if (strmatch(s, "vnc"))
1182 return ZEBRA_ROUTE_VNC;
1183 else if (strmatch(s, "vnc-direct"))
1184 return ZEBRA_ROUTE_VNC_DIRECT;
1185 else if (strmatch(s, "nhrp"))
1186 return ZEBRA_ROUTE_NHRP;
1187 else if (strmatch(s, "babel"))
1188 return ZEBRA_ROUTE_BABEL;
8a71d93d
DS
1189 else if (strmatch(s, "sharp"))
1190 return ZEBRA_ROUTE_SHARP;
7c0cbd0e
CF
1191 else if (strmatch(s, "openfabric"))
1192 return ZEBRA_ROUTE_OPENFABRIC;
d62a17ae 1193 }
1194 if (afi == AFI_IP6) {
1195 if (strmatch(s, "kernel"))
1196 return ZEBRA_ROUTE_KERNEL;
1197 else if (strmatch(s, "connected"))
1198 return ZEBRA_ROUTE_CONNECT;
1199 else if (strmatch(s, "static"))
1200 return ZEBRA_ROUTE_STATIC;
1201 else if (strmatch(s, "ripng"))
1202 return ZEBRA_ROUTE_RIPNG;
1203 else if (strmatch(s, "ospf6"))
1204 return ZEBRA_ROUTE_OSPF6;
1205 else if (strmatch(s, "isis"))
1206 return ZEBRA_ROUTE_ISIS;
1207 else if (strmatch(s, "bgp"))
1208 return ZEBRA_ROUTE_BGP;
1209 else if (strmatch(s, "table"))
1210 return ZEBRA_ROUTE_TABLE;
1211 else if (strmatch(s, "vnc"))
1212 return ZEBRA_ROUTE_VNC;
1213 else if (strmatch(s, "vnc-direct"))
1214 return ZEBRA_ROUTE_VNC_DIRECT;
1215 else if (strmatch(s, "nhrp"))
1216 return ZEBRA_ROUTE_NHRP;
1217 else if (strmatch(s, "babel"))
1218 return ZEBRA_ROUTE_BABEL;
8a71d93d
DS
1219 else if (strmatch(s, "sharp"))
1220 return ZEBRA_ROUTE_SHARP;
7c0cbd0e
CF
1221 else if (strmatch(s, "openfabric"))
1222 return ZEBRA_ROUTE_OPENFABRIC;
d62a17ae 1223 }
1224 return -1;
e0ca5fde 1225}
99a6c6cd 1226
d62a17ae 1227void zlog_hexdump(const void *mem, unsigned int len)
1228{
1229 unsigned long i = 0;
1230 unsigned int j = 0;
1231 unsigned int columns = 8;
abccc775
QY
1232 /*
1233 * 19 bytes for 0xADDRESS:
1234 * 24 bytes for data; 2 chars plus a space per data byte
1235 * 1 byte for space
1236 * 8 bytes for ASCII representation
1237 * 1 byte for a newline
1238 * =====================
1239 * 53 bytes per 8 bytes of data
1240 * 1 byte for null term
1241 */
e049c5fc
QY
1242 size_t bs = ((len / 8) + 1) * 53 + 1;
1243 char buf[bs];
d62a17ae 1244 char *s = buf;
fefa5e0f 1245 const unsigned char *memch = mem;
d62a17ae 1246
e049c5fc
QY
1247 memset(buf, 0, sizeof(buf));
1248
d62a17ae 1249 for (i = 0; i < len + ((len % columns) ? (columns - len % columns) : 0);
1250 i++) {
1251 /* print offset */
1252 if (i % columns == 0)
e049c5fc 1253 s += snprintf(s, bs - (s - buf),
fefa5e0f 1254 "0x%016lx: ", (unsigned long)memch + i);
d62a17ae 1255
1256 /* print hex data */
1257 if (i < len)
fefa5e0f 1258 s += snprintf(s, bs - (s - buf), "%02x ", memch[i]);
d62a17ae 1259
1260 /* end of block, just aligning for ASCII dump */
1261 else
e049c5fc 1262 s += snprintf(s, bs - (s - buf), " ");
d62a17ae 1263
1264 /* print ASCII dump */
1265 if (i % columns == (columns - 1)) {
1266 for (j = i - (columns - 1); j <= i; j++) {
e049c5fc
QY
1267 /* end of block not really printing */
1268 if (j >= len)
1269 s += snprintf(s, bs - (s - buf), " ");
fefa5e0f
DL
1270 else if (isprint(memch[j]))
1271 s += snprintf(s, bs - (s - buf), "%c",
1272 memch[j]);
d62a17ae 1273 else /* other char */
e049c5fc 1274 s += snprintf(s, bs - (s - buf), ".");
d62a17ae 1275 }
e049c5fc 1276 s += snprintf(s, bs - (s - buf), "\n");
d62a17ae 1277 }
1278 }
1279 zlog_debug("\n%s", buf);
99a6c6cd 1280}
1f806fc2 1281
d62a17ae 1282const char *zlog_sanitize(char *buf, size_t bufsz, const void *in, size_t inlen)
1f806fc2 1283{
d62a17ae 1284 const char *inbuf = in;
1285 char *pos = buf, *end = buf + bufsz;
1286 const char *iend = inbuf + inlen;
1287
1288 memset(buf, 0, bufsz);
1289 for (; inbuf < iend; inbuf++) {
1290 /* don't write partial escape sequence */
1291 if (end - pos < 5)
1292 break;
1293
1294 if (*inbuf == '\n')
1295 snprintf(pos, end - pos, "\\n");
1296 else if (*inbuf == '\r')
1297 snprintf(pos, end - pos, "\\r");
1298 else if (*inbuf == '\t')
1299 snprintf(pos, end - pos, "\\t");
1300 else if (*inbuf < ' ' || *inbuf == '"' || *inbuf >= 127)
1301 snprintf(pos, end - pos, "\\x%02hhx", *inbuf);
1302 else
1303 *pos = *inbuf;
1304
1305 pos += strlen(pos);
1306 }
1307 return buf;
1f806fc2 1308}