Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755116AbaADWmL (ORCPT ); Sat, 4 Jan 2014 17:42:11 -0500 Received: from mail-pb0-f51.google.com ([209.85.160.51]:42043 "EHLO mail-pb0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754352AbaADWmK (ORCPT ); Sat, 4 Jan 2014 17:42:10 -0500 Date: Sat, 4 Jan 2014 14:42:06 -0800 From: Dmitry Torokhov To: Al Viro Cc: Greg Kroah-Hartman , Mikulas Patocka , Jeff Mahoney , torvalds@linux-foundation.org, linux-kernel@vger.kernel.org, dm-devel@redhat.com, tglx@linutronix.de, paulmck@linux.vnet.ibm.com, mingo@kernel.org Subject: Re: [PATCH] kobject: provide kobject_put_wait to fix module unload race Message-ID: <20140104224206.GC18213@core.coreip.homeip.net> References: <20140104181620.GA2087@kroah.com> <20140104183403.GG10323@ZenIV.linux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140104183403.GG10323@ZenIV.linux.org.uk> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2300 Lines: 51 On Sat, Jan 04, 2014 at 06:34:03PM +0000, Al Viro wrote: > On Sat, Jan 04, 2014 at 10:16:20AM -0800, Greg Kroah-Hartman wrote: > > > > I came up with a simpler patch to achieve the same purpose - this patch > > > makes fixing the drivers easy - the driver is fixed just by replacing > > > "kobject_put" with "kobject_put_wait" in the unload routine. > > > > No, that's not ok at all. > > Agreed - all it takes is one cargo-culter who religoiusly does such > conversion and drops a ref to parent before that to child. > > > > However, this pattern is buggy with respect to modules. The release method > > > is placed in the driver's module. When the driver exits, the module > > > reference count is zero, thus the module may be freed. However, there may > > > still be references to the kobject. If the module is unloaded and then the > > > release method is called, a crash happens. > > > > Yes, module unloading while a kobject is still "active" is not a good > > thing, what modules do you have that cause this problem? Why not just > > grab the module reference in your kobject if you need this type of > > protection? It's not the kobject's code fault that this issue is there, > > or that we now have a "delayed release" function to expose this type of > > thing, it's the user of the kobject. > > > > Please fix the broken users of the kobject first. > > Are you saying that there is another kind? > > When would you grab that reference to module? More to the point, when > would you *drop* it? Doing so from module_exit is not going to work, > obviously... You normally have subsystem core module that does handle release of its objects and users of said objects so it is usually OK for objects to outlive the users, you just need to make sure the core stays around. In input we grab module reference to input core when we allocate input device and drop it when input device is freed. This way we can be sure that input core stays around until all input devices are gone. The same for serio. Thanks. -- Dmitry -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/