Revert "[M120 Migration]Fix for crash during chrome exit"
[platform/framework/web/chromium-efl.git] / tools / ubsan / security_ignorelist.txt
1 # This ignore list is the subset of ignorelist.txt that's needed in
2 # is_ubsan_security builds. is_ubsan_security builds also use
3 # vptr_ignorelist.txt. This file does not duplicate the contents of that file.
4
5 #############################################################################
6 # UBSan security ignorelist.
7
8 #############################################################################
9 # YASM does some funny things that UBsan doesn't like.
10 # https://crbug.com/489901
11 src:*/third_party/yasm/*
12
13 #############################################################################
14 # V8 gives too many false positives. Ignore them for now.
15 src:*/v8/*
16
17 #############################################################################
18 # Ignore system libraries.
19 src:*/usr/*
20
21 #############################################################################
22 # V8 UBsan supressions, commented out for now since we are ignorning v8
23 # completely.
24 # fun:*v8*internal*FastD2I*
25 # fun:*v8*internal*ComputeIntegerHash*
26 # fun:*v8*internal*ComputeLongHash*
27 # fun:*v8*internal*ComputePointerHash*
28 # src:*/v8/src/base/bits.cc
29 # src:*/v8/src/base/functional.cc
30 # Undefined behaviour (integer overflow) is expected but ignored in this
31 # function.
32 # fun:*JsonParser*ParseJsonNumber*
33
34 # Runtime numeric functions.
35 # src:*/v8/src/runtime/runtime-numbers.cc
36
37 # Shifts of negative numbers
38 # fun:*v8*internal*HPositionInfo*TagPosition*
39 # fun:*v8*internal*Range*Shl*
40 # fun:*v8*internal*RelocInfoWriter*WriteTaggedData*
41
42 #############################################################################
43 # Undefined arithmetic that can be safely ignored.
44 src:*/ppapi/shared_impl/id_assignment.h
45
46 #############################################################################
47 # ICU supressions. Mostly hash functions where integer overflow is OK.
48 fun:*hashEntry*
49 fun:*LocaleCacheKey*hashCode*
50 fun:*google*protobuf*hash*
51 fun:*(hash|Hash)*
52
53 #############################################################################
54 # Bounds ignorelist.
55 # Array at the end of struct pattern:
56 # Maybe UBSan itself can be improved here?
57 # e.g.
58 # struct blah {
59 #   int a;
60 #   char foo[2]; // not actually 2
61 # }
62 src:*/net/disk_cache/blockfile/backend_impl.cc
63 src:*/net/disk_cache/blockfile/entry_impl.cc
64 src:*/third_party/icu/source/common/rbbi.cpp
65 src:*/third_party/icu/source/common/rbbitblb.cpp
66 src:*/third_party/icu/source/common/ucmndata.c
67
68 #############################################################################
69 # Delete in destructor on a this where this == nullptr
70 fun:*re2*RegexpD*
71
72 #############################################################################
73 # Harmless float division by zero.
74 fun:*RendererFrameManager*CullUnlockedFrames*
75
76 #############################################################################
77 # Generic cleanup function pointer of wrong type.
78 fun:sqlite3ParseObjectReset
79
80 #############################################################################
81 # Function pointer of wrong type.
82 src:*/third_party/angle/src/libANGLE/renderer/vulkan/vk_wrapper.h
83 src:*/third_party/vulkan_memory_allocator/include/vk_mem_alloc.h
84 fun:vmaFindMemoryTypeIndexForBufferInfo
85 fun:*rx*vk*GarbageObject*destroy*
86
87 #############################################################################
88 # -fsanitize=vptr suppressions should go in vptr_ignorelist.txt, not here.
89 #############################################################################