-
Notifications
You must be signed in to change notification settings - Fork 7.7k
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
Apache Segmentation fault (11) disappears after print_r on a variable. can't understand... #10430
Comments
Are you able to get and inspect that core dump? Do you have any third-party PHP extensions installed? |
There is no core dump at all (in etc/apache2 as suggested)
I have my own autoloader and could use PHPOffice (but is this case i
don't use any third party at all)
Best regards
Pierre Frappé
Le 24/01/2023 à 11:38, Damian Wadley a écrit :
…
Are you able to get and inspect that core dump? Do you have any
third-party PHP extensions installed?
—
Reply to this email directly, view it on GitHub
<#10430 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGCSK2RAJDBM5BYAYH6TG2LWT6WLDANCNFSM6AAAAAAUE4Y7LA>.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Are you using the JIT, if yes, does the bug also occur with JIT disabled? |
I didn’t setup explicitly JIT.
Howard can i Knowles if it is user ?
Regards
Pierre Frappé
Le mar. 24 janv. 2023, 17:27, Niels Dossche ***@***.***> a
écrit :
… Are you using the JIT, if yes, does the bug also occur with JIT disabled?
—
Reply to this email directly, view it on GitHub
<#10430 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGCSK2QMMJ5LH5UQTADUHCLWT77ILANCNFSM6AAAAAAUE4Y7LA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
I didn't setup JIT explicitly.
How can I know if it is used ?
Pierre Frappé
(apologize for the precedent msg..)
Le 24/01/2023 à 17:27, Niels Dossche a écrit :
…
Are you using the JIT, if yes, does the bug also occur with JIT disabled?
—
Reply to this email directly, view it on GitHub
<#10430 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGCSK2QMMJ5LH5UQTADUHCLWT77ILANCNFSM6AAAAAAUE4Y7LA>.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
there is no 'opcache.jit' in our php.ini (8.1), so I guess it is not enabled
Pierre Frappé
Le 24/01/2023 à 17:27, Niels Dossche a écrit :
…
Are you using the JIT, if yes, does the bug also occur with JIT disabled?
—
Reply to this email directly, view it on GitHub
<#10430 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGCSK2QMMJ5LH5UQTADUHCLWT77ILANCNFSM6AAAAAAUE4Y7LA>.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
It would be ideal if we could get a stacktrace. Are you able to attach gdb to the child process that crashes (well... before it actually crashes)? |
OK I'll try to do it.
It is something new for me...
And tomorrow I'll go on searching what things I have changed which
create the problem.
Pierre Frappé
Le 24/01/2023 à 22:35, Niels Dossche a écrit :
…
It would be ideal if we could get a stacktrace. Are you able to attach
gdb to the child process that crashes (well... before it actually
crashes)?
—
Reply to this email directly, view it on GitHub
<#10430 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGCSK2VN3KNOOTM4YDWGN2TWUBDLJANCNFSM6AAAAAAUE4Y7LA>.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
8.1.2 is quite old, I suggest an update. |
OK I'll make an update
Pierre Frappé
Le 25/01/2023 à 08:28, Aleksander Machniak a écrit :
…
8.1.2 is quite old, I suggest an update.
—
Reply to this email directly, view it on GitHub
<#10430 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGCSK2XFNSP5INNVLLJOD6DWUDI3LANCNFSM6AAAAAAUE4Y7LA>.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
This comment was marked as spam.
This comment was marked as spam.
after update, problem remains... but I still have some "deprecated" to
correct !
Pierre Frappé
Le 25/01/2023 à 08:28, Aleksander Machniak a écrit :
…
8.1.2 is quite old, I suggest an update.
—
Reply to this email directly, view it on GitHub
<#10430 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGCSK2XFNSP5INNVLLJOD6DWUDI3LANCNFSM6AAAAAAUE4Y7LA>.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
I am in php 8.2.
No change...
Step by step, I tried to find the shorter moment where something happens
or no whether I add a print-r() or no.
Doing so, I found that unserialize(serialize($var)) solve the problem as
the print_r($var, true)
However, the problem seems to appear after creating an object.
The original instruction is : *$nb = new SG_Nombre($solde);* where
$solde is a float and the print_r of $solde seems always coorect.
Adding *print_r($nb, true);* bypass the bug.
And writing *$nb = unserialize(serialize(new SG_Nombre($solde)));* works
correctly too.
This kind of instruction appears very often in the application.
*$nb = new SG_Nombre($solde);*
error_log(serialize($nb));*
print_r($nb, true);*
error_log(serialize($nb));
gives this : it happens 6 times (before and after) and strictly no
difference
Wed Jan 25 18:51:19.107869 2023] [php:notice] [pid 68220] [client
127.0.0.1:48416]
***@***.***";s:9:"reference";N;s:5:"index";N;s:5:"titre";N;s:2:"id";N;s:10:"proprietes";a:0:{}s:9:"contenant";N;s:6:"erreur";N;s:5:"icone";N;s:6:"numero";N;s:15:",
referer: http://localhost/wer/
[Wed Jan 25 18:51:19.108986 2023] [php:notice] [pid 68220] [client
127.0.0.1:48416]
***@***.***";s:9:"reference";N;s:5:"index";N;s:5:"titre";N;s:2:"id";N;s:10:"proprietes";a:0:{}s:9:"contenant";N;s:6:"erreur";N;s:5:"icone";N;s:6:"numero";N;s:15:",
referer: http://localhost/wer/
[Wed Jan 25 18:51:19.109810 2023] [php:notice] [pid 68220] [client
127.0.0.1:48416]
***@***.***";s:9:"reference";N;s:5:"index";N;s:5:"titre";N;s:2:"id";N;s:10:"proprietes";a:0:{}s:9:"contenant";N;s:6:"erreur";N;s:5:"icone";N;s:6:"numero";N;s:15:",
referer: http://localhost/wer/
[Wed Jan 25 18:51:19.110733 2023] [php:notice] [pid 68220] [client
127.0.0.1:48416]
***@***.***";s:9:"reference";N;s:5:"index";N;s:5:"titre";N;s:2:"id";N;s:10:"proprietes";a:0:{}s:9:"contenant";N;s:6:"erreur";N;s:5:"icone";N;s:6:"numero";N;s:15:",
referer: http://localhost/wer/
[Wed Jan 25 18:52:55.857031 2023] [php:notice] [pid 68277] [client
127.0.0.1:59622]
***@***.***";s:9:"reference";N;s:5:"index";N;s:5:"titre";N;s:2:"id";N;s:10:"proprietes";a:0:{}s:9:"contenant";N;s:6:"erreur";N;s:5:"icone";N;s:6:"numero";N;s:15:",
referer: http://localhost/wer/
[Wed Jan 25 18:52:55.857119 2023] [php:notice] [pid 68277] [client
127.0.0.1:59622]
***@***.***";s:9:"reference";N;s:5:"index";N;s:5:"titre";N;s:2:"id";N;s:10:"proprietes";a:0:{}s:9:"contenant";N;s:6:"erreur";N;s:5:"icone";N;s:6:"numero";N;s:15:",
referer: http://localhost/wer/
[Wed Jan 25 18:52:55.858008 2023] [php:notice] [pid 68277] [client
127.0.0.1:59622]
***@***.***";s:9:"reference";N;s:5:"index";N;s:5:"titre";N;s:2:"id";N;s:10:"proprietes";a:0:{}s:9:"contenant";N;s:6:"erreur";N;s:5:"icone";N;s:6:"numero";N;s:15:",
referer: http://localhost/wer/
[Wed Jan 25 18:52:55.858033 2023] [php:notice] [pid 68277] [client
127.0.0.1:59622]
***@***.***";s:9:"reference";N;s:5:"index";N;s:5:"titre";N;s:2:"id";N;s:10:"proprietes";a:0:{}s:9:"contenant";N;s:6:"erreur";N;s:5:"icone";N;s:6:"numero";N;s:15:",
referer: http://localhost/wer/
[Wed Jan 25 18:52:55.858747 2023] [php:notice] [pid 68277] [client
127.0.0.1:59622]
***@***.***";s:9:"reference";N;s:5:"index";N;s:5:"titre";N;s:2:"id";N;s:10:"proprietes";a:0:{}s:9:"contenant";N;s:6:"erreur";N;s:5:"icone";N;s:6:"numero";N;s:15:",
referer: http://localhost/wer/
[Wed Jan 25 18:52:55.858775 2023] [php:notice] [pid 68277] [client
127.0.0.1:59622]
***@***.***";s:9:"reference";N;s:5:"index";N;s:5:"titre";N;s:2:"id";N;s:10:"proprietes";a:0:{}s:9:"contenant";N;s:6:"erreur";N;s:5:"icone";N;s:6:"numero";N;s:15:",
referer: http://localhost/wer/
[Wed Jan 25 18:52:55.859666 2023] [php:notice] [pid 68277] [client
127.0.0.1:59622]
***@***.***";s:9:"reference";N;s:5:"index";N;s:5:"titre";N;s:2:"id";N;s:10:"proprietes";a:0:{}s:9:"contenant";N;s:6:"erreur";N;s:5:"icone";N;s:6:"numero";N;s:15:",
referer: http://localhost/wer/
[Wed Jan 25 18:52:55.859689 2023] [php:notice] [pid 68277] [client
127.0.0.1:59622]
***@***.***";s:9:"reference";N;s:5:"index";N;s:5:"titre";N;s:2:"id";N;s:10:"proprietes";a:0:{}s:9:"contenant";N;s:6:"erreur";N;s:5:"icone";N;s:6:"numero";N;s:15:",
referer: http://localhost/wer/
Pierre Frappé
Le 25/01/2023 à 08:49, smokefire69 a écrit :
… On Wednesday, January 25, 2023, Aleksander Machniak <
***@***.***> wrote:
> 8.1.2 is quite old, I suggest an update.
>
> —
> Reply to this email directly, view it on GitHub, or unsubscribe.
> You are receiving this because you are subscribed to this thread.<
https://ci4.googleusercontent.com/proxy/pFe4ODxPhSpr17qKFcKzDAKRrg6pP3XFiDFaIgtL9Z8kqgW3pdnX3bocOFLWB_w_rC2RDTDk40rp9mDKQUDglmXcV_GiZM_LqwjYXMk4FPuCkgCJXz1Bv547EzQQOxRFz6zofu87ZvM6IbVDaSubLSIbi4XOYyOpE0-RknN5uu-2SwJJYbbzFVUU1CI4hIBpl1hjyJ7byTRHBDkSDY4LfS__TX8wwog_AyPbwJ510ggjnhHCbg=s0-d-e1-ft#https://github.com/notifications/beacon/A5KGFTANCT2D2FSN4CHCN5TWUDI7VA5CNFSM6AAAAAAUE4Y7LCWGG33NNVSW45C7OR4XAZNMJFZXG5LFINXW23LFNZ2KUY3PNVWWK3TUL5UWJTSTUMSJM.gif>Message
ID: ***@***.***>
Right do it then! I don't know anything about it so I know I'm not
—
Reply to this email directly, view it on GitHub
<#10430 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGCSK2RP45FDQ3DNU4H45U3WUDLH7ANCNFSM6AAAAAAUE4Y7LA>.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
I can't attach gdb to the child process because I don't know its number
before running (it's new one at each computation)
Le 24/01/2023 à 22:35, Niels Dossche a écrit :
…
It would be ideal if we could get a stacktrace. Are you able to attach
gdb to the child process that crashes (well... before it actually
crashes)?
—
Reply to this email directly, view it on GitHub
<#10430 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGCSK2VN3KNOOTM4YDWGN2TWUBDLJANCNFSM6AAAAAAUE4Y7LA>.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Ah right, I see... I believe you can however use gdb on Apache and follow its children with the command |
Finally, I did something and I hope it's what I should do !
ps -elf | apache2
sudo gdb attach 58435
and follow the terminal screen
that gave me this :
***@***.***:~$ sudo gdb 58435
[sudo] password for synergaia:
GNU gdb (Ubuntu 12.1-0ubuntu1~22.04) 12.1
Copyright (C) 2022 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
58435: No such file or directory.
(gdb) attach 58435
Attaching to process 58435
Reading symbols from target:/usr/sbin/apache2...
(No debugging symbols found in target:/usr/sbin/apache2)
Reading symbols from target:/lib/x86_64-linux-gnu/libpcre.so.3...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libpcre.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libaprutil-1.so.0...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libaprutil-1.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libapr-1.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libapr-1.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libc.so.6...
Reading symbols from
/usr/lib/debug/.build-id/69/389d485a9793dbe873f0ea2c93e02efaa9aa3d.debug...
Reading symbols from target:/lib/x86_64-linux-gnu/libcrypt.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libcrypt.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libexpat.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libexpat.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libuuid.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libuuid.so.1)
Reading symbols from target:/lib64/ld-linux-x86-64.so.2...
Reading symbols from
/usr/lib/debug/.build-id/61/ef896a699bb1c2e4e231642b2e1688b2f1a61e.debug...
Reading symbols from target:/lib/x86_64-linux-gnu/libm.so.6...
Reading symbols from
/usr/lib/debug/.build-id/27/e82301dba6c3f644404d504e1bb1c97894b433.debug...
Reading symbols from target:/lib/x86_64-linux-gnu/libssl.so.3...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libssl.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libcrypto.so.3...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libcrypto.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libstdc++.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libstdc++.so.6)
Reading symbols from target:/lib/x86_64-linux-gnu/libgcc_s.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libgcc_s.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libz.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libz.so.1)
Reading symbols from target:/usr/lib/apache2/modules/libphp8.2.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/libphp8.2.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libxml2.so.2...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libxml2.so.2)
Reading symbols from target:/lib/x86_64-linux-gnu/libpcre2-8.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libpcre2-8.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libsodium.so.23...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libsodium.so.23)
Reading symbols from target:/lib/x86_64-linux-gnu/libargon2.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libargon2.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libicuuc.so.70...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libicuuc.so.70)
Reading symbols from target:/lib/x86_64-linux-gnu/liblzma.so.5...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/liblzma.so.5)
Reading symbols from target:/lib/x86_64-linux-gnu/libicudata.so.70...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libicudata.so.70)
Reading symbols from target:/usr/lib/php/20220829/opcache.so...
(No debugging symbols found in target:/usr/lib/php/20220829/opcache.so)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_malloc_internal.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_malloc_internal.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_base.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_base.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_spinlock_wait.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_spinlock_wait.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_raw_logging_internal.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_raw_logging_internal.so.20210324)
Reading symbols from target:/usr/lib/apache2/modules/mod_access_compat.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_access_compat.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_alias.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_alias.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_auth_basic.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_auth_basic.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_authn_core.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_authn_core.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_authn_file.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_authn_file.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_authz_core.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_authz_core.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_authz_host.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_authz_host.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_authz_user.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_authz_user.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_autoindex.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_autoindex.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_deflate.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_deflate.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_dir.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_dir.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_env.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_env.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_filter.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_filter.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_mime.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_mime.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_mpm_prefork.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_mpm_prefork.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_negotiation.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_negotiation.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_reqtimeout.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_reqtimeout.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_setenvif.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_setenvif.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_status.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_status.so)
Reading symbols from target:/usr/lib/php/20220829/gd.so...
(No debugging symbols found in target:/usr/lib/php/20220829/gd.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libgd.so.3...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libgd.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libpng16.so.16...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libpng16.so.16)
Reading symbols from target:/lib/x86_64-linux-gnu/libfontconfig.so.1...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libfontconfig.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libfreetype.so.6...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libfreetype.so.6)
Reading symbols from target:/lib/x86_64-linux-gnu/libjpeg.so.8...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libjpeg.so.8)
Reading symbols from target:/lib/x86_64-linux-gnu/libXpm.so.4...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libXpm.so.4)
Reading symbols from target:/lib/x86_64-linux-gnu/libtiff.so.5...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libtiff.so.5)
Reading symbols from target:/lib/x86_64-linux-gnu/libwebp.so.7...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libwebp.so.7)
Reading symbols from target:/lib/x86_64-linux-gnu/libheif.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libheif.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libavif.so.13...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libavif.so.13)
Reading symbols from target:/lib/x86_64-linux-gnu/libbrotlidec.so.1...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libbrotlidec.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libX11.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libX11.so.6)
Reading symbols from target:/lib/x86_64-linux-gnu/libzstd.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libzstd.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libjbig.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libjbig.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libdeflate.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libdeflate.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libaom.so.3...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libaom.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libde265.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libde265.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libx265.so.199...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libx265.so.199)
Reading symbols from target:/lib/x86_64-linux-gnu/libdav1d.so.5...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libdav1d.so.5)
Reading symbols from target:/lib/x86_64-linux-gnu/libgav1.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libgav1.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libyuv.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libyuv.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libbrotlicommon.so.1...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libbrotlicommon.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libxcb.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libxcb.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libpthread.so.0...
Reading symbols from target:/lib/x86_64-linux-gnu/libnuma.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libnuma.so.1)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_synchronization.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_synchronization.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libXau.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libXau.so.6)
Reading symbols from target:/lib/x86_64-linux-gnu/libXdmcp.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libXdmcp.so.6)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_graphcycles_internal.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_graphcycles_internal.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_stacktrace.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_stacktrace.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_symbolize.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_symbolize.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_time.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_time.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libbsd.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libbsd.so.0)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_debugging_internal.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_debugging_internal.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_demangle_internal.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_demangle_internal.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_strings.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_strings.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_time_zone.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_time_zone.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_int128.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_int128.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libmd.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libmd.so.0)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_strings_internal.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_strings_internal.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_throw_delegate.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_throw_delegate.so.20210324)
Reading symbols from target:/usr/lib/php/20220829/mbstring.so...
(No debugging symbols found in target:/usr/lib/php/20220829/mbstring.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libonig.so.5...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libonig.so.5)
Reading symbols from target:/usr/lib/php/20220829/exif.so...
(No debugging symbols found in target:/usr/lib/php/20220829/exif.so)
Reading symbols from target:/usr/lib/php/20220829/pdo.so...
(No debugging symbols found in target:/usr/lib/php/20220829/pdo.so)
Reading symbols from target:/usr/lib/php/20220829/xml.so...
(No debugging symbols found in target:/usr/lib/php/20220829/xml.so)
Reading symbols from target:/usr/lib/php/20220829/calendar.so...
(No debugging symbols found in target:/usr/lib/php/20220829/calendar.so)
Reading symbols from target:/usr/lib/php/20220829/ctype.so...
(No debugging symbols found in target:/usr/lib/php/20220829/ctype.so)
Reading symbols from target:/usr/lib/php/20220829/dom.so...
(No debugging symbols found in target:/usr/lib/php/20220829/dom.so)
Reading symbols from target:/usr/lib/php/20220829/ffi.so...
(No debugging symbols found in target:/usr/lib/php/20220829/ffi.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libffi.so.8...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libffi.so.8)
Reading symbols from target:/usr/lib/php/20220829/fileinfo.so...
(No debugging symbols found in target:/usr/lib/php/20220829/fileinfo.so)
Reading symbols from target:/usr/lib/php/20220829/ftp.so...
(No debugging symbols found in target:/usr/lib/php/20220829/ftp.so)
Reading symbols from target:/usr/lib/php/20220829/gettext.so...
(No debugging symbols found in target:/usr/lib/php/20220829/gettext.so)
Reading symbols from target:/usr/lib/php/20220829/iconv.so...
(No debugging symbols found in target:/usr/lib/php/20220829/iconv.so)
Reading symbols from target:/usr/lib/php/20220829/igbinary.so...
(No debugging symbols found in target:/usr/lib/php/20220829/igbinary.so)
Reading symbols from target:/usr/lib/php/20220829/msgpack.so...
(No debugging symbols found in target:/usr/lib/php/20220829/msgpack.so)
Reading symbols from target:/usr/lib/php/20220829/phar.so...
(No debugging symbols found in target:/usr/lib/php/20220829/phar.so)
Reading symbols from target:/usr/lib/php/20220829/posix.so...
(No debugging symbols found in target:/usr/lib/php/20220829/posix.so)
Reading symbols from target:/usr/lib/php/20220829/readline.so...
(No debugging symbols found in target:/usr/lib/php/20220829/readline.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libedit.so.2...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libedit.so.2)
Reading symbols from target:/lib/x86_64-linux-gnu/libtinfo.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libtinfo.so.6)
Reading symbols from target:/usr/lib/php/20220829/shmop.so...
(No debugging symbols found in target:/usr/lib/php/20220829/shmop.so)
Reading symbols from target:/usr/lib/php/20220829/simplexml.so...
(No debugging symbols found in target:/usr/lib/php/20220829/simplexml.so)
Reading symbols from target:/usr/lib/php/20220829/sockets.so...
(No debugging symbols found in target:/usr/lib/php/20220829/sockets.so)
Reading symbols from target:/usr/lib/php/20220829/sysvmsg.so...
(No debugging symbols found in target:/usr/lib/php/20220829/sysvmsg.so)
Reading symbols from target:/usr/lib/php/20220829/sysvsem.so...
(No debugging symbols found in target:/usr/lib/php/20220829/sysvsem.so)
Reading symbols from target:/usr/lib/php/20220829/sysvshm.so...
(No debugging symbols found in target:/usr/lib/php/20220829/sysvshm.so)
Reading symbols from target:/usr/lib/php/20220829/tokenizer.so...
(No debugging symbols found in target:/usr/lib/php/20220829/tokenizer.so)
Reading symbols from target:/usr/lib/php/20220829/xmlreader.so...
(No debugging symbols found in target:/usr/lib/php/20220829/xmlreader.so)
Reading symbols from target:/usr/lib/php/20220829/xmlwriter.so...
(No debugging symbols found in target:/usr/lib/php/20220829/xmlwriter.so)
Reading symbols from target:/usr/lib/php/20220829/xsl.so...
(No debugging symbols found in target:/usr/lib/php/20220829/xsl.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libxslt.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libxslt.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libexslt.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libexslt.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libgcrypt.so.20...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libgcrypt.so.20)
Reading symbols from target:/lib/x86_64-linux-gnu/libgpg-error.so.0...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libgpg-error.so.0)
Reading symbols from target:/usr/lib/php/20220829/zip.so...
(No debugging symbols found in target:/usr/lib/php/20220829/zip.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libzip.so.4...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libzip.so.4)
Reading symbols from target:/lib/x86_64-linux-gnu/libbz2.so.1.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libbz2.so.1.0)
Reading symbols from target:/usr/lib/php/20220829/memcached.so...
(No debugging symbols found in target:/usr/lib/php/20220829/memcached.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libmemcached.so.11...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libmemcached.so.11)
Reading symbols from target:/lib/x86_64-linux-gnu/libsasl2.so.2...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libsasl2.so.2)
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
0x00007ff5ab91674d in __GI___select (nfds=0, readfds=0x0, writefds=0x0,
exceptfds=0x0, timeout=0x7fff2be187b0) at
../sysdeps/unix/sysv/linux/select.c:69
69 ../sysdeps/unix/sysv/linux/select.c: No such file or directory.
(gdb) where
#0 0x00007ff5ab91674d in __GI___select (nfds=0, readfds=0x0,
writefds=0x0, exceptfds=0x0, timeout=0x7fff2be187b0) at
../sysdeps/unix/sysv/linux/select.c:69
#1 0x00007ff5aba4dc09 in apr_sleep () from
target:/lib/x86_64-linux-gnu/libapr-1.so.0
#2 0x00005606a4c18095 in ap_wait_or_timeout ()
#3 0x00007ff5ab6d9754 in ?? () from
target:/usr/lib/apache2/modules/mod_mpm_prefork.so
#4 0x00005606a4c110e8 in ap_run_mpm ()
#5 0x00005606a4c10609 in main ()
(gdb)
is it what you expected ??
Le 26/01/2023 à 17:13, Niels Dossche a écrit :
…
Ah right, I see... I believe you can however use gdb on Apache and
follow its children with the command |set follow-fork-mode|. When you
observe the crash in gdb you can try to get a backtrace with the |bt|
command. Are you willing to give that a try? :) Giving us a backtrace
and the error will help us find the issue.
—
Reply to this email directly, view it on GitHub
<#10430 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGCSK2W5ASCCR6TZTB2KVCTWUKPEBANCNFSM6AAAAAAUE4Y7LA>.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Thanks for the effort you already put into the issue!
|
|Here is what I got :|
***@***.***:~$ ps -elf | grep apache2
5 S root 58435 1 0 80 0 - 65741 - janv.25 ?
00:00:26 /usr/sbin/apache2 -k start
5 S www-data 137975 58435 0 80 0 - 66106 - 00:00 ?
00:00:05 /usr/sbin/apache2 -k start
5 S www-data 137977 58435 0 80 0 - 66064 - 00:00 ?
00:00:03 /usr/sbin/apache2 -k start
5 S www-data 137978 58435 0 80 0 - 66126 - 00:00 ?
00:00:04 /usr/sbin/apache2 -k start
5 S www-data 138116 58435 0 80 0 - 66065 - 00:06 ?
00:00:03 /usr/sbin/apache2 -k start
5 S www-data 138338 58435 0 80 0 - 66087 - 00:15 ?
00:00:03 /usr/sbin/apache2 -k start
5 S www-data 142346 58435 0 80 0 - 66103 - 03:54 ?
00:00:04 /usr/sbin/apache2 -k start
5 S www-data 148846 58435 0 80 0 - 65935 - 08:39 ?
00:00:00 /usr/sbin/apache2 -k start
5 S www-data 148933 58435 0 80 0 - 65945 - 08:40 ?
00:00:00 /usr/sbin/apache2 -k start
5 S www-data 148956 58435 0 80 0 - 65983 - 08:41 ?
00:00:00 /usr/sbin/apache2 -k start
5 S www-data 148958 58435 0 80 0 - 65860 - 08:41 ?
00:00:00 /usr/sbin/apache2 -k start
0 S synerga+ 148974 24590 0 80 0 - 4466 pipe_r 08:42 pts/3
00:00:00 grep --color=auto apache2
***@***.***:~$ sudo gdb 58435
[sudo] password for synergaia:
GNU gdb (Ubuntu 12.1-0ubuntu1~22.04) 12.1
Copyright (C) 2022 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
58435: No such file or directory.
(gdb) set follow-fork-mode child
(gdb) continue
The program is not being run.
(gdb) bt
No stack.
(gdb) attach 58435
Attaching to process 58435
Reading symbols from target:/usr/sbin/apache2...
(No debugging symbols found in target:/usr/sbin/apache2)
Reading symbols from target:/lib/x86_64-linux-gnu/libpcre.so.3...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libpcre.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libaprutil-1.so.0...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libaprutil-1.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libapr-1.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libapr-1.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libc.so.6...
Reading symbols from
/usr/lib/debug/.build-id/69/389d485a9793dbe873f0ea2c93e02efaa9aa3d.debug...
Reading symbols from target:/lib/x86_64-linux-gnu/libcrypt.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libcrypt.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libexpat.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libexpat.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libuuid.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libuuid.so.1)
Reading symbols from target:/lib64/ld-linux-x86-64.so.2...
Reading symbols from
/usr/lib/debug/.build-id/61/ef896a699bb1c2e4e231642b2e1688b2f1a61e.debug...
Reading symbols from target:/lib/x86_64-linux-gnu/libm.so.6...
Reading symbols from
/usr/lib/debug/.build-id/27/e82301dba6c3f644404d504e1bb1c97894b433.debug...
Reading symbols from target:/lib/x86_64-linux-gnu/libssl.so.3...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libssl.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libcrypto.so.3...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libcrypto.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libstdc++.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libstdc++.so.6)
Reading symbols from target:/lib/x86_64-linux-gnu/libgcc_s.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libgcc_s.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libz.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libz.so.1)
Reading symbols from target:/usr/lib/apache2/modules/libphp8.2.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/libphp8.2.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libxml2.so.2...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libxml2.so.2)
Reading symbols from target:/lib/x86_64-linux-gnu/libpcre2-8.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libpcre2-8.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libsodium.so.23...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libsodium.so.23)
Reading symbols from target:/lib/x86_64-linux-gnu/libargon2.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libargon2.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libicuuc.so.70...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libicuuc.so.70)
Reading symbols from target:/lib/x86_64-linux-gnu/liblzma.so.5...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/liblzma.so.5)
Reading symbols from target:/lib/x86_64-linux-gnu/libicudata.so.70...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libicudata.so.70)
Reading symbols from target:/usr/lib/php/20220829/opcache.so...
(No debugging symbols found in target:/usr/lib/php/20220829/opcache.so)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_malloc_internal.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_malloc_internal.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_base.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_base.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_spinlock_wait.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_spinlock_wait.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_raw_logging_internal.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_raw_logging_internal.so.20210324)
Reading symbols from target:/usr/lib/apache2/modules/mod_access_compat.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_access_compat.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_alias.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_alias.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_auth_basic.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_auth_basic.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_authn_core.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_authn_core.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_authn_file.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_authn_file.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_authz_core.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_authz_core.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_authz_host.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_authz_host.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_authz_user.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_authz_user.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_autoindex.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_autoindex.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_deflate.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_deflate.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_dir.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_dir.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_env.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_env.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_filter.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_filter.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_mime.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_mime.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_mpm_prefork.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_mpm_prefork.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_negotiation.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_negotiation.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_reqtimeout.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_reqtimeout.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_setenvif.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_setenvif.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_status.so...
(No debugging symbols found in
target:/usr/lib/apache2/modules/mod_status.so)
Reading symbols from target:/usr/lib/php/20220829/gd.so...
(No debugging symbols found in target:/usr/lib/php/20220829/gd.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libgd.so.3...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libgd.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libpng16.so.16...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libpng16.so.16)
Reading symbols from target:/lib/x86_64-linux-gnu/libfontconfig.so.1...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libfontconfig.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libfreetype.so.6...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libfreetype.so.6)
Reading symbols from target:/lib/x86_64-linux-gnu/libjpeg.so.8...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libjpeg.so.8)
Reading symbols from target:/lib/x86_64-linux-gnu/libXpm.so.4...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libXpm.so.4)
Reading symbols from target:/lib/x86_64-linux-gnu/libtiff.so.5...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libtiff.so.5)
Reading symbols from target:/lib/x86_64-linux-gnu/libwebp.so.7...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libwebp.so.7)
Reading symbols from target:/lib/x86_64-linux-gnu/libheif.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libheif.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libavif.so.13...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libavif.so.13)
Reading symbols from target:/lib/x86_64-linux-gnu/libbrotlidec.so.1...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libbrotlidec.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libX11.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libX11.so.6)
Reading symbols from target:/lib/x86_64-linux-gnu/libzstd.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libzstd.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libjbig.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libjbig.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libdeflate.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libdeflate.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libaom.so.3...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libaom.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libde265.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libde265.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libx265.so.199...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libx265.so.199)
Reading symbols from target:/lib/x86_64-linux-gnu/libdav1d.so.5...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libdav1d.so.5)
Reading symbols from target:/lib/x86_64-linux-gnu/libgav1.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libgav1.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libyuv.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libyuv.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libbrotlicommon.so.1...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libbrotlicommon.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libxcb.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libxcb.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libpthread.so.0...
Reading symbols from target:/lib/x86_64-linux-gnu/libnuma.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libnuma.so.1)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_synchronization.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_synchronization.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libXau.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libXau.so.6)
Reading symbols from target:/lib/x86_64-linux-gnu/libXdmcp.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libXdmcp.so.6)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_graphcycles_internal.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_graphcycles_internal.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_stacktrace.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_stacktrace.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_symbolize.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_symbolize.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_time.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_time.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libbsd.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libbsd.so.0)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_debugging_internal.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_debugging_internal.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_demangle_internal.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_demangle_internal.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_strings.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_strings.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_time_zone.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_time_zone.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_int128.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_int128.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libmd.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libmd.so.0)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_strings_internal.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_strings_internal.so.20210324)
Reading symbols from
target:/lib/x86_64-linux-gnu/libabsl_throw_delegate.so.20210324...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libabsl_throw_delegate.so.20210324)
Reading symbols from target:/usr/lib/php/20220829/mbstring.so...
(No debugging symbols found in target:/usr/lib/php/20220829/mbstring.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libonig.so.5...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libonig.so.5)
Reading symbols from target:/usr/lib/php/20220829/exif.so...
(No debugging symbols found in target:/usr/lib/php/20220829/exif.so)
Reading symbols from target:/usr/lib/php/20220829/pdo.so...
(No debugging symbols found in target:/usr/lib/php/20220829/pdo.so)
Reading symbols from target:/usr/lib/php/20220829/xml.so...
(No debugging symbols found in target:/usr/lib/php/20220829/xml.so)
Reading symbols from target:/usr/lib/php/20220829/calendar.so...
(No debugging symbols found in target:/usr/lib/php/20220829/calendar.so)
Reading symbols from target:/usr/lib/php/20220829/ctype.so...
(No debugging symbols found in target:/usr/lib/php/20220829/ctype.so)
Reading symbols from target:/usr/lib/php/20220829/curl.so...
(No debugging symbols found in target:/usr/lib/php/20220829/curl.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libcurl.so.4...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libcurl.so.4)
Reading symbols from target:/lib/x86_64-linux-gnu/libnghttp2.so.14...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libnghttp2.so.14)
Reading symbols from target:/lib/x86_64-linux-gnu/libidn2.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libidn2.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/librtmp.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/librtmp.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libssh.so.4...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libssh.so.4)
Reading symbols from target:/lib/x86_64-linux-gnu/libpsl.so.5...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libpsl.so.5)
Reading symbols from target:/lib/x86_64-linux-gnu/libgssapi_krb5.so.2...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libgssapi_krb5.so.2)
Reading symbols from target:/lib/x86_64-linux-gnu/libldap-2.5.so.0...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libldap-2.5.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/liblber-2.5.so.0...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/liblber-2.5.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libunistring.so.2...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libunistring.so.2)
Reading symbols from target:/lib/x86_64-linux-gnu/libgnutls.so.30...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libgnutls.so.30)
Reading symbols from target:/lib/x86_64-linux-gnu/libhogweed.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libhogweed.so.6)
Reading symbols from target:/lib/x86_64-linux-gnu/libnettle.so.8...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libnettle.so.8)
Reading symbols from target:/lib/x86_64-linux-gnu/libgmp.so.10...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libgmp.so.10)
Reading symbols from target:/lib/x86_64-linux-gnu/libkrb5.so.3...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libkrb5.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libk5crypto.so.3...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libk5crypto.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libcom_err.so.2...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libcom_err.so.2)
Reading symbols from target:/lib/x86_64-linux-gnu/libkrb5support.so.0...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libkrb5support.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libsasl2.so.2...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libsasl2.so.2)
Reading symbols from target:/lib/x86_64-linux-gnu/libp11-kit.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libp11-kit.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libtasn1.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libtasn1.so.6)
Reading symbols from target:/lib/x86_64-linux-gnu/libkeyutils.so.1...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libkeyutils.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libresolv.so.2...
Reading symbols from
/usr/lib/debug/.build-id/7f/d7253c61aa6fce2b7e13851c15afa14a5ab160.debug...
Reading symbols from target:/lib/x86_64-linux-gnu/libffi.so.8...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libffi.so.8)
Reading symbols from target:/usr/lib/php/20220829/dom.so...
(No debugging symbols found in target:/usr/lib/php/20220829/dom.so)
Reading symbols from target:/usr/lib/php/20220829/ffi.so...
(No debugging symbols found in target:/usr/lib/php/20220829/ffi.so)
Reading symbols from target:/usr/lib/php/20220829/fileinfo.so...
(No debugging symbols found in target:/usr/lib/php/20220829/fileinfo.so)
Reading symbols from target:/usr/lib/php/20220829/ftp.so...
(No debugging symbols found in target:/usr/lib/php/20220829/ftp.so)
Reading symbols from target:/usr/lib/php/20220829/gettext.so...
(No debugging symbols found in target:/usr/lib/php/20220829/gettext.so)
Reading symbols from target:/usr/lib/php/20220829/iconv.so...
(No debugging symbols found in target:/usr/lib/php/20220829/iconv.so)
Reading symbols from target:/usr/lib/php/20220829/igbinary.so...
(No debugging symbols found in target:/usr/lib/php/20220829/igbinary.so)
Reading symbols from target:/usr/lib/php/20220829/msgpack.so...
(No debugging symbols found in target:/usr/lib/php/20220829/msgpack.so)
Reading symbols from target:/usr/lib/php/20220829/phar.so...
(No debugging symbols found in target:/usr/lib/php/20220829/phar.so)
Reading symbols from target:/usr/lib/php/20220829/posix.so...
(No debugging symbols found in target:/usr/lib/php/20220829/posix.so)
Reading symbols from target:/usr/lib/php/20220829/readline.so...
(No debugging symbols found in target:/usr/lib/php/20220829/readline.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libedit.so.2...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libedit.so.2)
Reading symbols from target:/lib/x86_64-linux-gnu/libtinfo.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libtinfo.so.6)
Reading symbols from target:/usr/lib/php/20220829/shmop.so...
(No debugging symbols found in target:/usr/lib/php/20220829/shmop.so)
Reading symbols from target:/usr/lib/php/20220829/simplexml.so...
(No debugging symbols found in target:/usr/lib/php/20220829/simplexml.so)
Reading symbols from target:/usr/lib/php/20220829/sockets.so...
(No debugging symbols found in target:/usr/lib/php/20220829/sockets.so)
Reading symbols from target:/usr/lib/php/20220829/sysvmsg.so...
(No debugging symbols found in target:/usr/lib/php/20220829/sysvmsg.so)
Reading symbols from target:/usr/lib/php/20220829/sysvsem.so...
(No debugging symbols found in target:/usr/lib/php/20220829/sysvsem.so)
Reading symbols from target:/usr/lib/php/20220829/sysvshm.so...
(No debugging symbols found in target:/usr/lib/php/20220829/sysvshm.so)
Reading symbols from target:/usr/lib/php/20220829/tokenizer.so...
(No debugging symbols found in target:/usr/lib/php/20220829/tokenizer.so)
Reading symbols from target:/usr/lib/php/20220829/xmlreader.so...
(No debugging symbols found in target:/usr/lib/php/20220829/xmlreader.so)
Reading symbols from target:/usr/lib/php/20220829/xmlwriter.so...
(No debugging symbols found in target:/usr/lib/php/20220829/xmlwriter.so)
Reading symbols from target:/usr/lib/php/20220829/xsl.so...
(No debugging symbols found in target:/usr/lib/php/20220829/xsl.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libxslt.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libxslt.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libexslt.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libexslt.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libgcrypt.so.20...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libgcrypt.so.20)
Reading symbols from target:/lib/x86_64-linux-gnu/libgpg-error.so.0...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libgpg-error.so.0)
Reading symbols from target:/usr/lib/php/20220829/zip.so...
(No debugging symbols found in target:/usr/lib/php/20220829/zip.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libzip.so.4...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libzip.so.4)
Reading symbols from target:/lib/x86_64-linux-gnu/libbz2.so.1.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libbz2.so.1.0)
Reading symbols from target:/usr/lib/php/20220829/memcached.so...
(No debugging symbols found in target:/usr/lib/php/20220829/memcached.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libmemcached.so.11...
(No debugging symbols found in
target:/lib/x86_64-linux-gnu/libmemcached.so.11)
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
0x00007ff5ab91674d in __GI___select (nfds=0, readfds=0x0, writefds=0x0,
exceptfds=0x0, timeout=0x7fff2be187b0) at
../sysdeps/unix/sysv/linux/select.c:69
69 ../sysdeps/unix/sysv/linux/select.c: No such file or directory.
(gdb) set follow-fork-mode child
(gdb) continue
Continuing.
bt
where
[Attaching after Thread 0x7ff5ab782780 (LWP 58435) fork to child process
149135]
[New inferior 2 (process 149135)]
[Detaching after fork from parent process 58435]
[Inferior 1 (process 58435) detached]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
bt
Thread 2.1 "apache2" received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x7ff5ab782780 (LWP 149135)]
0x00007ff5aa682ae3 in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
(gdb) bt
#0 0x00007ff5aa682ae3 in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#1 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#2 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#3 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#4 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#5 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#6 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#7 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#8 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#9 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#10 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#11 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#12 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#13 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#14 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#15 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#16 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#17 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#18 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#19 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#20 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#21 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#22 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#23 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#24 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#25 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#26 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#27 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#28 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#29 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#30 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#31 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#32 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#33 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#34 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#35 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#36 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#37 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#38 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#39 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#40 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#41 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#42 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#43 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
--Type for more, q to quit, c to continue without paging--c
#44 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#45 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#46 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#47 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#48 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#49 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#50 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so|
|[.....]|
|
#2582 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#2583 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#2584 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#2585 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#2586 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#2587 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#2588 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#2589 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#2590 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#2591 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#2592 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#2593 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#2594 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#2595 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#2596 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
^C#2597 0x00007ff5aa684b3f in ?? (Quit
(gdb) bt
#0 0x00007ff5aa682ae3 in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#1 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#2 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#3 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#4 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#5 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#6 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#7 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#8 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#9 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#10 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#11 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#12 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#13 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#14 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#15 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#16 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#17 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#18 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#19 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#20 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#21 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#22 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#23 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#24 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#25 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#26 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#27 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#28 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#29 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#30 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#31 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#32 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#33 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#34 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#35 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#36 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#37 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#38 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#39 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#40 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#41 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#42 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#43 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
--Type for more, q to quit, c to continue without paging--q
Quit
(gdb) bt
#0 0x00007ff5aa682ae3 in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#1 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#2 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#3 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#4 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#5 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#6 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#7 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#8 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#9 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#10 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#11 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#12 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#13 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#14 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#15 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#16 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#17 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#18 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#19 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#20 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#21 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#22 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#23 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#24 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#25 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#26 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#27 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#28 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#29 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#30 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#31 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#32 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#33 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#34 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#35 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#36 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#37 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#38 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#39 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#40 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#41 0x00007ff5aa684b3f in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#42 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
#43 0x00007ff5aa68464d in ?? () from
target:/usr/lib/apache2/modules/libphp8.2.so
--Type for more, q to quit, c to continue without paging--q
Quit
(gdb) exit
A debugging session is active.
Inferior 2 [process 149135] will be detached.
Quit anyway? (y or n) y
Detaching from program: target:/usr/sbin/apache2, process 149135
[Inferior 2 (process 149135) detached]
***@***.***:~$|
||
|
Thank you. It looks like a stack overflow due to infinite recursion between two functions in php.
|
I see you updated your OP to say you're using tracing JIT, I thought you weren't using the JIT. Are you able to try if the bug still occurs after disabling the JIT? |
Message ID: ***@***.***>
in red, what you asked.
Best regards
Pierre Frappé
… *
1. JIT
I see you updated your OP to say you're using tracing JIT, I
thought you weren't using the JIT. Are you able to try if the bug
still occurs after disabling the JIT?
I add (because this line didn't exist) : opcache.jit=0 in my
etc/php/php8.2/apache2/php.ini and reload apache2
When in php I ask ini_get('opcache.jit') I get '0'
*I retry to crash... and it crashes excatly the same. *
After that, I commented the opcache.jit and reload apache2.
2. Debug
2.1 in bash execute: |export
DEBUGINFOD_URLS="https://debuginfod.ubuntu.com"|
|I'm not aware of bash... so id did this :|
|- create a text file containing :|
|#!/bin/bash
export DEBUGINFOD_URLS="https://debuginfod.ubuntu.com"|
|- save in my /usr/bin as 'bug10430.sh' file|
|- execute in command line : bash /usr/bin/bug10430.sh|
2.2 start gdb, but before attaching type: set debuginfod enabled on
o now follow the same steps from my previous post (seting the
follow fork mode, attaching, etc...)
If gdb asks you if you want to use debuginfod answer y
This should hopefully give us more than just addresses to work
with.
***@***.***:/bin$ sudo gdb
[sudo] password for synergaia:
GNU gdb (Ubuntu 12.1-0ubuntu1~22.04) 12.1
Copyright (C) 2022 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.
For help, type "help".
Type "apropos word" to search for commands related to "word".
*(gdb) set debuginfod enabled on*
(gdb) attache 975
Undefined command: "attache". Try "help".
*(gdb) attach 975*
Attaching to process 975
Reading symbols from target:/usr/sbin/apache2...
(No debugging symbols found in target:/usr/sbin/apache2)
Reading symbols from target:/lib/x86_64-linux-gnu/libpcre.so.3...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libpcre.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libaprutil-1.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libaprutil-1.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libapr-1.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libapr-1.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libc.so.6...
Reading symbols from /usr/lib/debug/.build-id/69/389d485a9793dbe873f0ea2c93e02efaa9aa3d.debug...
Reading symbols from target:/lib/x86_64-linux-gnu/libcrypt.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libcrypt.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libexpat.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libexpat.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libuuid.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libuuid.so.1)
Reading symbols from target:/lib64/ld-linux-x86-64.so.2...
Reading symbols from /usr/lib/debug/.build-id/61/ef896a699bb1c2e4e231642b2e1688b2f1a61e.debug...
Reading symbols from target:/lib/x86_64-linux-gnu/libm.so.6...
Reading symbols from /usr/lib/debug/.build-id/27/e82301dba6c3f644404d504e1bb1c97894b433.debug...
Reading symbols from target:/lib/x86_64-linux-gnu/libssl.so.3...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libssl.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libcrypto.so.3...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libcrypto.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libstdc++.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libstdc++.so.6)
Reading symbols from target:/lib/x86_64-linux-gnu/libgcc_s.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libgcc_s.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libz.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libz.so.1)
Reading symbols from target:/usr/lib/apache2/modules/libphp8.2.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/libphp8.2.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libxml2.so.2...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libxml2.so.2)
Reading symbols from target:/lib/x86_64-linux-gnu/libpcre2-8.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libpcre2-8.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libsodium.so.23...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libsodium.so.23)
Reading symbols from target:/lib/x86_64-linux-gnu/libargon2.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libargon2.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libicuuc.so.70...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libicuuc.so.70)
Reading symbols from target:/lib/x86_64-linux-gnu/liblzma.so.5...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/liblzma.so.5)
Reading symbols from target:/lib/x86_64-linux-gnu/libicudata.so.70...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libicudata.so.70)
Reading symbols from target:/usr/lib/php/20220829/opcache.so...
(No debugging symbols found in target:/usr/lib/php/20220829/opcache.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libabsl_malloc_internal.so.20210324...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libabsl_malloc_internal.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libabsl_base.so.20210324...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libabsl_base.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libabsl_spinlock_wait.so.20210324...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libabsl_spinlock_wait.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libabsl_raw_logging_internal.so.20210324...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libabsl_raw_logging_internal.so.20210324)
Reading symbols from target:/usr/lib/apache2/modules/mod_access_compat.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_access_compat.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_alias.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_alias.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_auth_basic.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_auth_basic.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_authn_core.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_authn_core.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_authn_file.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_authn_file.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_authz_core.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_authz_core.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_authz_host.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_authz_host.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_authz_user.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_authz_user.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_autoindex.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_autoindex.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_deflate.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_deflate.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_dir.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_dir.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_env.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_env.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_filter.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_filter.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_mime.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_mime.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_mpm_prefork.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_mpm_prefork.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_negotiation.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_negotiation.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_reqtimeout.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_reqtimeout.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_setenvif.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_setenvif.so)
Reading symbols from target:/usr/lib/apache2/modules/mod_status.so...
(No debugging symbols found in target:/usr/lib/apache2/modules/mod_status.so)
Reading symbols from target:/usr/lib/php/20220829/gd.so...
(No debugging symbols found in target:/usr/lib/php/20220829/gd.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libgd.so.3...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libgd.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libpng16.so.16...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libpng16.so.16)
Reading symbols from target:/lib/x86_64-linux-gnu/libfontconfig.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libfontconfig.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libfreetype.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libfreetype.so.6)
Reading symbols from target:/lib/x86_64-linux-gnu/libjpeg.so.8...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libjpeg.so.8)
Reading symbols from target:/lib/x86_64-linux-gnu/libXpm.so.4...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libXpm.so.4)
Reading symbols from target:/lib/x86_64-linux-gnu/libtiff.so.5...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libtiff.so.5)
Reading symbols from target:/lib/x86_64-linux-gnu/libwebp.so.7...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libwebp.so.7)
Reading symbols from target:/lib/x86_64-linux-gnu/libheif.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libheif.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libavif.so.13...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libavif.so.13)
Reading symbols from target:/lib/x86_64-linux-gnu/libbrotlidec.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libbrotlidec.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libX11.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libX11.so.6)
Reading symbols from target:/lib/x86_64-linux-gnu/libzstd.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libzstd.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libjbig.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libjbig.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libdeflate.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libdeflate.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libaom.so.3...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libaom.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libde265.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libde265.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libx265.so.199...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libx265.so.199)
Reading symbols from target:/lib/x86_64-linux-gnu/libdav1d.so.5...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libdav1d.so.5)
Reading symbols from target:/lib/x86_64-linux-gnu/libgav1.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libgav1.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libyuv.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libyuv.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libbrotlicommon.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libbrotlicommon.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libxcb.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libxcb.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libpthread.so.0...
Reading symbols from target:/lib/x86_64-linux-gnu/libnuma.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libnuma.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libabsl_synchronization.so.20210324...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libabsl_synchronization.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libXau.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libXau.so.6)
Reading symbols from target:/lib/x86_64-linux-gnu/libXdmcp.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libXdmcp.so.6)
Reading symbols from target:/lib/x86_64-linux-gnu/libabsl_graphcycles_internal.so.20210324...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libabsl_graphcycles_internal.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libabsl_stacktrace.so.20210324...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libabsl_stacktrace.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libabsl_symbolize.so.20210324...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libabsl_symbolize.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libabsl_time.so.20210324...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libabsl_time.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libbsd.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libbsd.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libabsl_debugging_internal.so.20210324...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libabsl_debugging_internal.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libabsl_demangle_internal.so.20210324...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libabsl_demangle_internal.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libabsl_strings.so.20210324...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libabsl_strings.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libabsl_time_zone.so.20210324...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libabsl_time_zone.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libabsl_int128.so.20210324...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libabsl_int128.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libmd.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libmd.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libabsl_strings_internal.so.20210324...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libabsl_strings_internal.so.20210324)
Reading symbols from target:/lib/x86_64-linux-gnu/libabsl_throw_delegate.so.20210324...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libabsl_throw_delegate.so.20210324)
Reading symbols from target:/usr/lib/php/20220829/mbstring.so...
(No debugging symbols found in target:/usr/lib/php/20220829/mbstring.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libonig.so.5...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libonig.so.5)
Reading symbols from target:/usr/lib/php/20220829/exif.so...
(No debugging symbols found in target:/usr/lib/php/20220829/exif.so)
Reading symbols from target:/usr/lib/php/20220829/pdo.so...
(No debugging symbols found in target:/usr/lib/php/20220829/pdo.so)
Reading symbols from target:/usr/lib/php/20220829/xml.so...
(No debugging symbols found in target:/usr/lib/php/20220829/xml.so)
Reading symbols from target:/usr/lib/php/20220829/calendar.so...
(No debugging symbols found in target:/usr/lib/php/20220829/calendar.so)
Reading symbols from target:/usr/lib/php/20220829/ctype.so...
(No debugging symbols found in target:/usr/lib/php/20220829/ctype.so)
Reading symbols from target:/usr/lib/php/20220829/curl.so...
(No debugging symbols found in target:/usr/lib/php/20220829/curl.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libcurl.so.4...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libcurl.so.4)
Reading symbols from target:/lib/x86_64-linux-gnu/libnghttp2.so.14...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libnghttp2.so.14)
Reading symbols from target:/lib/x86_64-linux-gnu/libidn2.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libidn2.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/librtmp.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/librtmp.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libssh.so.4...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libssh.so.4)
Reading symbols from target:/lib/x86_64-linux-gnu/libpsl.so.5...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libpsl.so.5)
Reading symbols from target:/lib/x86_64-linux-gnu/libgssapi_krb5.so.2...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libgssapi_krb5.so.2)
Reading symbols from target:/lib/x86_64-linux-gnu/libldap-2.5.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libldap-2.5.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/liblber-2.5.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/liblber-2.5.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libunistring.so.2...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libunistring.so.2)
Reading symbols from target:/lib/x86_64-linux-gnu/libgnutls.so.30...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libgnutls.so.30)
Reading symbols from target:/lib/x86_64-linux-gnu/libhogweed.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libhogweed.so.6)
Reading symbols from target:/lib/x86_64-linux-gnu/libnettle.so.8...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libnettle.so.8)
Reading symbols from target:/lib/x86_64-linux-gnu/libgmp.so.10...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libgmp.so.10)
Reading symbols from target:/lib/x86_64-linux-gnu/libkrb5.so.3...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libkrb5.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libk5crypto.so.3...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libk5crypto.so.3)
Reading symbols from target:/lib/x86_64-linux-gnu/libcom_err.so.2...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libcom_err.so.2)
Reading symbols from target:/lib/x86_64-linux-gnu/libkrb5support.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libkrb5support.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libsasl2.so.2...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libsasl2.so.2)
Reading symbols from target:/lib/x86_64-linux-gnu/libp11-kit.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libp11-kit.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libtasn1.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libtasn1.so.6)
Reading symbols from target:/lib/x86_64-linux-gnu/libkeyutils.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libkeyutils.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libresolv.so.2...
Reading symbols from /usr/lib/debug/.build-id/7f/d7253c61aa6fce2b7e13851c15afa14a5ab160.debug...
Reading symbols from target:/lib/x86_64-linux-gnu/libffi.so.8...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libffi.so.8)
Reading symbols from target:/usr/lib/php/20220829/dom.so...
(No debugging symbols found in target:/usr/lib/php/20220829/dom.so)
Reading symbols from target:/usr/lib/php/20220829/ffi.so...
(No debugging symbols found in target:/usr/lib/php/20220829/ffi.so)
Reading symbols from target:/usr/lib/php/20220829/fileinfo.so...
(No debugging symbols found in target:/usr/lib/php/20220829/fileinfo.so)
Reading symbols from target:/usr/lib/php/20220829/ftp.so...
(No debugging symbols found in target:/usr/lib/php/20220829/ftp.so)
Reading symbols from target:/usr/lib/php/20220829/gettext.so...
(No debugging symbols found in target:/usr/lib/php/20220829/gettext.so)
Reading symbols from target:/usr/lib/php/20220829/iconv.so...
(No debugging symbols found in target:/usr/lib/php/20220829/iconv.so)
Reading symbols from target:/usr/lib/php/20220829/igbinary.so...
(No debugging symbols found in target:/usr/lib/php/20220829/igbinary.so)
Reading symbols from target:/usr/lib/php/20220829/msgpack.so...
(No debugging symbols found in target:/usr/lib/php/20220829/msgpack.so)
Reading symbols from target:/usr/lib/php/20220829/phar.so...
(No debugging symbols found in target:/usr/lib/php/20220829/phar.so)
Reading symbols from target:/usr/lib/php/20220829/posix.so...
(No debugging symbols found in target:/usr/lib/php/20220829/posix.so)
Reading symbols from target:/usr/lib/php/20220829/readline.so...
(No debugging symbols found in target:/usr/lib/php/20220829/readline.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libedit.so.2...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libedit.so.2)
Reading symbols from target:/lib/x86_64-linux-gnu/libtinfo.so.6...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libtinfo.so.6)
Reading symbols from target:/usr/lib/php/20220829/shmop.so...
(No debugging symbols found in target:/usr/lib/php/20220829/shmop.so)
Reading symbols from target:/usr/lib/php/20220829/simplexml.so...
(No debugging symbols found in target:/usr/lib/php/20220829/simplexml.so)
Reading symbols from target:/usr/lib/php/20220829/sockets.so...
(No debugging symbols found in target:/usr/lib/php/20220829/sockets.so)
Reading symbols from target:/usr/lib/php/20220829/sysvmsg.so...
(No debugging symbols found in target:/usr/lib/php/20220829/sysvmsg.so)
Reading symbols from target:/usr/lib/php/20220829/sysvsem.so...
(No debugging symbols found in target:/usr/lib/php/20220829/sysvsem.so)
Reading symbols from target:/usr/lib/php/20220829/sysvshm.so...
(No debugging symbols found in target:/usr/lib/php/20220829/sysvshm.so)
Reading symbols from target:/usr/lib/php/20220829/tokenizer.so...
(No debugging symbols found in target:/usr/lib/php/20220829/tokenizer.so)
Reading symbols from target:/usr/lib/php/20220829/xmlreader.so...
(No debugging symbols found in target:/usr/lib/php/20220829/xmlreader.so)
Reading symbols from target:/usr/lib/php/20220829/xmlwriter.so...
(No debugging symbols found in target:/usr/lib/php/20220829/xmlwriter.so)
Reading symbols from target:/usr/lib/php/20220829/xsl.so...
(No debugging symbols found in target:/usr/lib/php/20220829/xsl.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libxslt.so.1...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libxslt.so.1)
Reading symbols from target:/lib/x86_64-linux-gnu/libexslt.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libexslt.so.0)
Reading symbols from target:/lib/x86_64-linux-gnu/libgcrypt.so.20...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libgcrypt.so.20)
Reading symbols from target:/lib/x86_64-linux-gnu/libgpg-error.so.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libgpg-error.so.0)
Reading symbols from target:/usr/lib/php/20220829/zip.so...
(No debugging symbols found in target:/usr/lib/php/20220829/zip.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libzip.so.4...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libzip.so.4)
Reading symbols from target:/lib/x86_64-linux-gnu/libbz2.so.1.0...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libbz2.so.1.0)
Reading symbols from target:/usr/lib/php/20220829/memcached.so...
(No debugging symbols found in target:/usr/lib/php/20220829/memcached.so)
Reading symbols from target:/lib/x86_64-linux-gnu/libmemcached.so.11...
(No debugging symbols found in target:/lib/x86_64-linux-gnu/libmemcached.so.11)
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
0x00007f7c29e4474d in __GI___select (nfds=0, readfds=0x0, writefds=0x0, exceptfds=0x0, timeout=0x7ffd3c662900) at ../sysdeps/unix/sysv/linux/select.c:69
69 ../sysdeps/unix/sysv/linux/select.c: No such file or directory.
(gdb) set follow_fork_mode child
No symbol "follow_fork_mode" in current context.
*(gdb) set follow-fork-mode child****(gdb) continue*
Continuing.
[Attaching after Thread 0x7f7c29cb0780 (LWP 975) fork to child process 10557]
[New inferior 2 (process 10557)]
[Detaching after fork from parent process 975]
[Inferior 1 (process 975) detached]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
In error_log :
[Sat Jan 28 14:43:48.654752 2023] [mpm_prefork:notice] [pid 975] AH00171: Graceful restart requested, doing restart
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message
PHP Warning: Module "exif" is already loaded in Unknown on line 0
PHP Warning: Module "gd" is already loaded in Unknown on line 0
PHP Warning: Module "mbstring" is already loaded in Unknown on line 0
[Sat Jan 28 14:43:48.768311 2023] [mpm_prefork:notice] [pid 975] AH00163: Apache/2.4.52 (Ubuntu) configured -- resuming normal operations
[Sat Jan 28 14:43:48.768356 2023] [core:notice] [pid 975] AH00094: Command line: '/usr/sbin/apache2'
[Sat Jan 28 14:45:24.195263 2023] [php:notice] [pid 9552] [client 114.119.151.84:46630] docum : connexion anonyme, referer:http://81.66.108.70/docum/index.php?d=document/e64f73fbdb417534ee26db22b92c8b6f&e=consulter&w=popup&o=4bfc0132c59bc527efab275a404152e594d1acd5
[Sat Jan 28 14:51:56.834655 2023] [php:notice] [pid 9554] [client 114.119.149.89:59796] docum : connexion anonyme, referer:http://81.66.108.70/docum/index.php?d=document/e64f73fbdb417534ee26db22b92c8b6f&e=consulter&w=popup&o=2929681709aafa1486dc3ae6380a7c498c2e27cd
[Sat Jan 28 14:58:21.340353 2023] [php:notice] [pid 9569] [client 114.119.149.183:47136] docum : connexion anonyme, referer:http://81.66.108.70/docum/index.php?d=document/e64f73fbdb417534ee26db22b92c8b6f&e=consulter&w=popup&o=26e63c0cd4af1781cc6bf1760d09aed3fed58597
[Sat Jan 28 15:05:56.694749 2023] [php:notice] [pid 9552] [client 114.119.154.59:55688] docum : connexion anonyme, referer:http://81.66.108.70/docum/index.php?m=DocumentConsulter&d=document/2f23e875b4e10e19551bf0b1fa56c674&e=consulter
[Sat Jan 28 15:12:42.491259 2023] [php:notice] [pid 9552] [client 114.119.135.152:56800] docum : connexion anonyme, referer:http://81.66.108.70/docum/index.php?d=document/cdd8bd6aec93ee1096798fa81ded771a&e=consulter&w=popup&o=f6457a1307644f17f112f3487e984a2df94424fd
[Sat Jan 28 15:12:48.980853 2023] [core:notice] [pid 975] AH00051: child pid 9553 exit signal Segmentation fault (11), possible coredump in /etc/apache2
[Sat Jan 28 15:12:50.983323 2023] [core:notice] [pid 975] AH00051: child pid 9554 exit signal Segmentation fault (11), possible coredump in /etc/apache2
* Code : bug10430
|
The debug info isn't there with the way you did it. On the command line execute the following commands one after another:
|
Ok sorry !
I just did it.
But gdb didn't respond after bt.
I hope it's not looping while sending dump ? (previous tries, it was the
case on terminal and I needed to interrupt it)
Pierre Frappé
Le 28/01/2023 à 15:40, Niels Dossche a écrit :
…
The debug info isn't there with the way you did it.
What I meant with "in bash" is to execute the export command on the
command line.
To be fully clear I'll give the full steps here:
On the command line execute the following commands one after another:
1. |export DEBUGINFOD_URLS="https://debuginfod.ubuntu.com"|
2. |ps -elf | grep apache2| to find the process ID of apache
3. |sudo gdb| so you get into gdb, everything from now on will be
entered in gdb
4. |set debuginfod enabled on|
5. |set follow-fork-mode child|
6. |attach PROCESS_ID_OF_APACHE_HERE|
7. |continue|
8. trigger the crash in php
9. |bt|
—
Reply to this email directly, view it on GitHub
<#10430 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGCSK2QLMLCGEDCEO6SCHILWUUVUPANCNFSM6AAAAAAUE4Y7LA>.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Weird that it doesn't respond to |
To be sure, I redo from start...
1. I restart my server (on off)
then on Terminal
***@***.****:*~*$ export DEBUGINFOD_URLS="https://debuginfod.ubuntu.com"
***@***.****:*~*$ ps -elf | grep apache2
1 S root 899 1 0 80 0 - 65724 - 18:48 ? 00:00:00 /usr/sbin/*apache2* -k start
5 S www-data 1080 899 0 80 0 - 65873 - 18:48 ? 00:00:00 /usr/sbin/*apache2* -k start
5 S www-data 1082 899 0 80 0 - 65869 - 18:48 ? 00:00:00 /usr/sbin/*apache2* -k start
5 S www-data 3668 899 0 80 0 - 65923 - 18:51 ? 00:00:00 /usr/sbin/*apache2* -k start
5 S www-data 3724 899 0 80 0 - 65897 - 18:51 ? 00:00:00 /usr/sbin/*apache2* -k start
5 S www-data 3726 899 0 80 0 - 65845 - 18:51 ? 00:00:00 /usr/sbin/*apache2* -k start
5 S www-data 3727 899 0 80 0 - 65845 - 18:51 ? 00:00:00 /usr/sbin/*apache2* -k start
5 S www-data 3808 899 0 80 0 - 65897 - 18:52 ? 00:00:00 /usr/sbin/*apache2* -k start
5 S www-data 3809 899 0 80 0 - 65850 - 18:52 ? 00:00:00 /usr/sbin/*apache2* -k start
5 S www-data 3810 899 0 80 0 - 65845 - 18:52 ? 00:00:00 /usr/sbin/*apache2* -k start
5 S www-data 3850 899 0 80 0 - 65840 - 18:53 ? 00:00:00 /usr/sbin/*apache2* -k start
0 S synerga+ 3881 3542 0 80 0 - 4466 pipe_r 18:53 pts/3 00:00:00 grep --color=auto*apache2*
***@***.****:*~*$ sudo gdb
[sudo] password for synergaia:
*GNU gdb (Ubuntu 12.1-0ubuntu1~22.04) 12.1*
Copyright (C) 2022 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.
For help, type "help".
Type "apropos word" to search for commands related to "word".
(gdb) set debuginfod enabled on
(gdb) set follow-fork-mode child
(gdb) attach 899
Attaching to process 899
Reading symbols fromtarget:/usr/sbin/apache2...
(No debugging symbols found intarget:/usr/sbin/apache2)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libpcre.so.3...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libpcre.so.3)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libaprutil-1.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libaprutil-1.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libapr-1.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libapr-1.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libc.so.6...
Reading symbols from/usr/lib/debug/.build-id/69/389d485a9793dbe873f0ea2c93e02efaa9aa3d.debug...
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libcrypt.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libcrypt.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libexpat.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libexpat.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libuuid.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libuuid.so.1)
Reading symbols fromtarget:/lib64/ld-linux-x86-64.so.2...
Reading symbols from/usr/lib/debug/.build-id/61/ef896a699bb1c2e4e231642b2e1688b2f1a61e.debug...
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libm.so.6...
Reading symbols from/usr/lib/debug/.build-id/27/e82301dba6c3f644404d504e1bb1c97894b433.debug...
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libssl.so.3...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libssl.so.3)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libcrypto.so.3...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libcrypto.so.3)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libstdc++.so.6...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libstdc++.so.6)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libgcc_s.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libgcc_s.so.1)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_access_compat.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_access_compat.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_alias.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_alias.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_auth_basic.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_auth_basic.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_authn_core.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_authn_core.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_authn_file.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_authn_file.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_authz_core.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_authz_core.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_authz_host.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_authz_host.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_authz_user.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_authz_user.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_autoindex.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_autoindex.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_deflate.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_deflate.so)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libz.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libz.so.1)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_dir.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_dir.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_env.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_env.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_filter.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_filter.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_mime.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_mime.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_mpm_prefork.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_mpm_prefork.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_negotiation.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_negotiation.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/libphp8.2.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/libphp8.2.so)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libxml2.so.2...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libxml2.so.2)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libpcre2-8.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libpcre2-8.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libsodium.so.23...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libsodium.so.23)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libargon2.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libargon2.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libicuuc.so.70...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libicuuc.so.70)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/liblzma.so.5...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/liblzma.so.5)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libicudata.so.70...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libicudata.so.70)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_reqtimeout.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_reqtimeout.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_setenvif.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_setenvif.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_status.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_status.so)
Reading symbols fromtarget:/usr/lib/php/20220829/opcache.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/opcache.so)
Reading symbols fromtarget:/usr/lib/php/20220829/gd.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/gd.so)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libgd.so.3...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libgd.so.3)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libpng16.so.16...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libpng16.so.16)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libfontconfig.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libfontconfig.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libfreetype.so.6...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libfreetype.so.6)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libjpeg.so.8...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libjpeg.so.8)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libXpm.so.4...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libXpm.so.4)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libtiff.so.5...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libtiff.so.5)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libwebp.so.7...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libwebp.so.7)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libheif.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libheif.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libavif.so.13...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libavif.so.13)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libbrotlidec.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libbrotlidec.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libX11.so.6...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libX11.so.6)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libzstd.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libzstd.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libjbig.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libjbig.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libdeflate.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libdeflate.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libaom.so.3...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libaom.so.3)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libde265.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libde265.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libx265.so.199...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libx265.so.199)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libdav1d.so.5...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libdav1d.so.5)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libgav1.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libgav1.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libyuv.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libyuv.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libbrotlicommon.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libbrotlicommon.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libxcb.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libxcb.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libpthread.so.0...
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libnuma.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libnuma.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_synchronization.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_synchronization.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libXau.so.6...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libXau.so.6)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libXdmcp.so.6...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libXdmcp.so.6)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_graphcycles_internal.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_graphcycles_internal.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_stacktrace.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_stacktrace.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_symbolize.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_symbolize.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_time.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_time.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_malloc_internal.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_malloc_internal.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_base.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_base.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_spinlock_wait.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_spinlock_wait.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_raw_logging_internal.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_raw_logging_internal.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libbsd.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libbsd.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_debugging_internal.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_debugging_internal.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_demangle_internal.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_demangle_internal.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_strings.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_strings.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_time_zone.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_time_zone.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_int128.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_int128.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libmd.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libmd.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_strings_internal.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_strings_internal.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_throw_delegate.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_throw_delegate.so.20210324)
Reading symbols fromtarget:/usr/lib/php/20220829/mbstring.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/mbstring.so)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libonig.so.5...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libonig.so.5)
Reading symbols fromtarget:/usr/lib/php/20220829/exif.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/exif.so)
Reading symbols fromtarget:/usr/lib/php/20220829/pdo.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/pdo.so)
Reading symbols fromtarget:/usr/lib/php/20220829/xml.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/xml.so)
Reading symbols fromtarget:/usr/lib/php/20220829/calendar.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/calendar.so)
Reading symbols fromtarget:/usr/lib/php/20220829/ctype.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/ctype.so)
Reading symbols fromtarget:/usr/lib/php/20220829/curl.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/curl.so)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libcurl.so.4...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libcurl.so.4)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libnghttp2.so.14...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libnghttp2.so.14)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libidn2.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libidn2.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/librtmp.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/librtmp.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libssh.so.4...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libssh.so.4)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libpsl.so.5...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libpsl.so.5)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libgssapi_krb5.so.2...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libgssapi_krb5.so.2)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libldap-2.5.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libldap-2.5.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/liblber-2.5.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/liblber-2.5.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libunistring.so.2...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libunistring.so.2)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libgnutls.so.30...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libgnutls.so.30)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libhogweed.so.6...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libhogweed.so.6)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libnettle.so.8...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libnettle.so.8)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libgmp.so.10...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libgmp.so.10)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libkrb5.so.3...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libkrb5.so.3)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libk5crypto.so.3...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libk5crypto.so.3)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libcom_err.so.2...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libcom_err.so.2)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libkrb5support.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libkrb5support.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libsasl2.so.2...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libsasl2.so.2)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libp11-kit.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libp11-kit.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libtasn1.so.6...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libtasn1.so.6)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libkeyutils.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libkeyutils.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libresolv.so.2...
Reading symbols from/usr/lib/debug/.build-id/7f/d7253c61aa6fce2b7e13851c15afa14a5ab160.debug...
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libffi.so.8...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libffi.so.8)
Reading symbols fromtarget:/usr/lib/php/20220829/dom.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/dom.so)
Reading symbols fromtarget:/usr/lib/php/20220829/ffi.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/ffi.so)
Reading symbols fromtarget:/usr/lib/php/20220829/fileinfo.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/fileinfo.so)
Reading symbols fromtarget:/usr/lib/php/20220829/ftp.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/ftp.so)
Reading symbols fromtarget:/usr/lib/php/20220829/gettext.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/gettext.so)
Reading symbols fromtarget:/usr/lib/php/20220829/iconv.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/iconv.so)
Reading symbols fromtarget:/usr/lib/php/20220829/igbinary.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/igbinary.so)
Reading symbols fromtarget:/usr/lib/php/20220829/msgpack.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/msgpack.so)
Reading symbols fromtarget:/usr/lib/php/20220829/phar.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/phar.so)
Reading symbols fromtarget:/usr/lib/php/20220829/posix.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/posix.so)
Reading symbols fromtarget:/usr/lib/php/20220829/readline.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/readline.so)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libedit.so.2...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libedit.so.2)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libtinfo.so.6...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libtinfo.so.6)
Reading symbols fromtarget:/usr/lib/php/20220829/shmop.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/shmop.so)
Reading symbols fromtarget:/usr/lib/php/20220829/simplexml.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/simplexml.so)
Reading symbols fromtarget:/usr/lib/php/20220829/sockets.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/sockets.so)
Reading symbols fromtarget:/usr/lib/php/20220829/sysvmsg.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/sysvmsg.so)
Reading symbols fromtarget:/usr/lib/php/20220829/sysvsem.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/sysvsem.so)
Reading symbols fromtarget:/usr/lib/php/20220829/sysvshm.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/sysvshm.so)
Reading symbols fromtarget:/usr/lib/php/20220829/tokenizer.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/tokenizer.so)
Reading symbols fromtarget:/usr/lib/php/20220829/xmlreader.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/xmlreader.so)
Reading symbols fromtarget:/usr/lib/php/20220829/xmlwriter.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/xmlwriter.so)
Reading symbols fromtarget:/usr/lib/php/20220829/xsl.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/xsl.so)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libxslt.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libxslt.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libexslt.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libexslt.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libgcrypt.so.20...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libgcrypt.so.20)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libgpg-error.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libgpg-error.so.0)
Reading symbols fromtarget:/usr/lib/php/20220829/zip.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/zip.so)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libzip.so.4...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libzip.so.4)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libbz2.so.1.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libbz2.so.1.0)
Reading symbols fromtarget:/usr/lib/php/20220829/memcached.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/memcached.so)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libmemcached.so.11...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libmemcached.so.11)
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
0x00007f3ca7d9574d in__GI___select (nfds=0,readfds=0x0,writefds=0x0,exceptfds=0x0,timeout=0x7ffc92f293f0) at../sysdeps/unix/sysv/linux/select.c:69
69 ../sysdeps/unix/sysv/linux/select.c: No such file or directory.
(gdb) continue
Continuing.
Nothing appears...
However I had on errolog (I triggered twice the crash and, as each time,
I got two seg fault for each crash):
in Errorlog
[Sat Jan 28 18:55:59.767848 2023] [core:notice] [pid 899] AH00051: child
pid 3809 exit signal Segmentation fault (11), possible coredump in
/etc/apache2
[Sat Jan 28 18:56:02.771243 2023] [core:notice] [pid 899] AH00051: child
pid 3850 exit signal Segmentation fault (11), possible coredump in
/etc/apache2
[Sat Jan 28 18:58:20.917991 2023] [core:notice] [pid 899] AH00051: child
pid 1080 exit signal Segmentation fault (11), possible coredump in
/etc/apache2
[Sat Jan 28 18:58:23.920562 2023] [core:notice] [pid 899] AH00051: child
pid 3727 exit signal Segmentation fault (11), possible coredump in
/etc/apache2
After ten minutes wihout new on terminal, I interrupted the gdb and try
bt. I got this on terminal :
^C
Program received signal SIGINT, Interrupt.
0x00007f3ca7d9574d in __GI___select (nfds=0, readfds=0x0, writefds=0x0, exceptfds=0x0, timeout=0x7ffc92f293f0) at ../sysdeps/unix/sysv/linux/select.c:69
69 in ../sysdeps/unix/sysv/linux/select.c
(gdb) bt
#0 0x00007f3ca7d9574d in __GI___select (nfds=0, readfds=0x0, writefds=0x0, exceptfds=0x0, timeout=0x7ffc92f293f0)
at ../sysdeps/unix/sysv/linux/select.c:69
#1 0x00007f3ca7eccc09 in apr_sleep () from target:/lib/x86_64-linux-gnu/libapr-1.so.0
#2 0x000055710f83e095 in ap_wait_or_timeout ()
#3 0x00007f3ca7b58754 in ?? () from target:/usr/lib/apache2/modules/mod_mpm_prefork.so
#4 0x000055710f8370e8 in ap_run_mpm ()
#5 0x000055710f836609 in main ()
(gdb) exit
A debugging session is active.
Inferior 1 [process 899] will be detached.
Quit anyway? (y or n) y
Detaching from program: target:/usr/sbin/apache2, process 899
[Inferior 1 (process 899) detached]
***@***.***:~$
So, if you received a backtrace, I fear it is about the interrupt and
not the crash ?? ...
Le 28/01/2023 à 18:42, Niels Dossche a écrit :
…
Weird that it doesn't respond to |bt|. Did you do |bt| after the
crash? Is it showing any error at all?
—
Reply to this email directly, view it on GitHub
<#10430 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGCSK2VFEMMSIZUMO2ZRX2TWUVLBJANCNFSM6AAAAAAUE4Y7LA>.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
It's hard to say, I feel like you're attaching to the wrong process, or I'm missing something. |
No it could be possible to try something on your server.
SynerGaia is a framework I’ve created. It is open source.
And the problem appears in only one of the applications.
I will create the smallest possible application trying to reproduce the
crash.
I use Couchdb as database and the problem appears with the objects created
from the data read from database.
So I will copy the database and I hope the problem will reproduce...
I will do that on monday.
Thanks for your help !
Have a nice week-end
Pierre Frappé
Le sam. 28 janv. 2023, 19:22, Niels Dossche ***@***.***> a
écrit :
… It's hard to say, I feel like you're attaching to the wrong process, or
I'm missing something.
I'm guessing your application is closed source so I can't test it on my
own machine?
—
Reply to this email directly, view it on GitHub
<#10430 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGCSK2QS2JZX7IBVB2CTCFDWUVPVVANCNFSM6AAAAAAUE4Y7LA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
About a possible wrong attached process, it is my opinion too because the
pid’s of the crashing process (in the error log) are never given on the
terminal.
Le sam. 28 janv. 2023, 19:22, Niels Dossche ***@***.***> a
écrit :
… It's hard to say, I feel like you're attaching to the wrong process, or
I'm missing something.
I'm guessing your application is closed source so I can't test it on my
own machine?
—
Reply to this email directly, view it on GitHub
<#10430 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGCSK2QS2JZX7IBVB2CTCFDWUVPVVANCNFSM6AAAAAAUE4Y7LA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Yesterday I tried to create an extract of my application which could be
sent to you but it never reproduce the crash...
So, in the standard application, I add a fork which reproduce the
problem without using CouchDB (because I wonder whether it could the
problem).
So, I create a short json reproducing the problem. And it crash.
Then just at the begining i put
error_log(getmypid()); sleep(120);
So I get the pid before crash (which always occurs afetr the end of the
script - may be in garbage process ??)
Knowing the pid of my script, I redo gdb and this time I got dump about
"segmentation fault" in gdb.
However, in the error log, the pid of the crash is not the the same pid
as the script...
I hope it will help you.
so below == Terminal ==, == errorlog==, == script ==
Pierre Frappé
=== terminal ======
***@***.****:*~*$ sudo gdb
[sudo] password for synergaia:
*GNU gdb (Ubuntu 12.1-0ubuntu1~22.04) 12.1*
Copyright (C) 2022 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later<http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<https://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word".
(gdb) attach 26492
Attaching to process 26492
Reading symbols fromtarget:/usr/sbin/apache2...
(No debugging symbols found intarget:/usr/sbin/apache2)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libpcre.so.3...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libpcre.so.3)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libaprutil-1.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libaprutil-1.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libapr-1.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libapr-1.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libc.so.6...
Reading symbols from/usr/lib/debug/.build-id/69/389d485a9793dbe873f0ea2c93e02efaa9aa3d.debug...
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libcrypt.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libcrypt.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libexpat.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libexpat.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libuuid.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libuuid.so.1)
Reading symbols fromtarget:/lib64/ld-linux-x86-64.so.2...
Reading symbols from/usr/lib/debug/.build-id/61/ef896a699bb1c2e4e231642b2e1688b2f1a61e.debug...
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libm.so.6...
Reading symbols from/usr/lib/debug/.build-id/27/e82301dba6c3f644404d504e1bb1c97894b433.debug...
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libssl.so.3...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libssl.so.3)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libcrypto.so.3...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libcrypto.so.3)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libstdc++.so.6...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libstdc++.so.6)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libgcc_s.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libgcc_s.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libz.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libz.so.1)
Reading symbols fromtarget:/usr/lib/apache2/modules/libphp8.2.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/libphp8.2.so)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libxml2.so.2...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libxml2.so.2)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libpcre2-8.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libpcre2-8.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libsodium.so.23...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libsodium.so.23)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libargon2.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libargon2.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libicuuc.so.70...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libicuuc.so.70)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/liblzma.so.5...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/liblzma.so.5)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libicudata.so.70...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libicudata.so.70)
Reading symbols fromtarget:/usr/lib/php/20220829/opcache.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/opcache.so)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_malloc_internal.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_malloc_internal.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_base.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_base.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_spinlock_wait.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_spinlock_wait.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_raw_logging_internal.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_raw_logging_internal.so.20210324)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_access_compat.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_access_compat.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_alias.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_alias.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_auth_basic.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_auth_basic.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_authn_core.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_authn_core.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_authn_file.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_authn_file.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_authz_core.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_authz_core.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_authz_host.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_authz_host.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_authz_user.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_authz_user.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_autoindex.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_autoindex.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_deflate.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_deflate.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_dir.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_dir.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_env.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_env.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_filter.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_filter.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_mime.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_mime.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_mpm_prefork.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_mpm_prefork.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_negotiation.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_negotiation.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_reqtimeout.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_reqtimeout.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_setenvif.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_setenvif.so)
Reading symbols fromtarget:/usr/lib/apache2/modules/mod_status.so...
(No debugging symbols found intarget:/usr/lib/apache2/modules/mod_status.so)
Reading symbols fromtarget:/usr/lib/php/20220829/gd.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/gd.so)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libgd.so.3...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libgd.so.3)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libpng16.so.16...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libpng16.so.16)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libfontconfig.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libfontconfig.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libfreetype.so.6...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libfreetype.so.6)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libjpeg.so.8...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libjpeg.so.8)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libXpm.so.4...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libXpm.so.4)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libtiff.so.5...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libtiff.so.5)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libwebp.so.7...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libwebp.so.7)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libheif.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libheif.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libavif.so.13...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libavif.so.13)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libbrotlidec.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libbrotlidec.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libX11.so.6...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libX11.so.6)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libzstd.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libzstd.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libjbig.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libjbig.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libdeflate.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libdeflate.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libaom.so.3...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libaom.so.3)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libde265.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libde265.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libx265.so.199...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libx265.so.199)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libdav1d.so.5...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libdav1d.so.5)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libgav1.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libgav1.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libyuv.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libyuv.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libbrotlicommon.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libbrotlicommon.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libxcb.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libxcb.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libpthread.so.0...
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libnuma.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libnuma.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_synchronization.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_synchronization.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libXau.so.6...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libXau.so.6)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libXdmcp.so.6...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libXdmcp.so.6)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_graphcycles_internal.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_graphcycles_internal.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_stacktrace.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_stacktrace.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_symbolize.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_symbolize.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_time.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_time.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libbsd.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libbsd.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_debugging_internal.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_debugging_internal.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_demangle_internal.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_demangle_internal.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_strings.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_strings.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_time_zone.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_time_zone.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_int128.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_int128.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libmd.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libmd.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_strings_internal.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_strings_internal.so.20210324)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libabsl_throw_delegate.so.20210324...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libabsl_throw_delegate.so.20210324)
Reading symbols fromtarget:/usr/lib/php/20220829/mbstring.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/mbstring.so)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libonig.so.5...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libonig.so.5)
Reading symbols fromtarget:/usr/lib/php/20220829/exif.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/exif.so)
Reading symbols fromtarget:/usr/lib/php/20220829/pdo.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/pdo.so)
Reading symbols fromtarget:/usr/lib/php/20220829/xml.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/xml.so)
Reading symbols fromtarget:/usr/lib/php/20220829/calendar.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/calendar.so)
Reading symbols fromtarget:/usr/lib/php/20220829/ctype.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/ctype.so)
Reading symbols fromtarget:/usr/lib/php/20220829/curl.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/curl.so)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libcurl.so.4...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libcurl.so.4)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libnghttp2.so.14...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libnghttp2.so.14)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libidn2.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libidn2.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/librtmp.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/librtmp.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libssh.so.4...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libssh.so.4)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libpsl.so.5...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libpsl.so.5)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libgssapi_krb5.so.2...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libgssapi_krb5.so.2)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libldap-2.5.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libldap-2.5.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/liblber-2.5.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/liblber-2.5.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libunistring.so.2...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libunistring.so.2)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libgnutls.so.30...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libgnutls.so.30)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libhogweed.so.6...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libhogweed.so.6)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libnettle.so.8...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libnettle.so.8)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libgmp.so.10...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libgmp.so.10)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libkrb5.so.3...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libkrb5.so.3)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libk5crypto.so.3...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libk5crypto.so.3)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libcom_err.so.2...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libcom_err.so.2)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libkrb5support.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libkrb5support.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libsasl2.so.2...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libsasl2.so.2)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libp11-kit.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libp11-kit.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libtasn1.so.6...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libtasn1.so.6)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libkeyutils.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libkeyutils.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libresolv.so.2...
Reading symbols from/usr/lib/debug/.build-id/7f/d7253c61aa6fce2b7e13851c15afa14a5ab160.debug...
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libffi.so.8...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libffi.so.8)
Reading symbols fromtarget:/usr/lib/php/20220829/dom.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/dom.so)
Reading symbols fromtarget:/usr/lib/php/20220829/ffi.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/ffi.so)
Reading symbols fromtarget:/usr/lib/php/20220829/fileinfo.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/fileinfo.so)
Reading symbols fromtarget:/usr/lib/php/20220829/ftp.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/ftp.so)
Reading symbols fromtarget:/usr/lib/php/20220829/gettext.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/gettext.so)
Reading symbols fromtarget:/usr/lib/php/20220829/iconv.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/iconv.so)
Reading symbols fromtarget:/usr/lib/php/20220829/igbinary.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/igbinary.so)
Reading symbols fromtarget:/usr/lib/php/20220829/msgpack.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/msgpack.so)
Reading symbols fromtarget:/usr/lib/php/20220829/phar.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/phar.so)
Reading symbols fromtarget:/usr/lib/php/20220829/posix.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/posix.so)
Reading symbols fromtarget:/usr/lib/php/20220829/readline.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/readline.so)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libedit.so.2...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libedit.so.2)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libtinfo.so.6...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libtinfo.so.6)
Reading symbols fromtarget:/usr/lib/php/20220829/shmop.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/shmop.so)
Reading symbols fromtarget:/usr/lib/php/20220829/simplexml.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/simplexml.so)
Reading symbols fromtarget:/usr/lib/php/20220829/sockets.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/sockets.so)
Reading symbols fromtarget:/usr/lib/php/20220829/sysvmsg.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/sysvmsg.so)
Reading symbols fromtarget:/usr/lib/php/20220829/sysvsem.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/sysvsem.so)
Reading symbols fromtarget:/usr/lib/php/20220829/sysvshm.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/sysvshm.so)
Reading symbols fromtarget:/usr/lib/php/20220829/tokenizer.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/tokenizer.so)
Reading symbols fromtarget:/usr/lib/php/20220829/xmlreader.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/xmlreader.so)
Reading symbols fromtarget:/usr/lib/php/20220829/xmlwriter.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/xmlwriter.so)
Reading symbols fromtarget:/usr/lib/php/20220829/xsl.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/xsl.so)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libxslt.so.1...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libxslt.so.1)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libexslt.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libexslt.so.0)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libgcrypt.so.20...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libgcrypt.so.20)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libgpg-error.so.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libgpg-error.so.0)
Reading symbols fromtarget:/usr/lib/php/20220829/zip.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/zip.so)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libzip.so.4...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libzip.so.4)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libbz2.so.1.0...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libbz2.so.1.0)
Reading symbols fromtarget:/usr/lib/php/20220829/memcached.so...
(No debugging symbols found intarget:/usr/lib/php/20220829/memcached.so)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libmemcached.so.11...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libmemcached.so.11)
Reading symbols fromtarget:/lib/x86_64-linux-gnu/libnss_systemd.so.2...
(No debugging symbols found intarget:/lib/x86_64-linux-gnu/libnss_systemd.so.2)
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
0x00007f972e9a67fa in__GI___clock_nanosleep ***@***.******@***.******@***.******@***.***=0x7ffff56224d0) at../sysdeps/unix/sysv/linux/clock_nanosleep.c:78
78 ../sysdeps/unix/sysv/linux/clock_nanosleep.c: No such file or directory.
(gdb) set follow-fork-mode child
(gdb) continue
Continuing.
Program received signal SIGSEGV, Segmentation fault.
0x00007f972d748bbd in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
(gdb) bt
#00x00007f972d748bbd in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#10x00007f972d74ab3f in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#20x00007f972d74a64d in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#30x00007f972d74a64d in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#40x00007f972d74ab3f in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#50x00007f972d74a64d in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#60x00007f972d74a64d in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#70x00007f972d74ab3f in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#80x00007f972d74a64d in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#90x00007f972d74a64d in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#100x00007f972d74ab3f in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#110x00007f972d74a64d in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#120x00007f972d74a64d in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#130x00007f972d74ab3f in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#140x00007f972d74a64d in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#150x00007f972d74a64d in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#160x00007f972d74ab3f in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#170x00007f972d74a64d in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#180x00007f972d74a64d in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#190x00007f972d74ab3f in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#200x00007f972d74a64d in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#210x00007f972d74a64d in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
#220x00007f972d74ab3f in?? () fromtarget:/usr/lib/apache2/modules/libphp8.2.so
--Type for more, q to quit, c to continue without paging--q
Quit
(gdb)
=== errorlog ===
[Mon Jan 30 10:30:25.956854 2023] [php:notice] [pid 26492] [client 127.0.0.1:60694] 26492, referer:http://localhost/wer/index.php
[Mon Jan 30 10:30:25.997826 2023] [php:notice] [pid 26492] [client 127.0.0.1:60694] waiting 1 mn, referer:http://localhost/wer/index.php
[Mon Jan 30 10:31:39.722246 2023] [php:notice] [pid 26492] [client 127.0.0.1:60694] wake up !, referer:http://localhost/wer/index.php
[Mon Jan 30 10:33:38.140477 2023] [core:notice] [pid 4419] AH00051: child pid 37589 exit signal Segmentation fault (11), possible coredump in /etc/apache2
[Mon Jan 30 10:33:48.150308 2023] [core:notice] [pid 4419] AH00051: child pid 39390 exit signal Segmentation fault (11), possible coredump in /etc/apache2
[Mon Jan 30 10:33:56.164600 2023] [core:notice] [pid 4419] AH00051: child pid 37882 exit signal Segmentation fault (11), possible coredump in /etc/apache2
[Mon Jan 30 10:34:03.170242 2023] [core:notice] [pid 4419] AH00051: child pid 39389 exit signal Segmentation fault (11), possible coredump in /etc/apache2
[Mon Jan 30 10:34:09.176486 2023] [core:notice] [pid 4419] AH00051: child pid 38179 exit signal Segmentation fault (11), possible coredump in /etc/apache2
[Mon Jan 30 10:34:16.183592 2023] [core:notice] [pid 4419] AH00051: child pid 26432 exit signal Segmentation fault (11), possible coredump in /etc/apache2
[Mon Jan 30 10:35:00.236134 2023] [core:notice] [pid 4419] AH00051: child pid 39526 exit signal Segmentation fault (11), possible coredump in /etc/apache2
[Mon Jan 30 10:35:09.247561 2023] [core:notice] [pid 4419] AH00051: child pid 39530 exit signal Segmentation fault (11), possible coredump in /etc/apache2
=== php script ===
/**
* place pour une fonction de debugging provisoire intégrée à SynerGaïa
* mettre $ok à true pour activer
*
* @SInCE 20.12
* @return string|SG_HTML|SG_Erreur html résultant ou erreur 0048 (fonctionnalité non opérationnelle)
*/
static function codeSGET_TST($pOperation)
{
$ret = new SG_Erreur('0048');
$ok = false; // mettre true pour shunter test admin (ne pas oublier de remettre à false !)
if ***@***.***'] -> admin) or $ok) {
if ($ok or ***@***.***'] -> admin -> valeur === SG_VraiFaux::VRAIFAUX_VRAI) {
error_log(getmypid());
$json ='{"total_rows":7,"offset":0,"rows":[
***@***.***":"Ecriture","Date":"04/01/2023","CompteDebit":"CIC","Mode":"Chèque","NoPiece":"cic 1473265","Motif":"Hébergement","Qui":"contact/054283bf11187887d5bf74d5303c92a2","Montant":"240","Titre":"Hébergement Pape - décembre ***@***.***":"04/01/2023 ***@***.***":"04/01/2023 ***@***.******@***.***":"patvan"}},
***@***.***":"Ecriture","Date":"04/01/2023","CompteDebit":"Caisse","Mode":"Espèces","NoPiece":"Voir signature","Motif":"Argent de poche","Qui":"contact/e169b797db3bddb4dfb21fb702083b38","Montant":"50","Titre":"Argent de poche Pape décembre ***@***.***":"04/01/2023 ***@***.***":"04/01/2023 ***@***.******@***.***":"patvan","DatePointageDebit":"04/01/2023"}},
***@***.***":"Ecriture","Date":"26/01/2023","CompteDebit":"Caisse","Mode":"Espèces","NoPiece":"Voir signature","Motif":"Argent de poche","Qui":"contact/b22cafe54888e351cddc90ae180ad726","Montant":"200","Titre":"Argent de poche pour février ***@***.***":"27/01/2023 ***@***.***":"27/01/2023 ***@***.******@***.***":"patvan"}},
***@***.***":"Ecriture","CompteDebit":"Facture","CompteCredit":"Facture","Date":"27/01/2023","Mode":"Autre","Montant":"69.6","Qui":"contact/8736d0700575277840cb84bb124c455c","Motif":"Frais","NoPiece":"Facture de la poste du 27 janvier 2023","Titre":"Frais de timbres pour les reçus ***@***.***":"27/01/2023 ***@***.***":"27/01/2023 ***@***.******@***.***":"patvan","Annule":"0"}},
***@***.***":"Ecriture","Date":"23/12/2022","CompteDebit":"Caisse","Mode":"Espèces","NoPiece":"Voir signature","Motif":"Hébergement","Qui":"contact/b22cafe54888e351cddc90ae180ad726","Montant":"200","Titre":"Hébergement / Nourriture pour ***@***.***":"26/12/2022 ***@***.***":"26/12/2022 ***@***.******@***.***":"patvan","DatePointageDebit":"26/12/2022"}},
***@***.***":"Ecriture","CompteDebit":"CIC","CompteCredit":"Caisse","Date":"24/12/2022","Mode":"Espèces","Motif":"Retrait","Titre":"Retrait ***@***.***":"14/01/2023 ***@***.***":"26/12/2022 ***@***.******@***.***":"patvan","DatePointageCredit":"26/12/2022","DatePointageDebit":"31/12/2022"}},
***@***.***":"Ecriture","Date":"13/01/2023","CompteCredit":"CIC","Mode":"Chèque","NoPiece":"CA ***@***.***":"24/01/2023 ***@***.***":"24/01/2023 ***@***.******@***.***":"patvan","DeposeLe":"24/01/2023"}}
]}';
$arr=json_decode($json,true);
$coll = new SG_Collection();
foreach ($arr['rows'] as $key => $row) {
$codeElement = $row['value'];
$element = new SG_Document();
$element -> doc = new SG_DocumentCouchDB('ecriture');
$element -> doc -> proprietes = $row['doc'];
$coll -> elements[] = $element;
}
$ctx = new SG_Contexte();
$formule = new SG_Formule();
$formule -> methode = '.Montant';
$formule -> fonction = ':simple';
$formule -> contexte = $ctx;
$formule -> objet = $pOperation;
$solde=0;
foreach($coll -> elements as $key => $elt) {
// calcul de la somme
$nb = new SG_Nombre($elt->doc->proprietes['Montant'], 'ecriture/' . $elt->doc->codeDocument . '/Montant');
$nb -> contenant = $elt;
$v = (float) $nb->valeur;
$solde += $v;
$coll -> elements[$key] -> proprietes['Solde'] = new SG_Nombre($solde);
}
$p1 = SG_Formule::preparer(SG_Formule::SIMPLE, 'Montant', $coll, $coll, $ctx);
$p2 = SG_Formule::preparer(SG_Formule::SIMPLE, 'Solde', $coll, $coll, $ctx);
$ret = $coll->AfficherTableau($p1,$p2);
$now = new \DateTime();
$ret -> texte = '<p>' . $now->format('Y-m-d H:i:s') . '</p>' . $ret -> texte;
error_log('waiting 1 mn');
sleep(60);
error_log('wake up !');
}
}
return $ret;
}
Le 28/01/2023 à 19:22, Niels Dossche a écrit :
…
It's hard to say, I feel like you're attaching to the wrong process,
or I'm missing something.
I'm guessing your application is closed source so I can't test it on
my own machine?
—
Reply to this email directly, view it on GitHub
<#10430 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGCSK2QS2JZX7IBVB2CTCFDWUVPVVANCNFSM6AAAAAAUE4Y7LA>.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
As the crash arrives at the very end of the treatment (all previous
error_log appears correctly),
I found that the problem arrives when I purge some big objects before
ending a step of my session.
Below is the function 'reduirePrincipal' which reduces these objects,
with in yellow the correction I had, (if not yellow, search for 'bug
#10430')
Very often, the object contains a property 'contenant' which refers back
to the main objet in which they are included.
So i have :
* GLOBALS["SESSION"]
o main objet ('principal')
+ properties (array)
+ 'Solde' => object SG_Nombre
# -> contenant : main object
And I think it is the origin of the problem, maybe when it is saved or
purged at the end of the script.
So I add an unset of these 'contenant' (they are unusefull at this
time), and the problem disappears.
However, I tried to write another short script which could provoke the
crash... and it never crashed.
For me, I stop searching by myself (all my week-end was enough !) but if
you want I make some try I can do it.
Pierre Frappé
/**
* si plus de 70% de mémoire utilisée, Réduit les documents dans les propriétés de l'opération si elles sont une SG_Collection
* Cela essaie d'éviter un dépassement mémoire au moment de la fin du traitement (sauvegarde de la session):
* "PHP Fatal error: Allowed memory size of 268435456 bytes exhausted..."
*
* @SInCE 2.5
* @Version 2.7 test is_object et dérive de SG_Document
* @return integer taile de la mémoire utilisée après la réduction
*/
function reduirePrincipal()
{
foreach($this -> proprietes as $pkey => $pelt) {
if ($pelt instanceof SG_Collection) {
foreach ($pelt -> elements as $key => $elt) {
if (is_object($elt) and $elt instanceof SG_Document) {
$id = new SG_IDDoc($elt);
// garder les propriétés particulière notamment les types de données ***@***.***_xxx']
// début correctif bug #10430
foreach($elt -> proprietes as $e) {
if (is_object($e) and isset($e -> contenant)) {
unset($e -> contenant);
}
}
// fin correctif bug #10430 */
$id -> proprietes = $elt -> proprietes;
$this -> proprietes[$pkey] -> elements[$key] = $id;
}
}
$this -> proprietes[$pkey] -> reduit = true;
}
}
$ret = memory_get_usage();
return $ret;
}
and here, an print_r of the element $elt before it is corrected so you
can see where are located the recursion and the field 'contenant'.
[Mon Jan 30 16:52:29.116106 2023] [php:notice] [pid 43349] [client
127.0.0.1:53600]
SG_Document Object
(
[typeSG] => @document
[reference] =>
[index] =>
[titre] =>
[id] =>
[proprietes] => Array
(
[Solde] => SG_Nombre Object
(
[typeSG] => @Nombre
[reference] =>
[index] => /Solde
[titre] =>
[id] =>
[proprietes] => Array
(
)
[contenant] => SG_Document Object
*RECURSION*
[erreur] =>
[icone] =>
[numero] =>
[style:SG_Objet:private] => Array
(
)
[contextes] =>
[valeur] => 240
[unite] =>
)
)
[contenant] =>
[erreur] =>
[icone] =>
[numero] => 1
[style:SG_Objet:private] => Array
(
)
[contextes] =>
[doc] => SG_DocumentCouchDB Object
(
[typeSG] => @DocumentCouchDB
[reference] =>
[index] =>
[titre] =>
[id] =>
[proprietes] => Array
(
[_id] => b385a06c4beaf6d35d477ea79d0ab5ae
[_rev] => 1-da90b36ddf5a90f2ee276f1ab5768697
***@***.*** => Ecriture
[Date] => 04/01/2023
[CompteDebit] => CIC
[Mode] => Ch\xc3\xa8que
[NoPiece] => cic 1473265
[Motif] => H\xc3\xa9bergement
[Qui] => contact/054283bf11187887d5bf74d5303c92a2
[Montant] => 240
[Titre] => H\xc3\xa9bergement Pape -
d\xc3\xa9cembre 2022
***@***.*** => 04/01/2023 13:39
***@***.*** => 04/01/2023 13:39
***@***.*** => patvan
***@***.*** => patvan
)
[contenant] =>
[erreur] =>
[icone] =>
[numero] =>
[style:SG_Objet:private] => Array
(
)
[contextes] =>
[codeBase] =>
[codeBaseComplet] =>
[codeDocument] =>
[revision] =>
[stub] =>
[modif] =>
)
[code] =>
[titres] =>
[UUId] =>
)
Le 28/01/2023 à 19:22, Niels Dossche a écrit :
…
It's hard to say, I feel like you're attaching to the wrong process,
or I'm missing something.
I'm guessing your application is closed source so I can't test it on
my own machine?
—
Reply to this email directly, view it on GitHub
<#10430 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGCSK2QS2JZX7IBVB2CTCFDWUVPVVANCNFSM6AAAAAAUE4Y7LA>.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Thank you for all the effort you put into this, I really appreciate that a lot. I'm not going to ask anything more from you, like as you said you already put alot of time into it. |
Can you reproduce it using the FPM sapi .. it should be pretty easy to setup in Ubuntu 22.04.1 LTS as it ships with an apache config file for that.. |
Are PHP-FPM and FPM sapi the same ?
I don't know anything about that, but I could try !
Is there somewhere a link which explains how to do this to me ?
Thanks in advance.
Le 14/02/2023 à 20:04, Cristian Rodríguez a écrit :
…
Can you reproduce it using the FPM sapi .. it should be pretty easy to
setup in Ubuntu 22.04.1 LTS as it ships with an apache config file for
that..
—
Reply to this email directly, view it on GitHub
<#10430 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGCSK2RPHTPUZAECOP5AS5LWXPJKFANCNFSM6AAAAAAUE4Y7LA>.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Yes. In recent ubuntu releases it should be a matter of installing php-fpm You probably want something to catch you core dumps. you need to install systemd-coredump package and reboot.. then with coredumpctl see all crashes and get backtraces. |
Description
Sorry this problem appears within a big application and I didn't find a short php code reproducing the problem.
So I try to put the maximum explanations here.
In some cases I get this message in error log :
[core:notice] [pid 910] AH00051: child pid 23361 exit signal Segmentation fault (11), possible coredump in /etc/apache2
I found this message always appears twice because, when I get it, the index.php is executed a second time.
To find that, I put an errog_log('deb') at the very beginning of the index.php and an error_log('fin') at the last instruction.
In the log, I got :
So, index.php seems to be executed twice.
However, if I error_log the expected HTML result in the log, it is totally correct. (and I get it twice...)
But nothing is sent to the navigator.
Bypass
Step by step, I found a bypass : the problem disappears when I put a print_r of some object at the right place.
For example :
This caused the problem :
And this works correctly :
It works too if I add :
If the dumps of the object before and after the problem are identical.
I tried some other features which don't work :
or
Research notes
I found that the bypass does work if I just add the '''print_r''' as the first line of the __construct function of one of my classes :
I also remark when the bypass works, the new class has been called by an instruction like :
But, I can't make a short PHP program reproducing the problem.
Environment
on Ubuntu 22.04.1 LTS
I hope I'm clear enough clear...
Pierre Frappé (France)
PHP Version
first PHP 8.1.2, and now 8.2.1 (no change)
JIT tracing
Operating System
Ubuntu 22.04.1 LTS
The text was updated successfully, but these errors were encountered: