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
|
# Valgrind suppressions for stuff that we cannot control
# Memory leaks in standard tools (e.g. dash, tail, or sort)
{
Memory leak in /bin tools
Memcheck:Leak
...
obj:/bin/*
}
{
Memory leak in /usr/bin tools
Memcheck:Leak
...
obj:/usr/bin/*
}
{
Memory leak in cmake
Memcheck:Leak
match-leak-kinds:reachable
...
fun:_ZN4Json5Value13nullSingletonEv
obj:*/libjsoncpp.so*
...
fun:_dl_init
}
# There's a constant leak of 56 bytes in the depths of libc which
# manifests, for example, when using backtrace()
{
Memory leak in libc/dlopen with -pthread
Memcheck:Leak
fun:malloc
fun:_dl_map_object_deps
fun:dl_open_worker
fun:_dl_catch_error
fun:_dl_open
fun:do_dlopen
fun:_dl_catch_error
fun:dlerror_run
fun:__libc_dlopen_mode
}
# Another problem in glibc, where makecontext does not reset the EBP register,
# and backtrace goes too far when walking up the stack frames
{
Invalid read in backtrace, called after makecontext
Memcheck:Addr4
fun:backtrace
...
fun:makecontext
}
#There seems to be an issue with libc using an uninitialized value somewhere in dlopen
{
Invalid read in dl_start
Memcheck:Cond
fun:index
fun:expand_dynamic_string_token
...
fun:_dl_start
}
# 72704 bytes leak from GCC >5.1 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64535
{
Memory leak in dl_init
Memcheck:Leak
match-leak-kinds:reachable
fun:malloc
obj:/usr/lib/*/libstdc++.so.*
fun:call_init.part.0
...
fun:_dl_init
}
#Ignore leaks in SMPI sample codes
{
Leaks in SMPI sample codes
Memcheck:Leak
match-leak-kinds: all
fun:malloc
fun:smpi_simulated_main_
}
#SMPI leaks the dlopen handle used to load the program
{
dlopen handle leaks (1/3)
Memcheck:Leak
match-leak-kinds:reachable
fun:malloc
...
fun:dlopen@@GLIBC_*
}
{
dlopen handle leaks (2/3)
Memcheck:Leak
match-leak-kinds:reachable
fun:calloc
...
fun:dlopen@@GLIBC_*
}
{
dlopen handle leaks (3/3)
Memcheck:Leak
match-leak-kinds:reachable
fun:realloc
...
fun:dlopen@@GLIBC_*
}
# Memory leaks appearing to be in libcgraph. They can be seen with the
# following simple program:
# ,----
# | #include <stdio.h>
# | #include <graphviz/cgraph.h>
# | int main(int argc, char *argv[])
# | {
# | if (argc == 1) {
# | printf("Usage: %s <dotfile>\n", argv[0]);
# | return 1;
# | }
# | Agraph_t *g;
# | FILE *inf = fopen(argv[1], "r");
# | g = agread(inf, 0);
# | fclose(inf);
# | agclose(g);
# | return 0;
# | }
# `----
{
Memory leak in libcgraph (1/2)
Memcheck:Leak
fun:malloc
...
obj:/usr/lib/libcgraph.so*
fun:aaglex
fun:aagparse
fun:agconcat
}
{
Memory leak in libcgraph (1/2)
Memcheck:Leak
fun:calloc
...
obj:/usr/lib/libcgraph.so*
fun:aagparse
fun:agconcat
}
{
Memory leak in libcgraph (2/2)
Memcheck:Leak
fun:malloc
...
fun:agnode
obj:/usr/lib/libcgraph.so*
fun:aagparse
fun:agconcat
}
# We're not interested by memory leaks in the Lua interpreter
{
Memory leak in lua
Memcheck:Leak
...
fun:luaD_precall
}
# libunwind seems to be using msync poorly, thus triggering these
# https://github.com/JuliaLang/julia/issues/4533
{
msync unwind
Memcheck:Param
msync(start)
...
obj:*/libpthread*.so
...
}
{
ignore unwind cruft
Memcheck:Param
rt_sigprocmask(set)
...
obj:/usr/lib/x86_64-linux-gnu/libunwind.so.*
...
}
{
ignore unwind cruft
Memcheck:Param
msync(start)
...
obj:/usr/lib/x86_64-linux-gnu/libunwind.so.*
...
}
{
ignore unwind invalid reads
Memcheck:Addr8
fun:_Ux86_64_setcontext
}
# Java cruft
{
JavaCruft 1
Memcheck:Addr4
...
fun:_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread
fun:JVM_DoPrivileged
...
}
{
JavaCruft 2
Memcheck:Cond
...
fun:_ZN13CompileBroker25invoke_compiler_on_methodEP11CompileTask
...
}
{
Somewhere within the Java conditions and monitors
Memcheck:Cond
fun:MarsagliaXORV
...
}
|