forked from AVSystem/avs_commons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathavs_commons_test.supp
101 lines (100 loc) · 1.82 KB
/
avs_commons_test.supp
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
{
getaddrinfo-globalstate
Memcheck:Leak
fun:malloc
...
fun:gaih_inet*
fun:getaddrinfo
}
{
libcrypto-value
Memcheck:Value8
obj:*/libcrypto.so.*
}
{
libcrypto-indirect-value
Memcheck:Value8
...
obj:*/libcrypto.so.*
}
{
libssl-value
Memcheck:Value8
obj:*/libssl.so.*
}
{
libssl-indirect-value
Memcheck:Value8
...
obj:*/libssl.so.*
}
{
libcrypto-cond
Memcheck:Cond
obj:*/libcrypto.so.*
}
{
libcrypto-indirect-cond
Memcheck:Cond
...
obj:*/libcrypto.so.*
}
{
libssl-cond
Memcheck:Cond
obj:*/libssl.so.*
}
{
libssl-indirect-cond
Memcheck:Cond
...
obj:*/libssl.so.*
}
{
sendto-msg
Memcheck:Param
socketcall.sendto(msg)
...
fun:avs_net_socket_send
fun:avs_bio_write
}
{
sendto-len
Memcheck:Param
sendto(len)
...
fun:avs_net_socket_send
fun:avs_bio_write
}
{
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
#
# The pkcs11 engine from OpenSC is kind of insane and initializes various
# OpenSSL primitives, keeping references to them in... static variables
# inside functions. So there's absolutely no way to uninitialize them. And
# some of them even keep circular references to the engine itself. So we're
# effectively unable to uninitialize the engine. Ever.
#
# This shall not be a problem in practice, because engine tends to be
# necessary for the entire lifetime of the application. But it makes
# verifying memory correctness with Valgrind a hot mess.
engine-circular-references
Memcheck:Leak
...
fun:ENGINE_new
}
{
pkcs11-engine-allocations
Memcheck:Leak
...
obj:*/pkcs11.so
}
{
pkcs11-engine-verify
Memcheck:Leak
...
fun:BN_MONT_CTX_new
fun:BN_MONT_CTX_set_locked
...
fun:RSA_verify
}