|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2005-10-11 17:31 UTC] jdolecek at NetBSD dot org
Description:
------------
I'm using PHP with Apache 1.3.23 via apache module, using windows PHP binaries downloaded from php.net.
If several parallelly running scripts execute same blocks of code using sprintf("%.2f", $somefloat*$otherfloat), occassionally incorrect float number is printed or even one character of the "float" contains binary NUL.
Easy way to trigger this is to have a FPDF script generating a PDF document, and have something which calls this script via web request in parallel, so that all scripts are executed within the context of single web server process. The problem appears in about 1% of generated documents. The problem is repeatably in my environment, I can try to put together simplier version of reproducing script if need be.
If I replace the above contruct with number_format($somefloat*$otherfloat, 2, '.', ''), it works without problem and no problem occurs.
The length of the gardbled output always exactly matches the length of non-gardbled output, FWIW.
This suggests there is some kind of reentrancy problem with the sprintf() routine, at least when printing floats. Perhaps some stack alignment issue or something equally esoteric?
The problem exists in 5.1b3, 5.1.0rc1, 5.0.5. I did not check other versions.
The type of bug has been set to repoducible crash due to missing 'Memory corruption' category and since this _might_ cause a crash (tho no crash has been observed) - feel free to change to anything more appropriate if need be.
Bug #21659 might actually be same problem, tho #21659 has been shrugged off as miscompilation problem.
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 03:00:01 2025 UTC |
Reproduce steps: 1. download FPDF 1.53 (fpdf153.zip), extract to suitable directory accessible via web server 2. edit fpdf.php and replace line: $this->_out('/CreationDate '.$this->_textstring('D:'.date('YmdHis'))); with: $this->_out('/CreationDate '.$this->_textstring('D:20051011143910')); This is necessary so that generated PDF don't differ gratuitously. 2. put attached script to the same directory as the modified fpdf.php 3. run: siege -c 10 -v -u http://server/path/to/script.php The script: $pdf=new FPDF(); $pdf->AddPage(); $pdf->SetFont('Arial','B',16); $pdf->Cell(40,10,'Hello World!'); $pdf->SetFont('Arial','',10); $pdf->Cell(60,10,'Powered by FPDF.',0,1,'C'); $content = $pdf->Output(false, 'S'); if (md5($content) != '38ec5b17d2cda871e21b28ecaeecd08d') { trigger_error('pdf generation test bug', E_USER_ERROR); }