From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by dpdk.org (Postfix, from userid 33) id 07C686904; Tue, 15 Jan 2019 12:27:57 +0100 (CET) From: bugzilla@dpdk.org To: dev@dpdk.org Date: Tue, 15 Jan 2019 11:27:56 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: DPDK X-Bugzilla-Component: eventdev X-Bugzilla-Version: 19.02 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: mattias.ronnblom@ericsson.com X-Bugzilla-Status: CONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: dev@dpdk.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://bugs.dpdk.org/ Auto-Submitted: auto-generated X-Auto-Response-Suppress: All MIME-Version: 1.0 Subject: [dpdk-dev] [Bug 189] RTE Timer Adapter Use After Free X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Jan 2019 11:27:57 -0000 https://bugs.dpdk.org/show_bug.cgi?id=3D189 Bug ID: 189 Summary: RTE Timer Adapter Use After Free Product: DPDK Version: 19.02 Hardware: All OS: All Status: CONFIRMED Severity: normal Priority: Normal Component: eventdev Assignee: dev@dpdk.org Reporter: mattias.ronnblom@ericsson.com Target Milestone: --- Upon event timer expiry, the timer adapter will cause the timer struct to be used after its freed. rte_event_timer_adapter.c:sw_event_timer_cb() calls rte_mempool_put(), returning the internal timer-related data, including a rte_timer instance, = to the pool. rte_timer_manage() updates fields of the rte_timer struct *after* the expiry call back has finished. Timers armed on a different core may retrieve this timer struct from the po= ol, resulting in a data race. --=20 You are receiving this mail because: You are the assignee for the bug.=