History log of /php-src/ext/soap/soap.c (Results 1 – 25 of 640)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 306a5195 11-Sep-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Avoid allocating memory in soap get_function() (#15843)


# 8bcfc8cc 07-Sep-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Implement request #47317: SoapServer::__getLastResponse()

Convenient for debugging.

Closes GH-15792.


# 5853cdb7 20-Aug-2024 Gina Peter Bnayard

Use "must not" instead of "cannot" wording


# e7c4d54d 18-Aug-2024 Gina Peter Bnayard

Use new helper function for "cannot be empty" ValueErrors


# 42497c1e 09-Aug-2024 Gina Peter Banyard

ext/soap: Deprecate passing an int to SoapServer::addFunction() (#15310)

Also deprecate SOAP_FUNCTIONS_ALL constant.

RFC: https://wiki.php.net/rfc/deprecations_php_8_4#deprecate_soa

ext/soap: Deprecate passing an int to SoapServer::addFunction() (#15310)

Also deprecate SOAP_FUNCTIONS_ALL constant.

RFC: https://wiki.php.net/rfc/deprecations_php_8_4#deprecate_soap_functions_all_constant_and_passing_it_to_soapserveraddfunction

show more ...


# 28290655 07-Aug-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Revert "Fix bug #69280: SoapClient classmap doesn't support fully qualified class name (#14398)"

This reverts commit 476706165a227ea6b1d73299b9b6486a6ca073a9.

Although the fix is co

Revert "Fix bug #69280: SoapClient classmap doesn't support fully qualified class name (#14398)"

This reverts commit 476706165a227ea6b1d73299b9b6486a6ca073a9.

Although the fix is correct, people are relying on the bug and their
code stopped working, see GH-15252.

show more ...


# 11fbe880 05-Aug-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix SoapFault property destruction

Two issues:
1) We should not modify the object when we pass invalid values
2) We should reset the properties to their default value otherwise we

Fix SoapFault property destruction

Two issues:
1) We should not modify the object when we pass invalid values
2) We should reset the properties to their default value otherwise we
get a UAF.

Regressed in df219ccf9d6be8302eef3ab6e26fd00fbd2fef71

Closes GH-15248.

show more ...


# 11accb5c 25-Jun-2024 Arnaud Le Blanc

Preferably include from build dir (#13516)

* Include from build dir first

This fixes out of tree builds by ensuring that configure artifacts are included
from the build dir.

Preferably include from build dir (#13516)

* Include from build dir first

This fixes out of tree builds by ensuring that configure artifacts are included
from the build dir.

Before, out of tree builds would preferably include files from the src dir, as
the include path was defined as follows (ignoring includes from ext/ and sapi/) :

-I$(top_builddir)/main
-I$(top_srcdir)
-I$(top_builddir)/TSRM
-I$(top_builddir)/Zend
-I$(top_srcdir)/main
-I$(top_srcdir)/Zend
-I$(top_srcdir)/TSRM
-I$(top_builddir)/

As a result, an out of tree build would include configure artifacts such as
`main/php_config.h` from the src dir.

After this change, the include path is defined as follows:

-I$(top_builddir)/main
-I$(top_builddir)
-I$(top_srcdir)/main
-I$(top_srcdir)
-I$(top_builddir)/TSRM
-I$(top_builddir)/Zend
-I$(top_srcdir)/Zend
-I$(top_srcdir)/TSRM

* Fix extension include path for out of tree builds

* Include config.h with the brackets form

`#include "config.h"` searches in the directory containing the including-file
before any other include path. This can include the wrong config.h when building
out of tree and a config.h exists in the source tree.

Using `#include <config.h>` uses exclusively the include path, and gives
priority to the build dir.

show more ...


# 7a1eded2 16-Jun-2024 Gina Peter Banyard

ext/soap: Use zend_string for name parameter of set_soap_fault()


# cd61f16a 16-Jun-2024 Gina Peter Banyard

ext/soap: Refactor verify_soap_headers_array()

Make its duty only to check if the provided HashTable is valid


# 062353ce 16-Jun-2024 Gina Peter Banyard

ext/soap: prevent needless computation of strlen()


# 073491bf 16-Jun-2024 Gina Peter Banyard

ext/soap: Refactor SOAP call methods implementation


# 4626c17f 15-Jun-2024 Gina Peter Banyard

ext/soap: SoapServer::addSoapHeader() does not need bailout handler wrapper

As this methods never uses the bailout mechanism


# 2459b3ae 15-Jun-2024 Gina Peter Banyard

ext/soap: SoapServer::addFunction() does not need bailout handler wrapper

As this methods never uses the bailout mechanism


# ce1bb1af 15-Jun-2024 Gina Peter Banyard

ext/soap: SoapServer::getFunctions() does not need bailout handler wrapper

As this methods never uses the bailout mechanism


# a99a790a 15-Jun-2024 Gina Peter Banyard

ext/soap: SoapServer::setObject() does not need bailout handler wrapper

As this methods never uses the bailout mechanism


# 5a961cbf 15-Jun-2024 Gina Peter Banyard

ext/soap: SoapServer::setClass() does not need bailout handler wrapper

As this methods never uses the bailout mechanism


# 8269caab 15-Jun-2024 Gina Peter Banyard

ext/soap: SoapServer::setPersistence() does not need bailout handler wrapper

As this methods never uses the bailout mechanism


# 572b2b71 15-Jun-2024 Gina Peter Banyard

ext/soap: Use bool type for _bailout variable


# b71951ba 15-Jun-2024 Gina Peter Banyard

ext/soap: Use bool as return type instead of int for do_request()


# df219ccf 16-Jun-2024 Gina Peter Banyard

ext/soap: Fix memory leaks when calling SoapFault::__construct() twice


# cf469133 01-Jun-2024 Peter Kokot

Fix ZEND_DEBUG condition (#14408)

ZEND_DEBUG is always defined by the build system automatically, either
to value 0 or value 1.


# 47670616 01-Jun-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix bug #69280: SoapClient classmap doesn't support fully qualified class name (#14398)

There's a hash table that maps type names to class name, but names with
a leading backslash are no

Fix bug #69280: SoapClient classmap doesn't support fully qualified class name (#14398)

There's a hash table that maps type names to class name, but names with
a leading backslash are not supported. The engine has logic to strip
away the leading backslash that we should replicate here.

It works by checking if we need to make an actual copy in case an
unexpected (e.g. invalid data or leading backslash) situations are
detected. Upon making a copy we normalize the data in the table.

Furthermore, previously the code assumed that the key was always valid
and that the structure was a non-packed hash table. This isn't
necessarily the case. The new code fixes this as well.

Closes GH-14398.

show more ...


# e8c6c6f1 31-May-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix signedness issues in soap.c


# ca7a0df3 31-May-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Make some things const that can be const in soap


12345678910>>...26