Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 1 | /* |
| 2 | * net/tipc/node.c: TIPC node management routines |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 3 | * |
Jon Paul Maloy | dd3f9e7 | 2015-05-14 10:46:18 -0400 | [diff] [blame] | 4 | * Copyright (c) 2000-2006, 2012-2015, Ericsson AB |
Ying Xue | 46651c5 | 2014-03-27 12:54:36 +0800 | [diff] [blame] | 5 | * Copyright (c) 2005-2006, 2010-2014, Wind River Systems |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 6 | * All rights reserved. |
| 7 | * |
Per Liden | 9ea1fd3 | 2006-01-11 13:30:43 +0100 | [diff] [blame] | 8 | * Redistribution and use in source and binary forms, with or without |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 9 | * modification, are permitted provided that the following conditions are met: |
| 10 | * |
Per Liden | 9ea1fd3 | 2006-01-11 13:30:43 +0100 | [diff] [blame] | 11 | * 1. Redistributions of source code must retain the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer. |
| 13 | * 2. Redistributions in binary form must reproduce the above copyright |
| 14 | * notice, this list of conditions and the following disclaimer in the |
| 15 | * documentation and/or other materials provided with the distribution. |
| 16 | * 3. Neither the names of the copyright holders nor the names of its |
| 17 | * contributors may be used to endorse or promote products derived from |
| 18 | * this software without specific prior written permission. |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 19 | * |
Per Liden | 9ea1fd3 | 2006-01-11 13:30:43 +0100 | [diff] [blame] | 20 | * Alternatively, this software may be distributed under the terms of the |
| 21 | * GNU General Public License ("GPL") version 2 as published by the Free |
| 22 | * Software Foundation. |
| 23 | * |
| 24 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 25 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 27 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
| 28 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 29 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 30 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 31 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 32 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 33 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 34 | * POSSIBILITY OF SUCH DAMAGE. |
| 35 | */ |
| 36 | |
| 37 | #include "core.h" |
Richard Alpe | 22ae7cf | 2015-02-09 09:50:18 +0100 | [diff] [blame] | 38 | #include "link.h" |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 39 | #include "node.h" |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 40 | #include "name_distr.h" |
Jon Paul Maloy | 50100a5 | 2014-08-22 18:09:07 -0400 | [diff] [blame] | 41 | #include "socket.h" |
Jon Paul Maloy | a6bf70f | 2015-05-14 10:46:13 -0400 | [diff] [blame] | 42 | #include "bcast.h" |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 43 | #include "discover.h" |
Jon Paul Maloy | c819930 | 2015-10-15 14:52:46 -0400 | [diff] [blame] | 44 | |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 45 | /* Node FSM states and events: |
| 46 | */ |
| 47 | enum { |
| 48 | SELF_DOWN_PEER_DOWN = 0xdd, |
| 49 | SELF_UP_PEER_UP = 0xaa, |
| 50 | SELF_DOWN_PEER_LEAVING = 0xd1, |
| 51 | SELF_UP_PEER_COMING = 0xac, |
| 52 | SELF_COMING_PEER_UP = 0xca, |
| 53 | SELF_LEAVING_PEER_DOWN = 0x1d, |
| 54 | NODE_FAILINGOVER = 0xf0, |
| 55 | NODE_SYNCHING = 0xcc |
| 56 | }; |
| 57 | |
| 58 | enum { |
| 59 | SELF_ESTABL_CONTACT_EVT = 0xece, |
| 60 | SELF_LOST_CONTACT_EVT = 0x1ce, |
| 61 | PEER_ESTABL_CONTACT_EVT = 0x9ece, |
| 62 | PEER_LOST_CONTACT_EVT = 0x91ce, |
| 63 | NODE_FAILOVER_BEGIN_EVT = 0xfbe, |
| 64 | NODE_FAILOVER_END_EVT = 0xfee, |
| 65 | NODE_SYNCH_BEGIN_EVT = 0xcbe, |
| 66 | NODE_SYNCH_END_EVT = 0xcee |
| 67 | }; |
| 68 | |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 69 | static void __tipc_node_link_down(struct tipc_node *n, int *bearer_id, |
| 70 | struct sk_buff_head *xmitq, |
| 71 | struct tipc_media_addr **maddr); |
| 72 | static void tipc_node_link_down(struct tipc_node *n, int bearer_id, |
| 73 | bool delete); |
| 74 | static void node_lost_contact(struct tipc_node *n, struct sk_buff_head *inputq); |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 75 | static void tipc_node_delete(struct tipc_node *node); |
Jon Paul Maloy | 8a1577c | 2015-07-16 16:54:29 -0400 | [diff] [blame] | 76 | static void tipc_node_timeout(unsigned long data); |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 77 | static void tipc_node_fsm_evt(struct tipc_node *n, int evt); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 78 | |
Jon Paul Maloy | 02be61a | 2014-08-22 18:09:08 -0400 | [diff] [blame] | 79 | struct tipc_sock_conn { |
| 80 | u32 port; |
| 81 | u32 peer_port; |
| 82 | u32 peer_node; |
| 83 | struct list_head list; |
| 84 | }; |
| 85 | |
Richard Alpe | 3e4b6ab | 2014-11-20 10:29:17 +0100 | [diff] [blame] | 86 | static const struct nla_policy tipc_nl_node_policy[TIPC_NLA_NODE_MAX + 1] = { |
| 87 | [TIPC_NLA_NODE_UNSPEC] = { .type = NLA_UNSPEC }, |
| 88 | [TIPC_NLA_NODE_ADDR] = { .type = NLA_U32 }, |
| 89 | [TIPC_NLA_NODE_UP] = { .type = NLA_FLAG } |
| 90 | }; |
| 91 | |
Allan Stephens | 1ec2bb0 | 2011-10-27 15:03:24 -0400 | [diff] [blame] | 92 | /* |
Allan Stephens | a635b46 | 2011-11-04 11:54:43 -0400 | [diff] [blame] | 93 | * A trivial power-of-two bitmask technique is used for speed, since this |
| 94 | * operation is done for every incoming TIPC packet. The number of hash table |
| 95 | * entries has been chosen so that no hash chain exceeds 8 nodes and will |
| 96 | * usually be much smaller (typically only a single node). |
| 97 | */ |
Paul Gortmaker | 872f24d | 2012-04-23 04:49:13 +0000 | [diff] [blame] | 98 | static unsigned int tipc_hashfn(u32 addr) |
Allan Stephens | a635b46 | 2011-11-04 11:54:43 -0400 | [diff] [blame] | 99 | { |
| 100 | return addr & (NODE_HTABLE_SIZE - 1); |
| 101 | } |
| 102 | |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 103 | static void tipc_node_kref_release(struct kref *kref) |
| 104 | { |
Jon Paul Maloy | 6862fa9 | 2016-02-24 11:10:48 -0500 | [diff] [blame] | 105 | struct tipc_node *n = container_of(kref, struct tipc_node, kref); |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 106 | |
Jon Paul Maloy | 6862fa9 | 2016-02-24 11:10:48 -0500 | [diff] [blame] | 107 | kfree(n->bc_entry.link); |
| 108 | kfree_rcu(n, rcu); |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | void tipc_node_put(struct tipc_node *node) |
| 112 | { |
| 113 | kref_put(&node->kref, tipc_node_kref_release); |
| 114 | } |
| 115 | |
| 116 | static void tipc_node_get(struct tipc_node *node) |
| 117 | { |
| 118 | kref_get(&node->kref); |
| 119 | } |
| 120 | |
Allan Stephens | a635b46 | 2011-11-04 11:54:43 -0400 | [diff] [blame] | 121 | /* |
Allan Stephens | 672d99e | 2011-02-25 18:42:52 -0500 | [diff] [blame] | 122 | * tipc_node_find - locate specified node object, if it exists |
| 123 | */ |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 124 | struct tipc_node *tipc_node_find(struct net *net, u32 addr) |
Allan Stephens | 672d99e | 2011-02-25 18:42:52 -0500 | [diff] [blame] | 125 | { |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 126 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
Allan Stephens | 672d99e | 2011-02-25 18:42:52 -0500 | [diff] [blame] | 127 | struct tipc_node *node; |
Allan Stephens | 672d99e | 2011-02-25 18:42:52 -0500 | [diff] [blame] | 128 | |
Ying Xue | 3474753 | 2015-01-09 15:27:10 +0800 | [diff] [blame] | 129 | if (unlikely(!in_own_cluster_exact(net, addr))) |
Allan Stephens | 672d99e | 2011-02-25 18:42:52 -0500 | [diff] [blame] | 130 | return NULL; |
| 131 | |
Ying Xue | 6c7a762 | 2014-03-27 12:54:37 +0800 | [diff] [blame] | 132 | rcu_read_lock(); |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 133 | hlist_for_each_entry_rcu(node, &tn->node_htable[tipc_hashfn(addr)], |
| 134 | hash) { |
Ying Xue | 46651c5 | 2014-03-27 12:54:36 +0800 | [diff] [blame] | 135 | if (node->addr == addr) { |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 136 | tipc_node_get(node); |
Ying Xue | 6c7a762 | 2014-03-27 12:54:37 +0800 | [diff] [blame] | 137 | rcu_read_unlock(); |
Allan Stephens | 672d99e | 2011-02-25 18:42:52 -0500 | [diff] [blame] | 138 | return node; |
Ying Xue | 46651c5 | 2014-03-27 12:54:36 +0800 | [diff] [blame] | 139 | } |
Allan Stephens | 672d99e | 2011-02-25 18:42:52 -0500 | [diff] [blame] | 140 | } |
Ying Xue | 6c7a762 | 2014-03-27 12:54:37 +0800 | [diff] [blame] | 141 | rcu_read_unlock(); |
Allan Stephens | 672d99e | 2011-02-25 18:42:52 -0500 | [diff] [blame] | 142 | return NULL; |
| 143 | } |
| 144 | |
Jon Paul Maloy | cf14881 | 2015-07-30 18:24:22 -0400 | [diff] [blame] | 145 | struct tipc_node *tipc_node_create(struct net *net, u32 addr, u16 capabilities) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 146 | { |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 147 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
Allan Stephens | 672d99e | 2011-02-25 18:42:52 -0500 | [diff] [blame] | 148 | struct tipc_node *n_ptr, *temp_node; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 149 | |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 150 | spin_lock_bh(&tn->node_list_lock); |
Jon Paul Maloy | b45db71 | 2015-02-03 08:59:19 -0500 | [diff] [blame] | 151 | n_ptr = tipc_node_find(net, addr); |
| 152 | if (n_ptr) |
| 153 | goto exit; |
Allan Stephens | 5af5479 | 2010-12-31 18:59:23 +0000 | [diff] [blame] | 154 | n_ptr = kzalloc(sizeof(*n_ptr), GFP_ATOMIC); |
Allan Stephens | a10bd92 | 2006-06-25 23:52:17 -0700 | [diff] [blame] | 155 | if (!n_ptr) { |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 156 | pr_warn("Node creation failed, no memory\n"); |
Jon Paul Maloy | b45db71 | 2015-02-03 08:59:19 -0500 | [diff] [blame] | 157 | goto exit; |
Allan Stephens | a10bd92 | 2006-06-25 23:52:17 -0700 | [diff] [blame] | 158 | } |
Allan Stephens | a10bd92 | 2006-06-25 23:52:17 -0700 | [diff] [blame] | 159 | n_ptr->addr = addr; |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 160 | n_ptr->net = net; |
Jon Paul Maloy | cf14881 | 2015-07-30 18:24:22 -0400 | [diff] [blame] | 161 | n_ptr->capabilities = capabilities; |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 162 | kref_init(&n_ptr->kref); |
Allan Stephens | 51a8e4d | 2010-12-31 18:59:18 +0000 | [diff] [blame] | 163 | spin_lock_init(&n_ptr->lock); |
Allan Stephens | 672d99e | 2011-02-25 18:42:52 -0500 | [diff] [blame] | 164 | INIT_HLIST_NODE(&n_ptr->hash); |
| 165 | INIT_LIST_HEAD(&n_ptr->list); |
Ying Xue | a8f48af | 2014-11-26 11:41:45 +0800 | [diff] [blame] | 166 | INIT_LIST_HEAD(&n_ptr->publ_list); |
Jon Paul Maloy | 02be61a | 2014-08-22 18:09:08 -0400 | [diff] [blame] | 167 | INIT_LIST_HEAD(&n_ptr->conn_sks); |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 168 | skb_queue_head_init(&n_ptr->bc_entry.namedq); |
| 169 | skb_queue_head_init(&n_ptr->bc_entry.inputq1); |
| 170 | __skb_queue_head_init(&n_ptr->bc_entry.arrvq); |
| 171 | skb_queue_head_init(&n_ptr->bc_entry.inputq2); |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 172 | n_ptr->state = SELF_DOWN_PEER_LEAVING; |
Allan Stephens | fc0eea6 | 2011-10-28 16:26:41 -0400 | [diff] [blame] | 173 | n_ptr->signature = INVALID_NODE_SIG; |
Jon Paul Maloy | 36e78a4 | 2015-07-16 16:54:22 -0400 | [diff] [blame] | 174 | n_ptr->active_links[0] = INVALID_BEARER_ID; |
| 175 | n_ptr->active_links[1] = INVALID_BEARER_ID; |
Jon Paul Maloy | c72fa87 | 2015-10-22 08:51:46 -0400 | [diff] [blame] | 176 | if (!tipc_link_bc_create(net, tipc_own_addr(net), n_ptr->addr, |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 177 | U16_MAX, tipc_bc_sndlink(net)->window, |
| 178 | n_ptr->capabilities, |
| 179 | &n_ptr->bc_entry.inputq1, |
| 180 | &n_ptr->bc_entry.namedq, |
| 181 | tipc_bc_sndlink(net), |
| 182 | &n_ptr->bc_entry.link)) { |
| 183 | pr_warn("Broadcast rcv link creation failed, no memory\n"); |
| 184 | kfree(n_ptr); |
| 185 | n_ptr = NULL; |
| 186 | goto exit; |
| 187 | } |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 188 | tipc_node_get(n_ptr); |
Jon Paul Maloy | 8a1577c | 2015-07-16 16:54:29 -0400 | [diff] [blame] | 189 | setup_timer(&n_ptr->timer, tipc_node_timeout, (unsigned long)n_ptr); |
| 190 | n_ptr->keepalive_intv = U32_MAX; |
Jon Paul Maloy | 692925f | 2016-02-10 16:14:57 -0500 | [diff] [blame] | 191 | hlist_add_head_rcu(&n_ptr->hash, &tn->node_htable[tipc_hashfn(addr)]); |
| 192 | list_for_each_entry_rcu(temp_node, &tn->node_list, list) { |
| 193 | if (n_ptr->addr < temp_node->addr) |
| 194 | break; |
| 195 | } |
| 196 | list_add_tail_rcu(&n_ptr->list, &temp_node->list); |
Jon Paul Maloy | b45db71 | 2015-02-03 08:59:19 -0500 | [diff] [blame] | 197 | exit: |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 198 | spin_unlock_bh(&tn->node_list_lock); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 199 | return n_ptr; |
| 200 | } |
| 201 | |
Jon Paul Maloy | 8a1577c | 2015-07-16 16:54:29 -0400 | [diff] [blame] | 202 | static void tipc_node_calculate_timer(struct tipc_node *n, struct tipc_link *l) |
| 203 | { |
| 204 | unsigned long tol = l->tolerance; |
| 205 | unsigned long intv = ((tol / 4) > 500) ? 500 : tol / 4; |
| 206 | unsigned long keepalive_intv = msecs_to_jiffies(intv); |
| 207 | |
| 208 | /* Link with lowest tolerance determines timer interval */ |
| 209 | if (keepalive_intv < n->keepalive_intv) |
| 210 | n->keepalive_intv = keepalive_intv; |
| 211 | |
| 212 | /* Ensure link's abort limit corresponds to current interval */ |
| 213 | l->abort_limit = l->tolerance / jiffies_to_msecs(n->keepalive_intv); |
| 214 | } |
| 215 | |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 216 | static void tipc_node_delete(struct tipc_node *node) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 217 | { |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 218 | list_del_rcu(&node->list); |
| 219 | hlist_del_rcu(&node->hash); |
Jon Paul Maloy | 6862fa9 | 2016-02-24 11:10:48 -0500 | [diff] [blame] | 220 | tipc_node_put(node); |
| 221 | |
| 222 | del_timer_sync(&node->timer); |
| 223 | tipc_node_put(node); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 224 | } |
| 225 | |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 226 | void tipc_node_stop(struct net *net) |
Ying Xue | 46651c5 | 2014-03-27 12:54:36 +0800 | [diff] [blame] | 227 | { |
Jon Paul Maloy | 6862fa9 | 2016-02-24 11:10:48 -0500 | [diff] [blame] | 228 | struct tipc_net *tn = tipc_net(net); |
Ying Xue | 46651c5 | 2014-03-27 12:54:36 +0800 | [diff] [blame] | 229 | struct tipc_node *node, *t_node; |
| 230 | |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 231 | spin_lock_bh(&tn->node_list_lock); |
Jon Paul Maloy | 6862fa9 | 2016-02-24 11:10:48 -0500 | [diff] [blame] | 232 | list_for_each_entry_safe(node, t_node, &tn->node_list, list) |
| 233 | tipc_node_delete(node); |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 234 | spin_unlock_bh(&tn->node_list_lock); |
Ying Xue | 46651c5 | 2014-03-27 12:54:36 +0800 | [diff] [blame] | 235 | } |
| 236 | |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 237 | int tipc_node_add_conn(struct net *net, u32 dnode, u32 port, u32 peer_port) |
Jon Paul Maloy | 02be61a | 2014-08-22 18:09:08 -0400 | [diff] [blame] | 238 | { |
| 239 | struct tipc_node *node; |
| 240 | struct tipc_sock_conn *conn; |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 241 | int err = 0; |
Jon Paul Maloy | 02be61a | 2014-08-22 18:09:08 -0400 | [diff] [blame] | 242 | |
Ying Xue | 3474753 | 2015-01-09 15:27:10 +0800 | [diff] [blame] | 243 | if (in_own_node(net, dnode)) |
Jon Paul Maloy | 02be61a | 2014-08-22 18:09:08 -0400 | [diff] [blame] | 244 | return 0; |
| 245 | |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 246 | node = tipc_node_find(net, dnode); |
Jon Paul Maloy | 02be61a | 2014-08-22 18:09:08 -0400 | [diff] [blame] | 247 | if (!node) { |
| 248 | pr_warn("Connecting sock to node 0x%x failed\n", dnode); |
| 249 | return -EHOSTUNREACH; |
| 250 | } |
| 251 | conn = kmalloc(sizeof(*conn), GFP_ATOMIC); |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 252 | if (!conn) { |
| 253 | err = -EHOSTUNREACH; |
| 254 | goto exit; |
| 255 | } |
Jon Paul Maloy | 02be61a | 2014-08-22 18:09:08 -0400 | [diff] [blame] | 256 | conn->peer_node = dnode; |
| 257 | conn->port = port; |
| 258 | conn->peer_port = peer_port; |
| 259 | |
| 260 | tipc_node_lock(node); |
| 261 | list_add_tail(&conn->list, &node->conn_sks); |
| 262 | tipc_node_unlock(node); |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 263 | exit: |
| 264 | tipc_node_put(node); |
| 265 | return err; |
Jon Paul Maloy | 02be61a | 2014-08-22 18:09:08 -0400 | [diff] [blame] | 266 | } |
| 267 | |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 268 | void tipc_node_remove_conn(struct net *net, u32 dnode, u32 port) |
Jon Paul Maloy | 02be61a | 2014-08-22 18:09:08 -0400 | [diff] [blame] | 269 | { |
| 270 | struct tipc_node *node; |
| 271 | struct tipc_sock_conn *conn, *safe; |
| 272 | |
Ying Xue | 3474753 | 2015-01-09 15:27:10 +0800 | [diff] [blame] | 273 | if (in_own_node(net, dnode)) |
Jon Paul Maloy | 02be61a | 2014-08-22 18:09:08 -0400 | [diff] [blame] | 274 | return; |
| 275 | |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 276 | node = tipc_node_find(net, dnode); |
Jon Paul Maloy | 02be61a | 2014-08-22 18:09:08 -0400 | [diff] [blame] | 277 | if (!node) |
| 278 | return; |
| 279 | |
| 280 | tipc_node_lock(node); |
| 281 | list_for_each_entry_safe(conn, safe, &node->conn_sks, list) { |
| 282 | if (port != conn->port) |
| 283 | continue; |
| 284 | list_del(&conn->list); |
| 285 | kfree(conn); |
| 286 | } |
| 287 | tipc_node_unlock(node); |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 288 | tipc_node_put(node); |
Jon Paul Maloy | 02be61a | 2014-08-22 18:09:08 -0400 | [diff] [blame] | 289 | } |
| 290 | |
Jon Paul Maloy | 8a1577c | 2015-07-16 16:54:29 -0400 | [diff] [blame] | 291 | /* tipc_node_timeout - handle expiration of node timer |
| 292 | */ |
| 293 | static void tipc_node_timeout(unsigned long data) |
| 294 | { |
| 295 | struct tipc_node *n = (struct tipc_node *)data; |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 296 | struct tipc_link_entry *le; |
Jon Paul Maloy | 8a1577c | 2015-07-16 16:54:29 -0400 | [diff] [blame] | 297 | struct sk_buff_head xmitq; |
Jon Paul Maloy | 8a1577c | 2015-07-16 16:54:29 -0400 | [diff] [blame] | 298 | int bearer_id; |
| 299 | int rc = 0; |
| 300 | |
| 301 | __skb_queue_head_init(&xmitq); |
| 302 | |
| 303 | for (bearer_id = 0; bearer_id < MAX_BEARERS; bearer_id++) { |
| 304 | tipc_node_lock(n); |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 305 | le = &n->links[bearer_id]; |
| 306 | if (le->link) { |
Jon Paul Maloy | 8a1577c | 2015-07-16 16:54:29 -0400 | [diff] [blame] | 307 | /* Link tolerance may change asynchronously: */ |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 308 | tipc_node_calculate_timer(n, le->link); |
| 309 | rc = tipc_link_timeout(le->link, &xmitq); |
Jon Paul Maloy | 8a1577c | 2015-07-16 16:54:29 -0400 | [diff] [blame] | 310 | } |
| 311 | tipc_node_unlock(n); |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 312 | tipc_bearer_xmit(n->net, bearer_id, &xmitq, &le->maddr); |
| 313 | if (rc & TIPC_LINK_DOWN_EVT) |
| 314 | tipc_node_link_down(n, bearer_id, false); |
Jon Paul Maloy | 8a1577c | 2015-07-16 16:54:29 -0400 | [diff] [blame] | 315 | } |
Jon Paul Maloy | 6862fa9 | 2016-02-24 11:10:48 -0500 | [diff] [blame] | 316 | mod_timer(&n->timer, jiffies + n->keepalive_intv); |
Jon Paul Maloy | 8a1577c | 2015-07-16 16:54:29 -0400 | [diff] [blame] | 317 | } |
| 318 | |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 319 | /** |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 320 | * __tipc_node_link_up - handle addition of link |
| 321 | * Node lock must be held by caller |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 322 | * Link becomes active (alone or shared) or standby, depending on its priority. |
| 323 | */ |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 324 | static void __tipc_node_link_up(struct tipc_node *n, int bearer_id, |
| 325 | struct sk_buff_head *xmitq) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 326 | { |
Jon Paul Maloy | 36e78a4 | 2015-07-16 16:54:22 -0400 | [diff] [blame] | 327 | int *slot0 = &n->active_links[0]; |
| 328 | int *slot1 = &n->active_links[1]; |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 329 | struct tipc_link *ol = node_active_link(n, 0); |
| 330 | struct tipc_link *nl = n->links[bearer_id].link; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 331 | |
Jon Paul Maloy | 73f646c | 2015-10-15 14:52:44 -0400 | [diff] [blame] | 332 | if (!nl) |
| 333 | return; |
| 334 | |
| 335 | tipc_link_fsm_evt(nl, LINK_ESTABLISH_EVT); |
| 336 | if (!tipc_link_is_up(nl)) |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 337 | return; |
| 338 | |
Jon Paul Maloy | 9d13ec6 | 2015-07-16 16:54:19 -0400 | [diff] [blame] | 339 | n->working_links++; |
| 340 | n->action_flags |= TIPC_NOTIFY_LINK_UP; |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 341 | n->link_id = nl->peer_bearer_id << 16 | bearer_id; |
| 342 | |
| 343 | /* Leave room for tunnel header when returning 'mtu' to users: */ |
| 344 | n->links[bearer_id].mtu = nl->mtu - INT_H_SIZE; |
Ying Xue | 7b8613e | 2014-10-20 14:44:25 +0800 | [diff] [blame] | 345 | |
Jon Paul Maloy | cbeb83c | 2015-07-30 18:24:15 -0400 | [diff] [blame] | 346 | tipc_bearer_add_dest(n->net, bearer_id, n->addr); |
Jon Paul Maloy | b06b281 | 2015-10-22 08:51:42 -0400 | [diff] [blame] | 347 | tipc_bcast_inc_bearer_dst_cnt(n->net, bearer_id); |
Jon Paul Maloy | cbeb83c | 2015-07-30 18:24:15 -0400 | [diff] [blame] | 348 | |
Erik Hugne | 3fa9cac | 2015-01-22 17:10:31 +0100 | [diff] [blame] | 349 | pr_debug("Established link <%s> on network plane %c\n", |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 350 | nl->name, nl->net_plane); |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 351 | |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 352 | /* First link? => give it both slots */ |
| 353 | if (!ol) { |
Jon Paul Maloy | 36e78a4 | 2015-07-16 16:54:22 -0400 | [diff] [blame] | 354 | *slot0 = bearer_id; |
| 355 | *slot1 = bearer_id; |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 356 | tipc_node_fsm_evt(n, SELF_ESTABL_CONTACT_EVT); |
| 357 | n->action_flags |= TIPC_NOTIFY_NODE_UP; |
Jon Paul Maloy | b06b281 | 2015-10-22 08:51:42 -0400 | [diff] [blame] | 358 | tipc_bcast_add_peer(n->net, nl, xmitq); |
Jon Paul Maloy | 9d13ec6 | 2015-07-16 16:54:19 -0400 | [diff] [blame] | 359 | return; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 360 | } |
Jon Paul Maloy | 36e78a4 | 2015-07-16 16:54:22 -0400 | [diff] [blame] | 361 | |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 362 | /* Second link => redistribute slots */ |
| 363 | if (nl->priority > ol->priority) { |
| 364 | pr_debug("Old link <%s> becomes standby\n", ol->name); |
Jon Paul Maloy | 36e78a4 | 2015-07-16 16:54:22 -0400 | [diff] [blame] | 365 | *slot0 = bearer_id; |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 366 | *slot1 = bearer_id; |
Jon Paul Maloy | c72fa87 | 2015-10-22 08:51:46 -0400 | [diff] [blame] | 367 | tipc_link_set_active(nl, true); |
| 368 | tipc_link_set_active(ol, false); |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 369 | } else if (nl->priority == ol->priority) { |
Jon Paul Maloy | c72fa87 | 2015-10-22 08:51:46 -0400 | [diff] [blame] | 370 | tipc_link_set_active(nl, true); |
Jon Paul Maloy | c49a0a84 | 2015-10-22 08:51:47 -0400 | [diff] [blame] | 371 | *slot1 = bearer_id; |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 372 | } else { |
| 373 | pr_debug("New link <%s> is standby\n", nl->name); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 374 | } |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 375 | |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 376 | /* Prepare synchronization with first link */ |
| 377 | tipc_link_tnl_prepare(ol, nl, SYNCH_MSG, xmitq); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | /** |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 381 | * tipc_node_link_up - handle addition of link |
| 382 | * |
| 383 | * Link becomes active (alone or shared) or standby, depending on its priority. |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 384 | */ |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 385 | static void tipc_node_link_up(struct tipc_node *n, int bearer_id, |
| 386 | struct sk_buff_head *xmitq) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 387 | { |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 388 | tipc_node_lock(n); |
| 389 | __tipc_node_link_up(n, bearer_id, xmitq); |
| 390 | tipc_node_unlock(n); |
| 391 | } |
| 392 | |
| 393 | /** |
| 394 | * __tipc_node_link_down - handle loss of link |
| 395 | */ |
| 396 | static void __tipc_node_link_down(struct tipc_node *n, int *bearer_id, |
| 397 | struct sk_buff_head *xmitq, |
| 398 | struct tipc_media_addr **maddr) |
| 399 | { |
| 400 | struct tipc_link_entry *le = &n->links[*bearer_id]; |
Jon Paul Maloy | 36e78a4 | 2015-07-16 16:54:22 -0400 | [diff] [blame] | 401 | int *slot0 = &n->active_links[0]; |
| 402 | int *slot1 = &n->active_links[1]; |
| 403 | int i, highest = 0; |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 404 | struct tipc_link *l, *_l, *tnl; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 405 | |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 406 | l = n->links[*bearer_id].link; |
Jon Paul Maloy | 662921c | 2015-07-30 18:24:21 -0400 | [diff] [blame] | 407 | if (!l || tipc_link_is_reset(l)) |
Jon Paul Maloy | 655fb24 | 2015-07-30 18:24:17 -0400 | [diff] [blame] | 408 | return; |
| 409 | |
Jon Paul Maloy | 9d13ec6 | 2015-07-16 16:54:19 -0400 | [diff] [blame] | 410 | n->working_links--; |
| 411 | n->action_flags |= TIPC_NOTIFY_LINK_DOWN; |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 412 | n->link_id = l->peer_bearer_id << 16 | *bearer_id; |
Allan Stephens | 5392d64 | 2006-06-25 23:52:50 -0700 | [diff] [blame] | 413 | |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 414 | tipc_bearer_remove_dest(n->net, *bearer_id, n->addr); |
Jon Paul Maloy | 655fb24 | 2015-07-30 18:24:17 -0400 | [diff] [blame] | 415 | |
Erik Hugne | 3fa9cac | 2015-01-22 17:10:31 +0100 | [diff] [blame] | 416 | pr_debug("Lost link <%s> on network plane %c\n", |
Jon Paul Maloy | 9d13ec6 | 2015-07-16 16:54:19 -0400 | [diff] [blame] | 417 | l->name, l->net_plane); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 418 | |
Jon Paul Maloy | 36e78a4 | 2015-07-16 16:54:22 -0400 | [diff] [blame] | 419 | /* Select new active link if any available */ |
| 420 | *slot0 = INVALID_BEARER_ID; |
| 421 | *slot1 = INVALID_BEARER_ID; |
| 422 | for (i = 0; i < MAX_BEARERS; i++) { |
| 423 | _l = n->links[i].link; |
| 424 | if (!_l || !tipc_link_is_up(_l)) |
| 425 | continue; |
Jon Paul Maloy | 655fb24 | 2015-07-30 18:24:17 -0400 | [diff] [blame] | 426 | if (_l == l) |
| 427 | continue; |
Jon Paul Maloy | 36e78a4 | 2015-07-16 16:54:22 -0400 | [diff] [blame] | 428 | if (_l->priority < highest) |
| 429 | continue; |
| 430 | if (_l->priority > highest) { |
| 431 | highest = _l->priority; |
| 432 | *slot0 = i; |
| 433 | *slot1 = i; |
| 434 | continue; |
| 435 | } |
| 436 | *slot1 = i; |
| 437 | } |
Jon Paul Maloy | 655fb24 | 2015-07-30 18:24:17 -0400 | [diff] [blame] | 438 | |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 439 | if (!tipc_node_is_up(n)) { |
Jon Paul Maloy | c819930 | 2015-10-15 14:52:46 -0400 | [diff] [blame] | 440 | if (tipc_link_peer_is_down(l)) |
| 441 | tipc_node_fsm_evt(n, PEER_LOST_CONTACT_EVT); |
| 442 | tipc_node_fsm_evt(n, SELF_LOST_CONTACT_EVT); |
| 443 | tipc_link_fsm_evt(l, LINK_RESET_EVT); |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 444 | tipc_link_reset(l); |
Jon Paul Maloy | 282b3a0 | 2015-10-15 14:52:45 -0400 | [diff] [blame] | 445 | tipc_link_build_reset_msg(l, xmitq); |
| 446 | *maddr = &n->links[*bearer_id].maddr; |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 447 | node_lost_contact(n, &le->inputq); |
Jon Paul Maloy | b06b281 | 2015-10-22 08:51:42 -0400 | [diff] [blame] | 448 | tipc_bcast_dec_bearer_dst_cnt(n->net, *bearer_id); |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 449 | return; |
| 450 | } |
Jon Paul Maloy | b06b281 | 2015-10-22 08:51:42 -0400 | [diff] [blame] | 451 | tipc_bcast_dec_bearer_dst_cnt(n->net, *bearer_id); |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 452 | |
| 453 | /* There is still a working link => initiate failover */ |
| 454 | tnl = node_active_link(n, 0); |
Jon Paul Maloy | 5ae2f8e | 2015-08-20 02:12:55 -0400 | [diff] [blame] | 455 | tipc_link_fsm_evt(tnl, LINK_SYNCH_END_EVT); |
| 456 | tipc_node_fsm_evt(n, NODE_SYNCH_END_EVT); |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 457 | n->sync_point = tnl->rcv_nxt + (U16_MAX / 2 - 1); |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 458 | tipc_link_tnl_prepare(l, tnl, FAILOVER_MSG, xmitq); |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 459 | tipc_link_reset(l); |
Jon Paul Maloy | c819930 | 2015-10-15 14:52:46 -0400 | [diff] [blame] | 460 | tipc_link_fsm_evt(l, LINK_RESET_EVT); |
Jon Paul Maloy | 662921c | 2015-07-30 18:24:21 -0400 | [diff] [blame] | 461 | tipc_link_fsm_evt(l, LINK_FAILOVER_BEGIN_EVT); |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 462 | tipc_node_fsm_evt(n, NODE_FAILOVER_BEGIN_EVT); |
| 463 | *maddr = &n->links[tnl->bearer_id].maddr; |
| 464 | *bearer_id = tnl->bearer_id; |
| 465 | } |
| 466 | |
| 467 | static void tipc_node_link_down(struct tipc_node *n, int bearer_id, bool delete) |
| 468 | { |
| 469 | struct tipc_link_entry *le = &n->links[bearer_id]; |
Jon Paul Maloy | 73f646c | 2015-10-15 14:52:44 -0400 | [diff] [blame] | 470 | struct tipc_link *l = le->link; |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 471 | struct tipc_media_addr *maddr; |
| 472 | struct sk_buff_head xmitq; |
| 473 | |
Jon Paul Maloy | 73f646c | 2015-10-15 14:52:44 -0400 | [diff] [blame] | 474 | if (!l) |
| 475 | return; |
| 476 | |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 477 | __skb_queue_head_init(&xmitq); |
| 478 | |
| 479 | tipc_node_lock(n); |
Jon Paul Maloy | 73f646c | 2015-10-15 14:52:44 -0400 | [diff] [blame] | 480 | if (!tipc_link_is_establishing(l)) { |
| 481 | __tipc_node_link_down(n, &bearer_id, &xmitq, &maddr); |
| 482 | if (delete) { |
| 483 | kfree(l); |
| 484 | le->link = NULL; |
| 485 | n->link_cnt--; |
| 486 | } |
| 487 | } else { |
| 488 | /* Defuse pending tipc_node_link_up() */ |
| 489 | tipc_link_fsm_evt(l, LINK_RESET_EVT); |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 490 | } |
| 491 | tipc_node_unlock(n); |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 492 | tipc_bearer_xmit(n->net, bearer_id, &xmitq, maddr); |
| 493 | tipc_sk_rcv(n->net, &le->inputq); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 494 | } |
| 495 | |
Jon Paul Maloy | 9d13ec6 | 2015-07-16 16:54:19 -0400 | [diff] [blame] | 496 | bool tipc_node_is_up(struct tipc_node *n) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 497 | { |
Jon Paul Maloy | 36e78a4 | 2015-07-16 16:54:22 -0400 | [diff] [blame] | 498 | return n->active_links[0] != INVALID_BEARER_ID; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 499 | } |
| 500 | |
Jon Paul Maloy | cf14881 | 2015-07-30 18:24:22 -0400 | [diff] [blame] | 501 | void tipc_node_check_dest(struct net *net, u32 onode, |
| 502 | struct tipc_bearer *b, |
| 503 | u16 capabilities, u32 signature, |
| 504 | struct tipc_media_addr *maddr, |
| 505 | bool *respond, bool *dupl_addr) |
Jon Paul Maloy | d3a43b9 | 2015-07-16 16:54:20 -0400 | [diff] [blame] | 506 | { |
Jon Paul Maloy | cf14881 | 2015-07-30 18:24:22 -0400 | [diff] [blame] | 507 | struct tipc_node *n; |
| 508 | struct tipc_link *l; |
Jon Paul Maloy | 440d896 | 2015-07-30 18:24:26 -0400 | [diff] [blame] | 509 | struct tipc_link_entry *le; |
Jon Paul Maloy | cf14881 | 2015-07-30 18:24:22 -0400 | [diff] [blame] | 510 | bool addr_match = false; |
| 511 | bool sign_match = false; |
| 512 | bool link_up = false; |
| 513 | bool accept_addr = false; |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 514 | bool reset = true; |
Jon Paul Maloy | 0e05498 | 2015-10-22 08:51:36 -0400 | [diff] [blame] | 515 | char *if_name; |
Jon Paul Maloy | 440d896 | 2015-07-30 18:24:26 -0400 | [diff] [blame] | 516 | |
Jon Paul Maloy | cf14881 | 2015-07-30 18:24:22 -0400 | [diff] [blame] | 517 | *dupl_addr = false; |
| 518 | *respond = false; |
Jon Paul Maloy | d3a43b9 | 2015-07-16 16:54:20 -0400 | [diff] [blame] | 519 | |
Jon Paul Maloy | cf14881 | 2015-07-30 18:24:22 -0400 | [diff] [blame] | 520 | n = tipc_node_create(net, onode, capabilities); |
| 521 | if (!n) |
| 522 | return; |
Jon Paul Maloy | d3a43b9 | 2015-07-16 16:54:20 -0400 | [diff] [blame] | 523 | |
Jon Paul Maloy | cf14881 | 2015-07-30 18:24:22 -0400 | [diff] [blame] | 524 | tipc_node_lock(n); |
| 525 | |
Jon Paul Maloy | 440d896 | 2015-07-30 18:24:26 -0400 | [diff] [blame] | 526 | le = &n->links[b->identity]; |
Jon Paul Maloy | cf14881 | 2015-07-30 18:24:22 -0400 | [diff] [blame] | 527 | |
| 528 | /* Prepare to validate requesting node's signature and media address */ |
Jon Paul Maloy | 440d896 | 2015-07-30 18:24:26 -0400 | [diff] [blame] | 529 | l = le->link; |
Jon Paul Maloy | cf14881 | 2015-07-30 18:24:22 -0400 | [diff] [blame] | 530 | link_up = l && tipc_link_is_up(l); |
Jon Paul Maloy | 440d896 | 2015-07-30 18:24:26 -0400 | [diff] [blame] | 531 | addr_match = l && !memcmp(&le->maddr, maddr, sizeof(*maddr)); |
Jon Paul Maloy | cf14881 | 2015-07-30 18:24:22 -0400 | [diff] [blame] | 532 | sign_match = (signature == n->signature); |
| 533 | |
| 534 | /* These three flags give us eight permutations: */ |
| 535 | |
| 536 | if (sign_match && addr_match && link_up) { |
| 537 | /* All is fine. Do nothing. */ |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 538 | reset = false; |
Jon Paul Maloy | cf14881 | 2015-07-30 18:24:22 -0400 | [diff] [blame] | 539 | } else if (sign_match && addr_match && !link_up) { |
| 540 | /* Respond. The link will come up in due time */ |
| 541 | *respond = true; |
| 542 | } else if (sign_match && !addr_match && link_up) { |
| 543 | /* Peer has changed i/f address without rebooting. |
| 544 | * If so, the link will reset soon, and the next |
| 545 | * discovery will be accepted. So we can ignore it. |
| 546 | * It may also be an cloned or malicious peer having |
| 547 | * chosen the same node address and signature as an |
| 548 | * existing one. |
| 549 | * Ignore requests until the link goes down, if ever. |
| 550 | */ |
| 551 | *dupl_addr = true; |
| 552 | } else if (sign_match && !addr_match && !link_up) { |
| 553 | /* Peer link has changed i/f address without rebooting. |
| 554 | * It may also be a cloned or malicious peer; we can't |
| 555 | * distinguish between the two. |
| 556 | * The signature is correct, so we must accept. |
| 557 | */ |
| 558 | accept_addr = true; |
| 559 | *respond = true; |
| 560 | } else if (!sign_match && addr_match && link_up) { |
| 561 | /* Peer node rebooted. Two possibilities: |
| 562 | * - Delayed re-discovery; this link endpoint has already |
| 563 | * reset and re-established contact with the peer, before |
| 564 | * receiving a discovery message from that node. |
| 565 | * (The peer happened to receive one from this node first). |
| 566 | * - The peer came back so fast that our side has not |
| 567 | * discovered it yet. Probing from this side will soon |
| 568 | * reset the link, since there can be no working link |
| 569 | * endpoint at the peer end, and the link will re-establish. |
| 570 | * Accept the signature, since it comes from a known peer. |
| 571 | */ |
| 572 | n->signature = signature; |
| 573 | } else if (!sign_match && addr_match && !link_up) { |
| 574 | /* The peer node has rebooted. |
| 575 | * Accept signature, since it is a known peer. |
| 576 | */ |
| 577 | n->signature = signature; |
| 578 | *respond = true; |
| 579 | } else if (!sign_match && !addr_match && link_up) { |
| 580 | /* Peer rebooted with new address, or a new/duplicate peer. |
| 581 | * Ignore until the link goes down, if ever. |
| 582 | */ |
| 583 | *dupl_addr = true; |
| 584 | } else if (!sign_match && !addr_match && !link_up) { |
| 585 | /* Peer rebooted with new address, or it is a new peer. |
| 586 | * Accept signature and address. |
| 587 | */ |
| 588 | n->signature = signature; |
| 589 | accept_addr = true; |
| 590 | *respond = true; |
| 591 | } |
| 592 | |
| 593 | if (!accept_addr) |
| 594 | goto exit; |
| 595 | |
| 596 | /* Now create new link if not already existing */ |
Jon Paul Maloy | 8a1577c | 2015-07-16 16:54:29 -0400 | [diff] [blame] | 597 | if (!l) { |
Jon Paul Maloy | 440d896 | 2015-07-30 18:24:26 -0400 | [diff] [blame] | 598 | if (n->link_cnt == 2) { |
| 599 | pr_warn("Cannot establish 3rd link to %x\n", n->addr); |
| 600 | goto exit; |
| 601 | } |
Jon Paul Maloy | 0e05498 | 2015-10-22 08:51:36 -0400 | [diff] [blame] | 602 | if_name = strchr(b->name, ':') + 1; |
Jon Paul Maloy | c72fa87 | 2015-10-22 08:51:46 -0400 | [diff] [blame] | 603 | if (!tipc_link_create(net, if_name, b->identity, b->tolerance, |
Jon Paul Maloy | 0e05498 | 2015-10-22 08:51:36 -0400 | [diff] [blame] | 604 | b->net_plane, b->mtu, b->priority, |
| 605 | b->window, mod(tipc_net(net)->random), |
Jon Paul Maloy | fd556f2 | 2015-10-22 08:51:40 -0400 | [diff] [blame] | 606 | tipc_own_addr(net), onode, |
Jon Paul Maloy | 2af5ae3 | 2015-10-22 08:51:48 -0400 | [diff] [blame] | 607 | n->capabilities, |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 608 | tipc_bc_sndlink(n->net), n->bc_entry.link, |
| 609 | &le->inputq, |
| 610 | &n->bc_entry.namedq, &l)) { |
Jon Paul Maloy | cf14881 | 2015-07-30 18:24:22 -0400 | [diff] [blame] | 611 | *respond = false; |
| 612 | goto exit; |
| 613 | } |
Jon Paul Maloy | 440d896 | 2015-07-30 18:24:26 -0400 | [diff] [blame] | 614 | tipc_link_reset(l); |
Jon Paul Maloy | c819930 | 2015-10-15 14:52:46 -0400 | [diff] [blame] | 615 | tipc_link_fsm_evt(l, LINK_RESET_EVT); |
Jon Paul Maloy | 17b2063 | 2015-08-20 02:12:54 -0400 | [diff] [blame] | 616 | if (n->state == NODE_FAILINGOVER) |
| 617 | tipc_link_fsm_evt(l, LINK_FAILOVER_BEGIN_EVT); |
Jon Paul Maloy | 440d896 | 2015-07-30 18:24:26 -0400 | [diff] [blame] | 618 | le->link = l; |
| 619 | n->link_cnt++; |
Jon Paul Maloy | 8a1577c | 2015-07-16 16:54:29 -0400 | [diff] [blame] | 620 | tipc_node_calculate_timer(n, l); |
Jon Paul Maloy | cf14881 | 2015-07-30 18:24:22 -0400 | [diff] [blame] | 621 | if (n->link_cnt == 1) |
Jon Paul Maloy | 8a1577c | 2015-07-16 16:54:29 -0400 | [diff] [blame] | 622 | if (!mod_timer(&n->timer, jiffies + n->keepalive_intv)) |
| 623 | tipc_node_get(n); |
Jon Paul Maloy | 8a1577c | 2015-07-16 16:54:29 -0400 | [diff] [blame] | 624 | } |
Jon Paul Maloy | 440d896 | 2015-07-30 18:24:26 -0400 | [diff] [blame] | 625 | memcpy(&le->maddr, maddr, sizeof(*maddr)); |
Jon Paul Maloy | cf14881 | 2015-07-30 18:24:22 -0400 | [diff] [blame] | 626 | exit: |
| 627 | tipc_node_unlock(n); |
Jon Paul Maloy | 73f646c | 2015-10-15 14:52:44 -0400 | [diff] [blame] | 628 | if (reset && !tipc_link_is_reset(l)) |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 629 | tipc_node_link_down(n, b->identity, false); |
Jon Paul Maloy | cf14881 | 2015-07-30 18:24:22 -0400 | [diff] [blame] | 630 | tipc_node_put(n); |
Jon Paul Maloy | d3a43b9 | 2015-07-16 16:54:20 -0400 | [diff] [blame] | 631 | } |
| 632 | |
Jon Paul Maloy | 6144a99 | 2015-07-30 18:24:16 -0400 | [diff] [blame] | 633 | void tipc_node_delete_links(struct net *net, int bearer_id) |
| 634 | { |
| 635 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
Jon Paul Maloy | 6144a99 | 2015-07-30 18:24:16 -0400 | [diff] [blame] | 636 | struct tipc_node *n; |
| 637 | |
| 638 | rcu_read_lock(); |
| 639 | list_for_each_entry_rcu(n, &tn->node_list, list) { |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 640 | tipc_node_link_down(n, bearer_id, true); |
Jon Paul Maloy | 6144a99 | 2015-07-30 18:24:16 -0400 | [diff] [blame] | 641 | } |
| 642 | rcu_read_unlock(); |
| 643 | } |
| 644 | |
| 645 | static void tipc_node_reset_links(struct tipc_node *n) |
| 646 | { |
| 647 | char addr_string[16]; |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 648 | int i; |
Jon Paul Maloy | 6144a99 | 2015-07-30 18:24:16 -0400 | [diff] [blame] | 649 | |
| 650 | pr_warn("Resetting all links to %s\n", |
| 651 | tipc_addr_string_fill(addr_string, n->addr)); |
| 652 | |
| 653 | for (i = 0; i < MAX_BEARERS; i++) { |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 654 | tipc_node_link_down(n, i, false); |
Jon Paul Maloy | 6144a99 | 2015-07-30 18:24:16 -0400 | [diff] [blame] | 655 | } |
Jon Paul Maloy | 6144a99 | 2015-07-30 18:24:16 -0400 | [diff] [blame] | 656 | } |
| 657 | |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 658 | /* tipc_node_fsm_evt - node finite state machine |
| 659 | * Determines when contact is allowed with peer node |
| 660 | */ |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 661 | static void tipc_node_fsm_evt(struct tipc_node *n, int evt) |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 662 | { |
| 663 | int state = n->state; |
| 664 | |
| 665 | switch (state) { |
| 666 | case SELF_DOWN_PEER_DOWN: |
| 667 | switch (evt) { |
| 668 | case SELF_ESTABL_CONTACT_EVT: |
| 669 | state = SELF_UP_PEER_COMING; |
| 670 | break; |
| 671 | case PEER_ESTABL_CONTACT_EVT: |
| 672 | state = SELF_COMING_PEER_UP; |
| 673 | break; |
| 674 | case SELF_LOST_CONTACT_EVT: |
| 675 | case PEER_LOST_CONTACT_EVT: |
| 676 | break; |
Jon Paul Maloy | 66996b6 | 2015-07-30 18:24:18 -0400 | [diff] [blame] | 677 | case NODE_SYNCH_END_EVT: |
| 678 | case NODE_SYNCH_BEGIN_EVT: |
| 679 | case NODE_FAILOVER_BEGIN_EVT: |
| 680 | case NODE_FAILOVER_END_EVT: |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 681 | default: |
Jon Paul Maloy | 66996b6 | 2015-07-30 18:24:18 -0400 | [diff] [blame] | 682 | goto illegal_evt; |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 683 | } |
| 684 | break; |
| 685 | case SELF_UP_PEER_UP: |
| 686 | switch (evt) { |
| 687 | case SELF_LOST_CONTACT_EVT: |
| 688 | state = SELF_DOWN_PEER_LEAVING; |
| 689 | break; |
| 690 | case PEER_LOST_CONTACT_EVT: |
| 691 | state = SELF_LEAVING_PEER_DOWN; |
| 692 | break; |
Jon Paul Maloy | 66996b6 | 2015-07-30 18:24:18 -0400 | [diff] [blame] | 693 | case NODE_SYNCH_BEGIN_EVT: |
| 694 | state = NODE_SYNCHING; |
| 695 | break; |
| 696 | case NODE_FAILOVER_BEGIN_EVT: |
| 697 | state = NODE_FAILINGOVER; |
| 698 | break; |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 699 | case SELF_ESTABL_CONTACT_EVT: |
| 700 | case PEER_ESTABL_CONTACT_EVT: |
Jon Paul Maloy | 66996b6 | 2015-07-30 18:24:18 -0400 | [diff] [blame] | 701 | case NODE_SYNCH_END_EVT: |
| 702 | case NODE_FAILOVER_END_EVT: |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 703 | break; |
| 704 | default: |
Jon Paul Maloy | 66996b6 | 2015-07-30 18:24:18 -0400 | [diff] [blame] | 705 | goto illegal_evt; |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 706 | } |
| 707 | break; |
| 708 | case SELF_DOWN_PEER_LEAVING: |
| 709 | switch (evt) { |
| 710 | case PEER_LOST_CONTACT_EVT: |
| 711 | state = SELF_DOWN_PEER_DOWN; |
| 712 | break; |
| 713 | case SELF_ESTABL_CONTACT_EVT: |
| 714 | case PEER_ESTABL_CONTACT_EVT: |
| 715 | case SELF_LOST_CONTACT_EVT: |
| 716 | break; |
Jon Paul Maloy | 66996b6 | 2015-07-30 18:24:18 -0400 | [diff] [blame] | 717 | case NODE_SYNCH_END_EVT: |
| 718 | case NODE_SYNCH_BEGIN_EVT: |
| 719 | case NODE_FAILOVER_BEGIN_EVT: |
| 720 | case NODE_FAILOVER_END_EVT: |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 721 | default: |
Jon Paul Maloy | 66996b6 | 2015-07-30 18:24:18 -0400 | [diff] [blame] | 722 | goto illegal_evt; |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 723 | } |
| 724 | break; |
| 725 | case SELF_UP_PEER_COMING: |
| 726 | switch (evt) { |
| 727 | case PEER_ESTABL_CONTACT_EVT: |
| 728 | state = SELF_UP_PEER_UP; |
| 729 | break; |
| 730 | case SELF_LOST_CONTACT_EVT: |
Jon Paul Maloy | 2847736 | 2016-06-08 12:00:04 -0400 | [diff] [blame] | 731 | state = SELF_DOWN_PEER_DOWN; |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 732 | break; |
| 733 | case SELF_ESTABL_CONTACT_EVT: |
| 734 | case PEER_LOST_CONTACT_EVT: |
Jon Paul Maloy | 66996b6 | 2015-07-30 18:24:18 -0400 | [diff] [blame] | 735 | case NODE_SYNCH_END_EVT: |
Jon Paul Maloy | 66996b6 | 2015-07-30 18:24:18 -0400 | [diff] [blame] | 736 | case NODE_FAILOVER_BEGIN_EVT: |
Jon Paul Maloy | 73f646c | 2015-10-15 14:52:44 -0400 | [diff] [blame] | 737 | break; |
| 738 | case NODE_SYNCH_BEGIN_EVT: |
Jon Paul Maloy | 66996b6 | 2015-07-30 18:24:18 -0400 | [diff] [blame] | 739 | case NODE_FAILOVER_END_EVT: |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 740 | default: |
Jon Paul Maloy | 66996b6 | 2015-07-30 18:24:18 -0400 | [diff] [blame] | 741 | goto illegal_evt; |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 742 | } |
| 743 | break; |
| 744 | case SELF_COMING_PEER_UP: |
| 745 | switch (evt) { |
| 746 | case SELF_ESTABL_CONTACT_EVT: |
| 747 | state = SELF_UP_PEER_UP; |
| 748 | break; |
| 749 | case PEER_LOST_CONTACT_EVT: |
Jon Paul Maloy | 2847736 | 2016-06-08 12:00:04 -0400 | [diff] [blame] | 750 | state = SELF_DOWN_PEER_DOWN; |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 751 | break; |
| 752 | case SELF_LOST_CONTACT_EVT: |
| 753 | case PEER_ESTABL_CONTACT_EVT: |
| 754 | break; |
Jon Paul Maloy | 66996b6 | 2015-07-30 18:24:18 -0400 | [diff] [blame] | 755 | case NODE_SYNCH_END_EVT: |
| 756 | case NODE_SYNCH_BEGIN_EVT: |
| 757 | case NODE_FAILOVER_BEGIN_EVT: |
| 758 | case NODE_FAILOVER_END_EVT: |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 759 | default: |
Jon Paul Maloy | 66996b6 | 2015-07-30 18:24:18 -0400 | [diff] [blame] | 760 | goto illegal_evt; |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 761 | } |
| 762 | break; |
| 763 | case SELF_LEAVING_PEER_DOWN: |
| 764 | switch (evt) { |
| 765 | case SELF_LOST_CONTACT_EVT: |
| 766 | state = SELF_DOWN_PEER_DOWN; |
| 767 | break; |
| 768 | case SELF_ESTABL_CONTACT_EVT: |
| 769 | case PEER_ESTABL_CONTACT_EVT: |
| 770 | case PEER_LOST_CONTACT_EVT: |
| 771 | break; |
Jon Paul Maloy | 66996b6 | 2015-07-30 18:24:18 -0400 | [diff] [blame] | 772 | case NODE_SYNCH_END_EVT: |
| 773 | case NODE_SYNCH_BEGIN_EVT: |
| 774 | case NODE_FAILOVER_BEGIN_EVT: |
| 775 | case NODE_FAILOVER_END_EVT: |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 776 | default: |
Jon Paul Maloy | 66996b6 | 2015-07-30 18:24:18 -0400 | [diff] [blame] | 777 | goto illegal_evt; |
| 778 | } |
| 779 | break; |
| 780 | case NODE_FAILINGOVER: |
| 781 | switch (evt) { |
| 782 | case SELF_LOST_CONTACT_EVT: |
| 783 | state = SELF_DOWN_PEER_LEAVING; |
| 784 | break; |
| 785 | case PEER_LOST_CONTACT_EVT: |
| 786 | state = SELF_LEAVING_PEER_DOWN; |
| 787 | break; |
| 788 | case NODE_FAILOVER_END_EVT: |
| 789 | state = SELF_UP_PEER_UP; |
| 790 | break; |
| 791 | case NODE_FAILOVER_BEGIN_EVT: |
| 792 | case SELF_ESTABL_CONTACT_EVT: |
| 793 | case PEER_ESTABL_CONTACT_EVT: |
| 794 | break; |
| 795 | case NODE_SYNCH_BEGIN_EVT: |
| 796 | case NODE_SYNCH_END_EVT: |
| 797 | default: |
| 798 | goto illegal_evt; |
| 799 | } |
| 800 | break; |
| 801 | case NODE_SYNCHING: |
| 802 | switch (evt) { |
| 803 | case SELF_LOST_CONTACT_EVT: |
| 804 | state = SELF_DOWN_PEER_LEAVING; |
| 805 | break; |
| 806 | case PEER_LOST_CONTACT_EVT: |
| 807 | state = SELF_LEAVING_PEER_DOWN; |
| 808 | break; |
| 809 | case NODE_SYNCH_END_EVT: |
| 810 | state = SELF_UP_PEER_UP; |
| 811 | break; |
| 812 | case NODE_FAILOVER_BEGIN_EVT: |
| 813 | state = NODE_FAILINGOVER; |
| 814 | break; |
| 815 | case NODE_SYNCH_BEGIN_EVT: |
| 816 | case SELF_ESTABL_CONTACT_EVT: |
| 817 | case PEER_ESTABL_CONTACT_EVT: |
| 818 | break; |
| 819 | case NODE_FAILOVER_END_EVT: |
| 820 | default: |
| 821 | goto illegal_evt; |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 822 | } |
| 823 | break; |
| 824 | default: |
| 825 | pr_err("Unknown node fsm state %x\n", state); |
| 826 | break; |
| 827 | } |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 828 | n->state = state; |
Jon Paul Maloy | 66996b6 | 2015-07-30 18:24:18 -0400 | [diff] [blame] | 829 | return; |
| 830 | |
| 831 | illegal_evt: |
| 832 | pr_err("Illegal node fsm evt %x in state %x\n", evt, state); |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 833 | } |
| 834 | |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 835 | bool tipc_node_filter_pkt(struct tipc_node *n, struct tipc_msg *hdr) |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 836 | { |
| 837 | int state = n->state; |
| 838 | |
| 839 | if (likely(state == SELF_UP_PEER_UP)) |
| 840 | return true; |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 841 | |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 842 | if (state == SELF_LEAVING_PEER_DOWN) |
| 843 | return false; |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 844 | |
| 845 | if (state == SELF_DOWN_PEER_LEAVING) { |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 846 | if (msg_peer_node_is_up(hdr)) |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 847 | return false; |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 848 | } |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 849 | |
| 850 | return true; |
Jon Paul Maloy | 1a20cc2 | 2015-07-16 16:54:30 -0400 | [diff] [blame] | 851 | } |
| 852 | |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 853 | static void node_lost_contact(struct tipc_node *n, |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 854 | struct sk_buff_head *inputq) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 855 | { |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 856 | char addr_string[16]; |
Jon Paul Maloy | 708ac32 | 2015-02-05 08:36:42 -0500 | [diff] [blame] | 857 | struct tipc_sock_conn *conn, *safe; |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 858 | struct tipc_link *l; |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 859 | struct list_head *conns = &n->conn_sks; |
Jon Paul Maloy | 708ac32 | 2015-02-05 08:36:42 -0500 | [diff] [blame] | 860 | struct sk_buff *skb; |
Jon Paul Maloy | 708ac32 | 2015-02-05 08:36:42 -0500 | [diff] [blame] | 861 | uint i; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 862 | |
Erik Hugne | 3fa9cac | 2015-01-22 17:10:31 +0100 | [diff] [blame] | 863 | pr_debug("Lost contact with %s\n", |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 864 | tipc_addr_string_fill(addr_string, n->addr)); |
Allan Stephens | c5bd4d8 | 2011-04-07 11:58:08 -0400 | [diff] [blame] | 865 | |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 866 | /* Clean up broadcast state */ |
Jon Paul Maloy | b06b281 | 2015-10-22 08:51:42 -0400 | [diff] [blame] | 867 | tipc_bcast_remove_peer(n->net, n->bc_entry.link); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 868 | |
Jon Paul Maloy | dff29b1 | 2015-04-02 09:33:01 -0400 | [diff] [blame] | 869 | /* Abort any ongoing link failover */ |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 870 | for (i = 0; i < MAX_BEARERS; i++) { |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 871 | l = n->links[i].link; |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 872 | if (l) |
| 873 | tipc_link_fsm_evt(l, LINK_FAILOVER_END_EVT); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 874 | } |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 875 | |
Jon Paul Maloy | 708ac32 | 2015-02-05 08:36:42 -0500 | [diff] [blame] | 876 | /* Notify publications from this node */ |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 877 | n->action_flags |= TIPC_NOTIFY_NODE_DOWN; |
Jon Paul Maloy | 708ac32 | 2015-02-05 08:36:42 -0500 | [diff] [blame] | 878 | |
| 879 | /* Notify sockets connected to node */ |
| 880 | list_for_each_entry_safe(conn, safe, conns, list) { |
| 881 | skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE, TIPC_CONN_MSG, |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 882 | SHORT_H_SIZE, 0, tipc_own_addr(n->net), |
Jon Paul Maloy | 708ac32 | 2015-02-05 08:36:42 -0500 | [diff] [blame] | 883 | conn->peer_node, conn->port, |
| 884 | conn->peer_port, TIPC_ERR_NO_NODE); |
Jon Paul Maloy | 23d8335 | 2015-07-30 18:24:24 -0400 | [diff] [blame] | 885 | if (likely(skb)) |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 886 | skb_queue_tail(inputq, skb); |
Jon Paul Maloy | 708ac32 | 2015-02-05 08:36:42 -0500 | [diff] [blame] | 887 | list_del(&conn->list); |
| 888 | kfree(conn); |
| 889 | } |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 890 | } |
| 891 | |
Erik Hugne | 78acb1f | 2014-04-24 16:26:47 +0200 | [diff] [blame] | 892 | /** |
| 893 | * tipc_node_get_linkname - get the name of a link |
| 894 | * |
| 895 | * @bearer_id: id of the bearer |
| 896 | * @node: peer node address |
| 897 | * @linkname: link name output buffer |
| 898 | * |
| 899 | * Returns 0 on success |
| 900 | */ |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 901 | int tipc_node_get_linkname(struct net *net, u32 bearer_id, u32 addr, |
| 902 | char *linkname, size_t len) |
Erik Hugne | 78acb1f | 2014-04-24 16:26:47 +0200 | [diff] [blame] | 903 | { |
| 904 | struct tipc_link *link; |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 905 | int err = -EINVAL; |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 906 | struct tipc_node *node = tipc_node_find(net, addr); |
Erik Hugne | 78acb1f | 2014-04-24 16:26:47 +0200 | [diff] [blame] | 907 | |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 908 | if (!node) |
| 909 | return err; |
| 910 | |
| 911 | if (bearer_id >= MAX_BEARERS) |
| 912 | goto exit; |
| 913 | |
Erik Hugne | 78acb1f | 2014-04-24 16:26:47 +0200 | [diff] [blame] | 914 | tipc_node_lock(node); |
Jon Paul Maloy | 9d13ec6 | 2015-07-16 16:54:19 -0400 | [diff] [blame] | 915 | link = node->links[bearer_id].link; |
Erik Hugne | 78acb1f | 2014-04-24 16:26:47 +0200 | [diff] [blame] | 916 | if (link) { |
| 917 | strncpy(linkname, link->name, len); |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 918 | err = 0; |
Erik Hugne | 78acb1f | 2014-04-24 16:26:47 +0200 | [diff] [blame] | 919 | } |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 920 | exit: |
Erik Hugne | 78acb1f | 2014-04-24 16:26:47 +0200 | [diff] [blame] | 921 | tipc_node_unlock(node); |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 922 | tipc_node_put(node); |
| 923 | return err; |
Erik Hugne | 78acb1f | 2014-04-24 16:26:47 +0200 | [diff] [blame] | 924 | } |
Ying Xue | 9db9fdd | 2014-05-05 08:56:12 +0800 | [diff] [blame] | 925 | |
| 926 | void tipc_node_unlock(struct tipc_node *node) |
| 927 | { |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 928 | struct net *net = node->net; |
Ying Xue | ca0c427 | 2014-05-05 08:56:14 +0800 | [diff] [blame] | 929 | u32 addr = 0; |
Jon Paul Maloy | c637c10 | 2015-02-05 08:36:41 -0500 | [diff] [blame] | 930 | u32 flags = node->action_flags; |
Ying Xue | 7b8613e | 2014-10-20 14:44:25 +0800 | [diff] [blame] | 931 | u32 link_id = 0; |
Jon Paul Maloy | 708ac32 | 2015-02-05 08:36:42 -0500 | [diff] [blame] | 932 | struct list_head *publ_list; |
Ying Xue | 9db9fdd | 2014-05-05 08:56:12 +0800 | [diff] [blame] | 933 | |
Jon Paul Maloy | 23d8335 | 2015-07-30 18:24:24 -0400 | [diff] [blame] | 934 | if (likely(!flags)) { |
Ying Xue | 9db9fdd | 2014-05-05 08:56:12 +0800 | [diff] [blame] | 935 | spin_unlock_bh(&node->lock); |
| 936 | return; |
| 937 | } |
| 938 | |
Ying Xue | 7b8613e | 2014-10-20 14:44:25 +0800 | [diff] [blame] | 939 | addr = node->addr; |
| 940 | link_id = node->link_id; |
Jon Paul Maloy | 708ac32 | 2015-02-05 08:36:42 -0500 | [diff] [blame] | 941 | publ_list = &node->publ_list; |
Ying Xue | 7b8613e | 2014-10-20 14:44:25 +0800 | [diff] [blame] | 942 | |
Jon Paul Maloy | 23d8335 | 2015-07-30 18:24:24 -0400 | [diff] [blame] | 943 | node->action_flags &= ~(TIPC_NOTIFY_NODE_DOWN | TIPC_NOTIFY_NODE_UP | |
Jon Paul Maloy | 2af5ae3 | 2015-10-22 08:51:48 -0400 | [diff] [blame] | 944 | TIPC_NOTIFY_LINK_DOWN | TIPC_NOTIFY_LINK_UP); |
Ying Xue | 7b8613e | 2014-10-20 14:44:25 +0800 | [diff] [blame] | 945 | |
Ying Xue | 9db9fdd | 2014-05-05 08:56:12 +0800 | [diff] [blame] | 946 | spin_unlock_bh(&node->lock); |
| 947 | |
Jon Paul Maloy | 708ac32 | 2015-02-05 08:36:42 -0500 | [diff] [blame] | 948 | if (flags & TIPC_NOTIFY_NODE_DOWN) |
| 949 | tipc_publ_notify(net, publ_list, addr); |
Jon Paul Maloy | 50100a5 | 2014-08-22 18:09:07 -0400 | [diff] [blame] | 950 | |
Ying Xue | 7b8613e | 2014-10-20 14:44:25 +0800 | [diff] [blame] | 951 | if (flags & TIPC_NOTIFY_NODE_UP) |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 952 | tipc_named_node_up(net, addr); |
Ying Xue | 7b8613e | 2014-10-20 14:44:25 +0800 | [diff] [blame] | 953 | |
| 954 | if (flags & TIPC_NOTIFY_LINK_UP) |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 955 | tipc_nametbl_publish(net, TIPC_LINK_STATE, addr, addr, |
Ying Xue | 7b8613e | 2014-10-20 14:44:25 +0800 | [diff] [blame] | 956 | TIPC_NODE_SCOPE, link_id, addr); |
| 957 | |
| 958 | if (flags & TIPC_NOTIFY_LINK_DOWN) |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 959 | tipc_nametbl_withdraw(net, TIPC_LINK_STATE, addr, |
Ying Xue | 7b8613e | 2014-10-20 14:44:25 +0800 | [diff] [blame] | 960 | link_id, addr); |
Jon Paul Maloy | c637c10 | 2015-02-05 08:36:41 -0500 | [diff] [blame] | 961 | |
Ying Xue | 9db9fdd | 2014-05-05 08:56:12 +0800 | [diff] [blame] | 962 | } |
Richard Alpe | 3e4b6ab | 2014-11-20 10:29:17 +0100 | [diff] [blame] | 963 | |
| 964 | /* Caller should hold node lock for the passed node */ |
Richard Alpe | d818280 | 2014-11-24 11:10:29 +0100 | [diff] [blame] | 965 | static int __tipc_nl_add_node(struct tipc_nl_msg *msg, struct tipc_node *node) |
Richard Alpe | 3e4b6ab | 2014-11-20 10:29:17 +0100 | [diff] [blame] | 966 | { |
| 967 | void *hdr; |
| 968 | struct nlattr *attrs; |
| 969 | |
Richard Alpe | bfb3e5d | 2015-02-09 09:50:03 +0100 | [diff] [blame] | 970 | hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family, |
Richard Alpe | 3e4b6ab | 2014-11-20 10:29:17 +0100 | [diff] [blame] | 971 | NLM_F_MULTI, TIPC_NL_NODE_GET); |
| 972 | if (!hdr) |
| 973 | return -EMSGSIZE; |
| 974 | |
| 975 | attrs = nla_nest_start(msg->skb, TIPC_NLA_NODE); |
| 976 | if (!attrs) |
| 977 | goto msg_full; |
| 978 | |
| 979 | if (nla_put_u32(msg->skb, TIPC_NLA_NODE_ADDR, node->addr)) |
| 980 | goto attr_msg_full; |
| 981 | if (tipc_node_is_up(node)) |
| 982 | if (nla_put_flag(msg->skb, TIPC_NLA_NODE_UP)) |
| 983 | goto attr_msg_full; |
| 984 | |
| 985 | nla_nest_end(msg->skb, attrs); |
| 986 | genlmsg_end(msg->skb, hdr); |
| 987 | |
| 988 | return 0; |
| 989 | |
| 990 | attr_msg_full: |
| 991 | nla_nest_cancel(msg->skb, attrs); |
| 992 | msg_full: |
| 993 | genlmsg_cancel(msg->skb, hdr); |
| 994 | |
| 995 | return -EMSGSIZE; |
| 996 | } |
| 997 | |
Jon Paul Maloy | af9b028 | 2015-07-16 16:54:24 -0400 | [diff] [blame] | 998 | static struct tipc_link *tipc_node_select_link(struct tipc_node *n, int sel, |
| 999 | int *bearer_id, |
| 1000 | struct tipc_media_addr **maddr) |
| 1001 | { |
| 1002 | int id = n->active_links[sel & 1]; |
| 1003 | |
| 1004 | if (unlikely(id < 0)) |
| 1005 | return NULL; |
| 1006 | |
| 1007 | *bearer_id = id; |
| 1008 | *maddr = &n->links[id].maddr; |
| 1009 | return n->links[id].link; |
| 1010 | } |
| 1011 | |
| 1012 | /** |
| 1013 | * tipc_node_xmit() is the general link level function for message sending |
| 1014 | * @net: the applicable net namespace |
| 1015 | * @list: chain of buffers containing message |
| 1016 | * @dnode: address of destination node |
| 1017 | * @selector: a number used for deterministic link selection |
| 1018 | * Consumes the buffer chain, except when returning -ELINKCONG |
| 1019 | * Returns 0 if success, otherwise errno: -ELINKCONG,-EHOSTUNREACH,-EMSGSIZE |
| 1020 | */ |
| 1021 | int tipc_node_xmit(struct net *net, struct sk_buff_head *list, |
| 1022 | u32 dnode, int selector) |
| 1023 | { |
| 1024 | struct tipc_link *l = NULL; |
| 1025 | struct tipc_node *n; |
| 1026 | struct sk_buff_head xmitq; |
| 1027 | struct tipc_media_addr *maddr; |
| 1028 | int bearer_id; |
| 1029 | int rc = -EHOSTUNREACH; |
| 1030 | |
| 1031 | __skb_queue_head_init(&xmitq); |
| 1032 | n = tipc_node_find(net, dnode); |
| 1033 | if (likely(n)) { |
| 1034 | tipc_node_lock(n); |
| 1035 | l = tipc_node_select_link(n, selector, &bearer_id, &maddr); |
| 1036 | if (likely(l)) |
| 1037 | rc = tipc_link_xmit(l, list, &xmitq); |
Jon Paul Maloy | af9b028 | 2015-07-16 16:54:24 -0400 | [diff] [blame] | 1038 | tipc_node_unlock(n); |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 1039 | if (unlikely(rc == -ENOBUFS)) |
| 1040 | tipc_node_link_down(n, bearer_id, false); |
Jon Paul Maloy | af9b028 | 2015-07-16 16:54:24 -0400 | [diff] [blame] | 1041 | tipc_node_put(n); |
| 1042 | } |
| 1043 | if (likely(!rc)) { |
| 1044 | tipc_bearer_xmit(net, bearer_id, &xmitq, maddr); |
| 1045 | return 0; |
| 1046 | } |
| 1047 | if (likely(in_own_node(net, dnode))) { |
| 1048 | tipc_sk_rcv(net, list); |
| 1049 | return 0; |
| 1050 | } |
| 1051 | return rc; |
| 1052 | } |
| 1053 | |
| 1054 | /* tipc_node_xmit_skb(): send single buffer to destination |
| 1055 | * Buffers sent via this functon are generally TIPC_SYSTEM_IMPORTANCE |
| 1056 | * messages, which will not be rejected |
| 1057 | * The only exception is datagram messages rerouted after secondary |
| 1058 | * lookup, which are rare and safe to dispose of anyway. |
| 1059 | * TODO: Return real return value, and let callers use |
| 1060 | * tipc_wait_for_sendpkt() where applicable |
| 1061 | */ |
| 1062 | int tipc_node_xmit_skb(struct net *net, struct sk_buff *skb, u32 dnode, |
| 1063 | u32 selector) |
| 1064 | { |
| 1065 | struct sk_buff_head head; |
| 1066 | int rc; |
| 1067 | |
| 1068 | skb_queue_head_init(&head); |
| 1069 | __skb_queue_tail(&head, skb); |
| 1070 | rc = tipc_node_xmit(net, &head, dnode, selector); |
| 1071 | if (rc == -ELINKCONG) |
| 1072 | kfree_skb(skb); |
| 1073 | return 0; |
| 1074 | } |
| 1075 | |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1076 | /** |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 1077 | * tipc_node_bc_rcv - process TIPC broadcast packet arriving from off-node |
| 1078 | * @net: the applicable net namespace |
| 1079 | * @skb: TIPC packet |
| 1080 | * @bearer_id: id of bearer message arrived on |
| 1081 | * |
| 1082 | * Invoked with no locks held. |
| 1083 | */ |
Wu Fengguang | 742e038 | 2015-10-24 22:56:01 +0800 | [diff] [blame] | 1084 | static void tipc_node_bc_rcv(struct net *net, struct sk_buff *skb, int bearer_id) |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 1085 | { |
| 1086 | int rc; |
| 1087 | struct sk_buff_head xmitq; |
| 1088 | struct tipc_bclink_entry *be; |
| 1089 | struct tipc_link_entry *le; |
| 1090 | struct tipc_msg *hdr = buf_msg(skb); |
| 1091 | int usr = msg_user(hdr); |
| 1092 | u32 dnode = msg_destnode(hdr); |
| 1093 | struct tipc_node *n; |
| 1094 | |
| 1095 | __skb_queue_head_init(&xmitq); |
| 1096 | |
| 1097 | /* If NACK for other node, let rcv link for that node peek into it */ |
| 1098 | if ((usr == BCAST_PROTOCOL) && (dnode != tipc_own_addr(net))) |
| 1099 | n = tipc_node_find(net, dnode); |
| 1100 | else |
| 1101 | n = tipc_node_find(net, msg_prevnode(hdr)); |
| 1102 | if (!n) { |
| 1103 | kfree_skb(skb); |
| 1104 | return; |
| 1105 | } |
| 1106 | be = &n->bc_entry; |
| 1107 | le = &n->links[bearer_id]; |
| 1108 | |
| 1109 | rc = tipc_bcast_rcv(net, be->link, skb); |
| 1110 | |
| 1111 | /* Broadcast link reset may happen at reassembly failure */ |
| 1112 | if (rc & TIPC_LINK_DOWN_EVT) |
| 1113 | tipc_node_reset_links(n); |
| 1114 | |
| 1115 | /* Broadcast ACKs are sent on a unicast link */ |
| 1116 | if (rc & TIPC_LINK_SND_BC_ACK) { |
| 1117 | tipc_node_lock(n); |
| 1118 | tipc_link_build_ack_msg(le->link, &xmitq); |
| 1119 | tipc_node_unlock(n); |
| 1120 | } |
| 1121 | |
| 1122 | if (!skb_queue_empty(&xmitq)) |
| 1123 | tipc_bearer_xmit(net, bearer_id, &xmitq, &le->maddr); |
| 1124 | |
| 1125 | /* Deliver. 'arrvq' is under inputq2's lock protection */ |
| 1126 | if (!skb_queue_empty(&be->inputq1)) { |
| 1127 | spin_lock_bh(&be->inputq2.lock); |
| 1128 | spin_lock_bh(&be->inputq1.lock); |
| 1129 | skb_queue_splice_tail_init(&be->inputq1, &be->arrvq); |
| 1130 | spin_unlock_bh(&be->inputq1.lock); |
| 1131 | spin_unlock_bh(&be->inputq2.lock); |
| 1132 | tipc_sk_mcast_rcv(net, &be->arrvq, &be->inputq2); |
| 1133 | } |
| 1134 | tipc_node_put(n); |
| 1135 | } |
| 1136 | |
| 1137 | /** |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1138 | * tipc_node_check_state - check and if necessary update node state |
| 1139 | * @skb: TIPC packet |
| 1140 | * @bearer_id: identity of bearer delivering the packet |
| 1141 | * Returns true if state is ok, otherwise consumes buffer and returns false |
Jon Paul Maloy | 6144a99 | 2015-07-30 18:24:16 -0400 | [diff] [blame] | 1142 | */ |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1143 | static bool tipc_node_check_state(struct tipc_node *n, struct sk_buff *skb, |
Jon Paul Maloy | 662921c | 2015-07-30 18:24:21 -0400 | [diff] [blame] | 1144 | int bearer_id, struct sk_buff_head *xmitq) |
Jon Paul Maloy | 6144a99 | 2015-07-30 18:24:16 -0400 | [diff] [blame] | 1145 | { |
Jon Paul Maloy | 6144a99 | 2015-07-30 18:24:16 -0400 | [diff] [blame] | 1146 | struct tipc_msg *hdr = buf_msg(skb); |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1147 | int usr = msg_user(hdr); |
| 1148 | int mtyp = msg_type(hdr); |
Jon Paul Maloy | 6144a99 | 2015-07-30 18:24:16 -0400 | [diff] [blame] | 1149 | u16 oseqno = msg_seqno(hdr); |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1150 | u16 iseqno = msg_seqno(msg_get_wrapped(hdr)); |
| 1151 | u16 exp_pkts = msg_msgcnt(hdr); |
| 1152 | u16 rcv_nxt, syncpt, dlv_nxt; |
| 1153 | int state = n->state; |
Jon Paul Maloy | 2be80c2 | 2015-08-20 02:12:56 -0400 | [diff] [blame] | 1154 | struct tipc_link *l, *tnl, *pl = NULL; |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 1155 | struct tipc_media_addr *maddr; |
| 1156 | int i, pb_id; |
Jon Paul Maloy | 6144a99 | 2015-07-30 18:24:16 -0400 | [diff] [blame] | 1157 | |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1158 | l = n->links[bearer_id].link; |
| 1159 | if (!l) |
| 1160 | return false; |
| 1161 | rcv_nxt = l->rcv_nxt; |
Jon Paul Maloy | 6144a99 | 2015-07-30 18:24:16 -0400 | [diff] [blame] | 1162 | |
Jon Paul Maloy | 6144a99 | 2015-07-30 18:24:16 -0400 | [diff] [blame] | 1163 | |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1164 | if (likely((state == SELF_UP_PEER_UP) && (usr != TUNNEL_PROTOCOL))) |
| 1165 | return true; |
Jon Paul Maloy | 6144a99 | 2015-07-30 18:24:16 -0400 | [diff] [blame] | 1166 | |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1167 | /* Find parallel link, if any */ |
| 1168 | for (i = 0; i < MAX_BEARERS; i++) { |
| 1169 | if ((i != bearer_id) && n->links[i].link) { |
| 1170 | pl = n->links[i].link; |
| 1171 | break; |
Jon Paul Maloy | 6144a99 | 2015-07-30 18:24:16 -0400 | [diff] [blame] | 1172 | } |
| 1173 | } |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1174 | |
| 1175 | /* Update node accesibility if applicable */ |
| 1176 | if (state == SELF_UP_PEER_COMING) { |
| 1177 | if (!tipc_link_is_up(l)) |
| 1178 | return true; |
| 1179 | if (!msg_peer_link_is_up(hdr)) |
| 1180 | return true; |
| 1181 | tipc_node_fsm_evt(n, PEER_ESTABL_CONTACT_EVT); |
| 1182 | } |
| 1183 | |
| 1184 | if (state == SELF_DOWN_PEER_LEAVING) { |
| 1185 | if (msg_peer_node_is_up(hdr)) |
| 1186 | return false; |
| 1187 | tipc_node_fsm_evt(n, PEER_LOST_CONTACT_EVT); |
| 1188 | } |
| 1189 | |
| 1190 | /* Ignore duplicate packets */ |
Jon Paul Maloy | 0f8b8e2 | 2015-10-13 12:41:51 -0400 | [diff] [blame] | 1191 | if ((usr != LINK_PROTOCOL) && less(oseqno, rcv_nxt)) |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1192 | return true; |
| 1193 | |
| 1194 | /* Initiate or update failover mode if applicable */ |
| 1195 | if ((usr == TUNNEL_PROTOCOL) && (mtyp == FAILOVER_MSG)) { |
| 1196 | syncpt = oseqno + exp_pkts - 1; |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 1197 | if (pl && tipc_link_is_up(pl)) { |
| 1198 | pb_id = pl->bearer_id; |
| 1199 | __tipc_node_link_down(n, &pb_id, xmitq, &maddr); |
| 1200 | tipc_skb_queue_splice_tail_init(pl->inputq, l->inputq); |
| 1201 | } |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1202 | /* If pkts arrive out of order, use lowest calculated syncpt */ |
| 1203 | if (less(syncpt, n->sync_point)) |
| 1204 | n->sync_point = syncpt; |
| 1205 | } |
| 1206 | |
| 1207 | /* Open parallel link when tunnel link reaches synch point */ |
Jon Paul Maloy | 17b2063 | 2015-08-20 02:12:54 -0400 | [diff] [blame] | 1208 | if ((n->state == NODE_FAILINGOVER) && tipc_link_is_up(l)) { |
Jon Paul Maloy | 662921c | 2015-07-30 18:24:21 -0400 | [diff] [blame] | 1209 | if (!more(rcv_nxt, n->sync_point)) |
| 1210 | return true; |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1211 | tipc_node_fsm_evt(n, NODE_FAILOVER_END_EVT); |
| 1212 | if (pl) |
Jon Paul Maloy | 662921c | 2015-07-30 18:24:21 -0400 | [diff] [blame] | 1213 | tipc_link_fsm_evt(pl, LINK_FAILOVER_END_EVT); |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1214 | return true; |
| 1215 | } |
| 1216 | |
Jon Paul Maloy | 5ae2f8e | 2015-08-20 02:12:55 -0400 | [diff] [blame] | 1217 | /* No synching needed if only one link */ |
| 1218 | if (!pl || !tipc_link_is_up(pl)) |
| 1219 | return true; |
| 1220 | |
Jon Paul Maloy | 0f8b8e2 | 2015-10-13 12:41:51 -0400 | [diff] [blame] | 1221 | /* Initiate synch mode if applicable */ |
| 1222 | if ((usr == TUNNEL_PROTOCOL) && (mtyp == SYNCH_MSG) && (oseqno == 1)) { |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1223 | syncpt = iseqno + exp_pkts - 1; |
Jon Paul Maloy | 662921c | 2015-07-30 18:24:21 -0400 | [diff] [blame] | 1224 | if (!tipc_link_is_up(l)) { |
| 1225 | tipc_link_fsm_evt(l, LINK_ESTABLISH_EVT); |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 1226 | __tipc_node_link_up(n, bearer_id, xmitq); |
Jon Paul Maloy | 662921c | 2015-07-30 18:24:21 -0400 | [diff] [blame] | 1227 | } |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1228 | if (n->state == SELF_UP_PEER_UP) { |
| 1229 | n->sync_point = syncpt; |
Jon Paul Maloy | 662921c | 2015-07-30 18:24:21 -0400 | [diff] [blame] | 1230 | tipc_link_fsm_evt(l, LINK_SYNCH_BEGIN_EVT); |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1231 | tipc_node_fsm_evt(n, NODE_SYNCH_BEGIN_EVT); |
| 1232 | } |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1233 | if (less(syncpt, n->sync_point)) |
| 1234 | n->sync_point = syncpt; |
| 1235 | } |
| 1236 | |
| 1237 | /* Open tunnel link when parallel link reaches synch point */ |
Jon Paul Maloy | 662921c | 2015-07-30 18:24:21 -0400 | [diff] [blame] | 1238 | if ((n->state == NODE_SYNCHING) && tipc_link_is_synching(l)) { |
Jon Paul Maloy | 2be80c2 | 2015-08-20 02:12:56 -0400 | [diff] [blame] | 1239 | if (tipc_link_is_synching(l)) { |
| 1240 | tnl = l; |
| 1241 | } else { |
| 1242 | tnl = pl; |
| 1243 | pl = l; |
| 1244 | } |
Jon Paul Maloy | 5ae2f8e | 2015-08-20 02:12:55 -0400 | [diff] [blame] | 1245 | dlv_nxt = pl->rcv_nxt - mod(skb_queue_len(pl->inputq)); |
| 1246 | if (more(dlv_nxt, n->sync_point)) { |
Jon Paul Maloy | 2be80c2 | 2015-08-20 02:12:56 -0400 | [diff] [blame] | 1247 | tipc_link_fsm_evt(tnl, LINK_SYNCH_END_EVT); |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1248 | tipc_node_fsm_evt(n, NODE_SYNCH_END_EVT); |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1249 | return true; |
| 1250 | } |
Jon Paul Maloy | 2be80c2 | 2015-08-20 02:12:56 -0400 | [diff] [blame] | 1251 | if (l == pl) |
| 1252 | return true; |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1253 | if ((usr == TUNNEL_PROTOCOL) && (mtyp == SYNCH_MSG)) |
| 1254 | return true; |
| 1255 | if (usr == LINK_PROTOCOL) |
| 1256 | return true; |
| 1257 | return false; |
| 1258 | } |
| 1259 | return true; |
Jon Paul Maloy | 6144a99 | 2015-07-30 18:24:16 -0400 | [diff] [blame] | 1260 | } |
| 1261 | |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 1262 | /** |
| 1263 | * tipc_rcv - process TIPC packets/messages arriving from off-node |
| 1264 | * @net: the applicable net namespace |
| 1265 | * @skb: TIPC packet |
| 1266 | * @bearer: pointer to bearer message arrived on |
| 1267 | * |
| 1268 | * Invoked with no locks held. Bearer pointer must point to a valid bearer |
| 1269 | * structure (i.e. cannot be NULL), but bearer can be inactive. |
| 1270 | */ |
| 1271 | void tipc_rcv(struct net *net, struct sk_buff *skb, struct tipc_bearer *b) |
| 1272 | { |
| 1273 | struct sk_buff_head xmitq; |
| 1274 | struct tipc_node *n; |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1275 | struct tipc_msg *hdr = buf_msg(skb); |
| 1276 | int usr = msg_user(hdr); |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 1277 | int bearer_id = b->identity; |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1278 | struct tipc_link_entry *le; |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 1279 | u16 bc_ack = msg_bcast_ack(hdr); |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 1280 | int rc = 0; |
| 1281 | |
| 1282 | __skb_queue_head_init(&xmitq); |
| 1283 | |
| 1284 | /* Ensure message is well-formed */ |
| 1285 | if (unlikely(!tipc_msg_validate(skb))) |
| 1286 | goto discard; |
| 1287 | |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 1288 | /* Handle arrival of discovery or broadcast packet */ |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 1289 | if (unlikely(msg_non_seq(hdr))) { |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 1290 | if (unlikely(usr == LINK_CONFIG)) |
| 1291 | return tipc_disc_rcv(net, skb, b); |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 1292 | else |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 1293 | return tipc_node_bc_rcv(net, skb, bearer_id); |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 1294 | } |
| 1295 | |
| 1296 | /* Locate neighboring node that sent packet */ |
| 1297 | n = tipc_node_find(net, msg_prevnode(hdr)); |
| 1298 | if (unlikely(!n)) |
| 1299 | goto discard; |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1300 | le = &n->links[bearer_id]; |
| 1301 | |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 1302 | /* Ensure broadcast reception is in synch with peer's send state */ |
| 1303 | if (unlikely(usr == LINK_PROTOCOL)) |
| 1304 | tipc_bcast_sync_rcv(net, n->bc_entry.link, hdr); |
| 1305 | else if (unlikely(n->bc_entry.link->acked != bc_ack)) |
| 1306 | tipc_bcast_ack_rcv(net, n->bc_entry.link, bc_ack); |
| 1307 | |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 1308 | tipc_node_lock(n); |
| 1309 | |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1310 | /* Is reception permitted at the moment ? */ |
| 1311 | if (!tipc_node_filter_pkt(n, hdr)) |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 1312 | goto unlock; |
| 1313 | |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1314 | /* Check and if necessary update node state */ |
Jon Paul Maloy | 662921c | 2015-07-30 18:24:21 -0400 | [diff] [blame] | 1315 | if (likely(tipc_node_check_state(n, skb, bearer_id, &xmitq))) { |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1316 | rc = tipc_link_rcv(le->link, skb, &xmitq); |
| 1317 | skb = NULL; |
| 1318 | } |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 1319 | unlock: |
| 1320 | tipc_node_unlock(n); |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 1321 | |
| 1322 | if (unlikely(rc & TIPC_LINK_UP_EVT)) |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1323 | tipc_node_link_up(n, bearer_id, &xmitq); |
| 1324 | |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 1325 | if (unlikely(rc & TIPC_LINK_DOWN_EVT)) |
Jon Paul Maloy | 598411d | 2015-07-30 18:24:23 -0400 | [diff] [blame] | 1326 | tipc_node_link_down(n, bearer_id, false); |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1327 | |
Jon Paul Maloy | 5266698 | 2015-10-22 08:51:41 -0400 | [diff] [blame] | 1328 | if (unlikely(!skb_queue_empty(&n->bc_entry.namedq))) |
| 1329 | tipc_named_rcv(net, &n->bc_entry.namedq); |
Jon Paul Maloy | 23d8335 | 2015-07-30 18:24:24 -0400 | [diff] [blame] | 1330 | |
Jon Paul Maloy | 6e49815 | 2015-07-30 18:24:19 -0400 | [diff] [blame] | 1331 | if (!skb_queue_empty(&le->inputq)) |
| 1332 | tipc_sk_rcv(net, &le->inputq); |
| 1333 | |
| 1334 | if (!skb_queue_empty(&xmitq)) |
| 1335 | tipc_bearer_xmit(net, bearer_id, &xmitq, &le->maddr); |
| 1336 | |
Jon Paul Maloy | d999297 | 2015-07-16 16:54:31 -0400 | [diff] [blame] | 1337 | tipc_node_put(n); |
| 1338 | discard: |
| 1339 | kfree_skb(skb); |
| 1340 | } |
| 1341 | |
Richard Alpe | 3e4b6ab | 2014-11-20 10:29:17 +0100 | [diff] [blame] | 1342 | int tipc_nl_node_dump(struct sk_buff *skb, struct netlink_callback *cb) |
| 1343 | { |
| 1344 | int err; |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 1345 | struct net *net = sock_net(skb->sk); |
| 1346 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
Richard Alpe | 3e4b6ab | 2014-11-20 10:29:17 +0100 | [diff] [blame] | 1347 | int done = cb->args[0]; |
| 1348 | int last_addr = cb->args[1]; |
| 1349 | struct tipc_node *node; |
| 1350 | struct tipc_nl_msg msg; |
| 1351 | |
| 1352 | if (done) |
| 1353 | return 0; |
| 1354 | |
| 1355 | msg.skb = skb; |
| 1356 | msg.portid = NETLINK_CB(cb->skb).portid; |
| 1357 | msg.seq = cb->nlh->nlmsg_seq; |
| 1358 | |
| 1359 | rcu_read_lock(); |
Ying Xue | 8a0f6eb | 2015-03-26 18:10:24 +0800 | [diff] [blame] | 1360 | if (last_addr) { |
| 1361 | node = tipc_node_find(net, last_addr); |
| 1362 | if (!node) { |
| 1363 | rcu_read_unlock(); |
| 1364 | /* We never set seq or call nl_dump_check_consistent() |
| 1365 | * this means that setting prev_seq here will cause the |
| 1366 | * consistence check to fail in the netlink callback |
| 1367 | * handler. Resulting in the NLMSG_DONE message having |
| 1368 | * the NLM_F_DUMP_INTR flag set if the node state |
| 1369 | * changed while we released the lock. |
| 1370 | */ |
| 1371 | cb->prev_seq = 1; |
| 1372 | return -EPIPE; |
| 1373 | } |
| 1374 | tipc_node_put(node); |
Richard Alpe | 3e4b6ab | 2014-11-20 10:29:17 +0100 | [diff] [blame] | 1375 | } |
| 1376 | |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 1377 | list_for_each_entry_rcu(node, &tn->node_list, list) { |
Richard Alpe | 3e4b6ab | 2014-11-20 10:29:17 +0100 | [diff] [blame] | 1378 | if (last_addr) { |
| 1379 | if (node->addr == last_addr) |
| 1380 | last_addr = 0; |
| 1381 | else |
| 1382 | continue; |
| 1383 | } |
| 1384 | |
| 1385 | tipc_node_lock(node); |
| 1386 | err = __tipc_nl_add_node(&msg, node); |
| 1387 | if (err) { |
| 1388 | last_addr = node->addr; |
| 1389 | tipc_node_unlock(node); |
| 1390 | goto out; |
| 1391 | } |
| 1392 | |
| 1393 | tipc_node_unlock(node); |
| 1394 | } |
| 1395 | done = 1; |
| 1396 | out: |
| 1397 | cb->args[0] = done; |
| 1398 | cb->args[1] = last_addr; |
| 1399 | rcu_read_unlock(); |
| 1400 | |
| 1401 | return skb->len; |
| 1402 | } |