lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 3 Nov 2011 10:45:06 +0300
From:	Sergey Senozhatsky <sergey.senozhatsky@...il.com>
To:	Yong Zhang <yong.zhang0@...il.com>
Cc:	David Rientjes <rientjes@...gle.com>, Tejun Heo <tj@...nel.org>,
	Ingo Molnar <mingo@...e.hu>, Borislav Petkov <bp@...en8.de>,
	Peter Zijlstra <peterz@...radead.org>,
	linux-kernel@...r.kernel.org,
	Andrew Morton <akpm@...ux-foundation.org>
Subject: Re: WARNING: at kernel/lockdep.c:690 __lock_acquire+0x168/0x164b()

On (11/03/11 15:27), Yong Zhang wrote:
> > > A typcal race condition will like this:
> > > 
> > > 	CPU A					CPU B
> > > lock_set_subclass(lockA);
> > >   lock_set_class(lockA);
> > >     lockdep_init_map(lockA);
> > >       /* lockA->name is cleared */
> > >       memset(lockA);
> > > 					__lock_acquire(lockA);
> > > 					  /* lockA->class_cache[] is cleared */
> > > 					  register_lock_class(lockA);
> > > 					    look_up_lock_class(lockA);
> > > 					      WARN_ON_ONCE(class->name !=
> > > 							lock->name);
> > > 
> > >       lock->name = name;
> > > 
> > > And a untested patch is below:
> > > BTW, now the patch could cure (I guess) the very issue reported
> > > in this thread.
> > > But it don't cover the case which change the key and the relevant
> > > lock_class has existed, I don't think out a way how to fix it yet :)
> > > But the fact is we have no such caller yet, the only call site of
> > > lock_set_subclass() is double_unlock_balance().
> > > 
> > 
> > Hello,
> > Any news on this patch? Do you like it or hate it? With recent kernels
> > I'm able to hit this problem more often (several time a day) so if any
> > testing is required I'm willing to help.
> 
> Did you have tried it? Though I don't find time to polish it yet but
> I think will smooth your concern.
> 

I'm compiling the kernel with you patch right now. The whole point was just for
case if someone has different approach or whatsoever.


	Sergey
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ