Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1762897AbZJOQYY (ORCPT ); Thu, 15 Oct 2009 12:24:24 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1762887AbZJOQYX (ORCPT ); Thu, 15 Oct 2009 12:24:23 -0400 Received: from mx1.redhat.com ([209.132.183.28]:8900 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1762884AbZJOQYW (ORCPT ); Thu, 15 Oct 2009 12:24:22 -0400 Date: Thu, 15 Oct 2009 13:04:23 -0300 From: Marcelo Tosatti To: "Darrick J. Wong" Cc: Avi Kivity , linux-kernel , kvm@vger.kernel.org Subject: Re: [PATCH] kvm: Prevent kvm_init from corrupting debugfs structures Message-ID: <20091015160423.GC9629@amt.cnet> References: <20091014232100.GE26149@tux1.beaverton.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20091014232100.GE26149@tux1.beaverton.ibm.com> User-Agent: Mutt/1.5.19 (2009-01-05) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1361 Lines: 38 On Wed, Oct 14, 2009 at 04:21:00PM -0700, Darrick J. Wong wrote: > I'm seeing an oops condition when kvm-intel and kvm-amd are modprobe'd > during boot (say on an Intel system) and then rmmod'd: > > # modprobe kvm-intel > kvm_init() > kvm_init_debug() > kvm_arch_init() <-- stores debugfs dentries internally > (success, etc) > > # modprobe kvm-amd > kvm_init() > kvm_init_debug() <-- second initialization clobbers kvm's > internal pointers to dentries > kvm_arch_init() > kvm_exit_debug() <-- and frees them > > # rmmod kvm-intel > kvm_exit() > kvm_exit_debug() <-- double free of debugfs files! > > *BOOM* > > If execution gets to the end of kvm_init(), then the calling module has been > established as the kvm provider. Move the debugfs initialization to the end of > the function, and remove the now-unnecessary call to kvm_exit_debug() from the > error path. That way we avoid trampling on the debugfs entries and freeing > them twice. > > Signed-off-by: Darrick J. Wong Applied, thanks. -- 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/