blob: a3ceeda2a80a20a8dface69f98078c1979dc25a0 [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 Maloy5045f7b2015-07-30 18:24:20 -0400337 tipc_link_build_bcast_sync_msg(nl, xmitq);
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 Maloy662921c2015-07-30 18:24:21 -0400370 if (!l || tipc_link_is_reset(l))
Jon Paul Maloy655fb242015-07-30 18:24:17 -0400371 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);
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400416 tipc_link_fsm_evt(l, LINK_FAILOVER_BEGIN_EVT);
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400417 tipc_bearer_xmit(n->net, tnl->bearer_id, &xmitq, maddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100418}
419
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400420bool tipc_node_is_up(struct tipc_node *n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100421{
Jon Paul Maloy36e78a42015-07-16 16:54:22 -0400422 return n->active_links[0] != INVALID_BEARER_ID;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100423}
424
Jon Paul Maloyd3a43b92015-07-16 16:54:20 -0400425void tipc_node_check_dest(struct tipc_node *n, struct tipc_bearer *b,
426 bool *link_up, bool *addr_match,
427 struct tipc_media_addr *maddr)
428{
429 struct tipc_link *l = n->links[b->identity].link;
430 struct tipc_media_addr *curr = &n->links[b->identity].maddr;
431
432 *link_up = l && tipc_link_is_up(l);
433 *addr_match = l && !memcmp(curr, maddr, sizeof(*maddr));
434}
435
436bool tipc_node_update_dest(struct tipc_node *n, struct tipc_bearer *b,
437 struct tipc_media_addr *maddr)
438{
439 struct tipc_link *l = n->links[b->identity].link;
440 struct tipc_media_addr *curr = &n->links[b->identity].maddr;
Jon Paul Maloyd39bbd42015-07-16 16:54:21 -0400441 struct sk_buff_head *inputq = &n->links[b->identity].inputq;
Jon Paul Maloyd3a43b92015-07-16 16:54:20 -0400442
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400443 if (!l) {
Jon Paul Maloyd39bbd42015-07-16 16:54:21 -0400444 l = tipc_link_create(n, b, maddr, inputq, &n->bclink.namedq);
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400445 if (!l)
446 return false;
447 tipc_node_calculate_timer(n, l);
448 if (n->link_cnt == 1) {
449 if (!mod_timer(&n->timer, jiffies + n->keepalive_intv))
450 tipc_node_get(n);
451 }
452 }
Jon Paul Maloyd3a43b92015-07-16 16:54:20 -0400453 memcpy(&l->media_addr, maddr, sizeof(*maddr));
454 memcpy(curr, maddr, sizeof(*maddr));
Jon Paul Maloy655fb242015-07-30 18:24:17 -0400455 tipc_node_link_down(n, b->identity);
Jon Paul Maloyd3a43b92015-07-16 16:54:20 -0400456 return true;
457}
458
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400459void tipc_node_delete_links(struct net *net, int bearer_id)
460{
461 struct tipc_net *tn = net_generic(net, tipc_net_id);
462 struct tipc_link *l;
463 struct tipc_node *n;
464
465 rcu_read_lock();
466 list_for_each_entry_rcu(n, &tn->node_list, list) {
467 tipc_node_lock(n);
468 l = n->links[bearer_id].link;
469 if (l) {
Jon Paul Maloy655fb242015-07-30 18:24:17 -0400470 tipc_node_link_down(n, bearer_id);
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400471 n->links[bearer_id].link = NULL;
472 n->link_cnt--;
473 }
474 tipc_node_unlock(n);
475 kfree(l);
476 }
477 rcu_read_unlock();
478}
479
480static void tipc_node_reset_links(struct tipc_node *n)
481{
482 char addr_string[16];
483 u32 i;
484
485 tipc_node_lock(n);
486
487 pr_warn("Resetting all links to %s\n",
488 tipc_addr_string_fill(addr_string, n->addr));
489
490 for (i = 0; i < MAX_BEARERS; i++) {
Jon Paul Maloy655fb242015-07-30 18:24:17 -0400491 if (!n->links[i].link)
492 continue;
493 tipc_node_link_down(n, i);
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400494 }
495 tipc_node_unlock(n);
496}
497
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500498void tipc_node_attach_link(struct tipc_node *n_ptr, struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100499{
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400500 n_ptr->links[l_ptr->bearer_id].link = l_ptr;
Allan Stephens37b9c082011-02-28 11:32:27 -0500501 n_ptr->link_cnt++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100502}
503
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500504void tipc_node_detach_link(struct tipc_node *n_ptr, struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100505{
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500506 int i;
507
508 for (i = 0; i < MAX_BEARERS; i++) {
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400509 if (l_ptr != n_ptr->links[i].link)
Jon Paul Maloy074bb432014-02-14 16:40:43 -0500510 continue;
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400511 n_ptr->links[i].link = NULL;
Jon Paul Maloy074bb432014-02-14 16:40:43 -0500512 n_ptr->link_cnt--;
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500513 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100514}
515
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400516/* tipc_node_fsm_evt - node finite state machine
517 * Determines when contact is allowed with peer node
518 */
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400519static void tipc_node_fsm_evt(struct tipc_node *n, int evt)
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400520{
521 int state = n->state;
522
523 switch (state) {
524 case SELF_DOWN_PEER_DOWN:
525 switch (evt) {
526 case SELF_ESTABL_CONTACT_EVT:
527 state = SELF_UP_PEER_COMING;
528 break;
529 case PEER_ESTABL_CONTACT_EVT:
530 state = SELF_COMING_PEER_UP;
531 break;
532 case SELF_LOST_CONTACT_EVT:
533 case PEER_LOST_CONTACT_EVT:
534 break;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400535 case NODE_SYNCH_END_EVT:
536 case NODE_SYNCH_BEGIN_EVT:
537 case NODE_FAILOVER_BEGIN_EVT:
538 case NODE_FAILOVER_END_EVT:
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400539 default:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400540 goto illegal_evt;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400541 }
542 break;
543 case SELF_UP_PEER_UP:
544 switch (evt) {
545 case SELF_LOST_CONTACT_EVT:
546 state = SELF_DOWN_PEER_LEAVING;
547 break;
548 case PEER_LOST_CONTACT_EVT:
549 state = SELF_LEAVING_PEER_DOWN;
550 break;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400551 case NODE_SYNCH_BEGIN_EVT:
552 state = NODE_SYNCHING;
553 break;
554 case NODE_FAILOVER_BEGIN_EVT:
555 state = NODE_FAILINGOVER;
556 break;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400557 case SELF_ESTABL_CONTACT_EVT:
558 case PEER_ESTABL_CONTACT_EVT:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400559 case NODE_SYNCH_END_EVT:
560 case NODE_FAILOVER_END_EVT:
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400561 break;
562 default:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400563 goto illegal_evt;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400564 }
565 break;
566 case SELF_DOWN_PEER_LEAVING:
567 switch (evt) {
568 case PEER_LOST_CONTACT_EVT:
569 state = SELF_DOWN_PEER_DOWN;
570 break;
571 case SELF_ESTABL_CONTACT_EVT:
572 case PEER_ESTABL_CONTACT_EVT:
573 case SELF_LOST_CONTACT_EVT:
574 break;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400575 case NODE_SYNCH_END_EVT:
576 case NODE_SYNCH_BEGIN_EVT:
577 case NODE_FAILOVER_BEGIN_EVT:
578 case NODE_FAILOVER_END_EVT:
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400579 default:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400580 goto illegal_evt;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400581 }
582 break;
583 case SELF_UP_PEER_COMING:
584 switch (evt) {
585 case PEER_ESTABL_CONTACT_EVT:
586 state = SELF_UP_PEER_UP;
587 break;
588 case SELF_LOST_CONTACT_EVT:
589 state = SELF_DOWN_PEER_LEAVING;
590 break;
591 case SELF_ESTABL_CONTACT_EVT:
592 case PEER_LOST_CONTACT_EVT:
593 break;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400594 case NODE_SYNCH_END_EVT:
595 case NODE_SYNCH_BEGIN_EVT:
596 case NODE_FAILOVER_BEGIN_EVT:
597 case NODE_FAILOVER_END_EVT:
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400598 default:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400599 goto illegal_evt;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400600 }
601 break;
602 case SELF_COMING_PEER_UP:
603 switch (evt) {
604 case SELF_ESTABL_CONTACT_EVT:
605 state = SELF_UP_PEER_UP;
606 break;
607 case PEER_LOST_CONTACT_EVT:
608 state = SELF_LEAVING_PEER_DOWN;
609 break;
610 case SELF_LOST_CONTACT_EVT:
611 case PEER_ESTABL_CONTACT_EVT:
612 break;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400613 case NODE_SYNCH_END_EVT:
614 case NODE_SYNCH_BEGIN_EVT:
615 case NODE_FAILOVER_BEGIN_EVT:
616 case NODE_FAILOVER_END_EVT:
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400617 default:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400618 goto illegal_evt;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400619 }
620 break;
621 case SELF_LEAVING_PEER_DOWN:
622 switch (evt) {
623 case SELF_LOST_CONTACT_EVT:
624 state = SELF_DOWN_PEER_DOWN;
625 break;
626 case SELF_ESTABL_CONTACT_EVT:
627 case PEER_ESTABL_CONTACT_EVT:
628 case PEER_LOST_CONTACT_EVT:
629 break;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400630 case NODE_SYNCH_END_EVT:
631 case NODE_SYNCH_BEGIN_EVT:
632 case NODE_FAILOVER_BEGIN_EVT:
633 case NODE_FAILOVER_END_EVT:
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400634 default:
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400635 goto illegal_evt;
636 }
637 break;
638 case NODE_FAILINGOVER:
639 switch (evt) {
640 case SELF_LOST_CONTACT_EVT:
641 state = SELF_DOWN_PEER_LEAVING;
642 break;
643 case PEER_LOST_CONTACT_EVT:
644 state = SELF_LEAVING_PEER_DOWN;
645 break;
646 case NODE_FAILOVER_END_EVT:
647 state = SELF_UP_PEER_UP;
648 break;
649 case NODE_FAILOVER_BEGIN_EVT:
650 case SELF_ESTABL_CONTACT_EVT:
651 case PEER_ESTABL_CONTACT_EVT:
652 break;
653 case NODE_SYNCH_BEGIN_EVT:
654 case NODE_SYNCH_END_EVT:
655 default:
656 goto illegal_evt;
657 }
658 break;
659 case NODE_SYNCHING:
660 switch (evt) {
661 case SELF_LOST_CONTACT_EVT:
662 state = SELF_DOWN_PEER_LEAVING;
663 break;
664 case PEER_LOST_CONTACT_EVT:
665 state = SELF_LEAVING_PEER_DOWN;
666 break;
667 case NODE_SYNCH_END_EVT:
668 state = SELF_UP_PEER_UP;
669 break;
670 case NODE_FAILOVER_BEGIN_EVT:
671 state = NODE_FAILINGOVER;
672 break;
673 case NODE_SYNCH_BEGIN_EVT:
674 case SELF_ESTABL_CONTACT_EVT:
675 case PEER_ESTABL_CONTACT_EVT:
676 break;
677 case NODE_FAILOVER_END_EVT:
678 default:
679 goto illegal_evt;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400680 }
681 break;
682 default:
683 pr_err("Unknown node fsm state %x\n", state);
684 break;
685 }
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400686 n->state = state;
Jon Paul Maloy66996b62015-07-30 18:24:18 -0400687 return;
688
689illegal_evt:
690 pr_err("Illegal node fsm evt %x in state %x\n", evt, state);
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400691}
692
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400693bool tipc_node_filter_pkt(struct tipc_node *n, struct tipc_msg *hdr)
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400694{
695 int state = n->state;
696
697 if (likely(state == SELF_UP_PEER_UP))
698 return true;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400699
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400700 if (state == SELF_LEAVING_PEER_DOWN)
701 return false;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400702
703 if (state == SELF_DOWN_PEER_LEAVING) {
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400704 if (msg_peer_node_is_up(hdr))
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400705 return false;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400706 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400707
708 return true;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400709}
710
David S. Miller6c000552008-09-02 23:38:32 -0700711static void node_established_contact(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100712{
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400713 tipc_node_fsm_evt(n_ptr, SELF_ESTABL_CONTACT_EVT);
Ying Xueaecb9bb2014-05-08 08:54:39 +0800714 n_ptr->action_flags |= TIPC_NOTIFY_NODE_UP;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800715 n_ptr->bclink.oos_state = 0;
Ying Xue1da46562015-01-09 15:27:07 +0800716 n_ptr->bclink.acked = tipc_bclink_get_last_sent(n_ptr->net);
717 tipc_bclink_add_node(n_ptr->net, n_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100718}
719
David S. Miller6c000552008-09-02 23:38:32 -0700720static void node_lost_contact(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100721{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100722 char addr_string[16];
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500723 struct tipc_sock_conn *conn, *safe;
724 struct list_head *conns = &n_ptr->conn_sks;
725 struct sk_buff *skb;
726 struct tipc_net *tn = net_generic(n_ptr->net, tipc_net_id);
727 uint i;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100728
Erik Hugne3fa9cac2015-01-22 17:10:31 +0100729 pr_debug("Lost contact with %s\n",
730 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensc5bd4d82011-04-07 11:58:08 -0400731
732 /* Flush broadcast link info associated with lost node */
Ying Xue389dd9b2012-11-16 13:51:30 +0800733 if (n_ptr->bclink.recv_permitted) {
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400734 __skb_queue_purge(&n_ptr->bclink.deferdq);
Allan Stephensc5bd4d82011-04-07 11:58:08 -0400735
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400736 if (n_ptr->bclink.reasm_buf) {
737 kfree_skb(n_ptr->bclink.reasm_buf);
738 n_ptr->bclink.reasm_buf = NULL;
Allan Stephensc5bd4d82011-04-07 11:58:08 -0400739 }
740
Ying Xue1da46562015-01-09 15:27:07 +0800741 tipc_bclink_remove_node(n_ptr->net, n_ptr->addr);
Allan Stephens365595912011-10-24 15:26:24 -0400742 tipc_bclink_acknowledge(n_ptr, INVALID_LINK_SEQ);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100743
Ying Xue389dd9b2012-11-16 13:51:30 +0800744 n_ptr->bclink.recv_permitted = false;
Allan Stephensc5bd4d82011-04-07 11:58:08 -0400745 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100746
Jon Paul Maloydff29b12015-04-02 09:33:01 -0400747 /* Abort any ongoing link failover */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100748 for (i = 0; i < MAX_BEARERS; i++) {
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400749 struct tipc_link *l_ptr = n_ptr->links[i].link;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900750 if (!l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100751 continue;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400752 tipc_link_fsm_evt(l_ptr, LINK_FAILOVER_END_EVT);
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400753 kfree_skb(l_ptr->failover_reasm_skb);
754 l_ptr->failover_reasm_skb = NULL;
Per Liden4323add2006-01-18 00:38:21 +0100755 tipc_link_reset_fragments(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100756 }
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500757 /* Prevent re-contact with node until cleanup is done */
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400758 tipc_node_fsm_evt(n_ptr, SELF_LOST_CONTACT_EVT);
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500759
760 /* Notify publications from this node */
761 n_ptr->action_flags |= TIPC_NOTIFY_NODE_DOWN;
762
763 /* Notify sockets connected to node */
764 list_for_each_entry_safe(conn, safe, conns, list) {
765 skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE, TIPC_CONN_MSG,
766 SHORT_H_SIZE, 0, tn->own_addr,
767 conn->peer_node, conn->port,
768 conn->peer_port, TIPC_ERR_NO_NODE);
769 if (likely(skb)) {
770 skb_queue_tail(n_ptr->inputq, skb);
771 n_ptr->action_flags |= TIPC_MSG_EVT;
772 }
773 list_del(&conn->list);
774 kfree(conn);
775 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100776}
777
Erik Hugne78acb1f2014-04-24 16:26:47 +0200778/**
779 * tipc_node_get_linkname - get the name of a link
780 *
781 * @bearer_id: id of the bearer
782 * @node: peer node address
783 * @linkname: link name output buffer
784 *
785 * Returns 0 on success
786 */
Ying Xuef2f98002015-01-09 15:27:05 +0800787int tipc_node_get_linkname(struct net *net, u32 bearer_id, u32 addr,
788 char *linkname, size_t len)
Erik Hugne78acb1f2014-04-24 16:26:47 +0200789{
790 struct tipc_link *link;
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800791 int err = -EINVAL;
Ying Xuef2f98002015-01-09 15:27:05 +0800792 struct tipc_node *node = tipc_node_find(net, addr);
Erik Hugne78acb1f2014-04-24 16:26:47 +0200793
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800794 if (!node)
795 return err;
796
797 if (bearer_id >= MAX_BEARERS)
798 goto exit;
799
Erik Hugne78acb1f2014-04-24 16:26:47 +0200800 tipc_node_lock(node);
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400801 link = node->links[bearer_id].link;
Erik Hugne78acb1f2014-04-24 16:26:47 +0200802 if (link) {
803 strncpy(linkname, link->name, len);
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800804 err = 0;
Erik Hugne78acb1f2014-04-24 16:26:47 +0200805 }
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800806exit:
Erik Hugne78acb1f2014-04-24 16:26:47 +0200807 tipc_node_unlock(node);
Ying Xue8a0f6eb2015-03-26 18:10:24 +0800808 tipc_node_put(node);
809 return err;
Erik Hugne78acb1f2014-04-24 16:26:47 +0200810}
Ying Xue9db9fdd2014-05-05 08:56:12 +0800811
812void tipc_node_unlock(struct tipc_node *node)
813{
Ying Xuef2f98002015-01-09 15:27:05 +0800814 struct net *net = node->net;
Ying Xueca0c4272014-05-05 08:56:14 +0800815 u32 addr = 0;
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500816 u32 flags = node->action_flags;
Ying Xue7b8613e2014-10-20 14:44:25 +0800817 u32 link_id = 0;
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500818 struct list_head *publ_list;
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500819 struct sk_buff_head *inputq = node->inputq;
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500820 struct sk_buff_head *namedq;
Ying Xue9db9fdd2014-05-05 08:56:12 +0800821
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500822 if (likely(!flags || (flags == TIPC_MSG_EVT))) {
823 node->action_flags = 0;
Ying Xue9db9fdd2014-05-05 08:56:12 +0800824 spin_unlock_bh(&node->lock);
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500825 if (flags == TIPC_MSG_EVT)
826 tipc_sk_rcv(net, inputq);
Ying Xue9db9fdd2014-05-05 08:56:12 +0800827 return;
828 }
829
Ying Xue7b8613e2014-10-20 14:44:25 +0800830 addr = node->addr;
831 link_id = node->link_id;
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500832 namedq = node->namedq;
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500833 publ_list = &node->publ_list;
Ying Xue7b8613e2014-10-20 14:44:25 +0800834
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500835 node->action_flags &= ~(TIPC_MSG_EVT |
836 TIPC_NOTIFY_NODE_DOWN | TIPC_NOTIFY_NODE_UP |
837 TIPC_NOTIFY_LINK_DOWN | TIPC_NOTIFY_LINK_UP |
838 TIPC_WAKEUP_BCAST_USERS | TIPC_BCAST_MSG_EVT |
Ying Xueb952b2b2015-03-26 18:10:23 +0800839 TIPC_NAMED_MSG_EVT | TIPC_BCAST_RESET);
Ying Xue7b8613e2014-10-20 14:44:25 +0800840
Ying Xue9db9fdd2014-05-05 08:56:12 +0800841 spin_unlock_bh(&node->lock);
842
Jon Paul Maloy708ac322015-02-05 08:36:42 -0500843 if (flags & TIPC_NOTIFY_NODE_DOWN)
844 tipc_publ_notify(net, publ_list, addr);
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400845
Jon Maloy908344c2014-10-07 14:12:34 -0400846 if (flags & TIPC_WAKEUP_BCAST_USERS)
Ying Xuef2f98002015-01-09 15:27:05 +0800847 tipc_bclink_wakeup_users(net);
Jon Maloy908344c2014-10-07 14:12:34 -0400848
Ying Xue7b8613e2014-10-20 14:44:25 +0800849 if (flags & TIPC_NOTIFY_NODE_UP)
Ying Xuef2f98002015-01-09 15:27:05 +0800850 tipc_named_node_up(net, addr);
Ying Xue7b8613e2014-10-20 14:44:25 +0800851
852 if (flags & TIPC_NOTIFY_LINK_UP)
Ying Xuef2f98002015-01-09 15:27:05 +0800853 tipc_nametbl_publish(net, TIPC_LINK_STATE, addr, addr,
Ying Xue7b8613e2014-10-20 14:44:25 +0800854 TIPC_NODE_SCOPE, link_id, addr);
855
856 if (flags & TIPC_NOTIFY_LINK_DOWN)
Ying Xuef2f98002015-01-09 15:27:05 +0800857 tipc_nametbl_withdraw(net, TIPC_LINK_STATE, addr,
Ying Xue7b8613e2014-10-20 14:44:25 +0800858 link_id, addr);
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500859
860 if (flags & TIPC_MSG_EVT)
861 tipc_sk_rcv(net, inputq);
862
863 if (flags & TIPC_NAMED_MSG_EVT)
864 tipc_named_rcv(net, namedq);
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500865
866 if (flags & TIPC_BCAST_MSG_EVT)
867 tipc_bclink_input(net);
Ying Xueb952b2b2015-03-26 18:10:23 +0800868
869 if (flags & TIPC_BCAST_RESET)
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400870 tipc_node_reset_links(node);
Ying Xue9db9fdd2014-05-05 08:56:12 +0800871}
Richard Alpe3e4b6ab2014-11-20 10:29:17 +0100872
873/* Caller should hold node lock for the passed node */
Richard Alped8182802014-11-24 11:10:29 +0100874static int __tipc_nl_add_node(struct tipc_nl_msg *msg, struct tipc_node *node)
Richard Alpe3e4b6ab2014-11-20 10:29:17 +0100875{
876 void *hdr;
877 struct nlattr *attrs;
878
Richard Alpebfb3e5d2015-02-09 09:50:03 +0100879 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
Richard Alpe3e4b6ab2014-11-20 10:29:17 +0100880 NLM_F_MULTI, TIPC_NL_NODE_GET);
881 if (!hdr)
882 return -EMSGSIZE;
883
884 attrs = nla_nest_start(msg->skb, TIPC_NLA_NODE);
885 if (!attrs)
886 goto msg_full;
887
888 if (nla_put_u32(msg->skb, TIPC_NLA_NODE_ADDR, node->addr))
889 goto attr_msg_full;
890 if (tipc_node_is_up(node))
891 if (nla_put_flag(msg->skb, TIPC_NLA_NODE_UP))
892 goto attr_msg_full;
893
894 nla_nest_end(msg->skb, attrs);
895 genlmsg_end(msg->skb, hdr);
896
897 return 0;
898
899attr_msg_full:
900 nla_nest_cancel(msg->skb, attrs);
901msg_full:
902 genlmsg_cancel(msg->skb, hdr);
903
904 return -EMSGSIZE;
905}
906
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400907static struct tipc_link *tipc_node_select_link(struct tipc_node *n, int sel,
908 int *bearer_id,
909 struct tipc_media_addr **maddr)
910{
911 int id = n->active_links[sel & 1];
912
913 if (unlikely(id < 0))
914 return NULL;
915
916 *bearer_id = id;
917 *maddr = &n->links[id].maddr;
918 return n->links[id].link;
919}
920
921/**
922 * tipc_node_xmit() is the general link level function for message sending
923 * @net: the applicable net namespace
924 * @list: chain of buffers containing message
925 * @dnode: address of destination node
926 * @selector: a number used for deterministic link selection
927 * Consumes the buffer chain, except when returning -ELINKCONG
928 * Returns 0 if success, otherwise errno: -ELINKCONG,-EHOSTUNREACH,-EMSGSIZE
929 */
930int tipc_node_xmit(struct net *net, struct sk_buff_head *list,
931 u32 dnode, int selector)
932{
933 struct tipc_link *l = NULL;
934 struct tipc_node *n;
935 struct sk_buff_head xmitq;
936 struct tipc_media_addr *maddr;
937 int bearer_id;
938 int rc = -EHOSTUNREACH;
939
940 __skb_queue_head_init(&xmitq);
941 n = tipc_node_find(net, dnode);
942 if (likely(n)) {
943 tipc_node_lock(n);
944 l = tipc_node_select_link(n, selector, &bearer_id, &maddr);
945 if (likely(l))
946 rc = tipc_link_xmit(l, list, &xmitq);
947 if (unlikely(rc == -ENOBUFS))
Jon Paul Maloy655fb242015-07-30 18:24:17 -0400948 tipc_node_link_down(n, bearer_id);
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400949 tipc_node_unlock(n);
950 tipc_node_put(n);
951 }
952 if (likely(!rc)) {
953 tipc_bearer_xmit(net, bearer_id, &xmitq, maddr);
954 return 0;
955 }
956 if (likely(in_own_node(net, dnode))) {
957 tipc_sk_rcv(net, list);
958 return 0;
959 }
960 return rc;
961}
962
963/* tipc_node_xmit_skb(): send single buffer to destination
964 * Buffers sent via this functon are generally TIPC_SYSTEM_IMPORTANCE
965 * messages, which will not be rejected
966 * The only exception is datagram messages rerouted after secondary
967 * lookup, which are rare and safe to dispose of anyway.
968 * TODO: Return real return value, and let callers use
969 * tipc_wait_for_sendpkt() where applicable
970 */
971int tipc_node_xmit_skb(struct net *net, struct sk_buff *skb, u32 dnode,
972 u32 selector)
973{
974 struct sk_buff_head head;
975 int rc;
976
977 skb_queue_head_init(&head);
978 __skb_queue_tail(&head, skb);
979 rc = tipc_node_xmit(net, &head, dnode, selector);
980 if (rc == -ELINKCONG)
981 kfree_skb(skb);
982 return 0;
983}
984
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400985/**
986 * tipc_node_check_state - check and if necessary update node state
987 * @skb: TIPC packet
988 * @bearer_id: identity of bearer delivering the packet
989 * Returns true if state is ok, otherwise consumes buffer and returns false
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400990 */
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400991static bool tipc_node_check_state(struct tipc_node *n, struct sk_buff *skb,
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400992 int bearer_id, struct sk_buff_head *xmitq)
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400993{
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400994 struct tipc_msg *hdr = buf_msg(skb);
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400995 int usr = msg_user(hdr);
996 int mtyp = msg_type(hdr);
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400997 u16 oseqno = msg_seqno(hdr);
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400998 u16 iseqno = msg_seqno(msg_get_wrapped(hdr));
999 u16 exp_pkts = msg_msgcnt(hdr);
1000 u16 rcv_nxt, syncpt, dlv_nxt;
1001 int state = n->state;
1002 struct tipc_link *l, *pl = NULL;
1003 struct sk_buff_head;
1004 int i;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001005
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001006 l = n->links[bearer_id].link;
1007 if (!l)
1008 return false;
1009 rcv_nxt = l->rcv_nxt;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001010
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001011
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001012 if (likely((state == SELF_UP_PEER_UP) && (usr != TUNNEL_PROTOCOL)))
1013 return true;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001014
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001015 /* Find parallel link, if any */
1016 for (i = 0; i < MAX_BEARERS; i++) {
1017 if ((i != bearer_id) && n->links[i].link) {
1018 pl = n->links[i].link;
1019 break;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001020 }
1021 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001022
1023 /* Update node accesibility if applicable */
1024 if (state == SELF_UP_PEER_COMING) {
1025 if (!tipc_link_is_up(l))
1026 return true;
1027 if (!msg_peer_link_is_up(hdr))
1028 return true;
1029 tipc_node_fsm_evt(n, PEER_ESTABL_CONTACT_EVT);
1030 }
1031
1032 if (state == SELF_DOWN_PEER_LEAVING) {
1033 if (msg_peer_node_is_up(hdr))
1034 return false;
1035 tipc_node_fsm_evt(n, PEER_LOST_CONTACT_EVT);
1036 }
1037
1038 /* Ignore duplicate packets */
1039 if (less(oseqno, rcv_nxt))
1040 return true;
1041
1042 /* Initiate or update failover mode if applicable */
1043 if ((usr == TUNNEL_PROTOCOL) && (mtyp == FAILOVER_MSG)) {
1044 syncpt = oseqno + exp_pkts - 1;
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001045 if (pl && tipc_link_is_up(pl))
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001046 tipc_node_link_down(n, pl->bearer_id);
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001047
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001048 /* 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 */
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001054 if ((n->state == NODE_FAILINGOVER) && !tipc_link_is_failingover(l)) {
1055 if (!more(rcv_nxt, n->sync_point))
1056 return true;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001057 tipc_node_fsm_evt(n, NODE_FAILOVER_END_EVT);
1058 if (pl)
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001059 tipc_link_fsm_evt(pl, LINK_FAILOVER_END_EVT);
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001060 return true;
1061 }
1062
1063 /* Initiate or update synch mode if applicable */
1064 if ((usr == TUNNEL_PROTOCOL) && (mtyp == SYNCH_MSG)) {
1065 syncpt = iseqno + exp_pkts - 1;
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001066 if (!tipc_link_is_up(l)) {
1067 tipc_link_fsm_evt(l, LINK_ESTABLISH_EVT);
1068 tipc_node_link_up(n, bearer_id, xmitq);
1069 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001070 if (n->state == SELF_UP_PEER_UP) {
1071 n->sync_point = syncpt;
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001072 tipc_link_fsm_evt(l, LINK_SYNCH_BEGIN_EVT);
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001073 tipc_node_fsm_evt(n, NODE_SYNCH_BEGIN_EVT);
1074 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001075 if (less(syncpt, n->sync_point))
1076 n->sync_point = syncpt;
1077 }
1078
1079 /* Open tunnel link when parallel link reaches synch point */
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001080 if ((n->state == NODE_SYNCHING) && tipc_link_is_synching(l)) {
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001081 if (pl)
1082 dlv_nxt = mod(pl->rcv_nxt - skb_queue_len(pl->inputq));
1083 if (!pl || more(dlv_nxt, n->sync_point)) {
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001084 tipc_link_fsm_evt(l, LINK_SYNCH_END_EVT);
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001085 tipc_node_fsm_evt(n, NODE_SYNCH_END_EVT);
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001086 return true;
1087 }
1088 if ((usr == TUNNEL_PROTOCOL) && (mtyp == SYNCH_MSG))
1089 return true;
1090 if (usr == LINK_PROTOCOL)
1091 return true;
1092 return false;
1093 }
1094 return true;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001095}
1096
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001097/**
1098 * tipc_rcv - process TIPC packets/messages arriving from off-node
1099 * @net: the applicable net namespace
1100 * @skb: TIPC packet
1101 * @bearer: pointer to bearer message arrived on
1102 *
1103 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1104 * structure (i.e. cannot be NULL), but bearer can be inactive.
1105 */
1106void tipc_rcv(struct net *net, struct sk_buff *skb, struct tipc_bearer *b)
1107{
1108 struct sk_buff_head xmitq;
1109 struct tipc_node *n;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001110 struct tipc_msg *hdr = buf_msg(skb);
1111 int usr = msg_user(hdr);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001112 int bearer_id = b->identity;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001113 struct tipc_link_entry *le;
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001114 int rc = 0;
1115
1116 __skb_queue_head_init(&xmitq);
1117
1118 /* Ensure message is well-formed */
1119 if (unlikely(!tipc_msg_validate(skb)))
1120 goto discard;
1121
1122 /* Handle arrival of a non-unicast link packet */
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001123 if (unlikely(msg_non_seq(hdr))) {
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001124 if (usr == LINK_CONFIG)
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001125 tipc_disc_rcv(net, skb, b);
1126 else
1127 tipc_bclink_rcv(net, skb);
1128 return;
1129 }
1130
1131 /* Locate neighboring node that sent packet */
1132 n = tipc_node_find(net, msg_prevnode(hdr));
1133 if (unlikely(!n))
1134 goto discard;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001135 le = &n->links[bearer_id];
1136
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001137 tipc_node_lock(n);
1138
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001139 /* Is reception permitted at the moment ? */
1140 if (!tipc_node_filter_pkt(n, hdr))
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001141 goto unlock;
1142
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001143 if (unlikely(msg_user(hdr) == LINK_PROTOCOL))
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001144 tipc_bclink_sync_state(n, hdr);
1145
1146 /* Release acked broadcast messages */
1147 if (unlikely(n->bclink.acked != msg_bcast_ack(hdr)))
1148 tipc_bclink_acknowledge(n, msg_bcast_ack(hdr));
1149
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001150 /* Check and if necessary update node state */
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001151 if (likely(tipc_node_check_state(n, skb, bearer_id, &xmitq))) {
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001152 rc = tipc_link_rcv(le->link, skb, &xmitq);
1153 skb = NULL;
1154 }
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001155
1156 if (unlikely(rc & TIPC_LINK_UP_EVT))
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001157 tipc_node_link_up(n, bearer_id, &xmitq);
1158
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001159 if (unlikely(rc & TIPC_LINK_DOWN_EVT))
Jon Paul Maloy655fb242015-07-30 18:24:17 -04001160 tipc_node_link_down(n, bearer_id);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001161unlock:
1162 tipc_node_unlock(n);
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001163
1164 if (!skb_queue_empty(&le->inputq))
1165 tipc_sk_rcv(net, &le->inputq);
1166
1167 if (!skb_queue_empty(&xmitq))
1168 tipc_bearer_xmit(net, bearer_id, &xmitq, &le->maddr);
1169
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001170 tipc_node_put(n);
1171discard:
1172 kfree_skb(skb);
1173}
1174
Richard Alpe3e4b6ab2014-11-20 10:29:17 +01001175int tipc_nl_node_dump(struct sk_buff *skb, struct netlink_callback *cb)
1176{
1177 int err;
Ying Xuef2f98002015-01-09 15:27:05 +08001178 struct net *net = sock_net(skb->sk);
1179 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe3e4b6ab2014-11-20 10:29:17 +01001180 int done = cb->args[0];
1181 int last_addr = cb->args[1];
1182 struct tipc_node *node;
1183 struct tipc_nl_msg msg;
1184
1185 if (done)
1186 return 0;
1187
1188 msg.skb = skb;
1189 msg.portid = NETLINK_CB(cb->skb).portid;
1190 msg.seq = cb->nlh->nlmsg_seq;
1191
1192 rcu_read_lock();
Ying Xue8a0f6eb2015-03-26 18:10:24 +08001193 if (last_addr) {
1194 node = tipc_node_find(net, last_addr);
1195 if (!node) {
1196 rcu_read_unlock();
1197 /* We never set seq or call nl_dump_check_consistent()
1198 * this means that setting prev_seq here will cause the
1199 * consistence check to fail in the netlink callback
1200 * handler. Resulting in the NLMSG_DONE message having
1201 * the NLM_F_DUMP_INTR flag set if the node state
1202 * changed while we released the lock.
1203 */
1204 cb->prev_seq = 1;
1205 return -EPIPE;
1206 }
1207 tipc_node_put(node);
Richard Alpe3e4b6ab2014-11-20 10:29:17 +01001208 }
1209
Ying Xuef2f98002015-01-09 15:27:05 +08001210 list_for_each_entry_rcu(node, &tn->node_list, list) {
Richard Alpe3e4b6ab2014-11-20 10:29:17 +01001211 if (last_addr) {
1212 if (node->addr == last_addr)
1213 last_addr = 0;
1214 else
1215 continue;
1216 }
1217
1218 tipc_node_lock(node);
1219 err = __tipc_nl_add_node(&msg, node);
1220 if (err) {
1221 last_addr = node->addr;
1222 tipc_node_unlock(node);
1223 goto out;
1224 }
1225
1226 tipc_node_unlock(node);
1227 }
1228 done = 1;
1229out:
1230 cb->args[0] = done;
1231 cb->args[1] = last_addr;
1232 rcu_read_unlock();
1233
1234 return skb->len;
1235}