php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #7554 Exclusive flock() breaks client/server communication
Submitted: 2000-10-31 14:50 UTC Modified: 2000-11-01 07:54 UTC
From: php at develnet dot org Assigned:
Status: Closed Package: Filesystem function related
PHP Version: 4.0.3pl1 OS: RedHat 6.2
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: php at develnet dot org
New email:
PHP Version: OS:

 

 [2000-10-31 14:50 UTC] php at develnet dot org
A 2nd exclusive flock() - or a try to do so - causes a kind of infinite loop. Browser(s) are not responding. The Apache-process is allowed to write to /tmp.


    $fp1 = fopen("/tmp/test.txt","a");
    if (!$fp1)          die("cant open file 1");
    if (!flock($fp1,2)) die("cant lock file 1");
    
    $fp2 = fopen("/tmp/test.txt","a");
    if (!$fp2)          die("cant open file 2");

    // causes troubles
    if (!flock($fp2,2)) die("cant lock file 2");
    
    fclose($fp2);
    fclose($fp1)


My configure:

'./configure' '--with-apxs=/usr/local/httpd/bin/apxs' '--with-config-file-path=/usr/local/httpd/conf' '--enable-track-vars' '--with-gdbm' '--enable-ftp' '--with-gd' '--with-ttf=/usr/include/freetype' '--enable-sysvshm' '--enable-sysvsem' '--with-openssl=../openssl-0.9.5a' '--with-imap=../imap-4.7c' '--with-pdflib' '--enable-sockets' '--with-mysql=/usr/local/mysql' '--with-oci8=/opt/oracle/product/8.1.5' '--with-sablot'

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2000-11-01 07:54 UTC] stas@php.net
closed on user request
 [2022-03-26 05:05 UTC] giw42161 at uooos dot com
(https://centurylawfirm.in/)gist.github.com

Best lawyer in India
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 01:01:30 2024 UTC