tipc: Strengthen checks for neighboring node discovery
Enhances existing checks on the discovery domain associated with a TIPC bearer. A bearer can no longer be configured to accept links from itself only (which would be pointless), or to nodes outside its own cluster (since multi-cluster support has now been removed from TIPC). Also, the neighbor discovery routine now validates link setup requests against the configured discovery domain for the bearer, rather than simply ensuring the requesting node belongs to the node's own cluster. Signed-off-by: Allan Stephens <Allan.Stephens@windriver.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
This commit is contained in:
committed by
Paul Gortmaker
parent
1f3de471ad
commit
66e019a6af
@@ -493,8 +493,15 @@ int tipc_enable_bearer(const char *name, u32 disc_domain, u32 priority)
|
||||
warn("Bearer <%s> rejected, illegal name\n", name);
|
||||
return -EINVAL;
|
||||
}
|
||||
if (!tipc_addr_domain_valid(disc_domain) ||
|
||||
!tipc_in_scope(disc_domain, tipc_own_addr)) {
|
||||
if (tipc_addr_domain_valid(disc_domain) &&
|
||||
(disc_domain != tipc_own_addr)) {
|
||||
if (tipc_in_scope(disc_domain, tipc_own_addr)) {
|
||||
disc_domain = tipc_own_addr & TIPC_CLUSTER_MASK;
|
||||
res = 0; /* accept any node in own cluster */
|
||||
} else if (in_own_cluster(disc_domain))
|
||||
res = 0; /* accept specified node in own cluster */
|
||||
}
|
||||
if (res) {
|
||||
warn("Bearer <%s> rejected, illegal discovery domain\n", name);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
Reference in New Issue
Block a user