assistanz
Assistanz

Steps to Analyzing Locks and SpinLocks

Steps to Analyzing Locks and SpinLocks

Steps to Analyzing Locks and SpinLocks

In this blog, we will show you the steps to analyzing locks and spinlocks using windbg windows debugger.

 

OVERVIEW

  • There are many mechanisms that Windows operating system uses to synchronize the access between multiple threads and multiple processes. The mechanisms such as locks, spinlocks, interlock instructions, Intercept request level, etc.. are used to organize thousand’s of threads running windows
  • Locks are used by threads to request access to particular executive resources.
  • Locks can be shared with multiple threads can read the data at same time.
  • It can be exclusive, so a particular thread can update or write to a data structure without concern about other thread which is trying to updating the same thing.

 

LOCK REQUEST FLOW

steps to analyzing locks and spinlocks

  • In the above picture will explain how the locks are requested and handled by the resources.
  • Here the thread calls the system function named ExAcquireResourceExclusiveLite which request the exclusive lock on a resource. The address of the resource specified as the first argument passed to the function.
  • As long as there are other threads blocking this resource, the request will be granted and the thread is set to owned by the resource.
  • At the later stage, other threads will request the lock to the same resource. Since the exclusive mode lock is already granted, other threads will be queued up in the waiting list.
  • The waiting queue will process based on FIFO (First In First Out) fashion.

 

LOCKS COMMAND

  • To view the resource and locked information, use !locks command in WINDBG. Also the command !locks -v <resource address> to display the threads with lock request on the resource.

steps to analyzing locks and spinlocks

 

  • In the above output, the resource address is Resource @ 0xffffc80a11453a38 and lock type is Exclusive. The lock granted to the thread is ffffc80a12d4a080.

 

FINDING DEADLOCKS

  • First, use the !locks command to display all the resources and corresponding locks.
  • Then look for exclusively owned locks with waiter threads.
  • The threads that are owned the lock on the resource will have the asterisk (*) symbol.
  • use the !thread command to display the thread information that owns the exclusive lock.
  • You can use the kb command to view the stack trace of the memory dump to check the waiting state thread.

 

SPINLOCKS

  • In a multi-processor environment, spinlocks are used to synchronize the access to the common data structure.
  • The way the spinlocks works is that the processor will try to acquire the spinlocks before updating the common data structure.
  • So the processor who owns the spinlock will grant them access to update the data structure.
  • Other processors will update until the spinlock is released.
  • The problem will occur when the multiple processors are trying to acquire the same spinlock which is performing some other actions. As a result, entire system hangs.

 

SPINLOCKS COMMAND

  • The command !qlocks to display all kernel spinlocks and processors.

steps to analyzing locks and spinlocks

 

  • Unfortunately, there are no spinlocks happened in the crash dump which we are using for this demo.

 

FINDING SPINLOCKS

  • First, run the windows debugger !qlocks command to reveal main kernel spinlocks and whether they are owned by any processors.
  • Then use the !running –it commands to look for the current running thread on each processor during the crash time.
  • You can further investigate !thread command to examine the stack trace to find any thread is acquiring the spinlock.
  • The key is to determine which driver is responsible for acquiring the spinlocks.

 

Thanks for reading this blog. We hope it was useful for you to learn the steps to analyze the deadlocks and spinlocks using WINDBG windows debugger.

DirectAdmin Server Management Plans

Premium Support

24/7 End User Support from your Helpdesk
$ 99 Monthly / Server
  • Unlimited Support Plan
  • 24/7 Emergency Phone
  • Chat Support for Admin
  • Separate Account Manager
  • NDA & SLA
  • SLA Review Meetings
  • FREE Consultancy Services
  • Simple SignUp Process
  • Instant Account Activation
  •  

Platinum Support

24/7 Proactive Support
$ 49 Monthly / Server
  • Unlimited Support Plan
  • 24/7 Emergency Phone
  • Chat Support for Admin
  • Separate Account Manager
  • Advance Proactive Monitoring
  • Guaranteed SLA
  • SLA Review Meetings
  • 3rd Party Application Support
  • FREE Consultancy Services
  • Server Migration Support
  • Weekly Status Report
  • No End User Support
Popular

Unlimited Support

24/7 Support

$ 30 Monthly / Server
  • Unlimited Support Plan
  • 24/7 Support
  • Basic Monitoring
  • 30 Minutes Response Time
  • 4 Hours Resolution time for the Possible Issues
  • Security and Performance Optimization
  • React to Customers queries
  • Simple SignUp Process
  • Instant Account Activation
  • No Third party application support
  • No Migration and End User Support

Cpanel Server Management Plans

Premium Support

24/7 End User Support from your Helpdesk

$ 99 Monthly / Server
  • 24/7 End User White Label Support
  • Unlimited Number of Tickets
  • Chat Support for Admin
  • Separate Account Manager
  • Guaranteed SLA
  • Weekly Status Reports
  • FREE Consultancy Services
  • Simple SignUp Process
  • Instant Account Activation

Platinum Support

24/7 Proactive Server Management
$ 49 Monthly / Server
  • Unlimited Support Plan
  • 24/7 Emergency Phone
  • Chat Support for Admin
  • Separate Account Manager
  • Advance Proactive Monitoring
  • Guaranteed SLA
  • SLA Review Meetings
  • 3rd Party Application Support
  • FREE Consultancy Services
  • Server Migration Support
  • Weekly Status Report
  • No End User Support
Popular

Unlimited Support

24/7 Server Management

$ 29 Monthly / Server
  • Unlimited Admin Tasks
  • 24/7 Support
  • Basic Monitoring
  • 30 Minutes Response time
  • 4 hours Response time for possible issues
  • Security and Performance Optimization
  • React to Customers queries
  • No Third party application support
  • No Migration and End User Support

Cpanel Server Management Plans

Premium Support

24/7 End User Support from your Helpdesk

$ 99 Monthly / Server
  • 24/7 End User White Label Support
  • Unlimited Number of Tickets
  • Chat Support for Admin
  • Separate Account Manager
  • Guaranteed SLA
  • Weekly Status Reports
  • FREE Consultancy Services
  • Simple SignUp Process
  • Instant Account Activation

Platinum Support

24/7 Proactive Server Management
$ 49 Monthly / Server
  • Unlimited Support Plan
  • 24/7 Emergency Phone
  • Chat Support for Admin
  • Separate Account Manager
  • Advance Proactive Monitoring
  • Guaranteed SLA
  • SLA Review Meetings
  • 3rd Party Application Support
  • FREE Consultancy Services
  • Server Migration Support
  • Weekly Status Report
  • No End User Support
Popular

Unlimited Support

24/7 Server Management

$ 29 Monthly / Server
  • Unlimited Admin Tasks
  • 24/7 Support
  • Basic Monitoring
  • 30 Minutes Response time
  • 4 hours Response time for possible issues
  • Security and Performance Optimization
  • React to Customers queries
  • No Third party application support
  • No Migration and End User Support