tipc: check session number before accepting link protocol messages
authorJon Maloy <jon.maloy@ericsson.com>
Mon, 9 Jul 2018 23:07:36 +0000 (01:07 +0200)
committerDavid S. Miller <davem@davemloft.net>
Thu, 12 Jul 2018 06:06:14 +0000 (23:06 -0700)
commit7ea817f4e8322fa27fb860d15025bf72f68b179f
tree906e6081a486ba6f244a8c0bb6d7c51c6343423d
parent9012de5089560136b849b920ad038b96160ed8f6
tipc: check session number before accepting link protocol messages

In some virtual environments we observe a significant higher number of
packet reordering and delays than we have been used to traditionally.

This makes it necessary with stricter checks on incoming link protocol
messages' session number, which until now only has been validated for
RESET messages.

Since the other two message types, ACTIVATE and STATE messages also
carry this number, it is easy to extend the validation check to those
messages.

We also introduce a flag indicating if a link has a valid peer session
number or not. This eliminates the mixing of 32- and 16-bit arithmethics
we are currently using to achieve this.

Acked-by: Ying Xue <ying.xue@windriver.com>
Signed-off-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/tipc/link.c
net/tipc/link.h
net/tipc/node.c