blob: d3f7ca2022818c2c7629c518d59088e73fb675c7 [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"
Jon Paul Maloyc8199302015-10-15 14:52:46 -040044
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
Jon Paul Maloy598411d2015-07-30 18:24:23 -040069static void __tipc_node_link_down(struct tipc_node *n, int *bearer_id,
70 struct sk_buff_head *xmitq,
71 struct tipc_media_addr **maddr);
72static void tipc_node_link_down(struct tipc_node *n, int bearer_id,
73 bool delete);
74static void node_lost_contact(struct tipc_node *n, struct sk_buff_head *inputq);
David S. Miller6c000552008-09-02 23:38:32 -070075static void node_established_contact(struct tipc_node *n_ptr);
Ying Xue8a0f6eb2015-03-26 18:10:24 +080076static void tipc_node_delete(struct tipc_node *node);
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -040077static void tipc_node_timeout(unsigned long data);
Jon Paul Maloyd9992972015-07-16 16:54:31 -040078static void tipc_node_fsm_evt(struct tipc_node *n, int evt);
Per Lidenb97bf3f2006-01-02 19:04:38 +010079
Jon Paul Maloy02be61a2014-08-22 18:09:08 -040080struct tipc_sock_conn {
81 u32 port;
82 u32 peer_port;
83 u32 peer_node;
84 struct list_head list;
85};
86
Richard Alpe3e4b6ab2014-11-20 10:29:17 +010087static const struct nla_policy tipc_nl_node_policy[TIPC_NLA_NODE_MAX + 1] = {
88 [TIPC_NLA_NODE_UNSPEC] = { .type = NLA_UNSPEC },
89 [TIPC_NLA_NODE_ADDR] = { .type = NLA_U32 },
90 [TIPC_NLA_NODE_UP] = { .type = NLA_FLAG }
91};
92
Allan Stephens1ec2bb02011-10-27 15:03:24 -040093/*
Allan Stephensa635b462011-11-04 11:54:43 -040094 * A trivial power-of-two bitmask technique is used for speed, since this
95 * operation is done for every incoming TIPC packet. The number of hash table
96 * entries has been chosen so that no hash chain exceeds 8 nodes and will
97 * usually be much smaller (typically only a single node).
98 */
Paul Gortmaker872f24d2012-04-23 04:49:13 +000099static unsigned int tipc_hashfn(u32 addr)
Allan Stephensa635b462011-11-04 11:54:43 -0400100{
101 return addr & (NODE_HTABLE_SIZE - 1);
102}
103
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800104static void tipc_node_kref_release(struct kref *kref)
105{
106 struct tipc_node *node = container_of(kref, struct tipc_node, kref);
107
108 tipc_node_delete(node);
109}
110
111void tipc_node_put(struct tipc_node *node)
112{
113 kref_put(&node->kref, tipc_node_kref_release);
114}
115
116static void tipc_node_get(struct tipc_node *node)
117{
118 kref_get(&node->kref);
119}
120
Allan Stephensa635b462011-11-04 11:54:43 -0400121/*
Allan Stephens672d99e2011-02-25 18:42:52 -0500122 * tipc_node_find - locate specified node object, if it exists
123 */
Ying Xuef2f98002015-01-09 15:27:05 +0800124struct tipc_node *tipc_node_find(struct net *net, u32 addr)
Allan Stephens672d99e2011-02-25 18:42:52 -0500125{
Ying Xuef2f98002015-01-09 15:27:05 +0800126 struct tipc_net *tn = net_generic(net, tipc_net_id);
Allan Stephens672d99e2011-02-25 18:42:52 -0500127 struct tipc_node *node;
Allan Stephens672d99e2011-02-25 18:42:52 -0500128
Ying Xue34747532015-01-09 15:27:10 +0800129 if (unlikely(!in_own_cluster_exact(net, addr)))
Allan Stephens672d99e2011-02-25 18:42:52 -0500130 return NULL;
131
Ying Xue6c7a7622014-03-27 12:54:37 +0800132 rcu_read_lock();
Ying Xuef2f98002015-01-09 15:27:05 +0800133 hlist_for_each_entry_rcu(node, &tn->node_htable[tipc_hashfn(addr)],
134 hash) {
Ying Xue46651c52014-03-27 12:54:36 +0800135 if (node->addr == addr) {
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800136 tipc_node_get(node);
Ying Xue6c7a7622014-03-27 12:54:37 +0800137 rcu_read_unlock();
Allan Stephens672d99e2011-02-25 18:42:52 -0500138 return node;
Ying Xue46651c52014-03-27 12:54:36 +0800139 }
Allan Stephens672d99e2011-02-25 18:42:52 -0500140 }
Ying Xue6c7a7622014-03-27 12:54:37 +0800141 rcu_read_unlock();
Allan Stephens672d99e2011-02-25 18:42:52 -0500142 return NULL;
143}
144
Jon Paul Maloycf148812015-07-30 18:24:22 -0400145struct tipc_node *tipc_node_create(struct net *net, u32 addr, u16 capabilities)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100146{
Ying Xuef2f98002015-01-09 15:27:05 +0800147 struct tipc_net *tn = net_generic(net, tipc_net_id);
Allan Stephens672d99e2011-02-25 18:42:52 -0500148 struct tipc_node *n_ptr, *temp_node;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100149
Ying Xuef2f98002015-01-09 15:27:05 +0800150 spin_lock_bh(&tn->node_list_lock);
Jon Paul Maloyb45db712015-02-03 08:59:19 -0500151 n_ptr = tipc_node_find(net, addr);
152 if (n_ptr)
153 goto exit;
Allan Stephens5af54792010-12-31 18:59:23 +0000154 n_ptr = kzalloc(sizeof(*n_ptr), GFP_ATOMIC);
Allan Stephensa10bd922006-06-25 23:52:17 -0700155 if (!n_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400156 pr_warn("Node creation failed, no memory\n");
Jon Paul Maloyb45db712015-02-03 08:59:19 -0500157 goto exit;
Allan Stephensa10bd922006-06-25 23:52:17 -0700158 }
Allan Stephensa10bd922006-06-25 23:52:17 -0700159 n_ptr->addr = addr;
Ying Xuef2f98002015-01-09 15:27:05 +0800160 n_ptr->net = net;
Jon Paul Maloycf148812015-07-30 18:24:22 -0400161 n_ptr->capabilities = capabilities;
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800162 kref_init(&n_ptr->kref);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000163 spin_lock_init(&n_ptr->lock);
Allan Stephens672d99e2011-02-25 18:42:52 -0500164 INIT_HLIST_NODE(&n_ptr->hash);
165 INIT_LIST_HEAD(&n_ptr->list);
Ying Xuea8f48af2014-11-26 11:41:45 +0800166 INIT_LIST_HEAD(&n_ptr->publ_list);
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400167 INIT_LIST_HEAD(&n_ptr->conn_sks);
Jon Paul Maloyd39bbd42015-07-16 16:54:21 -0400168 skb_queue_head_init(&n_ptr->bclink.namedq);
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400169 __skb_queue_head_init(&n_ptr->bclink.deferdq);
Ying Xuef2f98002015-01-09 15:27:05 +0800170 hlist_add_head_rcu(&n_ptr->hash, &tn->node_htable[tipc_hashfn(addr)]);
Ying Xuef2f98002015-01-09 15:27:05 +0800171 list_for_each_entry_rcu(temp_node, &tn->node_list, list) {
Allan Stephens672d99e2011-02-25 18:42:52 -0500172 if (n_ptr->addr < temp_node->addr)
173 break;
174 }
Ying Xue6c7a7622014-03-27 12:54:37 +0800175 list_add_tail_rcu(&n_ptr->list, &temp_node->list);
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400176 n_ptr->state = SELF_DOWN_PEER_LEAVING;
Allan Stephensfc0eea62011-10-28 16:26:41 -0400177 n_ptr->signature = INVALID_NODE_SIG;
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400178 n_ptr->active_links[0] = INVALID_BEARER_ID;
179 n_ptr->active_links[1] = INVALID_BEARER_ID;
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800180 tipc_node_get(n_ptr);
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400181 setup_timer(&n_ptr->timer, tipc_node_timeout, (unsigned long)n_ptr);
182 n_ptr->keepalive_intv = U32_MAX;
Jon Paul Maloyb45db712015-02-03 08:59:19 -0500183exit:
Ying Xuef2f98002015-01-09 15:27:05 +0800184 spin_unlock_bh(&tn->node_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100185 return n_ptr;
186}
187
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400188static void tipc_node_calculate_timer(struct tipc_node *n, struct tipc_link *l)
189{
190 unsigned long tol = l->tolerance;
191 unsigned long intv = ((tol / 4) > 500) ? 500 : tol / 4;
192 unsigned long keepalive_intv = msecs_to_jiffies(intv);
193
194 /* Link with lowest tolerance determines timer interval */
195 if (keepalive_intv < n->keepalive_intv)
196 n->keepalive_intv = keepalive_intv;
197
198 /* Ensure link's abort limit corresponds to current interval */
199 l->abort_limit = l->tolerance / jiffies_to_msecs(n->keepalive_intv);
200}
201
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800202static void tipc_node_delete(struct tipc_node *node)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100203{
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800204 list_del_rcu(&node->list);
205 hlist_del_rcu(&node->hash);
206 kfree_rcu(node, rcu);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100207}
208
Ying Xuef2f98002015-01-09 15:27:05 +0800209void tipc_node_stop(struct net *net)
Ying Xue46651c52014-03-27 12:54:36 +0800210{
Ying Xuef2f98002015-01-09 15:27:05 +0800211 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue46651c52014-03-27 12:54:36 +0800212 struct tipc_node *node, *t_node;
213
Ying Xuef2f98002015-01-09 15:27:05 +0800214 spin_lock_bh(&tn->node_list_lock);
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400215 list_for_each_entry_safe(node, t_node, &tn->node_list, list) {
216 if (del_timer(&node->timer))
217 tipc_node_put(node);
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800218 tipc_node_put(node);
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400219 }
Ying Xuef2f98002015-01-09 15:27:05 +0800220 spin_unlock_bh(&tn->node_list_lock);
Ying Xue46651c52014-03-27 12:54:36 +0800221}
222
Ying Xuef2f98002015-01-09 15:27:05 +0800223int tipc_node_add_conn(struct net *net, u32 dnode, u32 port, u32 peer_port)
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400224{
225 struct tipc_node *node;
226 struct tipc_sock_conn *conn;
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800227 int err = 0;
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400228
Ying Xue34747532015-01-09 15:27:10 +0800229 if (in_own_node(net, dnode))
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400230 return 0;
231
Ying Xuef2f98002015-01-09 15:27:05 +0800232 node = tipc_node_find(net, dnode);
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400233 if (!node) {
234 pr_warn("Connecting sock to node 0x%x failed\n", dnode);
235 return -EHOSTUNREACH;
236 }
237 conn = kmalloc(sizeof(*conn), GFP_ATOMIC);
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800238 if (!conn) {
239 err = -EHOSTUNREACH;
240 goto exit;
241 }
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400242 conn->peer_node = dnode;
243 conn->port = port;
244 conn->peer_port = peer_port;
245
246 tipc_node_lock(node);
247 list_add_tail(&conn->list, &node->conn_sks);
248 tipc_node_unlock(node);
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800249exit:
250 tipc_node_put(node);
251 return err;
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400252}
253
Ying Xuef2f98002015-01-09 15:27:05 +0800254void tipc_node_remove_conn(struct net *net, u32 dnode, u32 port)
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400255{
256 struct tipc_node *node;
257 struct tipc_sock_conn *conn, *safe;
258
Ying Xue34747532015-01-09 15:27:10 +0800259 if (in_own_node(net, dnode))
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400260 return;
261
Ying Xuef2f98002015-01-09 15:27:05 +0800262 node = tipc_node_find(net, dnode);
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400263 if (!node)
264 return;
265
266 tipc_node_lock(node);
267 list_for_each_entry_safe(conn, safe, &node->conn_sks, list) {
268 if (port != conn->port)
269 continue;
270 list_del(&conn->list);
271 kfree(conn);
272 }
273 tipc_node_unlock(node);
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800274 tipc_node_put(node);
Jon Paul Maloy02be61a2014-08-22 18:09:08 -0400275}
276
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400277/* tipc_node_timeout - handle expiration of node timer
278 */
279static void tipc_node_timeout(unsigned long data)
280{
281 struct tipc_node *n = (struct tipc_node *)data;
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400282 struct tipc_link_entry *le;
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400283 struct sk_buff_head xmitq;
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400284 int bearer_id;
285 int rc = 0;
286
287 __skb_queue_head_init(&xmitq);
288
289 for (bearer_id = 0; bearer_id < MAX_BEARERS; bearer_id++) {
290 tipc_node_lock(n);
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400291 le = &n->links[bearer_id];
292 if (le->link) {
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400293 /* Link tolerance may change asynchronously: */
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400294 tipc_node_calculate_timer(n, le->link);
295 rc = tipc_link_timeout(le->link, &xmitq);
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400296 }
297 tipc_node_unlock(n);
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400298 tipc_bearer_xmit(n->net, bearer_id, &xmitq, &le->maddr);
299 if (rc & TIPC_LINK_DOWN_EVT)
300 tipc_node_link_down(n, bearer_id, false);
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400301 }
302 if (!mod_timer(&n->timer, jiffies + n->keepalive_intv))
303 tipc_node_get(n);
304 tipc_node_put(n);
305}
306
Per Lidenb97bf3f2006-01-02 19:04:38 +0100307/**
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400308 * __tipc_node_link_up - handle addition of link
309 * Node lock must be held by caller
Per Lidenb97bf3f2006-01-02 19:04:38 +0100310 * Link becomes active (alone or shared) or standby, depending on its priority.
311 */
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400312static void __tipc_node_link_up(struct tipc_node *n, int bearer_id,
313 struct sk_buff_head *xmitq)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100314{
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400315 int *slot0 = &n->active_links[0];
316 int *slot1 = &n->active_links[1];
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400317 struct tipc_link *ol = node_active_link(n, 0);
318 struct tipc_link *nl = n->links[bearer_id].link;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100319
Jon Paul Maloy73f646c2015-10-15 14:52:44 -0400320 if (!nl)
321 return;
322
323 tipc_link_fsm_evt(nl, LINK_ESTABLISH_EVT);
324 if (!tipc_link_is_up(nl))
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400325 return;
326
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400327 n->working_links++;
328 n->action_flags |= TIPC_NOTIFY_LINK_UP;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400329 n->link_id = nl->peer_bearer_id << 16 | bearer_id;
330
331 /* Leave room for tunnel header when returning 'mtu' to users: */
332 n->links[bearer_id].mtu = nl->mtu - INT_H_SIZE;
Ying Xue7b8613e2014-10-20 14:44:25 +0800333
Jon Paul Maloycbeb83c2015-07-30 18:24:15 -0400334 tipc_bearer_add_dest(n->net, bearer_id, n->addr);
335
Erik Hugne3fa9cac2015-01-22 17:10:31 +0100336 pr_debug("Established link <%s> on network plane %c\n",
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400337 nl->name, nl->net_plane);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900338
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400339 /* First link? => give it both slots */
340 if (!ol) {
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400341 *slot0 = bearer_id;
342 *slot1 = bearer_id;
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400343 tipc_link_build_bcast_sync_msg(nl, xmitq);
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400344 node_established_contact(n);
345 return;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100346 }
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400347
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400348 /* Second link => redistribute slots */
349 if (nl->priority > ol->priority) {
350 pr_debug("Old link <%s> becomes standby\n", ol->name);
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400351 *slot0 = bearer_id;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400352 *slot1 = bearer_id;
353 } else if (nl->priority == ol->priority) {
354 *slot0 = bearer_id;
355 } else {
356 pr_debug("New link <%s> is standby\n", nl->name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100357 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100358
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400359 /* Prepare synchronization with first link */
360 tipc_link_tnl_prepare(ol, nl, SYNCH_MSG, xmitq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100361}
362
363/**
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400364 * tipc_node_link_up - handle addition of link
365 *
366 * Link becomes active (alone or shared) or standby, depending on its priority.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100367 */
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400368static void tipc_node_link_up(struct tipc_node *n, int bearer_id,
369 struct sk_buff_head *xmitq)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100370{
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400371 tipc_node_lock(n);
372 __tipc_node_link_up(n, bearer_id, xmitq);
373 tipc_node_unlock(n);
374}
375
376/**
377 * __tipc_node_link_down - handle loss of link
378 */
379static void __tipc_node_link_down(struct tipc_node *n, int *bearer_id,
380 struct sk_buff_head *xmitq,
381 struct tipc_media_addr **maddr)
382{
383 struct tipc_link_entry *le = &n->links[*bearer_id];
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400384 int *slot0 = &n->active_links[0];
385 int *slot1 = &n->active_links[1];
386 int i, highest = 0;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400387 struct tipc_link *l, *_l, *tnl;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100388
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400389 l = n->links[*bearer_id].link;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400390 if (!l || tipc_link_is_reset(l))
Jon Paul Maloy655fb242015-07-30 18:24:17 -0400391 return;
392
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400393 n->working_links--;
394 n->action_flags |= TIPC_NOTIFY_LINK_DOWN;
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400395 n->link_id = l->peer_bearer_id << 16 | *bearer_id;
Allan Stephens5392d642006-06-25 23:52:50 -0700396
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400397 tipc_bearer_remove_dest(n->net, *bearer_id, n->addr);
Jon Paul Maloy655fb242015-07-30 18:24:17 -0400398
Erik Hugne3fa9cac2015-01-22 17:10:31 +0100399 pr_debug("Lost link <%s> on network plane %c\n",
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400400 l->name, l->net_plane);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100401
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400402 /* Select new active link if any available */
403 *slot0 = INVALID_BEARER_ID;
404 *slot1 = INVALID_BEARER_ID;
405 for (i = 0; i < MAX_BEARERS; i++) {
406 _l = n->links[i].link;
407 if (!_l || !tipc_link_is_up(_l))
408 continue;
Jon Paul Maloy655fb242015-07-30 18:24:17 -0400409 if (_l == l)
410 continue;
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400411 if (_l->priority < highest)
412 continue;
413 if (_l->priority > highest) {
414 highest = _l->priority;
415 *slot0 = i;
416 *slot1 = i;
417 continue;
418 }
419 *slot1 = i;
420 }
Jon Paul Maloy655fb242015-07-30 18:24:17 -0400421
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400422 if (!tipc_node_is_up(n)) {
Jon Paul Maloyc8199302015-10-15 14:52:46 -0400423 if (tipc_link_peer_is_down(l))
424 tipc_node_fsm_evt(n, PEER_LOST_CONTACT_EVT);
425 tipc_node_fsm_evt(n, SELF_LOST_CONTACT_EVT);
426 tipc_link_fsm_evt(l, LINK_RESET_EVT);
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400427 tipc_link_reset(l);
Jon Paul Maloy282b3a02015-10-15 14:52:45 -0400428 tipc_link_build_reset_msg(l, xmitq);
429 *maddr = &n->links[*bearer_id].maddr;
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400430 node_lost_contact(n, &le->inputq);
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400431 return;
432 }
433
434 /* There is still a working link => initiate failover */
435 tnl = node_active_link(n, 0);
Jon Paul Maloy5ae2f8e2015-08-20 02:12:55 -0400436 tipc_link_fsm_evt(tnl, LINK_SYNCH_END_EVT);
437 tipc_node_fsm_evt(n, NODE_SYNCH_END_EVT);
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400438 n->sync_point = tnl->rcv_nxt + (U16_MAX / 2 - 1);
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400439 tipc_link_tnl_prepare(l, tnl, FAILOVER_MSG, xmitq);
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400440 tipc_link_reset(l);
Jon Paul Maloyc8199302015-10-15 14:52:46 -0400441 tipc_link_fsm_evt(l, LINK_RESET_EVT);
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400442 tipc_link_fsm_evt(l, LINK_FAILOVER_BEGIN_EVT);
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400443 tipc_node_fsm_evt(n, NODE_FAILOVER_BEGIN_EVT);
444 *maddr = &n->links[tnl->bearer_id].maddr;
445 *bearer_id = tnl->bearer_id;
446}
447
448static void tipc_node_link_down(struct tipc_node *n, int bearer_id, bool delete)
449{
450 struct tipc_link_entry *le = &n->links[bearer_id];
Jon Paul Maloy73f646c2015-10-15 14:52:44 -0400451 struct tipc_link *l = le->link;
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400452 struct tipc_media_addr *maddr;
453 struct sk_buff_head xmitq;
454
Jon Paul Maloy73f646c2015-10-15 14:52:44 -0400455 if (!l)
456 return;
457
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400458 __skb_queue_head_init(&xmitq);
459
460 tipc_node_lock(n);
Jon Paul Maloy73f646c2015-10-15 14:52:44 -0400461 if (!tipc_link_is_establishing(l)) {
462 __tipc_node_link_down(n, &bearer_id, &xmitq, &maddr);
463 if (delete) {
464 kfree(l);
465 le->link = NULL;
466 n->link_cnt--;
467 }
468 } else {
469 /* Defuse pending tipc_node_link_up() */
470 tipc_link_fsm_evt(l, LINK_RESET_EVT);
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400471 }
472 tipc_node_unlock(n);
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400473 tipc_bearer_xmit(n->net, bearer_id, &xmitq, maddr);
474 tipc_sk_rcv(n->net, &le->inputq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100475}
476
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400477bool tipc_node_is_up(struct tipc_node *n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100478{
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400479 return n->active_links[0] != INVALID_BEARER_ID;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100480}
481
Jon Paul Maloycf148812015-07-30 18:24:22 -0400482void tipc_node_check_dest(struct net *net, u32 onode,
483 struct tipc_bearer *b,
484 u16 capabilities, u32 signature,
485 struct tipc_media_addr *maddr,
486 bool *respond, bool *dupl_addr)
Jon Paul Maloyd3a43b92015-07-16 16:54:20 -0400487{
Jon Paul Maloycf148812015-07-30 18:24:22 -0400488 struct tipc_node *n;
489 struct tipc_link *l;
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400490 struct tipc_link_entry *le;
Jon Paul Maloycf148812015-07-30 18:24:22 -0400491 bool addr_match = false;
492 bool sign_match = false;
493 bool link_up = false;
494 bool accept_addr = false;
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400495 bool reset = true;
Jon Paul Maloy0e054982015-10-22 08:51:36 -0400496 char *if_name;
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400497
Jon Paul Maloycf148812015-07-30 18:24:22 -0400498 *dupl_addr = false;
499 *respond = false;
Jon Paul Maloyd3a43b92015-07-16 16:54:20 -0400500
Jon Paul Maloycf148812015-07-30 18:24:22 -0400501 n = tipc_node_create(net, onode, capabilities);
502 if (!n)
503 return;
Jon Paul Maloyd3a43b92015-07-16 16:54:20 -0400504
Jon Paul Maloycf148812015-07-30 18:24:22 -0400505 tipc_node_lock(n);
506
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400507 le = &n->links[b->identity];
Jon Paul Maloycf148812015-07-30 18:24:22 -0400508
509 /* Prepare to validate requesting node's signature and media address */
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400510 l = le->link;
Jon Paul Maloycf148812015-07-30 18:24:22 -0400511 link_up = l && tipc_link_is_up(l);
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400512 addr_match = l && !memcmp(&le->maddr, maddr, sizeof(*maddr));
Jon Paul Maloycf148812015-07-30 18:24:22 -0400513 sign_match = (signature == n->signature);
514
515 /* These three flags give us eight permutations: */
516
517 if (sign_match && addr_match && link_up) {
518 /* All is fine. Do nothing. */
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400519 reset = false;
Jon Paul Maloycf148812015-07-30 18:24:22 -0400520 } else if (sign_match && addr_match && !link_up) {
521 /* Respond. The link will come up in due time */
522 *respond = true;
523 } else if (sign_match && !addr_match && link_up) {
524 /* Peer has changed i/f address without rebooting.
525 * If so, the link will reset soon, and the next
526 * discovery will be accepted. So we can ignore it.
527 * It may also be an cloned or malicious peer having
528 * chosen the same node address and signature as an
529 * existing one.
530 * Ignore requests until the link goes down, if ever.
531 */
532 *dupl_addr = true;
533 } else if (sign_match && !addr_match && !link_up) {
534 /* Peer link has changed i/f address without rebooting.
535 * It may also be a cloned or malicious peer; we can't
536 * distinguish between the two.
537 * The signature is correct, so we must accept.
538 */
539 accept_addr = true;
540 *respond = true;
541 } else if (!sign_match && addr_match && link_up) {
542 /* Peer node rebooted. Two possibilities:
543 * - Delayed re-discovery; this link endpoint has already
544 * reset and re-established contact with the peer, before
545 * receiving a discovery message from that node.
546 * (The peer happened to receive one from this node first).
547 * - The peer came back so fast that our side has not
548 * discovered it yet. Probing from this side will soon
549 * reset the link, since there can be no working link
550 * endpoint at the peer end, and the link will re-establish.
551 * Accept the signature, since it comes from a known peer.
552 */
553 n->signature = signature;
554 } else if (!sign_match && addr_match && !link_up) {
555 /* The peer node has rebooted.
556 * Accept signature, since it is a known peer.
557 */
558 n->signature = signature;
559 *respond = true;
560 } else if (!sign_match && !addr_match && link_up) {
561 /* Peer rebooted with new address, or a new/duplicate peer.
562 * Ignore until the link goes down, if ever.
563 */
564 *dupl_addr = true;
565 } else if (!sign_match && !addr_match && !link_up) {
566 /* Peer rebooted with new address, or it is a new peer.
567 * Accept signature and address.
568 */
569 n->signature = signature;
570 accept_addr = true;
571 *respond = true;
572 }
573
574 if (!accept_addr)
575 goto exit;
576
577 /* Now create new link if not already existing */
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400578 if (!l) {
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400579 if (n->link_cnt == 2) {
580 pr_warn("Cannot establish 3rd link to %x\n", n->addr);
581 goto exit;
582 }
Jon Paul Maloy0e054982015-10-22 08:51:36 -0400583 if_name = strchr(b->name, ':') + 1;
584 if (!tipc_link_create(n, if_name, b->identity, b->tolerance,
585 b->net_plane, b->mtu, b->priority,
586 b->window, mod(tipc_net(net)->random),
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400587 tipc_own_addr(net), onode, &le->maddr,
588 &le->inputq, &n->bclink.namedq, &l)) {
Jon Paul Maloycf148812015-07-30 18:24:22 -0400589 *respond = false;
590 goto exit;
591 }
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400592 tipc_link_reset(l);
Jon Paul Maloyc8199302015-10-15 14:52:46 -0400593 tipc_link_fsm_evt(l, LINK_RESET_EVT);
Jon Paul Maloy17b20632015-08-20 02:12:54 -0400594 if (n->state == NODE_FAILINGOVER)
595 tipc_link_fsm_evt(l, LINK_FAILOVER_BEGIN_EVT);
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400596 le->link = l;
597 n->link_cnt++;
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400598 tipc_node_calculate_timer(n, l);
Jon Paul Maloycf148812015-07-30 18:24:22 -0400599 if (n->link_cnt == 1)
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400600 if (!mod_timer(&n->timer, jiffies + n->keepalive_intv))
601 tipc_node_get(n);
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400602 }
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400603 memcpy(&le->maddr, maddr, sizeof(*maddr));
Jon Paul Maloycf148812015-07-30 18:24:22 -0400604exit:
605 tipc_node_unlock(n);
Jon Paul Maloy73f646c2015-10-15 14:52:44 -0400606 if (reset && !tipc_link_is_reset(l))
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400607 tipc_node_link_down(n, b->identity, false);
Jon Paul Maloycf148812015-07-30 18:24:22 -0400608 tipc_node_put(n);
Jon Paul Maloyd3a43b92015-07-16 16:54:20 -0400609}
610
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400611void tipc_node_delete_links(struct net *net, int bearer_id)
612{
613 struct tipc_net *tn = net_generic(net, tipc_net_id);
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400614 struct tipc_node *n;
615
616 rcu_read_lock();
617 list_for_each_entry_rcu(n, &tn->node_list, list) {
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400618 tipc_node_link_down(n, bearer_id, true);
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400619 }
620 rcu_read_unlock();
621}
622
623static void tipc_node_reset_links(struct tipc_node *n)
624{
625 char addr_string[16];
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400626 int i;
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400627
628 pr_warn("Resetting all links to %s\n",
629 tipc_addr_string_fill(addr_string, n->addr));
630
631 for (i = 0; i < MAX_BEARERS; i++) {
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400632 tipc_node_link_down(n, i, false);
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400633 }
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400634}
635
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400636/* tipc_node_fsm_evt - node finite state machine
637 * Determines when contact is allowed with peer node
638 */
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400639static void tipc_node_fsm_evt(struct tipc_node *n, int evt)
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400640{
641 int state = n->state;
642
643 switch (state) {
644 case SELF_DOWN_PEER_DOWN:
645 switch (evt) {
646 case SELF_ESTABL_CONTACT_EVT:
647 state = SELF_UP_PEER_COMING;
648 break;
649 case PEER_ESTABL_CONTACT_EVT:
650 state = SELF_COMING_PEER_UP;
651 break;
652 case SELF_LOST_CONTACT_EVT:
653 case PEER_LOST_CONTACT_EVT:
654 break;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400655 case NODE_SYNCH_END_EVT:
656 case NODE_SYNCH_BEGIN_EVT:
657 case NODE_FAILOVER_BEGIN_EVT:
658 case NODE_FAILOVER_END_EVT:
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400659 default:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400660 goto illegal_evt;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400661 }
662 break;
663 case SELF_UP_PEER_UP:
664 switch (evt) {
665 case SELF_LOST_CONTACT_EVT:
666 state = SELF_DOWN_PEER_LEAVING;
667 break;
668 case PEER_LOST_CONTACT_EVT:
669 state = SELF_LEAVING_PEER_DOWN;
670 break;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400671 case NODE_SYNCH_BEGIN_EVT:
672 state = NODE_SYNCHING;
673 break;
674 case NODE_FAILOVER_BEGIN_EVT:
675 state = NODE_FAILINGOVER;
676 break;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400677 case SELF_ESTABL_CONTACT_EVT:
678 case PEER_ESTABL_CONTACT_EVT:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400679 case NODE_SYNCH_END_EVT:
680 case NODE_FAILOVER_END_EVT:
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400681 break;
682 default:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400683 goto illegal_evt;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400684 }
685 break;
686 case SELF_DOWN_PEER_LEAVING:
687 switch (evt) {
688 case PEER_LOST_CONTACT_EVT:
689 state = SELF_DOWN_PEER_DOWN;
690 break;
691 case SELF_ESTABL_CONTACT_EVT:
692 case PEER_ESTABL_CONTACT_EVT:
693 case SELF_LOST_CONTACT_EVT:
694 break;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400695 case NODE_SYNCH_END_EVT:
696 case NODE_SYNCH_BEGIN_EVT:
697 case NODE_FAILOVER_BEGIN_EVT:
698 case NODE_FAILOVER_END_EVT:
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400699 default:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400700 goto illegal_evt;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400701 }
702 break;
703 case SELF_UP_PEER_COMING:
704 switch (evt) {
705 case PEER_ESTABL_CONTACT_EVT:
706 state = SELF_UP_PEER_UP;
707 break;
708 case SELF_LOST_CONTACT_EVT:
709 state = SELF_DOWN_PEER_LEAVING;
710 break;
711 case SELF_ESTABL_CONTACT_EVT:
712 case PEER_LOST_CONTACT_EVT:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400713 case NODE_SYNCH_END_EVT:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400714 case NODE_FAILOVER_BEGIN_EVT:
Jon Paul Maloy73f646c2015-10-15 14:52:44 -0400715 break;
716 case NODE_SYNCH_BEGIN_EVT:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400717 case NODE_FAILOVER_END_EVT:
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400718 default:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400719 goto illegal_evt;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400720 }
721 break;
722 case SELF_COMING_PEER_UP:
723 switch (evt) {
724 case SELF_ESTABL_CONTACT_EVT:
725 state = SELF_UP_PEER_UP;
726 break;
727 case PEER_LOST_CONTACT_EVT:
728 state = SELF_LEAVING_PEER_DOWN;
729 break;
730 case SELF_LOST_CONTACT_EVT:
731 case PEER_ESTABL_CONTACT_EVT:
732 break;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400733 case NODE_SYNCH_END_EVT:
734 case NODE_SYNCH_BEGIN_EVT:
735 case NODE_FAILOVER_BEGIN_EVT:
736 case NODE_FAILOVER_END_EVT:
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400737 default:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400738 goto illegal_evt;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400739 }
740 break;
741 case SELF_LEAVING_PEER_DOWN:
742 switch (evt) {
743 case SELF_LOST_CONTACT_EVT:
744 state = SELF_DOWN_PEER_DOWN;
745 break;
746 case SELF_ESTABL_CONTACT_EVT:
747 case PEER_ESTABL_CONTACT_EVT:
748 case PEER_LOST_CONTACT_EVT:
749 break;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400750 case NODE_SYNCH_END_EVT:
751 case NODE_SYNCH_BEGIN_EVT:
752 case NODE_FAILOVER_BEGIN_EVT:
753 case NODE_FAILOVER_END_EVT:
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400754 default:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400755 goto illegal_evt;
756 }
757 break;
758 case NODE_FAILINGOVER:
759 switch (evt) {
760 case SELF_LOST_CONTACT_EVT:
761 state = SELF_DOWN_PEER_LEAVING;
762 break;
763 case PEER_LOST_CONTACT_EVT:
764 state = SELF_LEAVING_PEER_DOWN;
765 break;
766 case NODE_FAILOVER_END_EVT:
767 state = SELF_UP_PEER_UP;
768 break;
769 case NODE_FAILOVER_BEGIN_EVT:
770 case SELF_ESTABL_CONTACT_EVT:
771 case PEER_ESTABL_CONTACT_EVT:
772 break;
773 case NODE_SYNCH_BEGIN_EVT:
774 case NODE_SYNCH_END_EVT:
775 default:
776 goto illegal_evt;
777 }
778 break;
779 case NODE_SYNCHING:
780 switch (evt) {
781 case SELF_LOST_CONTACT_EVT:
782 state = SELF_DOWN_PEER_LEAVING;
783 break;
784 case PEER_LOST_CONTACT_EVT:
785 state = SELF_LEAVING_PEER_DOWN;
786 break;
787 case NODE_SYNCH_END_EVT:
788 state = SELF_UP_PEER_UP;
789 break;
790 case NODE_FAILOVER_BEGIN_EVT:
791 state = NODE_FAILINGOVER;
792 break;
793 case NODE_SYNCH_BEGIN_EVT:
794 case SELF_ESTABL_CONTACT_EVT:
795 case PEER_ESTABL_CONTACT_EVT:
796 break;
797 case NODE_FAILOVER_END_EVT:
798 default:
799 goto illegal_evt;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400800 }
801 break;
802 default:
803 pr_err("Unknown node fsm state %x\n", state);
804 break;
805 }
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400806 n->state = state;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400807 return;
808
809illegal_evt:
810 pr_err("Illegal node fsm evt %x in state %x\n", evt, state);
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400811}
812
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400813bool tipc_node_filter_pkt(struct tipc_node *n, struct tipc_msg *hdr)
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400814{
815 int state = n->state;
816
817 if (likely(state == SELF_UP_PEER_UP))
818 return true;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400819
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400820 if (state == SELF_LEAVING_PEER_DOWN)
821 return false;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400822
823 if (state == SELF_DOWN_PEER_LEAVING) {
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400824 if (msg_peer_node_is_up(hdr))
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400825 return false;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400826 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400827
828 return true;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400829}
830
David S. Miller6c000552008-09-02 23:38:32 -0700831static void node_established_contact(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100832{
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400833 tipc_node_fsm_evt(n_ptr, SELF_ESTABL_CONTACT_EVT);
Ying Xueaecb9bb2014-05-08 08:54:39 +0800834 n_ptr->action_flags |= TIPC_NOTIFY_NODE_UP;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800835 n_ptr->bclink.oos_state = 0;
Ying Xue1da46562015-01-09 15:27:07 +0800836 n_ptr->bclink.acked = tipc_bclink_get_last_sent(n_ptr->net);
837 tipc_bclink_add_node(n_ptr->net, n_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100838}
839
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400840static void node_lost_contact(struct tipc_node *n_ptr,
841 struct sk_buff_head *inputq)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100842{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100843 char addr_string[16];
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500844 struct tipc_sock_conn *conn, *safe;
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400845 struct tipc_link *l;
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500846 struct list_head *conns = &n_ptr->conn_sks;
847 struct sk_buff *skb;
848 struct tipc_net *tn = net_generic(n_ptr->net, tipc_net_id);
849 uint i;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100850
Erik Hugne3fa9cac2015-01-22 17:10:31 +0100851 pr_debug("Lost contact with %s\n",
852 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensc5bd4d82011-04-07 11:58:08 -0400853
854 /* Flush broadcast link info associated with lost node */
Ying Xue389dd9b2012-11-16 13:51:30 +0800855 if (n_ptr->bclink.recv_permitted) {
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400856 __skb_queue_purge(&n_ptr->bclink.deferdq);
Allan Stephensc5bd4d82011-04-07 11:58:08 -0400857
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400858 if (n_ptr->bclink.reasm_buf) {
859 kfree_skb(n_ptr->bclink.reasm_buf);
860 n_ptr->bclink.reasm_buf = NULL;
Allan Stephensc5bd4d82011-04-07 11:58:08 -0400861 }
862
Ying Xue1da46562015-01-09 15:27:07 +0800863 tipc_bclink_remove_node(n_ptr->net, n_ptr->addr);
Allan Stephens365595912011-10-24 15:26:24 -0400864 tipc_bclink_acknowledge(n_ptr, INVALID_LINK_SEQ);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100865
Ying Xue389dd9b2012-11-16 13:51:30 +0800866 n_ptr->bclink.recv_permitted = false;
Allan Stephensc5bd4d82011-04-07 11:58:08 -0400867 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100868
Jon Paul Maloydff29b12015-04-02 09:33:01 -0400869 /* Abort any ongoing link failover */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100870 for (i = 0; i < MAX_BEARERS; i++) {
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400871 l = n_ptr->links[i].link;
872 if (l)
873 tipc_link_fsm_evt(l, LINK_FAILOVER_END_EVT);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100874 }
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400875
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500876 /* Notify publications from this node */
877 n_ptr->action_flags |= TIPC_NOTIFY_NODE_DOWN;
878
879 /* Notify sockets connected to node */
880 list_for_each_entry_safe(conn, safe, conns, list) {
881 skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE, TIPC_CONN_MSG,
882 SHORT_H_SIZE, 0, tn->own_addr,
883 conn->peer_node, conn->port,
884 conn->peer_port, TIPC_ERR_NO_NODE);
Jon Paul Maloy23d83352015-07-30 18:24:24 -0400885 if (likely(skb))
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400886 skb_queue_tail(inputq, skb);
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500887 list_del(&conn->list);
888 kfree(conn);
889 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100890}
891
Erik Hugne78acb1f2014-04-24 16:26:47 +0200892/**
893 * tipc_node_get_linkname - get the name of a link
894 *
895 * @bearer_id: id of the bearer
896 * @node: peer node address
897 * @linkname: link name output buffer
898 *
899 * Returns 0 on success
900 */
Ying Xuef2f98002015-01-09 15:27:05 +0800901int tipc_node_get_linkname(struct net *net, u32 bearer_id, u32 addr,
902 char *linkname, size_t len)
Erik Hugne78acb1f2014-04-24 16:26:47 +0200903{
904 struct tipc_link *link;
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800905 int err = -EINVAL;
Ying Xuef2f98002015-01-09 15:27:05 +0800906 struct tipc_node *node = tipc_node_find(net, addr);
Erik Hugne78acb1f2014-04-24 16:26:47 +0200907
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800908 if (!node)
909 return err;
910
911 if (bearer_id >= MAX_BEARERS)
912 goto exit;
913
Erik Hugne78acb1f2014-04-24 16:26:47 +0200914 tipc_node_lock(node);
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400915 link = node->links[bearer_id].link;
Erik Hugne78acb1f2014-04-24 16:26:47 +0200916 if (link) {
917 strncpy(linkname, link->name, len);
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800918 err = 0;
Erik Hugne78acb1f2014-04-24 16:26:47 +0200919 }
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800920exit:
Erik Hugne78acb1f2014-04-24 16:26:47 +0200921 tipc_node_unlock(node);
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800922 tipc_node_put(node);
923 return err;
Erik Hugne78acb1f2014-04-24 16:26:47 +0200924}
Ying Xue9db9fdd2014-05-05 08:56:12 +0800925
926void tipc_node_unlock(struct tipc_node *node)
927{
Ying Xuef2f98002015-01-09 15:27:05 +0800928 struct net *net = node->net;
Ying Xueca0c4272014-05-05 08:56:14 +0800929 u32 addr = 0;
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500930 u32 flags = node->action_flags;
Ying Xue7b8613e2014-10-20 14:44:25 +0800931 u32 link_id = 0;
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500932 struct list_head *publ_list;
Ying Xue9db9fdd2014-05-05 08:56:12 +0800933
Jon Paul Maloy23d83352015-07-30 18:24:24 -0400934 if (likely(!flags)) {
Ying Xue9db9fdd2014-05-05 08:56:12 +0800935 spin_unlock_bh(&node->lock);
936 return;
937 }
938
Ying Xue7b8613e2014-10-20 14:44:25 +0800939 addr = node->addr;
940 link_id = node->link_id;
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500941 publ_list = &node->publ_list;
Ying Xue7b8613e2014-10-20 14:44:25 +0800942
Jon Paul Maloy23d83352015-07-30 18:24:24 -0400943 node->action_flags &= ~(TIPC_NOTIFY_NODE_DOWN | TIPC_NOTIFY_NODE_UP |
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500944 TIPC_NOTIFY_LINK_DOWN | TIPC_NOTIFY_LINK_UP |
945 TIPC_WAKEUP_BCAST_USERS | TIPC_BCAST_MSG_EVT |
Jon Paul Maloy23d83352015-07-30 18:24:24 -0400946 TIPC_BCAST_RESET);
Ying Xue7b8613e2014-10-20 14:44:25 +0800947
Ying Xue9db9fdd2014-05-05 08:56:12 +0800948 spin_unlock_bh(&node->lock);
949
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500950 if (flags & TIPC_NOTIFY_NODE_DOWN)
951 tipc_publ_notify(net, publ_list, addr);
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400952
Jon Maloy908344c2014-10-07 14:12:34 -0400953 if (flags & TIPC_WAKEUP_BCAST_USERS)
Ying Xuef2f98002015-01-09 15:27:05 +0800954 tipc_bclink_wakeup_users(net);
Jon Maloy908344c2014-10-07 14:12:34 -0400955
Ying Xue7b8613e2014-10-20 14:44:25 +0800956 if (flags & TIPC_NOTIFY_NODE_UP)
Ying Xuef2f98002015-01-09 15:27:05 +0800957 tipc_named_node_up(net, addr);
Ying Xue7b8613e2014-10-20 14:44:25 +0800958
959 if (flags & TIPC_NOTIFY_LINK_UP)
Ying Xuef2f98002015-01-09 15:27:05 +0800960 tipc_nametbl_publish(net, TIPC_LINK_STATE, addr, addr,
Ying Xue7b8613e2014-10-20 14:44:25 +0800961 TIPC_NODE_SCOPE, link_id, addr);
962
963 if (flags & TIPC_NOTIFY_LINK_DOWN)
Ying Xuef2f98002015-01-09 15:27:05 +0800964 tipc_nametbl_withdraw(net, TIPC_LINK_STATE, addr,
Ying Xue7b8613e2014-10-20 14:44:25 +0800965 link_id, addr);
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500966
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500967 if (flags & TIPC_BCAST_MSG_EVT)
968 tipc_bclink_input(net);
Ying Xueb952b2b2015-03-26 18:10:23 +0800969
970 if (flags & TIPC_BCAST_RESET)
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400971 tipc_node_reset_links(node);
Ying Xue9db9fdd2014-05-05 08:56:12 +0800972}
Richard Alpe3e4b6ab2014-11-20 10:29:17 +0100973
974/* Caller should hold node lock for the passed node */
Richard Alped8182802014-11-24 11:10:29 +0100975static int __tipc_nl_add_node(struct tipc_nl_msg *msg, struct tipc_node *node)
Richard Alpe3e4b6ab2014-11-20 10:29:17 +0100976{
977 void *hdr;
978 struct nlattr *attrs;
979
Richard Alpebfb3e5d2015-02-09 09:50:03 +0100980 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
Richard Alpe3e4b6ab2014-11-20 10:29:17 +0100981 NLM_F_MULTI, TIPC_NL_NODE_GET);
982 if (!hdr)
983 return -EMSGSIZE;
984
985 attrs = nla_nest_start(msg->skb, TIPC_NLA_NODE);
986 if (!attrs)
987 goto msg_full;
988
989 if (nla_put_u32(msg->skb, TIPC_NLA_NODE_ADDR, node->addr))
990 goto attr_msg_full;
991 if (tipc_node_is_up(node))
992 if (nla_put_flag(msg->skb, TIPC_NLA_NODE_UP))
993 goto attr_msg_full;
994
995 nla_nest_end(msg->skb, attrs);
996 genlmsg_end(msg->skb, hdr);
997
998 return 0;
999
1000attr_msg_full:
1001 nla_nest_cancel(msg->skb, attrs);
1002msg_full:
1003 genlmsg_cancel(msg->skb, hdr);
1004
1005 return -EMSGSIZE;
1006}
1007
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -04001008static struct tipc_link *tipc_node_select_link(struct tipc_node *n, int sel,
1009 int *bearer_id,
1010 struct tipc_media_addr **maddr)
1011{
1012 int id = n->active_links[sel & 1];
1013
1014 if (unlikely(id < 0))
1015 return NULL;
1016
1017 *bearer_id = id;
1018 *maddr = &n->links[id].maddr;
1019 return n->links[id].link;
1020}
1021
1022/**
1023 * tipc_node_xmit() is the general link level function for message sending
1024 * @net: the applicable net namespace
1025 * @list: chain of buffers containing message
1026 * @dnode: address of destination node
1027 * @selector: a number used for deterministic link selection
1028 * Consumes the buffer chain, except when returning -ELINKCONG
1029 * Returns 0 if success, otherwise errno: -ELINKCONG,-EHOSTUNREACH,-EMSGSIZE
1030 */
1031int tipc_node_xmit(struct net *net, struct sk_buff_head *list,
1032 u32 dnode, int selector)
1033{
1034 struct tipc_link *l = NULL;
1035 struct tipc_node *n;
1036 struct sk_buff_head xmitq;
1037 struct tipc_media_addr *maddr;
1038 int bearer_id;
1039 int rc = -EHOSTUNREACH;
1040
1041 __skb_queue_head_init(&xmitq);
1042 n = tipc_node_find(net, dnode);
1043 if (likely(n)) {
1044 tipc_node_lock(n);
1045 l = tipc_node_select_link(n, selector, &bearer_id, &maddr);
1046 if (likely(l))
1047 rc = tipc_link_xmit(l, list, &xmitq);
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -04001048 tipc_node_unlock(n);
Jon Paul Maloy598411d2015-07-30 18:24:23 -04001049 if (unlikely(rc == -ENOBUFS))
1050 tipc_node_link_down(n, bearer_id, false);
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -04001051 tipc_node_put(n);
1052 }
1053 if (likely(!rc)) {
1054 tipc_bearer_xmit(net, bearer_id, &xmitq, maddr);
1055 return 0;
1056 }
1057 if (likely(in_own_node(net, dnode))) {
1058 tipc_sk_rcv(net, list);
1059 return 0;
1060 }
1061 return rc;
1062}
1063
1064/* tipc_node_xmit_skb(): send single buffer to destination
1065 * Buffers sent via this functon are generally TIPC_SYSTEM_IMPORTANCE
1066 * messages, which will not be rejected
1067 * The only exception is datagram messages rerouted after secondary
1068 * lookup, which are rare and safe to dispose of anyway.
1069 * TODO: Return real return value, and let callers use
1070 * tipc_wait_for_sendpkt() where applicable
1071 */
1072int tipc_node_xmit_skb(struct net *net, struct sk_buff *skb, u32 dnode,
1073 u32 selector)
1074{
1075 struct sk_buff_head head;
1076 int rc;
1077
1078 skb_queue_head_init(&head);
1079 __skb_queue_tail(&head, skb);
1080 rc = tipc_node_xmit(net, &head, dnode, selector);
1081 if (rc == -ELINKCONG)
1082 kfree_skb(skb);
1083 return 0;
1084}
1085
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001086/**
1087 * tipc_node_check_state - check and if necessary update node state
1088 * @skb: TIPC packet
1089 * @bearer_id: identity of bearer delivering the packet
1090 * Returns true if state is ok, otherwise consumes buffer and returns false
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001091 */
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001092static bool tipc_node_check_state(struct tipc_node *n, struct sk_buff *skb,
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001093 int bearer_id, struct sk_buff_head *xmitq)
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001094{
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001095 struct tipc_msg *hdr = buf_msg(skb);
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001096 int usr = msg_user(hdr);
1097 int mtyp = msg_type(hdr);
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001098 u16 oseqno = msg_seqno(hdr);
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001099 u16 iseqno = msg_seqno(msg_get_wrapped(hdr));
1100 u16 exp_pkts = msg_msgcnt(hdr);
1101 u16 rcv_nxt, syncpt, dlv_nxt;
1102 int state = n->state;
Jon Paul Maloy2be80c22015-08-20 02:12:56 -04001103 struct tipc_link *l, *tnl, *pl = NULL;
Jon Paul Maloy598411d2015-07-30 18:24:23 -04001104 struct tipc_media_addr *maddr;
1105 int i, pb_id;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001106
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001107 l = n->links[bearer_id].link;
1108 if (!l)
1109 return false;
1110 rcv_nxt = l->rcv_nxt;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001111
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001112
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001113 if (likely((state == SELF_UP_PEER_UP) && (usr != TUNNEL_PROTOCOL)))
1114 return true;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001115
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001116 /* Find parallel link, if any */
1117 for (i = 0; i < MAX_BEARERS; i++) {
1118 if ((i != bearer_id) && n->links[i].link) {
1119 pl = n->links[i].link;
1120 break;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001121 }
1122 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001123
1124 /* Update node accesibility if applicable */
1125 if (state == SELF_UP_PEER_COMING) {
1126 if (!tipc_link_is_up(l))
1127 return true;
1128 if (!msg_peer_link_is_up(hdr))
1129 return true;
1130 tipc_node_fsm_evt(n, PEER_ESTABL_CONTACT_EVT);
1131 }
1132
1133 if (state == SELF_DOWN_PEER_LEAVING) {
1134 if (msg_peer_node_is_up(hdr))
1135 return false;
1136 tipc_node_fsm_evt(n, PEER_LOST_CONTACT_EVT);
1137 }
1138
1139 /* Ignore duplicate packets */
Jon Paul Maloy0f8b8e22015-10-13 12:41:51 -04001140 if ((usr != LINK_PROTOCOL) && less(oseqno, rcv_nxt))
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001141 return true;
1142
1143 /* Initiate or update failover mode if applicable */
1144 if ((usr == TUNNEL_PROTOCOL) && (mtyp == FAILOVER_MSG)) {
1145 syncpt = oseqno + exp_pkts - 1;
Jon Paul Maloy598411d2015-07-30 18:24:23 -04001146 if (pl && tipc_link_is_up(pl)) {
1147 pb_id = pl->bearer_id;
1148 __tipc_node_link_down(n, &pb_id, xmitq, &maddr);
1149 tipc_skb_queue_splice_tail_init(pl->inputq, l->inputq);
1150 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001151 /* If pkts arrive out of order, use lowest calculated syncpt */
1152 if (less(syncpt, n->sync_point))
1153 n->sync_point = syncpt;
1154 }
1155
1156 /* Open parallel link when tunnel link reaches synch point */
Jon Paul Maloy17b20632015-08-20 02:12:54 -04001157 if ((n->state == NODE_FAILINGOVER) && tipc_link_is_up(l)) {
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001158 if (!more(rcv_nxt, n->sync_point))
1159 return true;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001160 tipc_node_fsm_evt(n, NODE_FAILOVER_END_EVT);
1161 if (pl)
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001162 tipc_link_fsm_evt(pl, LINK_FAILOVER_END_EVT);
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001163 return true;
1164 }
1165
Jon Paul Maloy5ae2f8e2015-08-20 02:12:55 -04001166 /* No synching needed if only one link */
1167 if (!pl || !tipc_link_is_up(pl))
1168 return true;
1169
Jon Paul Maloy0f8b8e22015-10-13 12:41:51 -04001170 /* Initiate synch mode if applicable */
1171 if ((usr == TUNNEL_PROTOCOL) && (mtyp == SYNCH_MSG) && (oseqno == 1)) {
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001172 syncpt = iseqno + exp_pkts - 1;
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001173 if (!tipc_link_is_up(l)) {
1174 tipc_link_fsm_evt(l, LINK_ESTABLISH_EVT);
Jon Paul Maloy598411d2015-07-30 18:24:23 -04001175 __tipc_node_link_up(n, bearer_id, xmitq);
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001176 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001177 if (n->state == SELF_UP_PEER_UP) {
1178 n->sync_point = syncpt;
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001179 tipc_link_fsm_evt(l, LINK_SYNCH_BEGIN_EVT);
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001180 tipc_node_fsm_evt(n, NODE_SYNCH_BEGIN_EVT);
1181 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001182 if (less(syncpt, n->sync_point))
1183 n->sync_point = syncpt;
1184 }
1185
1186 /* Open tunnel link when parallel link reaches synch point */
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001187 if ((n->state == NODE_SYNCHING) && tipc_link_is_synching(l)) {
Jon Paul Maloy2be80c22015-08-20 02:12:56 -04001188 if (tipc_link_is_synching(l)) {
1189 tnl = l;
1190 } else {
1191 tnl = pl;
1192 pl = l;
1193 }
Jon Paul Maloy5ae2f8e2015-08-20 02:12:55 -04001194 dlv_nxt = pl->rcv_nxt - mod(skb_queue_len(pl->inputq));
1195 if (more(dlv_nxt, n->sync_point)) {
Jon Paul Maloy2be80c22015-08-20 02:12:56 -04001196 tipc_link_fsm_evt(tnl, LINK_SYNCH_END_EVT);
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001197 tipc_node_fsm_evt(n, NODE_SYNCH_END_EVT);
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001198 return true;
1199 }
Jon Paul Maloy2be80c22015-08-20 02:12:56 -04001200 if (l == pl)
1201 return true;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001202 if ((usr == TUNNEL_PROTOCOL) && (mtyp == SYNCH_MSG))
1203 return true;
1204 if (usr == LINK_PROTOCOL)
1205 return true;
1206 return false;
1207 }
1208 return true;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001209}
1210
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001211/**
1212 * tipc_rcv - process TIPC packets/messages arriving from off-node
1213 * @net: the applicable net namespace
1214 * @skb: TIPC packet
1215 * @bearer: pointer to bearer message arrived on
1216 *
1217 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1218 * structure (i.e. cannot be NULL), but bearer can be inactive.
1219 */
1220void tipc_rcv(struct net *net, struct sk_buff *skb, struct tipc_bearer *b)
1221{
1222 struct sk_buff_head xmitq;
1223 struct tipc_node *n;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001224 struct tipc_msg *hdr = buf_msg(skb);
1225 int usr = msg_user(hdr);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001226 int bearer_id = b->identity;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001227 struct tipc_link_entry *le;
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001228 int rc = 0;
1229
1230 __skb_queue_head_init(&xmitq);
1231
1232 /* Ensure message is well-formed */
1233 if (unlikely(!tipc_msg_validate(skb)))
1234 goto discard;
1235
1236 /* Handle arrival of a non-unicast link packet */
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001237 if (unlikely(msg_non_seq(hdr))) {
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001238 if (usr == LINK_CONFIG)
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001239 tipc_disc_rcv(net, skb, b);
1240 else
1241 tipc_bclink_rcv(net, skb);
1242 return;
1243 }
1244
1245 /* Locate neighboring node that sent packet */
1246 n = tipc_node_find(net, msg_prevnode(hdr));
1247 if (unlikely(!n))
1248 goto discard;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001249 le = &n->links[bearer_id];
1250
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001251 tipc_node_lock(n);
1252
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001253 /* Is reception permitted at the moment ? */
1254 if (!tipc_node_filter_pkt(n, hdr))
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001255 goto unlock;
1256
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001257 if (unlikely(msg_user(hdr) == LINK_PROTOCOL))
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001258 tipc_bclink_sync_state(n, hdr);
1259
Jon Paul Maloy598411d2015-07-30 18:24:23 -04001260 /* Release acked broadcast packets */
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001261 if (unlikely(n->bclink.acked != msg_bcast_ack(hdr)))
1262 tipc_bclink_acknowledge(n, msg_bcast_ack(hdr));
1263
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001264 /* Check and if necessary update node state */
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001265 if (likely(tipc_node_check_state(n, skb, bearer_id, &xmitq))) {
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001266 rc = tipc_link_rcv(le->link, skb, &xmitq);
1267 skb = NULL;
1268 }
Jon Paul Maloy598411d2015-07-30 18:24:23 -04001269unlock:
1270 tipc_node_unlock(n);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001271
1272 if (unlikely(rc & TIPC_LINK_UP_EVT))
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001273 tipc_node_link_up(n, bearer_id, &xmitq);
1274
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001275 if (unlikely(rc & TIPC_LINK_DOWN_EVT))
Jon Paul Maloy598411d2015-07-30 18:24:23 -04001276 tipc_node_link_down(n, bearer_id, false);
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001277
Jon Paul Maloy23d83352015-07-30 18:24:24 -04001278 if (unlikely(!skb_queue_empty(&n->bclink.namedq)))
1279 tipc_named_rcv(net, &n->bclink.namedq);
1280
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001281 if (!skb_queue_empty(&le->inputq))
1282 tipc_sk_rcv(net, &le->inputq);
1283
1284 if (!skb_queue_empty(&xmitq))
1285 tipc_bearer_xmit(net, bearer_id, &xmitq, &le->maddr);
1286
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001287 tipc_node_put(n);
1288discard:
1289 kfree_skb(skb);
1290}
1291
Richard Alpe3e4b6ab2014-11-20 10:29:17 +01001292int tipc_nl_node_dump(struct sk_buff *skb, struct netlink_callback *cb)
1293{
1294 int err;
Ying Xuef2f98002015-01-09 15:27:05 +08001295 struct net *net = sock_net(skb->sk);
1296 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe3e4b6ab2014-11-20 10:29:17 +01001297 int done = cb->args[0];
1298 int last_addr = cb->args[1];
1299 struct tipc_node *node;
1300 struct tipc_nl_msg msg;
1301
1302 if (done)
1303 return 0;
1304
1305 msg.skb = skb;
1306 msg.portid = NETLINK_CB(cb->skb).portid;
1307 msg.seq = cb->nlh->nlmsg_seq;
1308
1309 rcu_read_lock();
Ying Xue8a0f6eb2015-03-26 18:10:24 +08001310 if (last_addr) {
1311 node = tipc_node_find(net, last_addr);
1312 if (!node) {
1313 rcu_read_unlock();
1314 /* We never set seq or call nl_dump_check_consistent()
1315 * this means that setting prev_seq here will cause the
1316 * consistence check to fail in the netlink callback
1317 * handler. Resulting in the NLMSG_DONE message having
1318 * the NLM_F_DUMP_INTR flag set if the node state
1319 * changed while we released the lock.
1320 */
1321 cb->prev_seq = 1;
1322 return -EPIPE;
1323 }
1324 tipc_node_put(node);
Richard Alpe3e4b6ab2014-11-20 10:29:17 +01001325 }
1326
Ying Xuef2f98002015-01-09 15:27:05 +08001327 list_for_each_entry_rcu(node, &tn->node_list, list) {
Richard Alpe3e4b6ab2014-11-20 10:29:17 +01001328 if (last_addr) {
1329 if (node->addr == last_addr)
1330 last_addr = 0;
1331 else
1332 continue;
1333 }
1334
1335 tipc_node_lock(node);
1336 err = __tipc_nl_add_node(&msg, node);
1337 if (err) {
1338 last_addr = node->addr;
1339 tipc_node_unlock(node);
1340 goto out;
1341 }
1342
1343 tipc_node_unlock(node);
1344 }
1345 done = 1;
1346out:
1347 cb->args[0] = done;
1348 cb->args[1] = last_addr;
1349 rcu_read_unlock();
1350
1351 return skb->len;
1352}