tipc: fix lost member events bug
authorJon Maloy <jon.maloy@ericsson.com>
Mon, 18 Dec 2017 16:34:16 +0000 (17:34 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 18 Dec 2017 18:16:40 +0000 (13:16 -0500)
commit234833991e14681f61cbfd93e65a5c976089cf11
tree757e5c311799b033dc7bd0fe10d55e99931f3b4e
parentb36025b19a2301ba0cac05e6ffad5668013d2c77
tipc: fix lost member events bug

Group messages are not supposed to be returned to sender when the
destination socket disappears. This is done correctly for regular
traffic messages, by setting the 'dest_droppable' bit in the header.
But we forget to do that in group protocol messages. This has the effect
that such messages may sometimes bounce back to the sender, be perceived
as a legitimate peer message, and wreak general havoc for the rest of
the session. In particular, we have seen that a member in state LEAVING
may go back to state RECLAIMED or REMITTED, hence causing suppression
of an otherwise expected 'member down' event to the user.

We fix this by setting the 'dest_droppable' bit even in group protocol
messages.

Signed-off-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/tipc/group.c