6215 Commits

Author SHA1 Message Date
Nick Wellnhofer
1e3fd2677a parser: Fix parsing of DTD content
Regressed in 2.11. Fixes #868.
2025-03-01 16:04:02 +01:00
Nick Wellnhofer
02d577715e Release v2.12.10 v2.12.10 2025-02-18 16:43:30 +01:00
Nick Wellnhofer
858ca26c06 [CVE-2025-24928] Fix stack-buffer-overflow in xmlSnprintfElements
Fixes #847.
2025-02-18 15:44:56 +01:00
Nick Wellnhofer
245b70d7d2 [CVE-2024-56171] Fix use-after-free after xmlSchemaItemListAdd
xmlSchemaItemListAdd can reallocate the items array. Update local
variables after adding item in

- xmlSchemaIDCFillNodeTables
- xmlSchemaBubbleIDCNodeTables

Fixes #828.
2025-02-18 15:43:37 +01:00
Nick Wellnhofer
503f788e84 pattern: Fix compilation of explicit child axis
The child axis is the default axis and should generate XML_OP_ELEM like
the case without an axis.
2025-02-18 15:43:31 +01:00
Nick Wellnhofer
017629b1ad autotools: Set AC_CONFIG_AUX_DIR
This should make sure that autoreconf doesn't mess with parent
directories.

Should fix #833.
2025-02-18 15:43:11 +01:00
Nick Wellnhofer
05ff921a89 gitlab-ci: Add "dist" job to build distribution tarball
Prepare for GNOME Release Service.
2025-02-18 15:42:55 +01:00
Nick Wellnhofer
d6713ad821 cmake: Always build Python module as shared library 2025-02-18 15:38:15 +01:00
Nick Wellnhofer
505e92bbec python: Declare init func with PyMODINIT_FUNC 2025-02-18 15:36:55 +01:00
Nick Wellnhofer
068abc0b75 cmake: Fix compatibility in package version file
See https://github.com/microsoft/vcpkg/issues/42315
2024-11-24 22:01:04 +01:00
Nick Wellnhofer
6998f3b251 tests: Fix sanitizer version check on old Apple clang
See #669.
2024-11-24 21:59:18 +01:00
Nick Wellnhofer
e880cf203a xpath: Fix parsing of non-ASCII names
Fix a long-standing issue where QNames starting with a non-ASCII
character would be rejected. This became more visible after "streaming"
XPath evaluation was disabled since the latter handled non-ASCII names
correctly.

Fixes #818.
2024-11-12 16:39:32 +01:00
Nick Wellnhofer
7f9419d484 parser: Fix detection of duplicate attributes
We really need a second scan if more than one namespace clash was
detected.
2024-11-12 16:39:15 +01:00
Nick Wellnhofer
00301f0fe8 Release v2.12.9 v2.12.9 2024-07-24 15:51:56 +02:00
Nick Wellnhofer
4c2b237174 [CVE-2024-40896] Fix XXE protection in downstream code
Some users set an entity's children manually in the getEntity SAX
callback to restrict entity expansion. This stopped working after
renaming the "checked" member of xmlEntity, making at least one
downstream project and its dependants susceptible to XXE attacks.

See #761.
2024-07-24 15:50:30 +02:00
Nick Wellnhofer
bf3e56f3bf Undeprecate xmlKeepBlanksDefault 2024-07-06 20:24:19 +02:00
Nick Wellnhofer
83fce0a3f9 Release v2.12.8 v2.12.8 2024-06-12 12:57:59 +02:00
Nick Wellnhofer
b71f09c134 parser: Fix performance regression when parsing namespaces
The namespace hash table didn't reuse deleted buckets, leading to
quadratic behavior.

Also ignore deleted buckets when resizing.

Fixes #726.
2024-06-06 15:53:43 +02:00
Nick Wellnhofer
0b6d813073 Release v2.12.7 v2.12.7 2024-05-13 11:34:02 +02:00
Nick Wellnhofer
2876ac5392 [CVE-2024-34459] Fix buffer overread with xmllint --htmlout
Add a missing bounds check.
2024-05-13 11:32:02 +02:00
Nick Wellnhofer
8e9fdc20f0 xmllint: Fix --pedantic option
Regressed in 74c84a8c.
2024-05-13 11:31:41 +02:00
Nick Wellnhofer
f907f785ce ci: Remove Python 2 job, update C89 job
Python 2 isn't supported on newer Ubuntu releases. Newer Python
releases have header files which aren't compatible with C89.
2024-04-02 16:34:08 +02:00
Nick Wellnhofer
5a8d9a35a4 save: Handle invalid parent pointers in xhtmlNodeDumpOutput
See #255 and commit 85b1792e.
2024-04-02 16:21:59 +02:00
Nick Wellnhofer
505e2e872e Release v2.12.6 v2.12.6 2024-03-15 12:15:36 +01:00
Nick Wellnhofer
4462d4afb9 doc: Update xmllint documentation 2024-03-15 12:15:17 +01:00
Nick Wellnhofer
ece73bd8fd parser: Fix detection of duplicate attributes in XML namespace
Fixes a regression from commit e0dd330b, resulting in duplicate
attributes in the predefined XML namespace not being detected or
extraneous default attributes being passed.

Fixes #704.
2024-03-12 22:35:10 +01:00
Nick Wellnhofer
4365a5e115 xmlreader: Fix xmlTextReaderConstEncoding
Regression from commit f1c1f5c6.

Fixes #697.
2024-02-26 16:02:52 +01:00
Nick Wellnhofer
0b5650067b html: Fix htmlCreatePushParserCtxt with encoding
Regression from commit ec7be506.

Fixes #696.
2024-02-26 01:20:02 +01:00
Nick Wellnhofer
387a952bdb xmllint: Return error code if XPath returns empty nodeset
Return an error code as before but make it possible to distinguish from
real errors.

Fixes #690.
2024-02-12 17:00:38 +01:00
Nick Wellnhofer
e189e99453 Release v2.12.5 v2.12.5 2024-02-04 14:53:18 +01:00
Nick Wellnhofer
9272197088 [CVE-2024-25062] xmlreader: Don't expand XIncludes when backtracking
Fixes a use-after-free if XML Reader if used with DTD validation and
XInclude expansion.

Fixes #604.
2024-02-04 14:44:15 +01:00
Nick Wellnhofer
8b9b972aaa parser: Fix crash in xmlParseInNodeContext with HTML documents
Ignore namespaces if we have an HTML document with namespaces added
manually.

Fixes #672.
2024-02-04 14:43:15 +01:00
Nick Wellnhofer
8292f36145 Release v2.12.4 v2.12.4 2024-01-15 16:41:16 +01:00
Nick Wellnhofer
c22c85f2bf gitlab-ci: Disable Python tests on MinGW
See #658.
2024-01-15 16:32:22 +01:00
Nick Wellnhofer
1e6b17b834 parser: Fix regression parsing standalone declarations
Fix parsing of standalone declarations if an encoding was provided.

Fixes #661.
2024-01-15 16:29:51 +01:00
Nick Wellnhofer
be0ff6b7f0 autotools: Readd --with-xptr-locs configuration option
The option was removed accidentally in 4e4c89a4.
2024-01-10 18:12:21 +01:00
Nick Wellnhofer
f006355eda parser: Fix build --without-output 2023-12-14 13:42:16 +01:00
Nick Wellnhofer
d7714f977d parser: Don't grow or shrink pull parser memory buffers
Readd check for memory buffers without a read callback to avoid
XML_MAX_LOOKUP_LIMIT errors if users provide a custom input buffer.
Regressed with commit 834b8123 and later changes.
2023-12-14 13:38:54 +01:00
Nick Wellnhofer
1b6362ea44 io: Fix memory lifetime issue with input buffers
xmlParserInputBufferCreateMem must make a copy of the buffer.

This fixes a regression from 2.11 which could cause reads from freed
memory depending on the use case.

Undeprecate xmlParserInputBufferCreateStatic which can avoid copying
the whole buffer.
2023-12-12 23:58:33 +01:00
Nick Wellnhofer
30d22bec03 Release v2.12.3 v2.12.3 2023-12-12 15:36:12 +01:00
Nick Wellnhofer
8d42c447d6 parser: Fix namespaces redefined from default attributes
This regressed in commit e0dd330b.

Also fixes a long-standing issue where namespaces from default
attributes weren't added if they match an existing namespace.

Fixes #643.
2023-12-08 16:05:22 +01:00
Nick Wellnhofer
23dd0b7627 include: Rename XML_EMPTY helper macro
Avoid name clash with downstream projects.
2023-12-07 14:40:13 +01:00
Nick Wellnhofer
7f767866b3 include: Move declaration of xmlInitGlobals
Fix downstream build issues after reworking globals.h.
2023-12-07 14:15:29 +01:00
Nick Wellnhofer
34a9665751 include: Add missing includes 2023-12-07 12:04:02 +01:00
Nick Wellnhofer
942f5a9387 include: Move globals from xmlsave.h to parser.h
Fix downstream build issues after reworking globals.h.
2023-12-06 19:56:50 +01:00
Nick Wellnhofer
72007096e2 include: Readd circular dependency between tree.h and parser.h
There are dozens of downstream projects that only include tree.h but use
declarations from parser.h. This broke after the recent cleanup of
circular dependencies.

Make tree.h include parser.h again. This is a hack but doesn't change
the include directory struture.
2023-12-06 18:35:30 +01:00
Nick Wellnhofer
4d8fa5b292 Release v2.12.2 v2.12.2 2023-12-05 20:49:22 +01:00
Nick Wellnhofer
f5b3296a1e build: Disable compiler TLS by default
The global struct is quite large (~700 bytes on 64-bit systems which
will be allocated for each thread whether it uses libxml2 or not) and
already close to the total size limit on some platforms.

Disable compiler TLS by default.
2023-12-05 20:40:20 +01:00
Nick Wellnhofer
f76ee97a81 parser: Fix invalid free in xmlParseBalancedChunkMemoryRecover
Set the dictionary for newDoc in xmlParseBalancedChunkMemoryRecover.
This is a long-standing bug which was masked by

- xmlParseBalancedChunkMemoryRecover changing the document of the root
  node. This is a really bad idea, resulting in a mismatch between
  ctxt->myDoc and ctxt->node->doc.
- SAX2.c preferring ctxt->node->doc over ctxt->myDoc until commit
  a31e1b06.

Fixes #641.
2023-12-01 20:20:07 +01:00
Nick Wellnhofer
367d5ce813 tree: Another fix related to #538
Should fix #639.
2023-12-01 20:19:59 +01:00