1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698
|
/*
* Portions of this file are subject to the following copyright(s). See
* the Net-SNMP's COPYING file for more details and other copyrights
* that may apply:
*
* Portions of this file are copyrighted by:
* Copyright (c) 2016 VMware, Inc. All rights reserved.
* Use is subject to license terms specified in the COPYING file
* distributed with the Net-SNMP package.
*/
#include <net-snmp/net-snmp-config.h>
#define SYSLOG_NAMES
#include <limits.h>
#include <stdio.h>
#ifndef HAVE_PRIORITYNAMES
#include <errno.h>
#endif
#if HAVE_STDLIB_H
#include <stdlib.h>
#endif
#if HAVE_STRING_H
#include <string.h>
#else
#include <strings.h>
#endif
#include <sys/types.h>
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#include <stdarg.h>
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_PRIORITYNAMES
#include <sys/syslog.h>
#endif
#include <net-snmp/types.h>
#include <net-snmp/output_api.h>
#include <net-snmp/library/snmp_debug.h> /* For this file's "internal" definitions */
#include <net-snmp/config_api.h>
#include <net-snmp/utilities.h>
#include <net-snmp/library/mib.h>
#include <net-snmp/library/snmp_api.h>
#include <net-snmp/library/snmp_assert.h>
#define SNMP_DEBUG_DISABLED 0
#define SNMP_DEBUG_ACTIVE 1
#define SNMP_DEBUG_EXCLUDED 2
#ifndef NETSNMP_NO_DEBUGGING
static int dodebug = NETSNMP_ALWAYS_DEBUG;
int debug_num_tokens = 0;
static int debug_print_everything = 0;
#ifndef NETSNMP_DISABLE_DYNAMIC_LOG_LEVEL
static int debug_log_level = LOG_DEBUG;
#else
#define debug_log_level LOG_DEBUG
#endif /* NETSNMP_DISABLE_DYNAMIC_LOG_LEVEL */
netsnmp_token_descr dbg_tokens[MAX_DEBUG_TOKENS];
/*
* Number of spaces to indent debug output. Valid range is [0,INT_MAX]
*/
static int debugindent = 0;
int
debug_indent_get(void)
{
return debugindent;
}
const char*
debug_indent(void)
{
static const char SPACES[] = " "
" ";
if ((sizeof(SPACES) - 1) < (unsigned int)debugindent) {
snmp_log(LOG_ERR, "Too deep indentation for debug_indent. "
"Consider using \"%%*s\", debug_indent_get(), \"\" instead.");
return SPACES;
}
return &SPACES[sizeof(SPACES) - 1 - debugindent];
}
void
debug_indent_add(int amount)
{
if (-debugindent <= amount && amount <= INT_MAX - debugindent)
debugindent += amount;
netsnmp_assert( debugindent >= 0 ); /* no negative indents */
}
NETSNMP_IMPORT void
debug_config_register_tokens(const char *configtoken, char *tokens);
void
debug_indent_reset(void)
{
if (debugindent != 0)
DEBUGMSGTL(("dump_indent","indent reset from %d\n", debugindent));
debugindent = 0;
}
void
debug_config_register_tokens(const char *configtoken, char *tokens)
{
debug_register_tokens(tokens);
}
NETSNMP_IMPORT void
debug_config_turn_on_debugging(const char *configtoken, char *line);
void
debug_config_turn_on_debugging(const char *configtoken, char *line)
{
snmp_set_do_debugging(atoi(line));
}
#ifndef NETSNMP_DISABLE_DYNAMIC_LOG_LEVEL
void
netsnmp_set_debug_log_level(int val)
{
if (val < LOG_EMERG)
val = LOG_EMERG;
else if (val > LOG_DEBUG)
val = LOG_DEBUG;
debug_log_level = val;
}
int
netsnmp_get_debug_log_level(void)
{
return debug_log_level;
}
static void
debug_config_debug_log_level(const char *configtoken, char *line)
{
#ifndef HAVE_PRIORITYNAMES
static const struct strval_s {
const char *c_name;
int c_val;
} prioritynames[] = {
{ "alert", LOG_ALERT },
{ "crit", LOG_CRIT },
{ "debug", LOG_DEBUG },
{ "emerg", LOG_EMERG },
{ "err", LOG_ERR },
{ "info", LOG_INFO },
{ "notice", LOG_NOTICE },
{ "warning", LOG_WARNING },
{ NULL, 0 }
};
#endif
int i = 0, len_l, len_p;
len_l = strlen(line);
for(;prioritynames[i].c_name;++i) {
len_p = strlen(prioritynames[i].c_name);
if ((len_p != len_l) ||
(strcasecmp(line,prioritynames[i].c_name) != 0))
continue;
netsnmp_set_debug_log_level(prioritynames[i].c_val);
return;
}
config_perror("unknown debug log level, using debug");
netsnmp_set_debug_log_level(LOG_DEBUG);
}
#endif /* NETSNMP_DISABLE_DYNAMIC_LOG_LEVEL */
void
debug_register_tokens(const char *tokens)
{
char *newp, *cp;
char *st = NULL;
int status;
if (tokens == NULL || *tokens == 0)
return;
newp = strdup(tokens); /* strtok_r messes it up */
if (!newp)
return;
cp = strtok_r(newp, DEBUG_TOKEN_DELIMITER, &st);
while (cp) {
if (strlen(cp) < MAX_DEBUG_TOKEN_LEN) {
if (strcasecmp(cp, DEBUG_ALWAYS_TOKEN) == 0) {
debug_print_everything = 1;
} else if (debug_num_tokens < MAX_DEBUG_TOKENS) {
if ('-' == *cp) {
++cp;
status = SNMP_DEBUG_DISABLED;
}
else
status = SNMP_DEBUG_ACTIVE;
dbg_tokens[debug_num_tokens].token_name = strdup(cp);
dbg_tokens[debug_num_tokens++].enabled = status;
snmp_log(LOG_NOTICE, "registered debug token %s, %d\n", cp, status);
} else {
snmp_log(LOG_NOTICE, "Unable to register debug token %s\n", cp);
}
} else {
snmp_log(LOG_NOTICE, "Debug token %s over length\n", cp);
}
cp = strtok_r(NULL, DEBUG_TOKEN_DELIMITER, &st);
}
free(newp);
}
/*
* Print all registered tokens along with their current status
*/
void
debug_print_registered_tokens(void) {
int i;
snmp_log(LOG_INFO, "%d tokens registered :\n", debug_num_tokens);
for (i=0; i<debug_num_tokens; i++) {
snmp_log( LOG_INFO, "%d) %s : %d\n",
i, dbg_tokens [i].token_name, dbg_tokens [i].enabled);
}
}
/*
* Enable logs on a given token
*/
int
debug_enable_token_logs (const char *token) {
int i;
/* debugging flag is on or off */
if (!dodebug)
return SNMPERR_GENERR;
if (debug_num_tokens == 0 || debug_print_everything) {
/* no tokens specified, print everything */
return SNMPERR_SUCCESS;
} else {
for(i=0; i < debug_num_tokens; i++) {
if (dbg_tokens[i].token_name &&
strncmp(dbg_tokens[i].token_name, token,
strlen(dbg_tokens[i].token_name)) == 0) {
dbg_tokens[i].enabled = SNMP_DEBUG_ACTIVE;
return SNMPERR_SUCCESS;
}
}
}
return SNMPERR_GENERR;
}
/*
* Diable logs on a given token
*/
int
debug_disable_token_logs (const char *token) {
int i;
/* debugging flag is on or off */
if (!dodebug)
return SNMPERR_GENERR;
if (debug_num_tokens == 0 || debug_print_everything) {
/* no tokens specified, print everything */
return SNMPERR_SUCCESS;
} else {
for(i=0; i < debug_num_tokens; i++) {
if (strncmp(dbg_tokens[i].token_name, token,
strlen(dbg_tokens[i].token_name)) == 0) {
dbg_tokens[i].enabled = SNMP_DEBUG_DISABLED;
return SNMPERR_SUCCESS;
}
}
}
return SNMPERR_GENERR;
}
/*
* debug_is_token_registered(char *TOKEN):
*
* returns SNMPERR_SUCCESS
* or SNMPERR_GENERR
*
* if TOKEN has been registered and debugging support is turned on.
*/
int
debug_is_token_registered(const char *token)
{
int i, rc;
/*
* debugging flag is on or off
*/
if (!dodebug)
return SNMPERR_GENERR;
if (debug_num_tokens == 0 || debug_print_everything) {
/*
* no tokens specified, print everything
*/
return SNMPERR_SUCCESS;
}
else
rc = SNMPERR_GENERR; /* ! found = err */
for (i = 0; i < debug_num_tokens; i++) {
if (SNMP_DEBUG_DISABLED == dbg_tokens[i].enabled)
continue;
if (dbg_tokens[i].token_name &&
strncmp(dbg_tokens[i].token_name, token,
strlen(dbg_tokens[i].token_name)) == 0) {
if (SNMP_DEBUG_ACTIVE == dbg_tokens[i].enabled)
return SNMPERR_SUCCESS; /* active */
else
return SNMPERR_GENERR; /* excluded */
}
}
return rc;
}
void
debugmsg(const char *token, const char *format, ...)
{
if (debug_is_token_registered(token) == SNMPERR_SUCCESS) {
va_list debugargs;
va_start(debugargs, format);
snmp_vlog(debug_log_level, format, debugargs);
va_end(debugargs);
}
}
void
debugmsg_oid(const char *token, const oid * theoid, size_t len)
{
u_char *buf = NULL;
size_t buf_len = 0, out_len = 0;
if (sprint_realloc_objid(&buf, &buf_len, &out_len, 1, theoid, len)) {
if (buf != NULL) {
debugmsg(token, "%s", buf);
}
} else {
if (buf != NULL) {
debugmsg(token, "%s [TRUNCATED]", buf);
}
}
if (buf != NULL) {
free(buf);
}
}
void
debugmsg_suboid(const char *token, const oid * theoid, size_t len)
{
u_char *buf = NULL;
size_t buf_len = 0, out_len = 0;
int buf_overflow = 0;
netsnmp_sprint_realloc_objid(&buf, &buf_len, &out_len, 1,
&buf_overflow, theoid, len);
if(buf_overflow) {
if (buf != NULL) {
debugmsg(token, "%s [TRUNCATED]", buf);
}
} else {
if (buf != NULL) {
debugmsg(token, "%s", buf);
}
}
if (buf != NULL) {
free(buf);
}
}
void
debugmsg_var(const char *token, netsnmp_variable_list * var)
{
u_char *buf = NULL;
size_t buf_len = 0, out_len = 0;
if (var == NULL || token == NULL) {
return;
}
if (sprint_realloc_variable(&buf, &buf_len, &out_len, 1,
var->name, var->name_length, var)) {
if (buf != NULL) {
debugmsg(token, "%s", buf);
}
} else {
if (buf != NULL) {
debugmsg(token, "%s [TRUNCATED]", buf);
}
}
if (buf != NULL) {
free(buf);
}
}
void
debugmsg_oidrange(const char *token, const oid * theoid, size_t len,
size_t var_subid, oid range_ubound)
{
u_char *buf = NULL;
size_t buf_len = 0, out_len = 0, i = 0;
int rc = 0;
if (var_subid == 0) {
rc = sprint_realloc_objid(&buf, &buf_len, &out_len, 1, theoid,
len);
} else {
char tmpbuf[128];
/* XXX - ? check for 0 == var_subid -1 ? */
rc = sprint_realloc_objid(&buf, &buf_len, &out_len, 1, theoid,
var_subid-1); /* Adjust for C's 0-based array indexing */
if (rc) {
sprintf(tmpbuf, ".%" NETSNMP_PRIo "u--%" NETSNMP_PRIo "u",
theoid[var_subid - 1], range_ubound);
rc = snmp_cstrcat(&buf, &buf_len, &out_len, 1, tmpbuf);
if (rc) {
for (i = var_subid; i < len; i++) {
sprintf(tmpbuf, ".%" NETSNMP_PRIo "u", theoid[i]);
if (!snmp_cstrcat(&buf, &buf_len, &out_len, 1, tmpbuf)) {
break;
}
}
}
}
}
if (buf != NULL) {
debugmsg(token, "%s%s", buf, rc ? "" : " [TRUNCATED]");
free(buf);
}
}
void
debugmsg_hex(const char *token, const u_char * thedata, size_t len)
{
u_char *buf = NULL;
size_t buf_len = 0, out_len = 0;
if (sprint_realloc_hexstring
(&buf, &buf_len, &out_len, 1, thedata, len)) {
if (buf != NULL) {
debugmsg(token, "%s", buf);
}
} else {
if (buf != NULL) {
debugmsg(token, "%s [TRUNCATED]", buf);
}
}
if (buf != NULL) {
free(buf);
}
}
void
debugmsg_hextli(const char *token, const u_char * thedata, size_t len)
{
char buf[SPRINT_MAX_LEN], token2[SPRINT_MAX_LEN];
u_char *b3 = NULL;
size_t b3_len = 0, o3_len = 0;
int incr;
sprintf(token2, "dumpx_%s", token);
/*
* XX tracing lines removed from this function DEBUGTRACE;
*/
DEBUGIF(token2) {
for (incr = 16; len > 0; len -= incr, thedata += incr) {
if ((int) len < incr) {
incr = len;
}
/*
* XXnext two lines were DEBUGPRINTINDENT(token);
*/
sprintf(buf, "dumpx%s", token);
debugmsg(buf, "%s: %*s", token2, debug_indent_get(), "");
if (sprint_realloc_hexstring
(&b3, &b3_len, &o3_len, 1, thedata, incr)) {
if (b3 != NULL) {
debugmsg(token2, "%s", b3);
}
} else {
if (b3 != NULL) {
debugmsg(token2, "%s [TRUNCATED]", b3);
}
}
o3_len = 0;
}
}
if (b3 != NULL) {
free(b3);
}
}
void
debugmsgtoken(const char *token, const char *format, ...)
{
va_list debugargs;
va_start(debugargs, format);
debugmsg(token, "%s: ", token);
va_end(debugargs);
}
void
debug_combo_nc(const char *token, const char *format, ...)
{
va_list debugargs;
va_start(debugargs, format);
snmp_log(debug_log_level, "%s: ", token);
snmp_vlog(debug_log_level, format, debugargs);
va_end(debugargs);
}
/*
* for speed, these shouldn't be in default_storage space
*/
void
snmp_set_do_debugging(int val)
{
dodebug = val;
}
int
snmp_get_do_debugging(void)
{
return dodebug;
}
void
snmp_debug_shutdown(void)
{
int i;
for (i = 0; i < debug_num_tokens; i++)
SNMP_FREE(dbg_tokens[i].token_name);
}
#else /* ! NETSNMP_NO_DEBUGGING */
int debug_indent_get(void) { return 0; }
const char* debug_indent(void) { return ""; }
void debug_indent_add(int amount)
{ }
NETSNMP_IMPORT void
debug_config_register_tokens(const char *configtoken, char *tokens);
void
debug_indent_reset(void)
{ }
void
debug_config_register_tokens(const char *configtoken, char *tokens)
{ }
#ifndef NETSNMP_DISABLE_DYNAMIC_LOG_LEVEL
static void
debug_config_debug_log_level(const char *configtoken NETSNMP_ATTRIBUTE_UNUSED,
char *tokens NETSNMP_ATTRIBUTE_UNUSED)
{ }
NETSNMP_IMPORT void
netsnmp_set_debug_log_level(int val NETSNMP_ATTRIBUTE_UNUSED)
{ }
NETSNMP_IMPORT int
netsnmp_get_debug_log_level(void)
{
return 0;
}
#endif /* NETSNMP_DISABLE_DYNAMIC_LOG_LEVEL */
NETSNMP_IMPORT void
debug_config_turn_on_debugging(const char *configtoken, char *line);
void
debug_config_turn_on_debugging(const char *configtokenu, char *line)
{ }
void
debug_register_tokens(const char *tokens)
{ }
void
debug_print_registered_tokens(void)
{ }
int
debug_enable_token_logs (const char *token)
{
return SNMPERR_GENERR;
}
int
debug_disable_token_logs (const char *token)
{
return SNMPERR_GENERR;
}
int
debug_is_token_registered(const char *token)
{
return SNMPERR_GENERR;
}
void
debugmsg(const char *token, const char *format, ...)
{ }
void debugmsg_oid(const char *token, const oid * theoid, size_t len)
{ }
void
debugmsg_suboid(const char *token, const oid * theoid, size_t len)
{ }
void
debugmsg_var(const char *token, netsnmp_variable_list * var)
{ }
void
debugmsg_oidrange(const char *token, const oid * theoid, size_t len,
size_t var_subid, oid range_ubound)
{ }
void
debugmsg_hex(const char *token, const u_char * thedata, size_t len)
{ }
void
debugmsg_hextli(const char *token, const u_char * thedata, size_t len)
{ }
void
debugmsgtoken(const char *token, const char *format, ...)
{ }
void
debug_combo_nc(const char *token, const char *format, ...)
{ }
void
snmp_set_do_debugging(int val)
{ }
int
snmp_get_do_debugging(void)
{
return 0;
}
void
snmp_debug_shutdown(void)
{ }
#endif /* NETSNMP_NO_DEBUGGING */
void
snmp_debug_init(void)
{
register_prenetsnmp_mib_handler("snmp", "doDebugging",
debug_config_turn_on_debugging, NULL,
"(1|0)");
register_prenetsnmp_mib_handler("snmp", "debugTokens",
debug_config_register_tokens, NULL,
"token[,token...]");
#ifndef NETSNMP_DISABLE_DYNAMIC_LOG_LEVEL
register_prenetsnmp_mib_handler("snmp", "debugLogLevel",
debug_config_debug_log_level, NULL,
"(emerg|alert|crit|err|warning|notice|info|debug)");
#endif /* NETSNMP_DISABLE_DYNAMIC_LOG_LEVEL */
}
|