You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@qpid.apache.org by "Cliff Jansen (JIRA)" <ji...@apache.org> on 2017/08/11 17:05:00 UTC

[jira] [Created] (PROTON-1538) Epoll proactor unguarded memory access

Cliff Jansen created PROTON-1538:
------------------------------------

             Summary: Epoll proactor unguarded memory access
                 Key: PROTON-1538
                 URL: https://issues.apache.org/jira/browse/PROTON-1538
             Project: Qpid Proton
          Issue Type: Bug
          Components: proton-c
    Affects Versions: proton-c-0.18.0
            Reporter: Cliff Jansen
            Assignee: Cliff Jansen
             Fix For: proton-j-0.18.0


ThreadSanitizer singled out the epoll_event for network sockets to be a risk of  out of order access by multiple threads.

On inspection it is possible that two threads could try rearming the socket out of order, allowing the wrong events of interest to be registered.

Reusing the existing connection context mutex would be costly for
guarding this since the system call is frequent and relatively long
compared to other acquisitions of the mutex.  Adding a new mutex that
guards this operation should fix things with negligible performance
cost.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@qpid.apache.org
For additional commands, e-mail: dev-help@qpid.apache.org