mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-23 07:01:23 +00:00
tipc: clean up connection protocol reception function
We simplify the code for receiving connection probes, leveraging the recently introduced tipc_msg_reverse() function. We also stick to the principle of sending a possible response message directly from the calling (tipc_sk_rcv or backlog_rcv) functions, hence making the call chain shallower and easier to follow. We make one small protocol change here, allowed according to the spec. If a protocol message arrives from a remote socket that is not the one we are connected to, we are currently generating a connection abort message and send it to the source. This behavior is unnecessary, and might even be a security risk, so instead we now choose to only ignore the message. The consequnce for the sender is that he will need longer time to discover his mistake (until the next timeout), but this is an extreme corner case, and may happen anyway under other circumstances, so we deem this change acceptable. Signed-off-by: Jon Maloy <jon.maloy@ericsson.com> Reviewed-by: Erik Hugne <erik.hugne@ericsson.com> Reviewed-by: Ying Xue <ying.xue@windriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ec8a2e5621
commit
ac0074ee70
5 changed files with 68 additions and 63 deletions
|
@ -38,6 +38,9 @@
|
|||
#include "port.h"
|
||||
#include <net/sock.h>
|
||||
|
||||
#define TIPC_CONN_OK 0
|
||||
#define TIPC_CONN_PROBING 1
|
||||
|
||||
/**
|
||||
* struct tipc_sock - TIPC socket structure
|
||||
* @sk: socket - interacts with 'port' and with user via the socket API
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue