php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #56191 Possible race condition in apc_sma_malloc() ?
Submitted: 2004-09-15 11:23 UTC Modified: 2004-09-16 00:52 UTC
From: swen dot thuemmler at telefonica dot de Assigned: rasmus (profile)
Status: Closed Package: APC (PECL)
PHP Version: Irrelevant OS: Solaris 2.8
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: swen dot thuemmler at telefonica dot de
New email:
PHP Version: OS:

 

 [2004-09-15 11:23 UTC] swen dot thuemmler at telefonica dot de
Description:
------------
I'm not sure, but shouldnt the UNLOCK come after the assignment?

[...]
        if (off != -1) {
            void* p = (void *)(((char *)(sma_shmaddrs[i])) + off);
--->            UNLOCK(sma_lock);
--->            sma_lastseg = i;
            return p;
        }
[...]


--Swen



Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-09-16 00:52 UTC] rasmus@php.net
I suppose there could be a race in a multithreaded environment.  I have flipped those around.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Tue Jul 01 17:01:34 2025 UTC