Re: [B.A.T.M.A.N.] net, batman: lockdep circular dependency warning

2012-12-05 Thread Simon Wunderlich
Hey Sven,

thanks for showing these approaches! Comments inline ...

On Tue, Dec 04, 2012 at 03:51:55PM +0100, Sven Eckelmann wrote:
 Hi,
 
 thanks for your report. It seems nobody else wanted to give an answer... so I 
 try to give a small overview.
 
 On Monday 12 November 2012 15:37:47 Sasha Levin wrote:
  Hi all,
  
  While fuzzing with trinity inside a KVM tools (lkvm) guest running latest
  -next kernel, I've stumbled on the following:
  
  [ 1002.969392] ==
  [ 1002.971639] [ INFO: possible circular locking dependency detected ]
  [ 1002.975805] 3.7.0-rc5-next-20121112-sasha-00018-g2f4ce0e #127 Tainted: G 
W [ 1002.983691]
  --- [ 1002.983691]
  trinity-child18/8149 is trying to acquire lock:
  [ 1002.983691]  (s_active#313){.+}, at: [812f9941]
  sysfs_addrm_finish+0x31/0x60 [ 1002.983691]
  [ 1002.983691] but task is already holding lock:
  [ 1002.983691]  (rtnl_mutex){+.+.+.}, at: [834fcc62]
  rtnl_lock+0x12/0x20 [ 1002.983691]
  [ 1002.983691] which lock already depends on the new lock.
 
 It is known that batman-adv has a problem with the attaching/detaching of 
 interfaces over this sysfs. The cause of this problem is related to the fact 
 that batman-adv not only creates its own net_devices, but also unregisters 
 net_devices. This unregister will add a new element in the net_todo_list. 
 This 
 will cause a rtnl_lock when it calls netdev_wait_allrefs (there are some 
 condition, but we just ignore them for now). So the whole exercise of using 
 rtnl_trylock was useless.
 
 This extra rtnl_lock can cause a deadlock as you found out because it is 
 activated through a sysfs file and therefore the s_active mutex is locked (we 
 have the dependency s_active - rtnl_mutex, but other users have rtnl_mutex 
 - 
 s_active).
 
 So, what to do? There are different possibilities. We have to keep in mind 
 that there is a patchset (not yet accepted by the batman-adv maintainers) 
 which allows to use `ip link` or compatible tools to create/destroy 
 batman-adv 
 devices and attach/detach other devices.
 
 1. Remove the sysfs interface to attach/detach net_devices (which
destroys/creates batman-adv devices)
 
This is not really backward compatible and therefore not really acceptable.
Marek Lindner and Simon Wunderlich are also against forcing users to
require special tools to add/configure batman-adv devices (even batctl, ip
and so on).
 

Yeah, at least I think we should keep what we have for now and fix it before
moving to the next interface. It has its merits I would like to keep, having
text output is one of them. :)

 2. Ignore the possible deadlock
 
(sry, fill in your own comment...)
 

That probably won't help. :)

 3. Add workarounds in the core net code
 
Simon Wunderlich already tried it... I personally think it is not the right
way because it more likely to introduce more bugs by hiding a batman-adv
bug. And these bugs are a lot harder to find... trust me
 
For example the usage of __rtnl_unlock will let this bug to appear in
other places which use rtnl_trylock. This is caused by the fact that the
todo item isn't processed by __rtnl_unlock (this is the whole idea by
calling it) and therefore the todo work stays in net_todo_list. Another
user of rtnl_trylock will now call rtnl_unlock and don't expect an entry in
net_todo_list because he never unregistered a device. So he now has the
problem of batman-adv (what an unsocial läderlappen).
 
And moving everybody using rtnl_trylock to __rtnl_unlock has still the
problem that batman-adv don't immediatelly work on its todo and so
maybe causes other side effects because... the notifications weren't
sent and therefore the refcount of the unregistered device didn't went
to zero.
 
(I'll leave other side effects as homework for the reader)
 

You are right, it can probably not solved as easily as I thought before. Also,
it seems the bridge code is not concerned as I thought at first. Although
I still don't like the rtnl_unlock() concept in general, but I can't provide
an alternative here so I should't moan about that. :)

 4. Don't automatically remove batman-adv devices
 
The current approach is to automatically unregister batman-adv devices
when they don't have attached slave-devices (hardif called by batman-adv).
Removing this will slightly change the behaviour, but the interface can
still be removed using `ip link del dev bat0` or a similar tool.
 

That would be possible, but we must at least make sure that the initialization
is done for all internal tables (tt, bla, ...), counters, seqnos, etc when the
first device is added. Otherwise old users might assume that the device is
resetted correctly when removing all hard interfaces of one soft interface
and add it again under the same soft interface name.

 5. Add a 

Re: [B.A.T.M.A.N.] net, batman: lockdep circular dependency warning

2012-12-05 Thread Antonio Quartulli
Hi all,

On Wed, Dec 05, 2012 at 04:33:08PM +0100, Simon Wunderlich wrote:
 Hey Sven,
  
  1. Remove the sysfs interface to attach/detach net_devices (which
 destroys/creates batman-adv devices)
  
 This is not really backward compatible and therefore not really 
  acceptable.
 Marek Lindner and Simon Wunderlich are also against forcing users to
 require special tools to add/configure batman-adv devices (even batctl, 
  ip
 and so on).
  
 
 Yeah, at least I think we should keep what we have for now and fix it before
 moving to the next interface. It has its merits I would like to keep, having
 text output is one of them. :)

I agree on this. Not because of the nice text output, but rather because it is
better to first fix this deadlock in the current interface (which might mean
fixing old stable releases) and when we include the new feature.


[...]

  5. Add a workaround solution and promote the use of the standard interface
  
 So, the basic problem is the s_active mutex locked by the sysfs 
  interface.
 An idea is to postpone the part which needs the rtnl_mutex to a later 
  time.
 This has obviously the problem that we cannot return an error code to the
 caller when the device creation failed in the postponed part. This 
  problem
 can reduced slightly be moving only the unregister part, but now I'll 
  leave
 this out for simplicity of the description.
 
 We probably won't need the return code anyway - usually it should never fail,
 and if it does we don't handle it now too. 
 
  
 A possible implementation would create a work_struct and add it to
 batadv_event_workqueue. This work item has to contain all information 
  given
 by the user (which hardif, name of the batman-adv device).
 
 Sounds good.
 
  
 Simon Wunderlich already disliked this workaround, but Antonio Quartulli
 tried to encourage an RFC implementation. I've prefered a textual
 description rather than a patch missing explanations of the other
 alternatives.
 
 Well, actually that doesn't sound so bad - I currently don't have an overview
 of how big this change would be - this one was one concern, the return code 
 was
 another but it appears that this isn't a problem. If we don't add too much 
 bloat
 this one would probably the best alternative. At least as long as 
 rtnl_unlock()
 behaves like this. :)
 
 What do others think?
 

I like this approach too.
It looks clean and it doesn't affect the rest of the net code.
I think we should put some effort in this and try to come up with a patch soon.

Thank you for your comments.

Cheers,



-- 
Antonio Quartulli

..each of us alone is worth nothing..
Ernesto Che Guevara


pgpjP2JZAmJ18.pgp
Description: PGP signature