JDK-8215247 : SA: Further robustize the attach mechanism
  • Type: Bug
  • Component: hotspot
  • Sub-Component: svc-agent
  • Affected Version: 9,10,11,12
  • Priority: P4
  • Status: Closed
  • Resolution: Won't Fix
  • OS: generic
  • CPU: generic
  • Submitted: 2018-12-12
  • Updated: 2024-07-10
  • Resolved: 2024-07-10
Related Reports
Relates :  
Description
JDK-8202884 proposes to robustize the SA attach mechanism to some extent. But there would still remain windows where threads would terminate before SA gets  a chance to attach to them. To further reduce this window, we need to try to attach to the thread as soon as the thread gets discovered (instead of first adding it to a thread list, and later iterating through it to invoke ptrace attach). This would reduce the window where the thread can exit. 
 Moreover, we need to deal with windows where new threads are getting created and SA is not attaching to them. This could be an issue since this means that some threads could still be running while SA is attached to the process. For this, we need to go through multiple iterations of discovering new threads (to capture the new threads which might have gotten spawned in between discovery and actual attach). This technique of multiple iterations is followed in other debuggers like gdb. Though JDK-8202884 was Linux specific, this would include the attach mechanism on various platforms. 
Comments
<Serviceability triage team>: This is not on our current list of priorities. Please re-open with a justification comment if you'd like us to reconsider
10-07-2024