6741 Commits

Author SHA1 Message Date
Nick Wellnhofer
9b8fbe99ad Release v2.13.7 v2.13.7 2025-03-27 13:17:30 +01:00
Nick Wellnhofer
58d7a3b725 tree: Fix xmlTextMerge with NULL args
Restore pre-2.13 behavior. Fixes #875.
2025-03-18 11:20:36 +01:00
Nick Wellnhofer
6d02b54e0c io: Fix compressed flag for uncompressed stdin
This could cause xmlstarlet to generate compressed output unexpectedly.

Regressed with 6208f86e. Should fix #869.
2025-03-02 13:28:58 +01:00
Nick Wellnhofer
ee1a43d4a5 parser: Fix parsing of DTD content
Regressed in 2.11. Fixes #868.
2025-03-01 15:58:23 +01:00
Nick Wellnhofer
66453240c9 Release 2.13.6 v2.13.6 2025-02-18 14:50:21 +01:00
Nick Wellnhofer
055b382541 [CVE-2025-24928] Fix stack-buffer-overflow in xmlSnprintfElements
Fixes #847.
2025-02-18 14:18:21 +01:00
Nick Wellnhofer
a6bf2cb76c [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 14:18:15 +01:00
Nick Wellnhofer
1f37eedb58 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 14:15:04 +01:00
Nick Wellnhofer
aee5563c8c dict: Handle ENOSYS from getentropy gracefully
Should fix #854.
2025-02-11 13:36:02 +01:00
Nick Wellnhofer
6208f86edd xmllint: Support compressed input from stdin
Another regression related to reading from stdin.

Making a "-" filename read from stdin was deeply baked into the core
IO code but is inherently insecure. I really want to reenable this
dangerous feature as sparingly as possible.

Add a new hidden parser option to make xmllint work. This will likely
turn into a public option that must be opted in later.

Allow compressed stdin in xmlReadFile to support xmlstarlet and older
versions of xsltproc. So far, these are the only known command-line
tools that rely on "-" meaning stdin.
2025-01-28 22:05:30 +01:00
Nick Wellnhofer
7d4df58e65 uri: Fix handling of Windows drive letters
Allow drive letters in URI paths. Technically, these should be treated
as URI schemes, but this is not what users expect. This also makes sure
that paths with drive letters are resolved as filesystem paths and
unescaped, for example when used in libxslt's document() function.

Should fix #832.
2025-01-27 15:11:29 +01:00
Nick Wellnhofer
539663626b Fix "Fix compilation with uclibc"
The ICU code must initialize the iconv members as well.
2025-01-16 16:47:12 +01:00
Nick Wellnhofer
2cf6d4b78e gitlab-ci: Add "dist" job to build distribution tarball
Prepare for GNOME Release Service.
2025-01-15 16:39:26 +01:00
Nick Wellnhofer
3910e639bc reader: Fix return value of xmlTextReaderReadString again
Make sure to return NULL for node types except elements or text to match
the old behavior.

Note that CDATA sections are still treated like text nodes and will have
their content returned.

Fixes #838.
2025-01-15 15:48:46 +01:00
Nick Wellnhofer
f35d528fa7 autotools: Set AC_CONFIG_AUX_DIR
This should make sure that autoreconf doesn't mess with parent
directories.

Should fix #833.
2024-12-26 20:05:20 +01:00
Dario Binacchi
fc72e0833a Fix compilation with uclibc
The patch fixes the following errors and warnings raised by the
compilation of the library with uClibc:

encoding.c: In function ‘xmlEncInputChunk’:
encoding.c:2209:32: warning: comparison between pointer and integer
 2209 |     else if (handler->iconv_in != NULL) {
      |                                ^~
encoding.c: In function ‘xmlEncOutputChunk’:
encoding.c:2269:33: warning: comparison between pointer and integer
 2269 |     else if (handler->iconv_out != NULL) {
      |                                 ^~
encoding.c: In function ‘xmlCharEncCloseFunc’:
encoding.c:2681:29: warning: comparison between pointer and integer
 2681 |     if ((handler->iconv_out != NULL) || (handler->iconv_in != NULL)) {
      |                             ^~
encoding.c:2681:60: warning: comparison between pointer and integer
 2681 |     if ((handler->iconv_out != NULL) || (handler->iconv_in != NULL)) {
      |                                                            ^~
encoding.c:2683:32: warning: comparison between pointer and integer
 2683 |         if (handler->iconv_out != NULL) {
      |                                ^~
encoding.c:2686:32: error: assignment to ‘iconv_t’ {aka ‘long int’} from ‘void *’ makes integer from pointer without a cast [-Wint-conversion]
 2686 |             handler->iconv_out = NULL;
      |                                ^
encoding.c:2688:31: warning: comparison between pointer and integer
 2688 |         if (handler->iconv_in != NULL) {
      |                               ^~
encoding.c:2691:31: error: assignment to ‘iconv_t’ {aka ‘long int’} from ‘void *’ makes integer from pointer without a cast [-Wint-conversion]
 2691 |             handler->iconv_in = NULL;
      |                               ^
make[4]: *** [Makefile:1147: libxml2_la-encoding.lo] Error 1

Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
2024-12-20 08:45:17 +01:00
Nick Wellnhofer
110e44ec9c SAX2: Fix xmlSAX2ResolveEntity if systemId is NULL
Passing a NULL systemId results in snprintf("%s", NULL) which crashes on
some platforms. Regressed with commit 4ff2dccf.

Note that systemId should never be NULL during normal parsing. It can
only be NULL if API functions are called with a NULL systemId.

Should fix #825.
2024-12-11 22:43:27 +01:00
Nick Wellnhofer
2b542ee990 cmake: Always build Python module as shared library 2024-12-11 22:37:42 +01:00
Nick Wellnhofer
46a17a91a5 python: Declare init func with PyMODINIT_FUNC 2024-12-11 22:37:28 +01:00
Saleem Abdulrasool
fe1ee0f25f cmake: add missing Bcrypt link on Windows
When building on Windows, we must link against `Bcrypt` to satisfy the
use of `BCryptGenRandom`. Add this to the link interface in CMake to
allow use of libxml2 as a static library.
2024-11-23 15:56:32 +01:00
Nick Wellnhofer
b347a008a7 cmake: Fix compatibility in package version file
See https://github.com/microsoft/vcpkg/issues/42315
2024-11-23 15:56:27 +01:00
Nick Wellnhofer
3cb94cd241 tests: Fix sanitizer version check on old Apple clang
See #669.
2024-11-23 15:56:27 +01:00
Nick Wellnhofer
2617138d92 cmake: Work around broken sys/random.h in old macOS SDKs
Fixes #820.
2024-11-13 19:59:28 +01:00
Nick Wellnhofer
de918d45e1 Release v2.13.5 v2.13.5 2024-11-12 18:19:24 +01:00
Nick Wellnhofer
a3afc31fd7 xmlIO: Fix reading from non-regular files like pipes
Commit 7e14c05d removed unnecessary copying of uncompressed input
through zlib or xzlib. This broke input from non-regular files like
pipes which can't be reopened. Try to detect such files by checking
whether they're seekable and always pipe them through zlib or xzlib.

Also remove seemingly unnecessary calls to gzread and gzrewind to
support unseekable files.

Fixes https://gitlab.gnome.org/GNOME/libxslt/-/issues/124.
2024-11-12 16:36:39 +01:00
Nick Wellnhofer
f228c6f320 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:36:24 +01:00
Nick Wellnhofer
bcda764930 xmlreader: Fix return value of xmlTextReaderReadString
Return NULL if the node has no children or the children were already
deleted to match the 2.12 behavior.

Fixes #817.
2024-11-12 16:36:13 +01:00
Nick Wellnhofer
5cce7af791 parser: Fix loading of parameter entities in external DTDs
Regressed with commit 12f0bb94.

Fixes #816.
2024-11-12 16:35:58 +01:00
Nick Wellnhofer
4334cbb4e3 parser: Fix downstream code that swaps DTDs
Downstream code like the nginx xslt module can change the document's DTD
pointers in a SAX callback. If an entity from a separate DTD is parsed
lazily, its content must not reference the current document.

Regressed with commit d025cfbb.

Fixes #815.
2024-11-12 16:35:38 +01:00
Nick Wellnhofer
929297749c parser: Fix detection of duplicate attributes
We really need a second scan if more than one namespace clash was
detected.
2024-11-12 16:32:33 +01:00
Nick Wellnhofer
5a2a243b1b string: Fix va_copy fallback
Fix va_copy fallback reworked in 5cffba83.

Should fix #812.
2024-10-23 14:20:56 +02:00
Nick Wellnhofer
60d3056c97 Release v2.13.4 v2.13.4 2024-09-18 15:10:15 +02:00
Nick Wellnhofer
7c4fef2412 xpath: Make recursion check work with xmlXPathCompile
The check for maximum recursion depth required a parser context with an
xmlXPathContext which xmlXPathCompile didn't provide.

All other code should already set up or require an xmlXPathContext.
2024-09-18 15:03:05 +02:00
Nick Wellnhofer
d4e4f6f2e0 include: Check whether _MSC_VER is defined
Should fix #795.
2024-09-04 16:30:43 +02:00
Nick Wellnhofer
65db397463 parser: Make unsupported encodings an error in declarations
This was changed in 45157261, but in encoding declarations, unsupported
encodings should raise a fatal error.

Fixes #794.
2024-09-04 16:30:43 +02:00
Nick Wellnhofer
4224a3fb27 python: Fix SAX driver with character streams
This apparently broke with Python 3.5 which introduced character
streams.

Fixes #790.
2024-09-02 19:04:06 +02:00
triallax
da9f892f20 io: don't set the executable bit when creating files
Issue seems to have been introduced in
0bef93bf24def68c448af0e71844b942e0ed93ec.
2024-08-27 12:55:31 +02:00
Nick Wellnhofer
208a4d026c xmlcatalog: Improved fix for #699 2024-08-19 20:51:39 +02:00
Nick Wellnhofer
4e3ce5c009 Revert "catalog: Fetch XML catalog before dumping"
This reverts commit 723b4de04015c5acccd3cda5dd60db7d00702064.
2024-08-19 20:51:29 +02:00
Nick Wellnhofer
b93d4e7087 io: Add missing calls to xmlInitParser
This is required after c9a46a91.

Should fix #782.
2024-08-13 15:36:21 +02:00
Nick Wellnhofer
3a95572408 tree: Restore return value of xmlNodeListGetString with NULL list
When passing a NULL list to xmlNodeListGetString or
xmlNodeListGetRawString, return NULL instead of "" to match the old
behavior.

Fixes #783.
2024-08-13 15:36:16 +02:00
Nick Wellnhofer
239e25f613 parser: Report at least one fatal error 2024-08-05 16:47:21 +02:00
Nick Wellnhofer
d470dedf74 parser: Fix error handling after reaching limit
Mark document as non-wellformed and stop parser even if error limit was
reached.

Regressed in abd74186.
2024-08-05 16:47:12 +02:00
Nick Wellnhofer
3a648d11a3 parser: Make xmlParseChunk return an error if parser was stopped
This regressed after enhancing the disableSAX member in 2.13.

Should fix #777.
2024-07-25 17:27:43 +02:00
Nick Wellnhofer
3b1742b839 Release v2.13.3 v2.13.3 2024-07-24 15:16:52 +02:00
Nick Wellnhofer
de28e6ed3a [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 14:34:13 +02:00
Nick Wellnhofer
6ae65368ad autotools: Use AC_CHECK_DECL to check for getentropy
Should fix build issue on iOS.
2024-07-22 19:30:29 +02:00
Nick Wellnhofer
ed8b4264f6 xinclude: Set error handler when parsing text 2024-07-18 20:56:31 +02:00
Nick Wellnhofer
a0330b53c8 xinclude: Fix fallback for text includes
Fixes #772.
2024-07-18 19:45:59 +02:00
Nick Wellnhofer
8699ba234b io: Don't call getcwd in xmlParserGetDirectory
The "directory" value isn't used internally. Calling getcwd is
unnecessary and can cause problems in sandboxed environments.

Fixes #770.
2024-07-18 03:40:37 +02:00