valord577
4cb89e6128
fix warning: no -Wno-pedantic-ms-format
for llvm mingw
...
ONLY gcc has `-Wno-pedantic-ms-format`:
https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wno-pedantic-ms-format
2025-02-07 15:51:26 +08:00
Sebastian Pipping
3e82dcb383
fuzzers|cmake: Stop linking xml_lpm_fuzzer against Abseil, explicitly
...
This reverts commit d7e41e2de8
but also also adjusts CI.
2025-02-06 23:24:49 +01:00
Sebastian Pipping
84ccc3e341
fuzzers|cmake: Check for working protobuf compiler
2025-02-03 18:34:49 +01:00
Sebastian Pipping
a0b8957db2
Sync file headers
2025-02-03 01:37:51 +01:00
Sebastian Pipping
c18e90f927
xml_lpm_fuzzer: Use common attribution format
2025-02-03 01:36:22 +01:00
Sebastian Pipping
2a615bc3c5
xml_lpm_fuzzer: Unstuck MallocHook and ReallocHook
...
.. so that they fail single allocations, not all
allocations after a certain point. Previously
fail_allocations of [6, 2, 20] worked the same way
fail_allocations of [2], likely by accidently.
2025-02-03 01:23:41 +01:00
clang-format 19.1.2
922e95a393
xml_lpm_fuzzer: Apply clang-format 19.1.2
2025-02-02 22:19:06 +01:00
Sebastian Pipping
b223d302cb
xml_lpm_fuzzer: Address warning -Wunused-parameter
2025-02-02 22:19:06 +01:00
Sebastian Pipping
15b1af6716
xml_lpm_fuzzer: Address warning -Wsign-compare
...
Symptom was:
> [..]/expat/fuzz/xml_lpm_fuzzer.cpp:157:25: error: comparison of integers of different signs: 'int' and 'unsigned int' [-Werror,-Wsign-compare]
> 157 | for (int i = 0; i < content->numchildren; ++i) {
> | ~ ^ ~~~~~~~~~~~~~~~~~~~~
> [..]/expat/fuzz/xml_lpm_fuzzer.cpp:183:25: error: comparison of integers of different signs: 'int' and 'unsigned int' [-Werror,-Wsign-compare]
> 183 | for (int i = 0; i < content->numchildren; ++i) {
> | ~ ^ ~~~~~~~~~~~~~~~~~~~~
> [..]/expat/fuzz/xml_lpm_fuzzer.cpp:413:24: error: comparison of integers of different signs: 'size_t' (aka 'unsigned long') and 'int' [-Werror,-Wsign-compare]
> 413 | for (size_t i = 0; i < testcase.fail_allocations_size(); ++i) {
> | ~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> [..]/expat/fuzz/xml_lpm_fuzzer.cpp:421:24: error: comparison of integers of different signs: 'size_t' (aka 'unsigned long') and 'int' [-Werror,-Wsign-compare]
> 421 | for (size_t i = 0; i < testcase.actions_size(); ++i) {
> | ~ ^ ~~~~~~~~~~~~~~~~~~~~~~~
2025-02-02 22:19:06 +01:00
Sebastian Pipping
48afe247ce
xml_lpm_fuzzer|cmake: Replace -fsanitize=fuzzer-no-link by -fsanitize=fuzzer
...
Same as commit bf9caf7ac4
, different target.
2025-02-02 22:19:06 +01:00
Sebastian Pipping
ea98a87971
xml_lpm_fuzzer: Add trailing newline
2025-02-02 22:19:06 +01:00
Sebastian Pipping
ea492aa54d
xml_lpm_fuzzer: Add missing call to InitializeParser after XML_ParserReset
2025-02-02 22:19:06 +01:00
Sebastian Pipping
6933ee68f1
xml_lpm_fuzzer: Resolve dead code
2025-02-02 22:19:06 +01:00
Sebastian Pipping
d7736d9cfa
xml_lpm_fuzzer: Resolve unused function parameter
2025-02-02 22:19:06 +01:00
Sebastian Pipping
4962f317d2
xml_lpm_fuzzer: Rename function to better match its nature
2025-02-02 22:19:06 +01:00
Sebastian Pipping
e183cb9811
xml_lpm_fuzzer: Be more thorough in model validation
2025-02-02 22:19:06 +01:00
Sebastian Pipping
5f42436e02
xml_lpm_fuzzer: Fix mistaken use of XML_Char
2025-02-02 22:19:06 +01:00
Sebastian Pipping
da8219b9af
xml_lpm_fuzzer: Mark variable "fail_allocations" as global
2025-02-02 22:19:05 +01:00
Sebastian Pipping
2bb8a29428
xml_lpm_fuzzer: Mark variable "allocation_count" as global
2025-02-02 22:19:05 +01:00
Sebastian Pipping
59771b8f7f
xml_lpm_fuzzer: Mark variables external_entity{,_size} as global
2025-02-02 22:19:05 +01:00
Sebastian Pipping
2b73e1bc00
xml_lpm_fuzzer: Mark variable "encoding" as global
...
This resolves variable shadowing in a few places also,
e.g. in XmlDeclHandler and UnknownEncodingHandler.
2025-02-02 22:19:05 +01:00
Sebastian Pipping
2ca8b39167
xml_lpm_fuzzer: Protect assert(...) from NDEBUG
2025-02-02 22:19:05 +01:00
Sebastian Pipping
5551e205d2
fuzzers|cmake: Drop redundant linker language to simplify
...
The other fuzzers need it for EXPAT_OSSFUZZ_BUILD when C becomes C++
but not this one.
2025-02-02 22:19:05 +01:00
Sebastian Pipping
ba8744ae19
fuzzers|cmake: Fix parallel build for xml_lpm_fuzzer
2025-02-02 22:19:05 +01:00
Sebastian Pipping
d7e41e2de8
fuzzers|cmake: Link xml_lpm_fuzzer against Abseil, explicitly
2025-02-02 22:19:05 +01:00
Sebastian Pipping
2fd3844a7c
fuzzers|cmake: Stop compiling libprotobuf-mutator with tests
2025-02-02 22:19:05 +01:00
Sebastian Pipping
c2fd39564c
fuzzers|cmake: Patch default -Werror out of libprotobuf-mutator
...
.. and make it use C++ 17 for recent Abseil
2025-02-02 22:19:05 +01:00
Sebastian Pipping
eedfa51d99
fuzzers|cmake: Downgrade and pin libprotobuf-mutator to v1.1-7-g50ef915
...
On Ubuntu 24.04 the symptom with more recent 1.3 was:
> [ 37%] Building CXX object src/CMakeFiles/protobuf-mutator.dir/text_format.cc.o
> cd /home/runner/work/libexpat-private/libexpat-private/expat/build/libprotobuf-mutator/src/libprotobuf-mutator-build/src && /usr/lib/llvm-19/bin/clang++ -I/home/runner/work/libexpat-private/libexpat-private/expat/build/libprotobuf-mutator/src/libprotobuf-mutator -I/home/runner/work/libexpat-private/libexpat-private/expat/build/libprotobuf-mutator/src/libprotobuf-mutator-build -fno-exceptions -Wno-deprecated-declarations -Wall -Wstring-conversion -std=c++17 -fsanitize-coverage=0 -MD -MT src/CMakeFiles/protobuf-mutator.dir/text_format.cc.o -MF CMakeFiles/protobuf-mutator.dir/text_format.cc.o.d -o CMakeFiles/protobuf-mutator.dir/text_format.cc.o -c /home/runner/work/libexpat-private/libexpat-private/expat/build/libprotobuf-mutator/src/libprotobuf-mutator/src/text_format.cc
> In file included from /home/runner/work/libexpat-private/libexpat-private/expat/build/libprotobuf-mutator/src/libprotobuf-mutator/src/mutator.cc:27:
> /home/runner/work/libexpat-private/libexpat-private/expat/build/libprotobuf-mutator/src/libprotobuf-mutator/src/field_instance.h:193:50: error: no member named 'requires_utf8_validation' in 'google::protobuf::FieldDescriptor'
> 193 | bool EnforceUtf8() const { return descriptor_->requires_utf8_validation(); }
> | ~~~~~~~~~~~ ^
2025-02-02 22:19:05 +01:00
Sebastian Pipping
d9a91c655d
fuzzers|cmake: Compile as C++17 for recent Abseil
2025-02-02 22:19:05 +01:00
Sebastian Pipping
c87f28da40
fuzzers|cmake: Enable C++ for EXPAT_BUILD_FUZZERS
2025-02-02 22:19:05 +01:00
Sebastian Pipping
b1d40decd9
Revert "fuzzers: Pin tagged versions of protobuf and libprotobuf-mutator"
...
This reverts commit 99314b5d946c0b6851c97714a9b4965284843717.
2025-02-02 22:19:05 +01:00
Sebastian Pipping
8fec1ea699
Merge remote-tracking branch 'c01db33f/fuzzer' into pull-617-finish
2025-02-02 22:17:44 +01:00
Sebastian Pipping
deef285f28
Changes: Promote needs of Python and Perl bindings
2025-01-26 22:24:16 +01:00
Sebastian Pipping
0d0b5a5ae2
Changes: Document changes since release Expat 2.6.4
2025-01-26 22:24:16 +01:00
Sebastian Pipping
cf2a34129f
Sync project lifetime info
2025-01-26 22:24:16 +01:00
Sebastian Pipping
22655f6037
Sync file headers
2025-01-26 22:24:16 +01:00
Sebastian Pipping
61d3bf9c0f
Changes: Drop windows binaries off "help needed" list as completed
2025-01-20 21:56:15 +01:00
Sebastian Pipping
3feee8fab2
Drop support for CMake <3.10
...
Symptom was:
> CMake Deprecation Warning at CMakeLists.txt:37 (cmake_minimum_required):
> Compatibility with CMake < 3.10 will be removed from a future version of
> CMake.
> Update the VERSION argument <min> value. Or, use the <min>...<max> syntax
> to tell CMake that the project requires at least <min> but has been updated
> to work with policies introduced by <max> or earlier.
2025-01-20 17:37:38 +01:00
Sebastian Pipping
2ff156596d
win32/expat.iss: Fix target location of xmlwf.xml for CMake
2025-01-20 13:50:55 +01:00
Sebastian Pipping
bf9caf7ac4
CMake: Replace -fsanitize=fuzzer-no-link by -fsanitize=fuzzer
...
.. where it is a better fit, semantically.
2025-01-05 21:50:40 +01:00
Sebastian Pipping
09f6faa996
CMake: Merge two adjacent conditionals with overlap
2025-01-05 21:50:40 +01:00
Sebastian Pipping
76935aa308
Fix spelling of OSS-Fuzz
2025-01-05 21:43:53 +01:00
Sebastian Pipping
23a696c539
README.md|Changes: Document need for C++11 compiler for use from C++
2025-01-05 19:17:21 +01:00
Sebastian Pipping
493406dbcc
Merge pull request #936 from libexpat/coverage-sh-quiet-lcov
...
`coverage.sh`: Pass `-q -q` for LCOV >=2.1
2024-12-17 21:05:18 +01:00
Sebastian Pipping
b791ba36d6
Make Autotools-generated CMake files look for libexpat.@SO_MAJOR@.dylib
...
.. to match what Autotools is producing in reality at build time.
Unlike CMake, Autotools does not produce file
"libexpat.@SO_MAJOR@.@SO_MINOR@.@SO_PATCH@.dylib" when compiling on macOS.
What the commit does on the CI side is closely mimicking a similar thing
with MinGW that existed until 7731dd5b90621a9e4696d1c467bca2b6ece6e3e6^ .
2024-12-17 19:31:13 +01:00
Sebastian Pipping
2f0b95661d
coverage.sh: Pass "-q -q" for LCOV >=2.1
...
.. to suppress output "no messages were reported".
2024-12-16 19:57:04 +01:00
Sebastian Pipping
de96ce5b5d
tests: Cover doContent with startTagLevel >=2
2024-12-11 12:29:32 +01:00
Sebastian Pipping
e58a3c9645
tests: Cover case 0xff for unsignedCharToPrintable
2024-12-09 23:34:08 +01:00
Sebastian Pipping
03966546fa
lib: Mark dead code in unsignedCharToPrintable as dead to LCOV
2024-12-09 23:33:57 +01:00
Sebastian Pipping
3d5fdbb44e
tests: Cover indirect entity recursion
2024-11-26 18:29:36 +01:00