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
|
# This is a valgrind suppressions file.
# Common patterns are for every allocation to be followed by one with
# nih_alloc_ref_new() inserted between the call to nih_alloc() and malloc()
# this is the reference object for that object.
#
# Also if the call is ever made within a TEST_ALLOC_FAIL loop, you'll also
# need a test with:
# fun:realloc
# fun:_test_realloc
# fun:_test_malloc
# in between the nih_alloc() and malloc() calls.
# There is a slight overhead to using some parts of libnih in the form
# of a heap-allocated list head used to link all allocated structures
# by that component.
#
# They are allocated the first time that part of libnih is used by the
# static nih_*_init function; valgrind complains because they are not
# freed before exit, as there's little point to doing so.
{
nih-timer-init
Memcheck:Leak
fun:malloc
fun:nih_alloc
fun:nih_list_new
fun:nih_timer_init
}
{
nih-timer-init
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_list_new
fun:nih_timer_init
}
{
nih-signal-init
Memcheck:Leak
fun:malloc
fun:nih_alloc
fun:nih_list_new
fun:nih_signal_init
}
{
nih-signal-init
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_list_new
fun:nih_signal_init
}
{
nih-child-init
Memcheck:Leak
fun:malloc
fun:nih_alloc
fun:nih_list_new
fun:nih_child_init
}
{
nih-child-init
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_list_new
fun:nih_child_init
}
{
nih-io-init
Memcheck:Leak
fun:malloc
fun:nih_alloc
fun:nih_list_new
fun:nih_io_init
}
{
nih-io-init
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_list_new
fun:nih_io_init
}
{
nih-file-init
Memcheck:Leak
fun:malloc
fun:nih_alloc
fun:nih_list_new
fun:nih_file_init
}
{
nih-file-init
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_list_new
fun:nih_file_init
}
{
nih-main-loop-init
Memcheck:Leak
fun:malloc
fun:nih_alloc
fun:nih_list_new
fun:nih_main_loop_init
}
{
nih-main-loop-init
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_list_new
fun:nih_main_loop_init
}
# NihError has both a list and a default context in that list
{
nih-error-init
Memcheck:Leak
fun:malloc
fun:nih_alloc
fun:nih_list_new
fun:nih_error_init
}
{
nih-error-init
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_list_new
fun:nih_error_init
}
{
nih-error-init
Memcheck:Leak
fun:malloc
fun:nih_alloc
fun:nih_error_push_context
fun:nih_error_init
}
{
nih-error-init
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_error_push_context
fun:nih_error_init
}
# nih_main_init_full stores the pacakge_string string in a
# heap-allocated pointer. It survives the life of the process and
# is only not freed because there's little point in doing so.
{
nih-package-string
Memcheck:Leak
fun:malloc
fun:nih_alloc
fun:nih_vsprintf
fun:nih_sprintf
fun:nih_main_init_full
}
{
nih-package-string
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_vsprintf
fun:nih_sprintf
fun:nih_main_init_full
}
# A copy of any log message of fatal or above is stored in case a crash
# follows; valgrind picks this up as a leak, even though we hang on to
# the pointer and only ever allocate one of them.
#
# nih_fatal() may be called both in and out of TEST_ALLOC_FAIL
{
nih-log-abort-message
Memcheck:Leak
fun:malloc
fun:nih_alloc
fun:nih_strndup
fun:nih_strdup
fun:nih_log_abort_message
}
{
nih-log-abort-message
Memcheck:Leak
fun:malloc
fun:realloc
fun:_test_realloc
fun:_test_malloc
fun:nih_alloc
fun:nih_strndup
fun:nih_strdup
fun:nih_log_abort_message
}
{
nih-log-abort-message
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_strndup
fun:nih_strdup
fun:nih_log_abort_message
}
# tmpfile is used by some test cases ... valgrind doesn't have a built-in
# suppression for it.
{
glibc-tmpfile
Memcheck:Leak
fun:malloc
fun:fdopen
fun:tmpfile
}
{
glibc-tmpfile
Memcheck:Leak
fun:malloc
fun:fdopen@@GLIBC_2.1
fun:tmpfile@@GLIBC_2.1
}
{
glibc-tmpfile
Memcheck:Leak
fun:malloc
fun:fdopen@@GLIBC_2.2.5
fun:tmpfile@@GLIBC_2.2.5
}
# test_main.c:test_damonise() allocates a pid file string which makes
# valgrind think that it's leaked when we exit
{
test-main-daemonise
Memcheck:Leak
fun:malloc
fun:nih_alloc
fun:nih_vsprintf
fun:nih_sprintf
fun:nih_main_get_pidfile
fun:nih_main_write_pidfile
fun:nih_main_daemonise
fun:test_daemonise
}
{
test-main-daemonise
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_vsprintf
fun:nih_sprintf
fun:nih_main_get_pidfile
fun:nih_main_write_pidfile
fun:nih_main_daemonise
fun:test_daemonise
}
# test_command.c:test_help() exits inside --help which makes valgrind
# think that the command parser state has been leaked
{
test-command-help
Memcheck:Leak
fun:malloc
fun:realloc
fun:_test_realloc
fun:_test_malloc
fun:nih_alloc
fun:nih_command_join
fun:nih_command_parser
fun:test_help
}
{
test-command-help
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_command_join
fun:nih_command_parser
fun:test_help
}
{
test-command-help
Memcheck:Leak
fun:malloc
fun:realloc
fun:_test_realloc
fun:_test_malloc
fun:nih_alloc
fun:nih_vsprintf
fun:nih_sprintf
fun:nih_command_parser
fun:test_help
}
{
test-command-help
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_vsprintf
fun:nih_sprintf
fun:nih_command_parser
fun:test_help
}
{
test-command-help
Memcheck:Leak
fun:malloc
fun:realloc
fun:_test_realloc
fun:_test_malloc
fun:nih_alloc
fun:nih_str_array_new
fun:nih_option_parser
fun:nih_command_parser
fun:test_help
}
{
test-command-help
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_str_array_new
fun:nih_option_parser
fun:nih_command_parser
fun:test_help
}
{
test-command-help
Memcheck:Leak
fun:malloc
fun:realloc
fun:_test_realloc
fun:_test_malloc
fun:nih_alloc
fun:nih_strndup
fun:nih_strdup
fun:nih_str_array_add
fun:nih_option_parser
fun:nih_command_parser
fun:test_help
}
{
test-command-help
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_strndup
fun:nih_strdup
fun:nih_str_array_add
fun:nih_option_parser
fun:nih_command_parser
fun:test_help
}
{
test-command-help
Memcheck:Leak
fun:realloc
fun:_test_realloc
fun:nih_realloc
fun:nih_str_array_addp
fun:nih_str_array_add
fun:nih_option_parser
fun:nih_command_parser
fun:test_help
}
{
test-command-help
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_ref
fun:nih_str_array_addp
fun:nih_str_array_add
fun:nih_option_parser
fun:nih_command_parser
fun:test_help
}
{
test-command-help
Memcheck:Leak
fun:malloc
fun:realloc
fun:_test_realloc
fun:_test_malloc
fun:nih_alloc
fun:nih_option_join
fun:nih_command_handle
fun:nih_command_parser
fun:test_help
}
{
test-command-help
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_option_join
fun:nih_command_handle
fun:nih_command_parser
fun:test_help
}
{
test-command-help
Memcheck:Leak
fun:malloc
fun:realloc
fun:_test_realloc
fun:_test_malloc
fun:nih_alloc
fun:nih_str_array_new
fun:nih_option_parser
fun:nih_command_handle
fun:nih_command_parser
fun:test_help
}
{
test-command-help
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_str_array_new
fun:nih_option_parser
fun:nih_command_handle
fun:nih_command_parser
fun:test_help
}
{
test-command-help
Memcheck:Leak
fun:malloc
fun:realloc
fun:_test_realloc
fun:_test_malloc
fun:nih_alloc
fun:nih_option_join
fun:nih_command_handle
fun:nih_commmand_parser
fun:test_command_parser
fun:test_help
}
{
test-command-help
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_option_join
fun:nih_command_handle
fun:nih_commmand_parser
fun:test_command_parser
fun:test_help
}
# test_error.c:test_raise_error() is expected to leak an error context
# and the error inside it, because it's testing whether a double-raise
# is caught inside a child process which it expects to abort
{
test-error-raise-error
Memcheck:Leak
fun:malloc
fun:nih_alloc
fun:nih_error_push_context
fun:test_raise_error
}
{
test-error-raise-error
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_error_push_context
fun:test_raise_error
}
{
test-error-raise-error
Memcheck:Leak
fun:malloc
fun:nih_alloc
fun:test_raise_error
}
{
test-error-raise-error
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:test_raise_error
}
# test_error.c:test_pop_context() is expected to leak an error context
# and the error inside it, because it's testing whether this is caught
# on child exit
{
test-error-pop-context
Memcheck:Leak
fun:malloc
fun:nih_alloc
fun:nih_error_push_context
fun:test_pop_context
}
{
test-error-pop-context
Memcheck:Leak
fun:malloc
fun:realloc
fun:_test_realloc
fun:_test_malloc
fun:nih_alloc
fun:nih_error_push_context
fun:test_pop_context
}
{
test-error-pop-context
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:nih_error_push_context
fun:test_pop_context
}
{
test-error-pop-context
Memcheck:Leak
fun:malloc
fun:realloc
fun:_test_realloc
fun:_test_malloc
fun:nih_alloc
fun:_nih_error_raise
fun:test_pop_context
}
{
test-error-pop-context
Memcheck:Leak
fun:malloc
fun:nih_alloc_ref_new
fun:nih_alloc
fun:_nih_error_raise
fun:test_pop_context
}
|