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
|
##----------------------------------------------------------------------##
#
# Errors to suppress by default with GCrypt
#
# Format of this file is:
# {
# name_of_suppression
# kind: one of Param Value1 Value2 Value4 Value8
# Free Addr1 Addr2 Addr4 Addr8
# Cond (previously known as Value0)
# (if Param: name of system call param, if Free: name of free-ing fn)
# caller0 name, or /name/of/so/file.so
# caller1 name, or ditto
# (optionally: caller2 name)
# (optionally: caller3 name)
# }
##----------------------------------------------------------------------##
{
global_init -> malloc
Memcheck:Leak
match-leak-kinds: reachable
fun:malloc
...
fun:global_init
...
fun:main
}
{
gcry_check_version -> malloc
Memcheck:Leak
match-leak-kinds: reachable
fun:malloc
...
fun:gcry_check_version
...
fun:main
}
{
gcry_randomize -> malloc
Memcheck:Leak
match-leak-kinds: reachable
fun:malloc
...
fun:gcry_randomize
...
fun:main
}
{
gcry_pk_genkey -> malloc
Memcheck:Leak
match-leak-kinds: reachable
fun:malloc
...
fun:gcry_pk_genkey
...
fun:main
}
{
xmlSecGCryptGenerateRandom -> malloc
Memcheck:Leak
match-leak-kinds: reachable
fun:malloc
...
fun:_gcry_rngcsprng_randomize
fun:xmlSecGCryptGenerateRandom
...
fun:main
}
{
xmlSecGCryptDsaSign -> do_randomize -> malloc
Memcheck:Leak
match-leak-kinds: reachable
fun:malloc
...
fun:do_randomize
...
fun:xmlSecGCryptDsaSign
...
fun:main
}
{
xmlSecGCryptRsaPkcs1Sign -> _gcry_mpi_randomize -> malloc
Memcheck:Leak
match-leak-kinds: reachable
fun:malloc
...
fun:_gcry_mpi_randomize
...
fun:xmlSecGCryptRsaPkcs1Sign
...
fun:main
}
{
xmlSecGCryptBlockCipherCtxInit -> _gcry_rngcsprng_randomize -> malloc
Memcheck:Leak
match-leak-kinds: reachable
fun:malloc
...
fun:_gcry_rngcsprng_randomize
...
fun:xmlSecGCryptBlockCipherCtxInit
...
fun:main
}
|