New PHP C Extension based on upb_msg (#7614)
* Added code for the new PHP extension.
* Removed a bunch of unused variables shown by compiler warnings.
* Test protobuf2 in the tests.
* Updated upb version to fix a goldenfile test.
* Added pure-PHP changes. Extension now passes all tests.
* Enabled protobuf2 for all C extension tests.
* Fixed pure=PHP lib: full names no longer start with '.'.
* Added files for new extension to Makefile.am.
* Downgraded make-preload.py to python 2, since python3 isn't available in the php_all Kokoro image.
* Disable tests of new C extension with PHP 5.x.
* Also do not compile the extension for PHP5.
* Accept version 5.*.*, and use /usr/bin/python.
* Addressed PR comments.
* Addressed PR comments.
* Added "const" to a parameter and fixed a memory leak seen in Valgrind.
* Stop testing the C extension for PHP5.
The next release of protobuf will deprecate the C extension
for PHP5, see:
https://github.com/protocolbuffers/protobuf/issues/7525
* Made the PHP5.6 Mac test only exercise pure-PHP.
* Build protoc for PHP 5.6 test.
* Rewrote bundling script in PHP to avoid dependency on Python.
* A few more fixes.
* Fixed int32/int64 behavior for 32-bit builds.
* Match more PHP versions in testing script.
* Use phpize --clean before building extension.
* Force-delete configure.in to avoid phpize problems cross-version.
* Delete both configure.ac and configure.in.
diff --git a/php/ext/google/protobuf2/convert.c b/php/ext/google/protobuf2/convert.c
new file mode 100644
index 0000000..dd076c5
--- /dev/null
+++ b/php/ext/google/protobuf2/convert.c
@@ -0,0 +1,478 @@
+// Protocol Buffers - Google's data interchange format
+// Copyright 2008 Google Inc. All rights reserved.
+// https://developers.google.com/protocol-buffers/
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are
+// met:
+//
+// * Redistributions of source code must retain the above copyright
+// notice, this list of conditions and the following disclaimer.
+// * Redistributions in binary form must reproduce the above
+// copyright notice, this list of conditions and the following disclaimer
+// in the documentation and/or other materials provided with the
+// distribution.
+// * Neither the name of Google Inc. nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+#include "convert.h"
+
+#include <php.h>
+
+// This is not self-contained: it must be after other Zend includes.
+#include <Zend/zend_exceptions.h>
+
+#include "array.h"
+#include "map.h"
+#include "message.h"
+#include "php-upb.h"
+#include "protobuf.h"
+
+// -----------------------------------------------------------------------------
+// GPBUtil
+// -----------------------------------------------------------------------------
+
+static zend_class_entry* GPBUtil_class_entry;
+
+// The implementation of type checking for primitive fields is empty. This is
+// because type checking is done when direct assigning message fields (e.g.,
+// foo->a = 1). Functions defined here are place holders in generated code for
+// pure PHP implementation (c extension and pure PHP share the same generated
+// code).
+
+PHP_METHOD(Util, checkInt32) {}
+PHP_METHOD(Util, checkUint32) {}
+PHP_METHOD(Util, checkInt64) {}
+PHP_METHOD(Util, checkUint64) {}
+PHP_METHOD(Util, checkEnum) {}
+PHP_METHOD(Util, checkFloat) {}
+PHP_METHOD(Util, checkDouble) {}
+PHP_METHOD(Util, checkBool) {}
+PHP_METHOD(Util, checkString) {}
+PHP_METHOD(Util, checkBytes) {}
+PHP_METHOD(Util, checkMessage) {}
+
+// The result of checkMapField() is assigned, so we need to return the first
+// param:
+// $arr = GPBUtil::checkMapField($var,
+// \Google\Protobuf\Internal\GPBType::INT64,
+// \Google\Protobuf\Internal\GPBType::INT32);
+PHP_METHOD(Util, checkMapField) {
+ zval *val, *key_type, *val_type, *klass;
+ if (zend_parse_parameters(ZEND_NUM_ARGS(), "zzz|z", &val, &key_type,
+ &val_type, &klass) == FAILURE) {
+ return;
+ }
+ RETURN_ZVAL(val, 1, 0);
+}
+
+// The result of checkRepeatedField() is assigned, so we need to return the
+// first param:
+// $arr = GPBUtil::checkRepeatedField(
+// $var, \Google\Protobuf\Internal\GPBType::STRING);
+PHP_METHOD(Util, checkRepeatedField) {
+ zval *val, *type, *klass;
+ if (zend_parse_parameters(ZEND_NUM_ARGS(), "zz|z", &val, &type, &klass) ==
+ FAILURE) {
+ return;
+ }
+ RETURN_ZVAL(val, 1, 0);
+}
+
+static zend_function_entry util_methods[] = {
+ PHP_ME(Util, checkInt32, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
+ PHP_ME(Util, checkUint32, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
+ PHP_ME(Util, checkInt64, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
+ PHP_ME(Util, checkUint64, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
+ PHP_ME(Util, checkEnum, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
+ PHP_ME(Util, checkFloat, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
+ PHP_ME(Util, checkDouble, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
+ PHP_ME(Util, checkBool, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
+ PHP_ME(Util, checkString, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
+ PHP_ME(Util, checkBytes, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
+ PHP_ME(Util, checkMessage, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
+ PHP_ME(Util, checkMapField, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
+ PHP_ME(Util, checkRepeatedField, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
+ ZEND_FE_END
+};
+
+// -----------------------------------------------------------------------------
+// Conversion functions used from C
+// -----------------------------------------------------------------------------
+
+upb_fieldtype_t pbphp_dtype_to_type(upb_descriptortype_t type) {
+ switch (type) {
+#define CASE(descriptor_type, type) \
+ case UPB_DESCRIPTOR_TYPE_##descriptor_type: \
+ return UPB_TYPE_##type;
+
+ CASE(FLOAT, FLOAT);
+ CASE(DOUBLE, DOUBLE);
+ CASE(BOOL, BOOL);
+ CASE(STRING, STRING);
+ CASE(BYTES, BYTES);
+ CASE(MESSAGE, MESSAGE);
+ CASE(GROUP, MESSAGE);
+ CASE(ENUM, ENUM);
+ CASE(INT32, INT32);
+ CASE(INT64, INT64);
+ CASE(UINT32, UINT32);
+ CASE(UINT64, UINT64);
+ CASE(SINT32, INT32);
+ CASE(SINT64, INT64);
+ CASE(FIXED32, UINT32);
+ CASE(FIXED64, UINT64);
+ CASE(SFIXED32, INT32);
+ CASE(SFIXED64, INT64);
+
+#undef CASE
+
+ }
+
+ zend_error(E_ERROR, "Unknown field type.");
+ return 0;
+}
+
+static bool buftouint64(const char *ptr, const char *end, uint64_t *val) {
+ uint64_t u64 = 0;
+ while (ptr < end) {
+ unsigned ch = (unsigned)(*ptr - '0');
+ if (ch >= 10) break;
+ if (u64 > UINT64_MAX / 10 || u64 * 10 > UINT64_MAX - ch) {
+ return false;
+ }
+ u64 *= 10;
+ u64 += ch;
+ ptr++;
+ }
+
+ if (ptr != end) {
+ // In PHP tradition, we allow truncation: "1.1" -> 1.
+ // But we don't allow 'e', eg. '1.1e2' or any other non-numeric chars.
+ if (*ptr++ != '.') return false;
+
+ for (;ptr < end; ptr++) {
+ if (*ptr < '0' || *ptr > '9') {
+ return false;
+ }
+ }
+ }
+
+ *val = u64;
+ return true;
+}
+
+static bool buftoint64(const char *ptr, const char *end, int64_t *val) {
+ bool neg = false;
+ uint64_t u64;
+
+ if (ptr != end && *ptr == '-') {
+ ptr++;
+ neg = true;
+ }
+
+ if (!buftouint64(ptr, end, &u64) ||
+ u64 > (uint64_t)INT64_MAX + neg) {
+ return false;
+ }
+
+ *val = neg ? -u64 : u64;
+ return true;
+}
+
+static void throw_conversion_exception(const char *to, const zval *zv) {
+ zval tmp;
+ ZVAL_COPY(&tmp, zv);
+ convert_to_string(&tmp);
+
+ zend_throw_exception_ex(NULL, 0, "Cannot convert '%s' to %s",
+ Z_STRVAL_P(&tmp), to);
+
+ zval_ptr_dtor(&tmp);
+}
+
+bool Convert_PhpToInt64(const zval *php_val, int64_t *i64) {
+ switch (Z_TYPE_P(php_val)) {
+ case IS_LONG:
+ *i64 = Z_LVAL_P(php_val);
+ return true;
+ case IS_DOUBLE: {
+ double dbl = Z_DVAL_P(php_val);
+ if (dbl > 9223372036854774784.0 || dbl < -9223372036854775808.0) {
+ zend_throw_exception_ex(NULL, 0, "Out of range");
+ return false;
+ }
+ *i64 = dbl; /* must be guarded, overflow here is UB */
+ return true;
+ }
+ case IS_STRING: {
+ const char *buf = Z_STRVAL_P(php_val);
+ // PHP would accept scientific notation here, but we're going to be a
+ // little more discerning and only accept pure integers.
+ bool ok = buftoint64(buf, buf + Z_STRLEN_P(php_val), i64);
+ if (!ok) {
+ throw_conversion_exception("integer", php_val);
+ }
+ return ok;
+ }
+ default:
+ throw_conversion_exception("integer", php_val);
+ return false;
+ }
+}
+
+static bool to_double(zval *php_val, double *dbl) {
+ switch (Z_TYPE_P(php_val)) {
+ case IS_LONG:
+ *dbl = Z_LVAL_P(php_val);
+ return true;
+ case IS_DOUBLE:
+ *dbl = Z_DVAL_P(php_val);
+ return true;
+ case IS_STRING: {
+ zend_long lval;
+ switch (is_numeric_string(Z_STRVAL_P(php_val), Z_STRLEN_P(php_val), &lval,
+ dbl, false)) {
+ case IS_LONG:
+ *dbl = lval;
+ return true;
+ case IS_DOUBLE:
+ return true;
+ default:
+ goto fail;
+ }
+ }
+ default:
+ fail:
+ throw_conversion_exception("double", php_val);
+ return false;
+ }
+}
+
+static bool to_bool(zval* from, bool* to) {
+ switch (Z_TYPE_P(from)) {
+ case IS_TRUE:
+ *to = true;
+ return true;
+ case IS_FALSE:
+ *to = false;
+ return true;
+ case IS_LONG:
+ *to = (Z_LVAL_P(from) != 0);
+ return true;
+ case IS_DOUBLE:
+ *to = (Z_LVAL_P(from) != 0);
+ return true;
+ case IS_STRING:
+ if (Z_STRLEN_P(from) == 0 ||
+ (Z_STRLEN_P(from) == 1 && Z_STRVAL_P(from)[0] == '0')) {
+ *to = false;
+ } else {
+ *to = true;
+ }
+ return true;
+ default:
+ throw_conversion_exception("bool", from);
+ return false;
+ }
+}
+
+static bool to_string(zval* from) {
+ if (Z_ISREF_P(from)) {
+ ZVAL_DEREF(from);
+ }
+
+ switch (Z_TYPE_P(from)) {
+ case IS_STRING:
+ return true;
+ case IS_TRUE:
+ case IS_FALSE:
+ case IS_LONG:
+ case IS_DOUBLE: {
+ zval tmp;
+ zend_make_printable_zval(from, &tmp);
+ ZVAL_COPY_VALUE(from, &tmp);
+ return true;
+ }
+ default:
+ throw_conversion_exception("string", from);
+ return false;
+ }
+}
+
+bool Convert_PhpToUpb(zval *php_val, upb_msgval *upb_val, upb_fieldtype_t type,
+ const Descriptor *desc, upb_arena *arena) {
+ int64_t i64;
+
+ if (Z_ISREF_P(php_val)) {
+ ZVAL_DEREF(php_val);
+ }
+
+ switch (type) {
+ case UPB_TYPE_INT64:
+ return Convert_PhpToInt64(php_val, &upb_val->int64_val);
+ case UPB_TYPE_INT32:
+ case UPB_TYPE_ENUM:
+ if (!Convert_PhpToInt64(php_val, &i64)) {
+ return false;
+ }
+ upb_val->int32_val = i64;
+ return true;
+ case UPB_TYPE_UINT64:
+ if (!Convert_PhpToInt64(php_val, &i64)) {
+ return false;
+ }
+ upb_val->uint64_val = i64;
+ return true;
+ case UPB_TYPE_UINT32:
+ if (!Convert_PhpToInt64(php_val, &i64)) {
+ return false;
+ }
+ upb_val->uint32_val = i64;
+ return true;
+ case UPB_TYPE_DOUBLE:
+ return to_double(php_val, &upb_val->double_val);
+ case UPB_TYPE_FLOAT:
+ if (!to_double(php_val, &upb_val->double_val)) return false;
+ upb_val->float_val = upb_val->double_val;
+ return true;
+ case UPB_TYPE_BOOL:
+ return to_bool(php_val, &upb_val->bool_val);
+ case UPB_TYPE_STRING:
+ case UPB_TYPE_BYTES: {
+ char *ptr;
+ size_t size;
+
+ if (!to_string(php_val)) return false;
+
+ size = Z_STRLEN_P(php_val);
+
+ // If arena is NULL we reference the input zval.
+ // The resulting upb_strview will only be value while the zval is alive.
+ if (arena) {
+ ptr = upb_arena_malloc(arena, size);
+ memcpy(ptr, Z_STRVAL_P(php_val), size);
+ } else {
+ ptr = Z_STRVAL_P(php_val);
+ }
+
+ upb_val->str_val = upb_strview_make(ptr, size);
+ return true;
+ }
+ case UPB_TYPE_MESSAGE:
+ PBPHP_ASSERT(desc);
+ return Message_GetUpbMessage(php_val, desc, arena,
+ (upb_msg **)&upb_val->msg_val);
+ }
+
+ return false;
+}
+
+void Convert_UpbToPhp(upb_msgval upb_val, zval *php_val, upb_fieldtype_t type,
+ const Descriptor *desc, zval *arena) {
+ switch (type) {
+ case UPB_TYPE_INT64:
+#if SIZEOF_ZEND_LONG == 8
+ ZVAL_LONG(php_val, upb_val.int64_val);
+#else
+ {
+ char buf[20];
+ int size = sprintf(buf, "%lld", upb_val.int64_val);
+ ZVAL_NEW_STR(php_val, zend_string_init(buf, size, 0));
+ }
+#endif
+ break;
+ case UPB_TYPE_UINT64:
+#if SIZEOF_ZEND_LONG == 8
+ ZVAL_LONG(php_val, upb_val.uint64_val);
+#else
+ {
+ char buf[20];
+ int size = sprintf(buf, "%lld", (int64_t)upb_val.uint64_val);
+ ZVAL_NEW_STR(php_val, zend_string_init(buf, size, 0));
+ }
+#endif
+ break;
+ case UPB_TYPE_INT32:
+ case UPB_TYPE_ENUM:
+ ZVAL_LONG(php_val, upb_val.int32_val);
+ break;
+ case UPB_TYPE_UINT32: {
+ // Sign-extend for consistency between 32/64-bit builds.
+ zend_long val = (int32_t)upb_val.uint32_val;
+ ZVAL_LONG(php_val, val);
+ break;
+ }
+ case UPB_TYPE_DOUBLE:
+ ZVAL_DOUBLE(php_val, upb_val.double_val);
+ break;
+ case UPB_TYPE_FLOAT:
+ ZVAL_DOUBLE(php_val, upb_val.float_val);
+ break;
+ case UPB_TYPE_BOOL:
+ ZVAL_BOOL(php_val, upb_val.bool_val);
+ break;
+ case UPB_TYPE_STRING:
+ case UPB_TYPE_BYTES: {
+ upb_strview str = upb_val.str_val;
+ ZVAL_NEW_STR(php_val, zend_string_init(str.data, str.size, 0));
+ break;
+ }
+ case UPB_TYPE_MESSAGE:
+ PBPHP_ASSERT(desc);
+ Message_GetPhpWrapper(php_val, desc, (upb_msg*)upb_val.msg_val, arena);
+ break;
+ }
+}
+
+bool Convert_PhpToUpbAutoWrap(zval *val, upb_msgval *upb_val,
+ upb_fieldtype_t type, const Descriptor *desc,
+ upb_arena *arena) {
+ const upb_msgdef *subm = desc ? desc->msgdef : NULL;
+ if (subm && upb_msgdef_iswrapper(subm) && Z_TYPE_P(val) != IS_OBJECT) {
+ // Assigning a scalar to a wrapper-typed value. We will automatically wrap
+ // the value, so the user doesn't need to create a FooWrapper(['value': X])
+ // message manually.
+ upb_msg *wrapper = upb_msg_new(subm, arena);
+ const upb_fielddef *val_f = upb_msgdef_itof(subm, 1);
+ upb_fieldtype_t type_f = upb_fielddef_type(val_f);
+ upb_msgval msgval;
+ if (!Convert_PhpToUpb(val, &msgval, type_f, NULL, arena)) return false;
+ upb_msg_set(wrapper, val_f, msgval, arena);
+ upb_val->msg_val = wrapper;
+ return true;
+ } else {
+ // Convert_PhpToUpb doesn't auto-construct messages. This means that we only
+ // allow:
+ // ['foo_submsg': new Foo(['a' => 1])]
+ // not:
+ // ['foo_submsg': ['a' => 1]]
+ return Convert_PhpToUpb(val, upb_val, type, desc, arena);
+ }
+}
+
+void Convert_ModuleInit(void) {
+ const char *prefix_name = "TYPE_URL_PREFIX";
+ zend_class_entry class_type;
+
+ INIT_CLASS_ENTRY(class_type, "Google\\Protobuf\\Internal\\GPBUtil",
+ util_methods);
+ GPBUtil_class_entry = zend_register_internal_class(&class_type);
+
+ zend_declare_class_constant_string(GPBUtil_class_entry, prefix_name,
+ strlen(prefix_name),
+ "type.googleapis.com/");
+}