Why is lock(this) {...} bad? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T09:03:27Z http://stackoverflow.com/feeds/question/251391 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/251391/why-is-lockthis-bad 17 Why is lock(this) {...} bad? Anton 2008-10-30T19:19:21Z 2008-10-30T21:19:35Z <p>The MSDN documentation says that</p> <pre><code>public class SomeObject { public void SomeOperation() { lock(this) { //Access instance variables } } } </code></pre> <p>is "is a problem if the instance can be accessed publicly". I'm wondering why? Is it because the lock will be held longer than necessary? Or is there some more insidious reason?</p> http://stackoverflow.com/questions/251391/why-is-lockthis-bad/251399#251399 17 Answer by Orion Edwards for Why is lock(this) {...} bad? Orion Edwards 2008-10-30T19:22:27Z 2008-10-30T21:19:35Z <p>Because if people can get at your object instance (ie: your <code>this</code>) pointer, then they can also try to lock that same object. Now they might not be aware that you're locking on <code>this</code> internally, so this may cause problems (possibly a deadlock)</p> <p>In addition to this, it's also bad practice, because it's locking "too much"</p> <p>For example, you might have a member variable of <code>List&lt;int&gt;</code>, and the only thing you actually need to lock is that member variable. If you lock the entire object in your functions, then other things which call those functions will be blocked waiting for the lock. If those functions don't need to access the member list, you'll be causing other code to wait and slow down your application for no reason at all.</p> http://stackoverflow.com/questions/251391/why-is-lockthis-bad/251412#251412 0 Answer by Alan for Why is lock(this) {...} bad? Alan 2008-10-30T19:25:54Z 2008-10-30T19:25:54Z <p>...and the exact same arguments apply to this construct as well:</p> <pre><code>lock(typeof(SomeObject)) </code></pre> http://stackoverflow.com/questions/251391/why-is-lockthis-bad/251416#251416 6 Answer by crashmstr for Why is lock(this) {...} bad? crashmstr 2008-10-30T19:27:10Z 2008-10-30T19:27:10Z <p>Take a look at the MSDN Topic <a href="http://msdn.microsoft.com/en-us/library/ms173179.aspx" rel="nofollow">Thread Synchronization (C# Programming Guide)</a></p> <blockquote> <p>Generally, it is best to avoid locking on a public type, or on object instances beyond the control of your application. For example, lock(this) can be problematic if the instance can be accessed publicly, because code beyond your control may lock on the object as well. <b>This could create deadlock situations where two or more threads wait for the release of the same object</b>. Locking on a public data type, as opposed to an object, can cause problems for the same reason. Locking on literal strings is especially risky because literal strings are interned by the common language runtime (CLR). This means that there is one instance of any given string literal for the entire program, the exact same object represents the literal in all running application domains, on all threads. As a result, a lock placed on a string with the same contents anywhere in the application process locks all instances of that string in the application. As a result, it is best to lock a private or protected member that is not interned. Some classes provide members specifically for locking. The Array type, for example, provides SyncRoot. Many collection types provide a SyncRoot member as well.</p> </blockquote> http://stackoverflow.com/questions/251391/why-is-lockthis-bad/251431#251431 0 Answer by Jason Jackson for Why is lock(this) {...} bad? Jason Jackson 2008-10-30T19:30:40Z 2008-10-30T19:30:40Z <p>Because any chunk of code that can see the instance of your class can also lock on that reference. You want to hide (encapsulate) your locking object so that only code that needs to reference it can reference it. The keyword this refers to the current class instance, so any number of things could have reference to it and could use it to do thread synchronization.</p> <p>To be clear, this is bad because some other chunk of code could use the class instance to lock, and might prevent your code from obtaining a timely lock or could create other thread sync problems. Best case: nothing else uses a reference to your class to lock. Middle case: something uses a reference to your class to do locks and it causes performance problems. Worst case: something uses a reference of your class to do locks and it causes really bad, really subtle, really hard-to-debug problems.</p> http://stackoverflow.com/questions/251391/why-is-lockthis-bad/251539#251539 1 Answer by Bob Nadler for Why is lock(this) {...} bad? Bob Nadler 2008-10-30T19:59:31Z 2008-10-30T19:59:31Z <p>There's also some good discussion about this here: <a href="http://stackoverflow.com/questions/46909/is-this-the-proper-use-of-a-mutex">Is this the proper use of a mutex?</a> </p> http://stackoverflow.com/questions/251391/why-is-lockthis-bad/251668#251668 16 Answer by Esteban Brenes for Why is lock(this) {...} bad? Esteban Brenes 2008-10-30T20:34:15Z 2008-10-30T20:57:41Z <p>It is bad form to use <code>this</code> in lock statements because it is generally out of your control who else might be locking on that object.</p> <p>In order to properly plan parallel operations, special care should be taken to consider possible deadlock situations, and having an unknown number of lock entry points hinders this. For example, any one with a reference to the object can lock on it without the object designer/creator knowing about it. This increases the complexity of multi-threaded solutions and might affect their correctness.</p> <p>A private field is usually a better option as the complier will enforce access restrictions to it, and it will encapsulate the locking mechanism. Using <code>this</code> violates encapsulation by exposing part of your locking implementation to the public. It is also not clear that you will be acquiring a lock on <code>this</code> unless it has been documented. Even then, relying on documentation to prevent a problem is sub-optimal.</p> <p>Finally, there is the common misconception that <code>lock(this)</code> actually modifies the object passed as a parameter, and in some way makes it read-only or inaccessible. This is <strong>false</strong>. The object passed as a parameter to <code>lock</code> merely serves a <strong>key</strong>. If a lock is already being held on that key, the lock cannot be made, otherwise, the lock is allowed.</p> <p>Run the following C# code as an example.</p> <pre><code>public class Person { private int age; private string name; public int Age { get { return age; } set { age = value; } } public string Name { get { return name; } set { name = value; } } public Person(string name) { this.age = 0; this.name = name; } public void LockThis() { lock (this) { System.Threading.Thread.Sleep(10000); } } public void GrowOld() { this.age++; } } class Program { static void Main(string[] args) { Person nancy = new Person("Nancy Drew"); nancy.Age = 15; Thread a = new Thread(nancy.LockThis); Thread b = new Thread(Program.Timewarp); Thread c = new Thread(Program.NameChange); a.Start(); b.Start(nancy); c.Start(nancy); a.Join(); Console.ReadLine(); } static void Timewarp(object subject) { Person person = subject as Person; if (person == null) throw new ArgumentNullException("subject"); lock (person.Name) { while (person.Age &lt;= 23) { if (Monitor.TryEnter(person, 10) == false) { Console.WriteLine("'this' person is locked!"); } else Monitor.Exit(person); person.GrowOld(); Console.WriteLine("{0} is {1} years old.", person.Name, person.Age); } } } static void NameChange(object subject) { Person person = subject as Person; if (person == null) throw new ArgumentNullException("subject"); // Be careful about using strings as locks if (Monitor.TryEnter(person.Name, 30) == false) { Console.WriteLine("Failed to obtain lock on 'person.Name' on first try, wait longer."); } else Monitor.Exit(person.Name); if (Monitor.TryEnter("Nancy Drew", 30) == false) { Console.WriteLine("Failed to obtain lock using 'Nancy Drew' literal, locked by 'person.Name' since both are the same thanks to inlining!"); } else Monitor.Exit("Nancy Drew"); if (Monitor.TryEnter(person.Name, 10000)) { string oldName = person.Name; person.Name = "Nancy Callahan"; Console.WriteLine("Name changed from '{0}' to '{1}'.", oldName, person.Name); } else Monitor.Exit(person.Name); } } </code></pre>