-
-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ionCube(?) causes bin/magento to segfault when run inside the debug container (PHP 8.1) #35
Comments
It appears this does not happen with PHP 8.2 or 8.3. |
Same issue also with PHP 8.2 and 8.3. Disabling ionCube solves the issue.
|
@mattijv @CSalih What is your OS and Architecture (x64/aarch64)? Interestingly, I'm not seeing this on Mac OS X 14.5 aarch64.
|
@navarr Ubuntu 24 and MacOS 15 both running on x64 architecture. Seems to be an x64 related issue? |
|
@mattijv do you have the latest image? You may run Edit: For PHP 8.2 and 8.3 |
Changed the PHP version in www-data@segfault-php-debug:/var/www/html$ php --version
PHP 8.2.23 (cli) (built: Aug 27 2024 15:32:20) (NTS gcc x86_64)
Copyright (c) The PHP Group
Zend Engine v4.2.23, Copyright (c) Zend Technologies
with the ionCube PHP Loader v13.3.1, Copyright (c) 2002-2024, by ionCube Ltd.
with Zend OPcache v8.2.23, Copyright (c), by Zend Technologies
with Xdebug v3.3.2, Copyright (c) 2002-2024, by Derick Rethans
www-data@segfault-php-debug:/var/www/html$ php test.php
[snip xdebug warning]
www-data@segfault-php-debug:/var/www/html$ www-data@segfault-php-debug:/var/www/html$ php --version
PHP 8.3.11 (cli) (built: Aug 27 2024 19:16:34) (NTS gcc x86_64)
Copyright (c) The PHP Group
Zend Engine v4.3.11, Copyright (c) Zend Technologies
with the ionCube PHP Loader v13.3.1, Copyright (c) 2002-2024, by ionCube Ltd.
with Zend OPcache v8.3.11, Copyright (c), by Zend Technologies
with Xdebug v3.3.2, Copyright (c) 2002-2024, by Derick Rethans
www-data@segfault-php-debug:/var/www/html$ php test.php
[snip xdebug warning]
www-data@segfault-php-debug:/var/www/html$ No errors (beside the xdebug warnings). Went back to 8.1: www-data@segfault-php-debug:/var/www/html$ php --version
PHP 8.1.29 (cli) (built: Jun 5 2024 05:51:57) (NTS gcc x86_64)
Copyright (c) The PHP Group
Zend Engine v4.1.29, Copyright (c) Zend Technologies
with the ionCube PHP Loader v13.3.1, Copyright (c) 2002-2024, by ionCube Ltd.
with Zend OPcache v8.1.29, Copyright (c), by Zend Technologies
with Xdebug v3.3.2, Copyright (c) 2002-2024, by Derick Rethans
www-data@segfault-php-debug:/var/www/html$ php test.php
[snip xdebug warning]
Segmentation fault (core dumped)
www-data@segfault-php-debug:/var/www/html$ |
I also have the same problem Versions: Ubuntu |
Tested with
Steps to reproduce
warden env-init
, choosemagento2
as the type.symfony/console
withcomposer require symfony/console
.php test.php
.This should result in the following:
(Xdebug will complain about not being able to connect, but that does not affect the problem so I omitted it from the output.)
Test file to trigger the issue
Details
I faced this problem when running the Magento CLI command (
bin/magento
) and tracked down the problematic lines to\Symfony\Component\Console\Command\Command::getDefaultName
(when subclassed as\Symfony\Component\Console\Command\CompleteCommand
). The test file is a minimal sample that triggers the issue.Running the file with
gdb
reveals the following stack trace after triggering the segfault:The segmentation fault does not happen if I either
/etc/php.d/01-ioncube-loader.ini
.Thoughts
I'm guessing this is an issue with ionCube and not in the Warden images per se. However, since the images bundle the problematic version, and I can't quickly find an official way to disable it, I'm opening this issue here.
The text was updated successfully, but these errors were encountered: