Race in creating new remote child, see #3423

* RemoteSystemDaemon removes its child when sendSystemMessage
  DeathWatchNotification is called from tellWatchersWeDied.
  That can happen after Terminated is delivered to other watcher,
  which create a new child with same name, and then the new child
  can then be removed instead of the old one.
* RemoteSystemDaemon must only remove child with exact match of
  full ActorRef
This commit is contained in:
Patrik Nordwall 2013-05-31 14:03:18 +02:00
parent 2afbf2b8ec
commit 2d5616446f
2 changed files with 17 additions and 2 deletions

View file

@ -550,13 +550,28 @@ private[akka] class VirtualPathContainer(
def addChild(name: String, ref: InternalActorRef): Unit = { def addChild(name: String, ref: InternalActorRef): Unit = {
children.put(name, ref) match { children.put(name, ref) match {
case null // okay case null // okay
case old log.warning("{} replacing child {} ({} -> {})", path, name, old, ref) case old
// this can happen from RemoteSystemDaemon if a new child is created
// before the old is removed from RemoteSystemDaemon children
log.debug("{} replacing child {} ({} -> {})", path, name, old, ref)
} }
} }
def removeChild(name: String): Unit = def removeChild(name: String): Unit =
if (children.remove(name) eq null) log.warning("{} trying to remove non-child {}", path, name) if (children.remove(name) eq null) log.warning("{} trying to remove non-child {}", path, name)
/**
* Remove a named child if it matches the ref.
*/
protected def removeChild(name: String, ref: ActorRef): Unit = {
val current = getChild(name)
if (current eq null)
log.warning("{} trying to remove non-child {}", path, name)
else if (current == ref)
children.remove(name, current) // remove when same value
}
def getChild(name: String): InternalActorRef = children.get(name) def getChild(name: String): InternalActorRef = children.get(name)
override def getChild(name: Iterator[String]): InternalActorRef = { override def getChild(name: Iterator[String]): InternalActorRef = {

View file

@ -83,7 +83,7 @@ private[akka] class RemoteSystemDaemon(
override def sendSystemMessage(message: SystemMessage): Unit = message match { override def sendSystemMessage(message: SystemMessage): Unit = message match {
case DeathWatchNotification(child: ActorRefWithCell with ActorRefScope, _, _) if child.isLocal case DeathWatchNotification(child: ActorRefWithCell with ActorRefScope, _, _) if child.isLocal
terminating.locked { terminating.locked {
removeChild(child.path.elements.drop(1).mkString("/")) removeChild(child.path.elements.drop(1).mkString("/"), child)
terminationHookDoneWhenNoChildren() terminationHookDoneWhenNoChildren()
} }
case _ super.sendSystemMessage(message) case _ super.sendSystemMessage(message)