blob: b0372bb107f67531533402a5848be3ade62d3b32 [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/node.c: TIPC node management routines
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -04004 * Copyright (c) 2000-2006, 2012-2015, Ericsson AB
Ying Xue46651c52014-03-27 12:54:36 +08005 * Copyright (c) 2005-2006, 2010-2014, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 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 Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * 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 Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
Richard Alpe22ae7cf2015-02-09 09:50:18 +010038#include "link.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039#include "node.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "name_distr.h"
Jon Paul Maloy50100a52014-08-22 18:09:07 -040041#include "socket.h"
Jon Paul Maloya6bf70f2015-05-14 10:46:13 -040042#include "bcast.h"
Jon Paul Maloyd9992972015-07-16 16:54:31 -040043#include "discover.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010044
Jon Paul Maloy6e498152015-07-30 18:24:19 -040045/* Node FSM states and events:
46 */
47enum {
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
58enum {
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
69static void tipc_node_link_down(struct tipc_node *n, int bearer_id);
David S. Miller6c000552008-09-02 23:38:32 -070070static void node_lost_contact(struct tipc_node *n_ptr);
71static void node_established_contact(struct tipc_node *n_ptr);
Ying Xue8a0f6eb2015-03-26 18:10:24 +080072static void tipc_node_delete(struct tipc_node *node);
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -040073static void tipc_node_timeout(unsigned long data);
Jon Paul Maloyd9992972015-07-16 16:54:31 -040074static void tipc_node_fsm_evt(struct tipc_node *n, int evt);
Per Lidenb97bf3f2006-01-02 19:04:38 +010075
Jon Paul Maloy02be61a2014-08-22 18:09:08 -040076struct tipc_sock_conn {
77 u32 port;
78 u32 peer_port;
79 u32 peer_node;
80 struct list_head list;
81};
82
Richard Alpe3e4b6ab2014-11-20 10:29:17 +010083static const struct nla_policy tipc_nl_node_policy[TIPC_NLA_NODE_MAX + 1] = {
84 [TIPC_NLA_NODE_UNSPEC] = { .type = NLA_UNSPEC },
85 [TIPC_NLA_NODE_ADDR] = { .type = NLA_U32 },
86 [TIPC_NLA_NODE_UP] = { .type = NLA_FLAG }
87};
88
Allan Stephens1ec2bb02011-10-27 15:03:24 -040089/*
Allan Stephensa635b462011-11-04 11:54:43 -040090 * A trivial power-of-two bitmask technique is used for speed, since this
91 * operation is done for every incoming TIPC packet. The number of hash table
92 * entries has been chosen so that no hash chain exceeds 8 nodes and will
93 * usually be much smaller (typically only a single node).
94 */
Paul Gortmaker872f24d2012-04-23 04:49:13 +000095static unsigned int tipc_hashfn(u32 addr)
Allan Stephensa635b462011-11-04 11:54:43 -040096{
97 return addr & (NODE_HTABLE_SIZE - 1);
98}
99
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800100static void tipc_node_kref_release(struct kref *kref)
101{
102 struct tipc_node *node = container_of(kref, struct tipc_node, kref);
103
104 tipc_node_delete(node);
105}
106
107void tipc_node_put(struct tipc_node *node)
108{
109 kref_put(&node->kref, tipc_node_kref_release);
110}
111
112static void tipc_node_get(struct tipc_node *node)
113{
114 kref_get(&node->kref);
115}
116
Allan Stephensa635b462011-11-04 11:54:43 -0400117/*
Allan Stephens672d99e2011-02-25 18:42:52 -0500118 * tipc_node_find - locate specified node object, if it exists
119 */
Ying Xuef2f98002015-01-09 15:27:05 +0800120struct tipc_node *tipc_node_find(struct net *net, u32 addr)
Allan Stephens672d99e2011-02-25 18:42:52 -0500121{
Ying Xuef2f98002015-01-09 15:27:05 +0800122 struct tipc_net *tn = net_generic(net, tipc_net_id);
Allan Stephens672d99e2011-02-25 18:42:52 -0500123 struct tipc_node *node;
Allan Stephens672d99e2011-02-25 18:42:52 -0500124
Ying Xue34747532015-01-09 15:27:10 +0800125 if (unlikely(!in_own_cluster_exact(net, addr)))
Allan Stephens672d99e2011-02-25 18:42:52 -0500126 return NULL;
127
Ying Xue6c7a7622014-03-27 12:54:37 +0800128 rcu_read_lock();
Ying Xuef2f98002015-01-09 15:27:05 +0800129 hlist_for_each_entry_rcu(node, &tn->node_htable[tipc_hashfn(addr)],
130 hash) {
Ying Xue46651c52014-03-27 12:54:36 +0800131 if (node->addr == addr) {
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800132 tipc_node_get(node);
Ying Xue6c7a7622014-03-27 12:54:37 +0800133 rcu_read_unlock();
Allan Stephens672d99e2011-02-25 18:42:52 -0500134 return node;
Ying Xue46651c52014-03-27 12:54:36 +0800135 }
Allan Stephens672d99e2011-02-25 18:42:52 -0500136 }
Ying Xue6c7a7622014-03-27 12:54:37 +0800137 rcu_read_unlock();
Allan Stephens672d99e2011-02-25 18:42:52 -0500138 return NULL;
139}
140
Ying Xuef2f98002015-01-09 15:27:05 +0800141struct tipc_node *tipc_node_create(struct net *net, u32 addr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100142{
Ying Xuef2f98002015-01-09 15:27:05 +0800143 struct tipc_net *tn = net_generic(net, tipc_net_id);
Allan Stephens672d99e2011-02-25 18:42:52 -0500144 struct tipc_node *n_ptr, *temp_node;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100145
Ying Xuef2f98002015-01-09 15:27:05 +0800146 spin_lock_bh(&tn->node_list_lock);
Jon Paul Maloyb45db712015-02-03 08:59:19 -0500147 n_ptr = tipc_node_find(net, addr);
148 if (n_ptr)
149 goto exit;
Allan Stephens5af54792010-12-31 18:59:23 +0000150 n_ptr = kzalloc(sizeof(*n_ptr), GFP_ATOMIC);
Allan Stephensa10bd922006-06-25 23:52:17 -0700151 if (!n_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400152 pr_warn("Node creation failed, no memory\n");
Jon Paul Maloyb45db712015-02-03 08:59:19 -0500153 goto exit;
Allan Stephensa10bd922006-06-25 23:52:17 -0700154 }
Allan Stephensa10bd922006-06-25 23:52:17 -0700155 n_ptr->addr = addr;
Ying Xuef2f98002015-01-09 15:27:05 +0800156 n_ptr->net = net;
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800157 kref_init(&n_ptr->kref);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000158 spin_lock_init(&n_ptr->lock);
Allan Stephens672d99e2011-02-25 18:42:52 -0500159 INIT_HLIST_NODE(&n_ptr->hash);
160 INIT_LIST_HEAD(&n_ptr->list);
Ying Xuea8f48af2014-11-26 11:41:45 +0800161 INIT_LIST_HEAD(&n_ptr->publ_list);
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400162 INIT_LIST_HEAD(&n_ptr->conn_sks);
Jon Paul Maloyd39bbd42015-07-16 16:54:21 -0400163 skb_queue_head_init(&n_ptr->bclink.namedq);
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400164 __skb_queue_head_init(&n_ptr->bclink.deferdq);
Ying Xuef2f98002015-01-09 15:27:05 +0800165 hlist_add_head_rcu(&n_ptr->hash, &tn->node_htable[tipc_hashfn(addr)]);
Ying Xuef2f98002015-01-09 15:27:05 +0800166 list_for_each_entry_rcu(temp_node, &tn->node_list, list) {
Allan Stephens672d99e2011-02-25 18:42:52 -0500167 if (n_ptr->addr < temp_node->addr)
168 break;
169 }
Ying Xue6c7a7622014-03-27 12:54:37 +0800170 list_add_tail_rcu(&n_ptr->list, &temp_node->list);
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400171 n_ptr->state = SELF_DOWN_PEER_LEAVING;
Allan Stephensfc0eea62011-10-28 16:26:41 -0400172 n_ptr->signature = INVALID_NODE_SIG;
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400173 n_ptr->active_links[0] = INVALID_BEARER_ID;
174 n_ptr->active_links[1] = INVALID_BEARER_ID;
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800175 tipc_node_get(n_ptr);
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400176 setup_timer(&n_ptr->timer, tipc_node_timeout, (unsigned long)n_ptr);
177 n_ptr->keepalive_intv = U32_MAX;
Jon Paul Maloyb45db712015-02-03 08:59:19 -0500178exit:
Ying Xuef2f98002015-01-09 15:27:05 +0800179 spin_unlock_bh(&tn->node_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100180 return n_ptr;
181}
182
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400183static void tipc_node_calculate_timer(struct tipc_node *n, struct tipc_link *l)
184{
185 unsigned long tol = l->tolerance;
186 unsigned long intv = ((tol / 4) > 500) ? 500 : tol / 4;
187 unsigned long keepalive_intv = msecs_to_jiffies(intv);
188
189 /* Link with lowest tolerance determines timer interval */
190 if (keepalive_intv < n->keepalive_intv)
191 n->keepalive_intv = keepalive_intv;
192
193 /* Ensure link's abort limit corresponds to current interval */
194 l->abort_limit = l->tolerance / jiffies_to_msecs(n->keepalive_intv);
195}
196
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800197static void tipc_node_delete(struct tipc_node *node)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100198{
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800199 list_del_rcu(&node->list);
200 hlist_del_rcu(&node->hash);
201 kfree_rcu(node, rcu);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100202}
203
Ying Xuef2f98002015-01-09 15:27:05 +0800204void tipc_node_stop(struct net *net)
Ying Xue46651c52014-03-27 12:54:36 +0800205{
Ying Xuef2f98002015-01-09 15:27:05 +0800206 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue46651c52014-03-27 12:54:36 +0800207 struct tipc_node *node, *t_node;
208
Ying Xuef2f98002015-01-09 15:27:05 +0800209 spin_lock_bh(&tn->node_list_lock);
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400210 list_for_each_entry_safe(node, t_node, &tn->node_list, list) {
211 if (del_timer(&node->timer))
212 tipc_node_put(node);
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800213 tipc_node_put(node);
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400214 }
Ying Xuef2f98002015-01-09 15:27:05 +0800215 spin_unlock_bh(&tn->node_list_lock);
Ying Xue46651c52014-03-27 12:54:36 +0800216}
217
Ying Xuef2f98002015-01-09 15:27:05 +0800218int tipc_node_add_conn(struct net *net, u32 dnode, u32 port, u32 peer_port)
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400219{
220 struct tipc_node *node;
221 struct tipc_sock_conn *conn;
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800222 int err = 0;
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400223
Ying Xue34747532015-01-09 15:27:10 +0800224 if (in_own_node(net, dnode))
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400225 return 0;
226
Ying Xuef2f98002015-01-09 15:27:05 +0800227 node = tipc_node_find(net, dnode);
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400228 if (!node) {
229 pr_warn("Connecting sock to node 0x%x failed\n", dnode);
230 return -EHOSTUNREACH;
231 }
232 conn = kmalloc(sizeof(*conn), GFP_ATOMIC);
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800233 if (!conn) {
234 err = -EHOSTUNREACH;
235 goto exit;
236 }
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400237 conn->peer_node = dnode;
238 conn->port = port;
239 conn->peer_port = peer_port;
240
241 tipc_node_lock(node);
242 list_add_tail(&conn->list, &node->conn_sks);
243 tipc_node_unlock(node);
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800244exit:
245 tipc_node_put(node);
246 return err;
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400247}
248
Ying Xuef2f98002015-01-09 15:27:05 +0800249void tipc_node_remove_conn(struct net *net, u32 dnode, u32 port)
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400250{
251 struct tipc_node *node;
252 struct tipc_sock_conn *conn, *safe;
253
Ying Xue34747532015-01-09 15:27:10 +0800254 if (in_own_node(net, dnode))
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400255 return;
256
Ying Xuef2f98002015-01-09 15:27:05 +0800257 node = tipc_node_find(net, dnode);
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400258 if (!node)
259 return;
260
261 tipc_node_lock(node);
262 list_for_each_entry_safe(conn, safe, &node->conn_sks, list) {
263 if (port != conn->port)
264 continue;
265 list_del(&conn->list);
266 kfree(conn);
267 }
268 tipc_node_unlock(node);
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800269 tipc_node_put(node);
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400270}
271
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400272/* tipc_node_timeout - handle expiration of node timer
273 */
274static void tipc_node_timeout(unsigned long data)
275{
276 struct tipc_node *n = (struct tipc_node *)data;
277 struct sk_buff_head xmitq;
278 struct tipc_link *l;
279 struct tipc_media_addr *maddr;
280 int bearer_id;
281 int rc = 0;
282
283 __skb_queue_head_init(&xmitq);
284
285 for (bearer_id = 0; bearer_id < MAX_BEARERS; bearer_id++) {
286 tipc_node_lock(n);
287 l = n->links[bearer_id].link;
288 if (l) {
289 /* Link tolerance may change asynchronously: */
290 tipc_node_calculate_timer(n, l);
291 rc = tipc_link_timeout(l, &xmitq);
292 if (rc & TIPC_LINK_DOWN_EVT)
Jon Paul Maloy655fb242015-07-30 18:24:17 -0400293 tipc_node_link_down(n, bearer_id);
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400294 }
295 tipc_node_unlock(n);
296 maddr = &n->links[bearer_id].maddr;
297 tipc_bearer_xmit(n->net, bearer_id, &xmitq, maddr);
298 }
299 if (!mod_timer(&n->timer, jiffies + n->keepalive_intv))
300 tipc_node_get(n);
301 tipc_node_put(n);
302}
303
Per Lidenb97bf3f2006-01-02 19:04:38 +0100304/**
Per Liden4323add2006-01-18 00:38:21 +0100305 * tipc_node_link_up - handle addition of link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900306 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100307 * Link becomes active (alone or shared) or standby, depending on its priority.
308 */
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400309static void tipc_node_link_up(struct tipc_node *n, int bearer_id,
310 struct sk_buff_head *xmitq)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100311{
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400312 int *slot0 = &n->active_links[0];
313 int *slot1 = &n->active_links[1];
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400314 struct tipc_link *ol = node_active_link(n, 0);
315 struct tipc_link *nl = n->links[bearer_id].link;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100316
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400317 if (n->working_links > 1) {
318 pr_warn("Attempt to establish 3rd link to %x\n", n->addr);
319 return;
320 }
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400321 n->working_links++;
322 n->action_flags |= TIPC_NOTIFY_LINK_UP;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400323 n->link_id = nl->peer_bearer_id << 16 | bearer_id;
324
325 /* Leave room for tunnel header when returning 'mtu' to users: */
326 n->links[bearer_id].mtu = nl->mtu - INT_H_SIZE;
Ying Xue7b8613e2014-10-20 14:44:25 +0800327
Jon Paul Maloycbeb83c2015-07-30 18:24:15 -0400328 tipc_bearer_add_dest(n->net, bearer_id, n->addr);
329
Erik Hugne3fa9cac2015-01-22 17:10:31 +0100330 pr_debug("Established link <%s> on network plane %c\n",
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400331 nl->name, nl->net_plane);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900332
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400333 /* First link? => give it both slots */
334 if (!ol) {
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400335 *slot0 = bearer_id;
336 *slot1 = bearer_id;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400337 nl->exec_mode = TIPC_LINK_OPEN;
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400338 node_established_contact(n);
339 return;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100340 }
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400341
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400342 /* Second link => redistribute slots */
343 if (nl->priority > ol->priority) {
344 pr_debug("Old link <%s> becomes standby\n", ol->name);
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400345 *slot0 = bearer_id;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400346 *slot1 = bearer_id;
347 } else if (nl->priority == ol->priority) {
348 *slot0 = bearer_id;
349 } else {
350 pr_debug("New link <%s> is standby\n", nl->name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100351 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100352
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400353 /* Prepare synchronization with first link */
354 tipc_link_tnl_prepare(ol, nl, SYNCH_MSG, xmitq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100355}
356
357/**
Per Liden4323add2006-01-18 00:38:21 +0100358 * tipc_node_link_down - handle loss of link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100359 */
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400360static void tipc_node_link_down(struct tipc_node *n, int bearer_id)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100361{
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400362 int *slot0 = &n->active_links[0];
363 int *slot1 = &n->active_links[1];
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400364 struct tipc_media_addr *maddr = &n->links[bearer_id].maddr;
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400365 int i, highest = 0;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400366 struct tipc_link *l, *_l, *tnl;
367 struct sk_buff_head xmitq;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100368
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400369 l = n->links[bearer_id].link;
Jon Paul Maloy655fb242015-07-30 18:24:17 -0400370 if (!l || !tipc_link_is_up(l))
371 return;
372
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400373 __skb_queue_head_init(&xmitq);
374
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400375 n->working_links--;
376 n->action_flags |= TIPC_NOTIFY_LINK_DOWN;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400377 n->link_id = l->peer_bearer_id << 16 | bearer_id;
Allan Stephens5392d642006-06-25 23:52:50 -0700378
Jon Paul Maloy655fb242015-07-30 18:24:17 -0400379 tipc_bearer_remove_dest(n->net, l->bearer_id, n->addr);
380
Erik Hugne3fa9cac2015-01-22 17:10:31 +0100381 pr_debug("Lost link <%s> on network plane %c\n",
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400382 l->name, l->net_plane);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100383
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400384 /* Select new active link if any available */
385 *slot0 = INVALID_BEARER_ID;
386 *slot1 = INVALID_BEARER_ID;
387 for (i = 0; i < MAX_BEARERS; i++) {
388 _l = n->links[i].link;
389 if (!_l || !tipc_link_is_up(_l))
390 continue;
Jon Paul Maloy655fb242015-07-30 18:24:17 -0400391 if (_l == l)
392 continue;
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400393 if (_l->priority < highest)
394 continue;
395 if (_l->priority > highest) {
396 highest = _l->priority;
397 *slot0 = i;
398 *slot1 = i;
399 continue;
400 }
401 *slot1 = i;
402 }
Jon Paul Maloy655fb242015-07-30 18:24:17 -0400403
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400404 if (!tipc_node_is_up(n)) {
405 tipc_link_reset(l);
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400406 node_lost_contact(n);
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400407 return;
408 }
409
410 /* There is still a working link => initiate failover */
411 tnl = node_active_link(n, 0);
412 tipc_node_fsm_evt(n, NODE_FAILOVER_BEGIN_EVT);
413 n->sync_point = tnl->rcv_nxt + (U16_MAX / 2 - 1);
414 tipc_link_tnl_prepare(l, tnl, FAILOVER_MSG, &xmitq);
415 tipc_link_reset(l);
416 tipc_bearer_xmit(n->net, tnl->bearer_id, &xmitq, maddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100417}
418
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400419bool tipc_node_is_up(struct tipc_node *n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100420{
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400421 return n->active_links[0] != INVALID_BEARER_ID;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100422}
423
Jon Paul Maloyd3a43b92015-07-16 16:54:20 -0400424void tipc_node_check_dest(struct tipc_node *n, struct tipc_bearer *b,
425 bool *link_up, bool *addr_match,
426 struct tipc_media_addr *maddr)
427{
428 struct tipc_link *l = n->links[b->identity].link;
429 struct tipc_media_addr *curr = &n->links[b->identity].maddr;
430
431 *link_up = l && tipc_link_is_up(l);
432 *addr_match = l && !memcmp(curr, maddr, sizeof(*maddr));
433}
434
435bool tipc_node_update_dest(struct tipc_node *n, struct tipc_bearer *b,
436 struct tipc_media_addr *maddr)
437{
438 struct tipc_link *l = n->links[b->identity].link;
439 struct tipc_media_addr *curr = &n->links[b->identity].maddr;
Jon Paul Maloyd39bbd42015-07-16 16:54:21 -0400440 struct sk_buff_head *inputq = &n->links[b->identity].inputq;
Jon Paul Maloyd3a43b92015-07-16 16:54:20 -0400441
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400442 if (!l) {
Jon Paul Maloyd39bbd42015-07-16 16:54:21 -0400443 l = tipc_link_create(n, b, maddr, inputq, &n->bclink.namedq);
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400444 if (!l)
445 return false;
446 tipc_node_calculate_timer(n, l);
447 if (n->link_cnt == 1) {
448 if (!mod_timer(&n->timer, jiffies + n->keepalive_intv))
449 tipc_node_get(n);
450 }
451 }
Jon Paul Maloyd3a43b92015-07-16 16:54:20 -0400452 memcpy(&l->media_addr, maddr, sizeof(*maddr));
453 memcpy(curr, maddr, sizeof(*maddr));
Jon Paul Maloy655fb242015-07-30 18:24:17 -0400454 tipc_node_link_down(n, b->identity);
Jon Paul Maloyd3a43b92015-07-16 16:54:20 -0400455 return true;
456}
457
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400458void tipc_node_delete_links(struct net *net, int bearer_id)
459{
460 struct tipc_net *tn = net_generic(net, tipc_net_id);
461 struct tipc_link *l;
462 struct tipc_node *n;
463
464 rcu_read_lock();
465 list_for_each_entry_rcu(n, &tn->node_list, list) {
466 tipc_node_lock(n);
467 l = n->links[bearer_id].link;
468 if (l) {
Jon Paul Maloy655fb242015-07-30 18:24:17 -0400469 tipc_node_link_down(n, bearer_id);
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400470 n->links[bearer_id].link = NULL;
471 n->link_cnt--;
472 }
473 tipc_node_unlock(n);
474 kfree(l);
475 }
476 rcu_read_unlock();
477}
478
479static void tipc_node_reset_links(struct tipc_node *n)
480{
481 char addr_string[16];
482 u32 i;
483
484 tipc_node_lock(n);
485
486 pr_warn("Resetting all links to %s\n",
487 tipc_addr_string_fill(addr_string, n->addr));
488
489 for (i = 0; i < MAX_BEARERS; i++) {
Jon Paul Maloy655fb242015-07-30 18:24:17 -0400490 if (!n->links[i].link)
491 continue;
492 tipc_node_link_down(n, i);
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400493 }
494 tipc_node_unlock(n);
495}
496
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500497void tipc_node_attach_link(struct tipc_node *n_ptr, struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100498{
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400499 n_ptr->links[l_ptr->bearer_id].link = l_ptr;
Allan Stephens37b9c082011-02-28 11:32:27 -0500500 n_ptr->link_cnt++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100501}
502
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500503void tipc_node_detach_link(struct tipc_node *n_ptr, struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100504{
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500505 int i;
506
507 for (i = 0; i < MAX_BEARERS; i++) {
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400508 if (l_ptr != n_ptr->links[i].link)
Jon Paul Maloy074bb432014-02-14 16:40:43 -0500509 continue;
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400510 n_ptr->links[i].link = NULL;
Jon Paul Maloy074bb432014-02-14 16:40:43 -0500511 n_ptr->link_cnt--;
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500512 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100513}
514
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400515/* tipc_node_fsm_evt - node finite state machine
516 * Determines when contact is allowed with peer node
517 */
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400518static void tipc_node_fsm_evt(struct tipc_node *n, int evt)
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400519{
520 int state = n->state;
521
522 switch (state) {
523 case SELF_DOWN_PEER_DOWN:
524 switch (evt) {
525 case SELF_ESTABL_CONTACT_EVT:
526 state = SELF_UP_PEER_COMING;
527 break;
528 case PEER_ESTABL_CONTACT_EVT:
529 state = SELF_COMING_PEER_UP;
530 break;
531 case SELF_LOST_CONTACT_EVT:
532 case PEER_LOST_CONTACT_EVT:
533 break;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400534 case NODE_SYNCH_END_EVT:
535 case NODE_SYNCH_BEGIN_EVT:
536 case NODE_FAILOVER_BEGIN_EVT:
537 case NODE_FAILOVER_END_EVT:
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400538 default:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400539 goto illegal_evt;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400540 }
541 break;
542 case SELF_UP_PEER_UP:
543 switch (evt) {
544 case SELF_LOST_CONTACT_EVT:
545 state = SELF_DOWN_PEER_LEAVING;
546 break;
547 case PEER_LOST_CONTACT_EVT:
548 state = SELF_LEAVING_PEER_DOWN;
549 break;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400550 case NODE_SYNCH_BEGIN_EVT:
551 state = NODE_SYNCHING;
552 break;
553 case NODE_FAILOVER_BEGIN_EVT:
554 state = NODE_FAILINGOVER;
555 break;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400556 case SELF_ESTABL_CONTACT_EVT:
557 case PEER_ESTABL_CONTACT_EVT:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400558 case NODE_SYNCH_END_EVT:
559 case NODE_FAILOVER_END_EVT:
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400560 break;
561 default:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400562 goto illegal_evt;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400563 }
564 break;
565 case SELF_DOWN_PEER_LEAVING:
566 switch (evt) {
567 case PEER_LOST_CONTACT_EVT:
568 state = SELF_DOWN_PEER_DOWN;
569 break;
570 case SELF_ESTABL_CONTACT_EVT:
571 case PEER_ESTABL_CONTACT_EVT:
572 case SELF_LOST_CONTACT_EVT:
573 break;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400574 case NODE_SYNCH_END_EVT:
575 case NODE_SYNCH_BEGIN_EVT:
576 case NODE_FAILOVER_BEGIN_EVT:
577 case NODE_FAILOVER_END_EVT:
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400578 default:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400579 goto illegal_evt;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400580 }
581 break;
582 case SELF_UP_PEER_COMING:
583 switch (evt) {
584 case PEER_ESTABL_CONTACT_EVT:
585 state = SELF_UP_PEER_UP;
586 break;
587 case SELF_LOST_CONTACT_EVT:
588 state = SELF_DOWN_PEER_LEAVING;
589 break;
590 case SELF_ESTABL_CONTACT_EVT:
591 case PEER_LOST_CONTACT_EVT:
592 break;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400593 case NODE_SYNCH_END_EVT:
594 case NODE_SYNCH_BEGIN_EVT:
595 case NODE_FAILOVER_BEGIN_EVT:
596 case NODE_FAILOVER_END_EVT:
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400597 default:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400598 goto illegal_evt;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400599 }
600 break;
601 case SELF_COMING_PEER_UP:
602 switch (evt) {
603 case SELF_ESTABL_CONTACT_EVT:
604 state = SELF_UP_PEER_UP;
605 break;
606 case PEER_LOST_CONTACT_EVT:
607 state = SELF_LEAVING_PEER_DOWN;
608 break;
609 case SELF_LOST_CONTACT_EVT:
610 case PEER_ESTABL_CONTACT_EVT:
611 break;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400612 case NODE_SYNCH_END_EVT:
613 case NODE_SYNCH_BEGIN_EVT:
614 case NODE_FAILOVER_BEGIN_EVT:
615 case NODE_FAILOVER_END_EVT:
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400616 default:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400617 goto illegal_evt;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400618 }
619 break;
620 case SELF_LEAVING_PEER_DOWN:
621 switch (evt) {
622 case SELF_LOST_CONTACT_EVT:
623 state = SELF_DOWN_PEER_DOWN;
624 break;
625 case SELF_ESTABL_CONTACT_EVT:
626 case PEER_ESTABL_CONTACT_EVT:
627 case PEER_LOST_CONTACT_EVT:
628 break;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400629 case NODE_SYNCH_END_EVT:
630 case NODE_SYNCH_BEGIN_EVT:
631 case NODE_FAILOVER_BEGIN_EVT:
632 case NODE_FAILOVER_END_EVT:
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400633 default:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400634 goto illegal_evt;
635 }
636 break;
637 case NODE_FAILINGOVER:
638 switch (evt) {
639 case SELF_LOST_CONTACT_EVT:
640 state = SELF_DOWN_PEER_LEAVING;
641 break;
642 case PEER_LOST_CONTACT_EVT:
643 state = SELF_LEAVING_PEER_DOWN;
644 break;
645 case NODE_FAILOVER_END_EVT:
646 state = SELF_UP_PEER_UP;
647 break;
648 case NODE_FAILOVER_BEGIN_EVT:
649 case SELF_ESTABL_CONTACT_EVT:
650 case PEER_ESTABL_CONTACT_EVT:
651 break;
652 case NODE_SYNCH_BEGIN_EVT:
653 case NODE_SYNCH_END_EVT:
654 default:
655 goto illegal_evt;
656 }
657 break;
658 case NODE_SYNCHING:
659 switch (evt) {
660 case SELF_LOST_CONTACT_EVT:
661 state = SELF_DOWN_PEER_LEAVING;
662 break;
663 case PEER_LOST_CONTACT_EVT:
664 state = SELF_LEAVING_PEER_DOWN;
665 break;
666 case NODE_SYNCH_END_EVT:
667 state = SELF_UP_PEER_UP;
668 break;
669 case NODE_FAILOVER_BEGIN_EVT:
670 state = NODE_FAILINGOVER;
671 break;
672 case NODE_SYNCH_BEGIN_EVT:
673 case SELF_ESTABL_CONTACT_EVT:
674 case PEER_ESTABL_CONTACT_EVT:
675 break;
676 case NODE_FAILOVER_END_EVT:
677 default:
678 goto illegal_evt;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400679 }
680 break;
681 default:
682 pr_err("Unknown node fsm state %x\n", state);
683 break;
684 }
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400685 n->state = state;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400686 return;
687
688illegal_evt:
689 pr_err("Illegal node fsm evt %x in state %x\n", evt, state);
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400690}
691
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400692bool tipc_node_filter_pkt(struct tipc_node *n, struct tipc_msg *hdr)
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400693{
694 int state = n->state;
695
696 if (likely(state == SELF_UP_PEER_UP))
697 return true;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400698
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400699 if (state == SELF_LEAVING_PEER_DOWN)
700 return false;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400701
702 if (state == SELF_DOWN_PEER_LEAVING) {
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400703 if (msg_peer_node_is_up(hdr))
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400704 return false;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400705 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400706
707 return true;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400708}
709
David S. Miller6c000552008-09-02 23:38:32 -0700710static void node_established_contact(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100711{
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400712 tipc_node_fsm_evt(n_ptr, SELF_ESTABL_CONTACT_EVT);
Ying Xueaecb9bb2014-05-08 08:54:39 +0800713 n_ptr->action_flags |= TIPC_NOTIFY_NODE_UP;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800714 n_ptr->bclink.oos_state = 0;
Ying Xue1da46562015-01-09 15:27:07 +0800715 n_ptr->bclink.acked = tipc_bclink_get_last_sent(n_ptr->net);
716 tipc_bclink_add_node(n_ptr->net, n_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100717}
718
David S. Miller6c000552008-09-02 23:38:32 -0700719static void node_lost_contact(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100720{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100721 char addr_string[16];
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500722 struct tipc_sock_conn *conn, *safe;
723 struct list_head *conns = &n_ptr->conn_sks;
724 struct sk_buff *skb;
725 struct tipc_net *tn = net_generic(n_ptr->net, tipc_net_id);
726 uint i;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100727
Erik Hugne3fa9cac2015-01-22 17:10:31 +0100728 pr_debug("Lost contact with %s\n",
729 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensc5bd4d82011-04-07 11:58:08 -0400730
731 /* Flush broadcast link info associated with lost node */
Ying Xue389dd9b2012-11-16 13:51:30 +0800732 if (n_ptr->bclink.recv_permitted) {
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400733 __skb_queue_purge(&n_ptr->bclink.deferdq);
Allan Stephensc5bd4d82011-04-07 11:58:08 -0400734
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400735 if (n_ptr->bclink.reasm_buf) {
736 kfree_skb(n_ptr->bclink.reasm_buf);
737 n_ptr->bclink.reasm_buf = NULL;
Allan Stephensc5bd4d82011-04-07 11:58:08 -0400738 }
739
Ying Xue1da46562015-01-09 15:27:07 +0800740 tipc_bclink_remove_node(n_ptr->net, n_ptr->addr);
Allan Stephens365595912011-10-24 15:26:24 -0400741 tipc_bclink_acknowledge(n_ptr, INVALID_LINK_SEQ);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100742
Ying Xue389dd9b2012-11-16 13:51:30 +0800743 n_ptr->bclink.recv_permitted = false;
Allan Stephensc5bd4d82011-04-07 11:58:08 -0400744 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100745
Jon Paul Maloydff29b12015-04-02 09:33:01 -0400746 /* Abort any ongoing link failover */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100747 for (i = 0; i < MAX_BEARERS; i++) {
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400748 struct tipc_link *l_ptr = n_ptr->links[i].link;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900749 if (!l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100750 continue;
Jon Paul Maloyd3504c32015-07-16 16:54:25 -0400751 l_ptr->exec_mode = TIPC_LINK_OPEN;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400752 kfree_skb(l_ptr->failover_reasm_skb);
753 l_ptr->failover_reasm_skb = NULL;
Per Liden4323add2006-01-18 00:38:21 +0100754 tipc_link_reset_fragments(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100755 }
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500756 /* Prevent re-contact with node until cleanup is done */
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400757 tipc_node_fsm_evt(n_ptr, SELF_LOST_CONTACT_EVT);
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500758
759 /* Notify publications from this node */
760 n_ptr->action_flags |= TIPC_NOTIFY_NODE_DOWN;
761
762 /* Notify sockets connected to node */
763 list_for_each_entry_safe(conn, safe, conns, list) {
764 skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE, TIPC_CONN_MSG,
765 SHORT_H_SIZE, 0, tn->own_addr,
766 conn->peer_node, conn->port,
767 conn->peer_port, TIPC_ERR_NO_NODE);
768 if (likely(skb)) {
769 skb_queue_tail(n_ptr->inputq, skb);
770 n_ptr->action_flags |= TIPC_MSG_EVT;
771 }
772 list_del(&conn->list);
773 kfree(conn);
774 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100775}
776
Erik Hugne78acb1f2014-04-24 16:26:47 +0200777/**
778 * tipc_node_get_linkname - get the name of a link
779 *
780 * @bearer_id: id of the bearer
781 * @node: peer node address
782 * @linkname: link name output buffer
783 *
784 * Returns 0 on success
785 */
Ying Xuef2f98002015-01-09 15:27:05 +0800786int tipc_node_get_linkname(struct net *net, u32 bearer_id, u32 addr,
787 char *linkname, size_t len)
Erik Hugne78acb1f2014-04-24 16:26:47 +0200788{
789 struct tipc_link *link;
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800790 int err = -EINVAL;
Ying Xuef2f98002015-01-09 15:27:05 +0800791 struct tipc_node *node = tipc_node_find(net, addr);
Erik Hugne78acb1f2014-04-24 16:26:47 +0200792
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800793 if (!node)
794 return err;
795
796 if (bearer_id >= MAX_BEARERS)
797 goto exit;
798
Erik Hugne78acb1f2014-04-24 16:26:47 +0200799 tipc_node_lock(node);
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400800 link = node->links[bearer_id].link;
Erik Hugne78acb1f2014-04-24 16:26:47 +0200801 if (link) {
802 strncpy(linkname, link->name, len);
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800803 err = 0;
Erik Hugne78acb1f2014-04-24 16:26:47 +0200804 }
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800805exit:
Erik Hugne78acb1f2014-04-24 16:26:47 +0200806 tipc_node_unlock(node);
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800807 tipc_node_put(node);
808 return err;
Erik Hugne78acb1f2014-04-24 16:26:47 +0200809}
Ying Xue9db9fdd2014-05-05 08:56:12 +0800810
811void tipc_node_unlock(struct tipc_node *node)
812{
Ying Xuef2f98002015-01-09 15:27:05 +0800813 struct net *net = node->net;
Ying Xueca0c4272014-05-05 08:56:14 +0800814 u32 addr = 0;
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500815 u32 flags = node->action_flags;
Ying Xue7b8613e2014-10-20 14:44:25 +0800816 u32 link_id = 0;
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500817 struct list_head *publ_list;
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500818 struct sk_buff_head *inputq = node->inputq;
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500819 struct sk_buff_head *namedq;
Ying Xue9db9fdd2014-05-05 08:56:12 +0800820
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500821 if (likely(!flags || (flags == TIPC_MSG_EVT))) {
822 node->action_flags = 0;
Ying Xue9db9fdd2014-05-05 08:56:12 +0800823 spin_unlock_bh(&node->lock);
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500824 if (flags == TIPC_MSG_EVT)
825 tipc_sk_rcv(net, inputq);
Ying Xue9db9fdd2014-05-05 08:56:12 +0800826 return;
827 }
828
Ying Xue7b8613e2014-10-20 14:44:25 +0800829 addr = node->addr;
830 link_id = node->link_id;
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500831 namedq = node->namedq;
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500832 publ_list = &node->publ_list;
Ying Xue7b8613e2014-10-20 14:44:25 +0800833
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500834 node->action_flags &= ~(TIPC_MSG_EVT |
835 TIPC_NOTIFY_NODE_DOWN | TIPC_NOTIFY_NODE_UP |
836 TIPC_NOTIFY_LINK_DOWN | TIPC_NOTIFY_LINK_UP |
837 TIPC_WAKEUP_BCAST_USERS | TIPC_BCAST_MSG_EVT |
Ying Xueb952b2b2015-03-26 18:10:23 +0800838 TIPC_NAMED_MSG_EVT | TIPC_BCAST_RESET);
Ying Xue7b8613e2014-10-20 14:44:25 +0800839
Ying Xue9db9fdd2014-05-05 08:56:12 +0800840 spin_unlock_bh(&node->lock);
841
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500842 if (flags & TIPC_NOTIFY_NODE_DOWN)
843 tipc_publ_notify(net, publ_list, addr);
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400844
Jon Maloy908344c2014-10-07 14:12:34 -0400845 if (flags & TIPC_WAKEUP_BCAST_USERS)
Ying Xuef2f98002015-01-09 15:27:05 +0800846 tipc_bclink_wakeup_users(net);
Jon Maloy908344c2014-10-07 14:12:34 -0400847
Ying Xue7b8613e2014-10-20 14:44:25 +0800848 if (flags & TIPC_NOTIFY_NODE_UP)
Ying Xuef2f98002015-01-09 15:27:05 +0800849 tipc_named_node_up(net, addr);
Ying Xue7b8613e2014-10-20 14:44:25 +0800850
851 if (flags & TIPC_NOTIFY_LINK_UP)
Ying Xuef2f98002015-01-09 15:27:05 +0800852 tipc_nametbl_publish(net, TIPC_LINK_STATE, addr, addr,
Ying Xue7b8613e2014-10-20 14:44:25 +0800853 TIPC_NODE_SCOPE, link_id, addr);
854
855 if (flags & TIPC_NOTIFY_LINK_DOWN)
Ying Xuef2f98002015-01-09 15:27:05 +0800856 tipc_nametbl_withdraw(net, TIPC_LINK_STATE, addr,
Ying Xue7b8613e2014-10-20 14:44:25 +0800857 link_id, addr);
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500858
859 if (flags & TIPC_MSG_EVT)
860 tipc_sk_rcv(net, inputq);
861
862 if (flags & TIPC_NAMED_MSG_EVT)
863 tipc_named_rcv(net, namedq);
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500864
865 if (flags & TIPC_BCAST_MSG_EVT)
866 tipc_bclink_input(net);
Ying Xueb952b2b2015-03-26 18:10:23 +0800867
868 if (flags & TIPC_BCAST_RESET)
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400869 tipc_node_reset_links(node);
Ying Xue9db9fdd2014-05-05 08:56:12 +0800870}
Richard Alpe3e4b6ab2014-11-20 10:29:17 +0100871
872/* Caller should hold node lock for the passed node */
Richard Alped8182802014-11-24 11:10:29 +0100873static int __tipc_nl_add_node(struct tipc_nl_msg *msg, struct tipc_node *node)
Richard Alpe3e4b6ab2014-11-20 10:29:17 +0100874{
875 void *hdr;
876 struct nlattr *attrs;
877
Richard Alpebfb3e5d2015-02-09 09:50:03 +0100878 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
Richard Alpe3e4b6ab2014-11-20 10:29:17 +0100879 NLM_F_MULTI, TIPC_NL_NODE_GET);
880 if (!hdr)
881 return -EMSGSIZE;
882
883 attrs = nla_nest_start(msg->skb, TIPC_NLA_NODE);
884 if (!attrs)
885 goto msg_full;
886
887 if (nla_put_u32(msg->skb, TIPC_NLA_NODE_ADDR, node->addr))
888 goto attr_msg_full;
889 if (tipc_node_is_up(node))
890 if (nla_put_flag(msg->skb, TIPC_NLA_NODE_UP))
891 goto attr_msg_full;
892
893 nla_nest_end(msg->skb, attrs);
894 genlmsg_end(msg->skb, hdr);
895
896 return 0;
897
898attr_msg_full:
899 nla_nest_cancel(msg->skb, attrs);
900msg_full:
901 genlmsg_cancel(msg->skb, hdr);
902
903 return -EMSGSIZE;
904}
905
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400906static struct tipc_link *tipc_node_select_link(struct tipc_node *n, int sel,
907 int *bearer_id,
908 struct tipc_media_addr **maddr)
909{
910 int id = n->active_links[sel & 1];
911
912 if (unlikely(id < 0))
913 return NULL;
914
915 *bearer_id = id;
916 *maddr = &n->links[id].maddr;
917 return n->links[id].link;
918}
919
920/**
921 * tipc_node_xmit() is the general link level function for message sending
922 * @net: the applicable net namespace
923 * @list: chain of buffers containing message
924 * @dnode: address of destination node
925 * @selector: a number used for deterministic link selection
926 * Consumes the buffer chain, except when returning -ELINKCONG
927 * Returns 0 if success, otherwise errno: -ELINKCONG,-EHOSTUNREACH,-EMSGSIZE
928 */
929int tipc_node_xmit(struct net *net, struct sk_buff_head *list,
930 u32 dnode, int selector)
931{
932 struct tipc_link *l = NULL;
933 struct tipc_node *n;
934 struct sk_buff_head xmitq;
935 struct tipc_media_addr *maddr;
936 int bearer_id;
937 int rc = -EHOSTUNREACH;
938
939 __skb_queue_head_init(&xmitq);
940 n = tipc_node_find(net, dnode);
941 if (likely(n)) {
942 tipc_node_lock(n);
943 l = tipc_node_select_link(n, selector, &bearer_id, &maddr);
944 if (likely(l))
945 rc = tipc_link_xmit(l, list, &xmitq);
946 if (unlikely(rc == -ENOBUFS))
Jon Paul Maloy655fb242015-07-30 18:24:17 -0400947 tipc_node_link_down(n, bearer_id);
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400948 tipc_node_unlock(n);
949 tipc_node_put(n);
950 }
951 if (likely(!rc)) {
952 tipc_bearer_xmit(net, bearer_id, &xmitq, maddr);
953 return 0;
954 }
955 if (likely(in_own_node(net, dnode))) {
956 tipc_sk_rcv(net, list);
957 return 0;
958 }
959 return rc;
960}
961
962/* tipc_node_xmit_skb(): send single buffer to destination
963 * Buffers sent via this functon are generally TIPC_SYSTEM_IMPORTANCE
964 * messages, which will not be rejected
965 * The only exception is datagram messages rerouted after secondary
966 * lookup, which are rare and safe to dispose of anyway.
967 * TODO: Return real return value, and let callers use
968 * tipc_wait_for_sendpkt() where applicable
969 */
970int tipc_node_xmit_skb(struct net *net, struct sk_buff *skb, u32 dnode,
971 u32 selector)
972{
973 struct sk_buff_head head;
974 int rc;
975
976 skb_queue_head_init(&head);
977 __skb_queue_tail(&head, skb);
978 rc = tipc_node_xmit(net, &head, dnode, selector);
979 if (rc == -ELINKCONG)
980 kfree_skb(skb);
981 return 0;
982}
983
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400984/**
985 * tipc_node_check_state - check and if necessary update node state
986 * @skb: TIPC packet
987 * @bearer_id: identity of bearer delivering the packet
988 * Returns true if state is ok, otherwise consumes buffer and returns false
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400989 */
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400990static bool tipc_node_check_state(struct tipc_node *n, struct sk_buff *skb,
991 int bearer_id)
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400992{
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400993 struct tipc_msg *hdr = buf_msg(skb);
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400994 int usr = msg_user(hdr);
995 int mtyp = msg_type(hdr);
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400996 u16 oseqno = msg_seqno(hdr);
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400997 u16 iseqno = msg_seqno(msg_get_wrapped(hdr));
998 u16 exp_pkts = msg_msgcnt(hdr);
999 u16 rcv_nxt, syncpt, dlv_nxt;
1000 int state = n->state;
1001 struct tipc_link *l, *pl = NULL;
1002 struct sk_buff_head;
1003 int i;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001004
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001005 l = n->links[bearer_id].link;
1006 if (!l)
1007 return false;
1008 rcv_nxt = l->rcv_nxt;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001009
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001010
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001011 if (likely((state == SELF_UP_PEER_UP) && (usr != TUNNEL_PROTOCOL)))
1012 return true;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001013
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001014 /* Find parallel link, if any */
1015 for (i = 0; i < MAX_BEARERS; i++) {
1016 if ((i != bearer_id) && n->links[i].link) {
1017 pl = n->links[i].link;
1018 break;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001019 }
1020 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001021
1022 /* Update node accesibility if applicable */
1023 if (state == SELF_UP_PEER_COMING) {
1024 if (!tipc_link_is_up(l))
1025 return true;
1026 if (!msg_peer_link_is_up(hdr))
1027 return true;
1028 tipc_node_fsm_evt(n, PEER_ESTABL_CONTACT_EVT);
1029 }
1030
1031 if (state == SELF_DOWN_PEER_LEAVING) {
1032 if (msg_peer_node_is_up(hdr))
1033 return false;
1034 tipc_node_fsm_evt(n, PEER_LOST_CONTACT_EVT);
1035 }
1036
1037 /* Ignore duplicate packets */
1038 if (less(oseqno, rcv_nxt))
1039 return true;
1040
1041 /* Initiate or update failover mode if applicable */
1042 if ((usr == TUNNEL_PROTOCOL) && (mtyp == FAILOVER_MSG)) {
1043 syncpt = oseqno + exp_pkts - 1;
1044 if (pl && tipc_link_is_up(pl)) {
1045 tipc_node_link_down(n, pl->bearer_id);
1046 pl->exec_mode = TIPC_LINK_BLOCKED;
1047 }
1048 /* If pkts arrive out of order, use lowest calculated syncpt */
1049 if (less(syncpt, n->sync_point))
1050 n->sync_point = syncpt;
1051 }
1052
1053 /* Open parallel link when tunnel link reaches synch point */
1054 if ((n->state == NODE_FAILINGOVER) && (more(rcv_nxt, n->sync_point))) {
1055 tipc_node_fsm_evt(n, NODE_FAILOVER_END_EVT);
1056 if (pl)
1057 pl->exec_mode = TIPC_LINK_OPEN;
1058 return true;
1059 }
1060
1061 /* Initiate or update synch mode if applicable */
1062 if ((usr == TUNNEL_PROTOCOL) && (mtyp == SYNCH_MSG)) {
1063 syncpt = iseqno + exp_pkts - 1;
1064 if (n->state == SELF_UP_PEER_UP) {
1065 n->sync_point = syncpt;
1066 tipc_node_fsm_evt(n, NODE_SYNCH_BEGIN_EVT);
1067 }
1068 l->exec_mode = TIPC_LINK_TUNNEL;
1069 if (less(syncpt, n->sync_point))
1070 n->sync_point = syncpt;
1071 }
1072
1073 /* Open tunnel link when parallel link reaches synch point */
1074 if ((n->state == NODE_SYNCHING) && (l->exec_mode == TIPC_LINK_TUNNEL)) {
1075 if (pl)
1076 dlv_nxt = mod(pl->rcv_nxt - skb_queue_len(pl->inputq));
1077 if (!pl || more(dlv_nxt, n->sync_point)) {
1078 tipc_node_fsm_evt(n, NODE_SYNCH_END_EVT);
1079 l->exec_mode = TIPC_LINK_OPEN;
1080 return true;
1081 }
1082 if ((usr == TUNNEL_PROTOCOL) && (mtyp == SYNCH_MSG))
1083 return true;
1084 if (usr == LINK_PROTOCOL)
1085 return true;
1086 return false;
1087 }
1088 return true;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001089}
1090
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001091/**
1092 * tipc_rcv - process TIPC packets/messages arriving from off-node
1093 * @net: the applicable net namespace
1094 * @skb: TIPC packet
1095 * @bearer: pointer to bearer message arrived on
1096 *
1097 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1098 * structure (i.e. cannot be NULL), but bearer can be inactive.
1099 */
1100void tipc_rcv(struct net *net, struct sk_buff *skb, struct tipc_bearer *b)
1101{
1102 struct sk_buff_head xmitq;
1103 struct tipc_node *n;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001104 struct tipc_msg *hdr = buf_msg(skb);
1105 int usr = msg_user(hdr);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001106 int bearer_id = b->identity;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001107 struct tipc_link_entry *le;
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001108 int rc = 0;
1109
1110 __skb_queue_head_init(&xmitq);
1111
1112 /* Ensure message is well-formed */
1113 if (unlikely(!tipc_msg_validate(skb)))
1114 goto discard;
1115
1116 /* Handle arrival of a non-unicast link packet */
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001117 if (unlikely(msg_non_seq(hdr))) {
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001118 if (usr == LINK_CONFIG)
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001119 tipc_disc_rcv(net, skb, b);
1120 else
1121 tipc_bclink_rcv(net, skb);
1122 return;
1123 }
1124
1125 /* Locate neighboring node that sent packet */
1126 n = tipc_node_find(net, msg_prevnode(hdr));
1127 if (unlikely(!n))
1128 goto discard;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001129 le = &n->links[bearer_id];
1130
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001131 tipc_node_lock(n);
1132
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001133 /* Is reception permitted at the moment ? */
1134 if (!tipc_node_filter_pkt(n, hdr))
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001135 goto unlock;
1136
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001137 if (unlikely(msg_user(hdr) == LINK_PROTOCOL))
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001138 tipc_bclink_sync_state(n, hdr);
1139
1140 /* Release acked broadcast messages */
1141 if (unlikely(n->bclink.acked != msg_bcast_ack(hdr)))
1142 tipc_bclink_acknowledge(n, msg_bcast_ack(hdr));
1143
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001144 /* Check and if necessary update node state */
1145 if (likely(tipc_node_check_state(n, skb, bearer_id))) {
1146 rc = tipc_link_rcv(le->link, skb, &xmitq);
1147 skb = NULL;
1148 }
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001149
1150 if (unlikely(rc & TIPC_LINK_UP_EVT))
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001151 tipc_node_link_up(n, bearer_id, &xmitq);
1152
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001153 if (unlikely(rc & TIPC_LINK_DOWN_EVT))
Jon Paul Maloy655fb242015-07-30 18:24:17 -04001154 tipc_node_link_down(n, bearer_id);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001155unlock:
1156 tipc_node_unlock(n);
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001157
1158 if (!skb_queue_empty(&le->inputq))
1159 tipc_sk_rcv(net, &le->inputq);
1160
1161 if (!skb_queue_empty(&xmitq))
1162 tipc_bearer_xmit(net, bearer_id, &xmitq, &le->maddr);
1163
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001164 tipc_node_put(n);
1165discard:
1166 kfree_skb(skb);
1167}
1168
Richard Alpe3e4b6ab2014-11-20 10:29:17 +01001169int tipc_nl_node_dump(struct sk_buff *skb, struct netlink_callback *cb)
1170{
1171 int err;
Ying Xuef2f98002015-01-09 15:27:05 +08001172 struct net *net = sock_net(skb->sk);
1173 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe3e4b6ab2014-11-20 10:29:17 +01001174 int done = cb->args[0];
1175 int last_addr = cb->args[1];
1176 struct tipc_node *node;
1177 struct tipc_nl_msg msg;
1178
1179 if (done)
1180 return 0;
1181
1182 msg.skb = skb;
1183 msg.portid = NETLINK_CB(cb->skb).portid;
1184 msg.seq = cb->nlh->nlmsg_seq;
1185
1186 rcu_read_lock();
Ying Xue8a0f6eb2015-03-26 18:10:24 +08001187 if (last_addr) {
1188 node = tipc_node_find(net, last_addr);
1189 if (!node) {
1190 rcu_read_unlock();
1191 /* We never set seq or call nl_dump_check_consistent()
1192 * this means that setting prev_seq here will cause the
1193 * consistence check to fail in the netlink callback
1194 * handler. Resulting in the NLMSG_DONE message having
1195 * the NLM_F_DUMP_INTR flag set if the node state
1196 * changed while we released the lock.
1197 */
1198 cb->prev_seq = 1;
1199 return -EPIPE;
1200 }
1201 tipc_node_put(node);
Richard Alpe3e4b6ab2014-11-20 10:29:17 +01001202 }
1203
Ying Xuef2f98002015-01-09 15:27:05 +08001204 list_for_each_entry_rcu(node, &tn->node_list, list) {
Richard Alpe3e4b6ab2014-11-20 10:29:17 +01001205 if (last_addr) {
1206 if (node->addr == last_addr)
1207 last_addr = 0;
1208 else
1209 continue;
1210 }
1211
1212 tipc_node_lock(node);
1213 err = __tipc_nl_add_node(&msg, node);
1214 if (err) {
1215 last_addr = node->addr;
1216 tipc_node_unlock(node);
1217 goto out;
1218 }
1219
1220 tipc_node_unlock(node);
1221 }
1222 done = 1;
1223out:
1224 cb->args[0] = done;
1225 cb->args[1] = last_addr;
1226 rcu_read_unlock();
1227
1228 return skb->len;
1229}