On Tue, Aug 28, 2012 at 10:05 AM, Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx> wrote: > > Ugh. Ok, looking closer at this, Btw, looking at that code, I also found what looks like a potential locking bug in allocate_resource(). The code does if (new->parent) .. reallocate .. to check whether a resource was already allocated. HOWEVER, it does so without actually holding the resource lock. Which means that "new->parent" might in theory change. I don't really know if we care. Anybody who does a "allocate_resource()" on an existing resource that might already be in the resource tree hopefully does *not* do that in parallel with another user trying to change the resource allocation, so maybe the right thing to do is to just say "whatever, if there is a race with two threads reallocating the same resource at the same time, the bug is a much more serious one at a higher level". So this may well be a non-issue. It was introduced some time ago, in commit 23c570a67448e ("resource: ability to resize an allocated resource"), since before that we never even allowed re-allocation of an already allocated resource in the first place, and everything happened under the lock. I dunno. Here's a (UNTESTED!) patch that should fix it. Because it's extremely doubtful whether this is a real problem, I'm certainly not going to commit it now, much less mark it for stable. But I'm throwing it out as an RFC. Technically, if people rely on any races being handled by the resource subsystem, this *could* trigger. But I'm hoping that the PCI layer has some higher-level locking for "reallocate the resources of this PCI device". I did *not* check the callers. Btw, reallocate_resource() isn't actually used anywhere in the tree that I can see, so maybe we should remove it and the export, and just have the __reallocate_resource() that is static to resource.c and is to be called only with the lock held. Linus
Attachment:
patch.diff
Description: Binary data