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