Skip to content

Commit

Permalink
Merge branch 'PHP-8.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
devnexen committed Nov 3, 2024
2 parents 64f2d11 + f5b0a9a commit f37fd7f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 3 deletions.
14 changes: 11 additions & 3 deletions ext/sysvmsg/sysvmsg.c
Original file line number Diff line number Diff line change
Expand Up @@ -370,11 +370,19 @@ PHP_FUNCTION(msg_send)
php_var_serialize(&msg_var, message, &var_hash);
PHP_VAR_SERIALIZE_DESTROY(var_hash);

if (UNEXPECTED(EG(exception))) {
smart_str_free(&msg_var);
RETURN_THROWS();
}


zend_string *str = smart_str_extract(&msg_var);
message_len = ZSTR_LEN(str);
/* NB: php_msgbuf is 1 char bigger than a long, so there is no need to
* allocate the extra byte. */
messagebuffer = safe_emalloc(ZSTR_LEN(msg_var.s), 1, sizeof(struct php_msgbuf));
memcpy(messagebuffer->mtext, ZSTR_VAL(msg_var.s), ZSTR_LEN(msg_var.s) + 1);
message_len = ZSTR_LEN(msg_var.s);
messagebuffer = safe_emalloc(message_len, 1, sizeof(struct php_msgbuf));
memcpy(messagebuffer->mtext, ZSTR_VAL(str), message_len + 1);
zend_string_release_ex(str, false);
smart_str_free(&msg_var);
} else {
char *p;
Expand Down
19 changes: 19 additions & 0 deletions ext/sysvmsg/tests/gh16592.phpt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
--TEST--
msg_send() segfault when the type does not serialize as expected
--EXTENSIONS--
sysvmsg
--FILE--
<?php
class Test {
function __serialize() {}
}

$q = msg_get_queue(1);
try {
msg_send($q, 1, new Test, true);
} catch (\TypeError $e) {
echo $e->getMessage();
}
?>
--EXPECT--
Test::__serialize() must return an array

0 comments on commit f37fd7f

Please sign in to comment.