xref: /openbmc/linux/net/tipc/node.c (revision bf8981a2aa082d9d64771b47c8a1c9c388d8cd40)
1 /*
2  * net/tipc/node.c: TIPC node management routines
3  *
4  * Copyright (c) 2000-2006, 2012-2016, Ericsson AB
5  * Copyright (c) 2005-2006, 2010-2014, Wind River Systems
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the names of the copyright holders nor the names of its
17  *    contributors may be used to endorse or promote products derived from
18  *    this software without specific prior written permission.
19  *
20  * Alternatively, this software may be distributed under the terms of the
21  * GNU General Public License ("GPL") version 2 as published by the Free
22  * Software Foundation.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34  * POSSIBILITY OF SUCH DAMAGE.
35  */
36 
37 #include "core.h"
38 #include "link.h"
39 #include "node.h"
40 #include "name_distr.h"
41 #include "socket.h"
42 #include "bcast.h"
43 #include "monitor.h"
44 #include "discover.h"
45 #include "netlink.h"
46 #include "trace.h"
47 
48 #define INVALID_NODE_SIG	0x10000
49 #define NODE_CLEANUP_AFTER	300000
50 
51 /* Flags used to take different actions according to flag type
52  * TIPC_NOTIFY_NODE_DOWN: notify node is down
53  * TIPC_NOTIFY_NODE_UP: notify node is up
54  * TIPC_DISTRIBUTE_NAME: publish or withdraw link state name type
55  */
56 enum {
57 	TIPC_NOTIFY_NODE_DOWN		= (1 << 3),
58 	TIPC_NOTIFY_NODE_UP		= (1 << 4),
59 	TIPC_NOTIFY_LINK_UP		= (1 << 6),
60 	TIPC_NOTIFY_LINK_DOWN		= (1 << 7)
61 };
62 
63 struct tipc_link_entry {
64 	struct tipc_link *link;
65 	spinlock_t lock; /* per link */
66 	u32 mtu;
67 	struct sk_buff_head inputq;
68 	struct tipc_media_addr maddr;
69 };
70 
71 struct tipc_bclink_entry {
72 	struct tipc_link *link;
73 	struct sk_buff_head inputq1;
74 	struct sk_buff_head arrvq;
75 	struct sk_buff_head inputq2;
76 	struct sk_buff_head namedq;
77 };
78 
79 /**
80  * struct tipc_node - TIPC node structure
81  * @addr: network address of node
82  * @ref: reference counter to node object
83  * @lock: rwlock governing access to structure
84  * @net: the applicable net namespace
85  * @hash: links to adjacent nodes in unsorted hash chain
86  * @inputq: pointer to input queue containing messages for msg event
87  * @namedq: pointer to name table input queue with name table messages
88  * @active_links: bearer ids of active links, used as index into links[] array
89  * @links: array containing references to all links to node
90  * @action_flags: bit mask of different types of node actions
91  * @state: connectivity state vs peer node
92  * @sync_point: sequence number where synch/failover is finished
93  * @list: links to adjacent nodes in sorted list of cluster's nodes
94  * @working_links: number of working links to node (both active and standby)
95  * @link_cnt: number of links to node
96  * @capabilities: bitmap, indicating peer node's functional capabilities
97  * @signature: node instance identifier
98  * @link_id: local and remote bearer ids of changing link, if any
99  * @publ_list: list of publications
100  * @rcu: rcu struct for tipc_node
101  * @delete_at: indicates the time for deleting a down node
102  */
103 struct tipc_node {
104 	u32 addr;
105 	struct kref kref;
106 	rwlock_t lock;
107 	struct net *net;
108 	struct hlist_node hash;
109 	int active_links[2];
110 	struct tipc_link_entry links[MAX_BEARERS];
111 	struct tipc_bclink_entry bc_entry;
112 	int action_flags;
113 	struct list_head list;
114 	int state;
115 	bool failover_sent;
116 	u16 sync_point;
117 	int link_cnt;
118 	u16 working_links;
119 	u16 capabilities;
120 	u32 signature;
121 	u32 link_id;
122 	u8 peer_id[16];
123 	struct list_head publ_list;
124 	struct list_head conn_sks;
125 	unsigned long keepalive_intv;
126 	struct timer_list timer;
127 	struct rcu_head rcu;
128 	unsigned long delete_at;
129 };
130 
131 /* Node FSM states and events:
132  */
133 enum {
134 	SELF_DOWN_PEER_DOWN    = 0xdd,
135 	SELF_UP_PEER_UP        = 0xaa,
136 	SELF_DOWN_PEER_LEAVING = 0xd1,
137 	SELF_UP_PEER_COMING    = 0xac,
138 	SELF_COMING_PEER_UP    = 0xca,
139 	SELF_LEAVING_PEER_DOWN = 0x1d,
140 	NODE_FAILINGOVER       = 0xf0,
141 	NODE_SYNCHING          = 0xcc
142 };
143 
144 enum {
145 	SELF_ESTABL_CONTACT_EVT = 0xece,
146 	SELF_LOST_CONTACT_EVT   = 0x1ce,
147 	PEER_ESTABL_CONTACT_EVT = 0x9ece,
148 	PEER_LOST_CONTACT_EVT   = 0x91ce,
149 	NODE_FAILOVER_BEGIN_EVT = 0xfbe,
150 	NODE_FAILOVER_END_EVT   = 0xfee,
151 	NODE_SYNCH_BEGIN_EVT    = 0xcbe,
152 	NODE_SYNCH_END_EVT      = 0xcee
153 };
154 
155 static void __tipc_node_link_down(struct tipc_node *n, int *bearer_id,
156 				  struct sk_buff_head *xmitq,
157 				  struct tipc_media_addr **maddr);
158 static void tipc_node_link_down(struct tipc_node *n, int bearer_id,
159 				bool delete);
160 static void node_lost_contact(struct tipc_node *n, struct sk_buff_head *inputq);
161 static void tipc_node_delete(struct tipc_node *node);
162 static void tipc_node_timeout(struct timer_list *t);
163 static void tipc_node_fsm_evt(struct tipc_node *n, int evt);
164 static struct tipc_node *tipc_node_find(struct net *net, u32 addr);
165 static struct tipc_node *tipc_node_find_by_id(struct net *net, u8 *id);
166 static void tipc_node_put(struct tipc_node *node);
167 static bool node_is_up(struct tipc_node *n);
168 static void tipc_node_delete_from_list(struct tipc_node *node);
169 
170 struct tipc_sock_conn {
171 	u32 port;
172 	u32 peer_port;
173 	u32 peer_node;
174 	struct list_head list;
175 };
176 
177 static struct tipc_link *node_active_link(struct tipc_node *n, int sel)
178 {
179 	int bearer_id = n->active_links[sel & 1];
180 
181 	if (unlikely(bearer_id == INVALID_BEARER_ID))
182 		return NULL;
183 
184 	return n->links[bearer_id].link;
185 }
186 
187 int tipc_node_get_mtu(struct net *net, u32 addr, u32 sel)
188 {
189 	struct tipc_node *n;
190 	int bearer_id;
191 	unsigned int mtu = MAX_MSG_SIZE;
192 
193 	n = tipc_node_find(net, addr);
194 	if (unlikely(!n))
195 		return mtu;
196 
197 	bearer_id = n->active_links[sel & 1];
198 	if (likely(bearer_id != INVALID_BEARER_ID))
199 		mtu = n->links[bearer_id].mtu;
200 	tipc_node_put(n);
201 	return mtu;
202 }
203 
204 bool tipc_node_get_id(struct net *net, u32 addr, u8 *id)
205 {
206 	u8 *own_id = tipc_own_id(net);
207 	struct tipc_node *n;
208 
209 	if (!own_id)
210 		return true;
211 
212 	if (addr == tipc_own_addr(net)) {
213 		memcpy(id, own_id, TIPC_NODEID_LEN);
214 		return true;
215 	}
216 	n = tipc_node_find(net, addr);
217 	if (!n)
218 		return false;
219 
220 	memcpy(id, &n->peer_id, TIPC_NODEID_LEN);
221 	tipc_node_put(n);
222 	return true;
223 }
224 
225 u16 tipc_node_get_capabilities(struct net *net, u32 addr)
226 {
227 	struct tipc_node *n;
228 	u16 caps;
229 
230 	n = tipc_node_find(net, addr);
231 	if (unlikely(!n))
232 		return TIPC_NODE_CAPABILITIES;
233 	caps = n->capabilities;
234 	tipc_node_put(n);
235 	return caps;
236 }
237 
238 static void tipc_node_kref_release(struct kref *kref)
239 {
240 	struct tipc_node *n = container_of(kref, struct tipc_node, kref);
241 
242 	kfree(n->bc_entry.link);
243 	kfree_rcu(n, rcu);
244 }
245 
246 static void tipc_node_put(struct tipc_node *node)
247 {
248 	kref_put(&node->kref, tipc_node_kref_release);
249 }
250 
251 static void tipc_node_get(struct tipc_node *node)
252 {
253 	kref_get(&node->kref);
254 }
255 
256 /*
257  * tipc_node_find - locate specified node object, if it exists
258  */
259 static struct tipc_node *tipc_node_find(struct net *net, u32 addr)
260 {
261 	struct tipc_net *tn = tipc_net(net);
262 	struct tipc_node *node;
263 	unsigned int thash = tipc_hashfn(addr);
264 
265 	rcu_read_lock();
266 	hlist_for_each_entry_rcu(node, &tn->node_htable[thash], hash) {
267 		if (node->addr != addr)
268 			continue;
269 		if (!kref_get_unless_zero(&node->kref))
270 			node = NULL;
271 		break;
272 	}
273 	rcu_read_unlock();
274 	return node;
275 }
276 
277 /* tipc_node_find_by_id - locate specified node object by its 128-bit id
278  * Note: this function is called only when a discovery request failed
279  * to find the node by its 32-bit id, and is not time critical
280  */
281 static struct tipc_node *tipc_node_find_by_id(struct net *net, u8 *id)
282 {
283 	struct tipc_net *tn = tipc_net(net);
284 	struct tipc_node *n;
285 	bool found = false;
286 
287 	rcu_read_lock();
288 	list_for_each_entry_rcu(n, &tn->node_list, list) {
289 		read_lock_bh(&n->lock);
290 		if (!memcmp(id, n->peer_id, 16) &&
291 		    kref_get_unless_zero(&n->kref))
292 			found = true;
293 		read_unlock_bh(&n->lock);
294 		if (found)
295 			break;
296 	}
297 	rcu_read_unlock();
298 	return found ? n : NULL;
299 }
300 
301 static void tipc_node_read_lock(struct tipc_node *n)
302 {
303 	read_lock_bh(&n->lock);
304 }
305 
306 static void tipc_node_read_unlock(struct tipc_node *n)
307 {
308 	read_unlock_bh(&n->lock);
309 }
310 
311 static void tipc_node_write_lock(struct tipc_node *n)
312 {
313 	write_lock_bh(&n->lock);
314 }
315 
316 static void tipc_node_write_unlock_fast(struct tipc_node *n)
317 {
318 	write_unlock_bh(&n->lock);
319 }
320 
321 static void tipc_node_write_unlock(struct tipc_node *n)
322 {
323 	struct net *net = n->net;
324 	u32 addr = 0;
325 	u32 flags = n->action_flags;
326 	u32 link_id = 0;
327 	u32 bearer_id;
328 	struct list_head *publ_list;
329 
330 	if (likely(!flags)) {
331 		write_unlock_bh(&n->lock);
332 		return;
333 	}
334 
335 	addr = n->addr;
336 	link_id = n->link_id;
337 	bearer_id = link_id & 0xffff;
338 	publ_list = &n->publ_list;
339 
340 	n->action_flags &= ~(TIPC_NOTIFY_NODE_DOWN | TIPC_NOTIFY_NODE_UP |
341 			     TIPC_NOTIFY_LINK_DOWN | TIPC_NOTIFY_LINK_UP);
342 
343 	write_unlock_bh(&n->lock);
344 
345 	if (flags & TIPC_NOTIFY_NODE_DOWN)
346 		tipc_publ_notify(net, publ_list, addr);
347 
348 	if (flags & TIPC_NOTIFY_NODE_UP)
349 		tipc_named_node_up(net, addr);
350 
351 	if (flags & TIPC_NOTIFY_LINK_UP) {
352 		tipc_mon_peer_up(net, addr, bearer_id);
353 		tipc_nametbl_publish(net, TIPC_LINK_STATE, addr, addr,
354 				     TIPC_NODE_SCOPE, link_id, link_id);
355 	}
356 	if (flags & TIPC_NOTIFY_LINK_DOWN) {
357 		tipc_mon_peer_down(net, addr, bearer_id);
358 		tipc_nametbl_withdraw(net, TIPC_LINK_STATE, addr,
359 				      addr, link_id);
360 	}
361 }
362 
363 static struct tipc_node *tipc_node_create(struct net *net, u32 addr,
364 					  u8 *peer_id, u16 capabilities)
365 {
366 	struct tipc_net *tn = net_generic(net, tipc_net_id);
367 	struct tipc_node *n, *temp_node;
368 	struct tipc_link *l;
369 	int bearer_id;
370 	int i;
371 
372 	spin_lock_bh(&tn->node_list_lock);
373 	n = tipc_node_find(net, addr);
374 	if (n) {
375 		if (n->capabilities == capabilities)
376 			goto exit;
377 		/* Same node may come back with new capabilities */
378 		write_lock_bh(&n->lock);
379 		n->capabilities = capabilities;
380 		for (bearer_id = 0; bearer_id < MAX_BEARERS; bearer_id++) {
381 			l = n->links[bearer_id].link;
382 			if (l)
383 				tipc_link_update_caps(l, capabilities);
384 		}
385 		write_unlock_bh(&n->lock);
386 		/* Calculate cluster capabilities */
387 		tn->capabilities = TIPC_NODE_CAPABILITIES;
388 		list_for_each_entry_rcu(temp_node, &tn->node_list, list) {
389 			tn->capabilities &= temp_node->capabilities;
390 		}
391 		goto exit;
392 	}
393 	n = kzalloc(sizeof(*n), GFP_ATOMIC);
394 	if (!n) {
395 		pr_warn("Node creation failed, no memory\n");
396 		goto exit;
397 	}
398 	n->addr = addr;
399 	memcpy(&n->peer_id, peer_id, 16);
400 	n->net = net;
401 	n->capabilities = capabilities;
402 	kref_init(&n->kref);
403 	rwlock_init(&n->lock);
404 	INIT_HLIST_NODE(&n->hash);
405 	INIT_LIST_HEAD(&n->list);
406 	INIT_LIST_HEAD(&n->publ_list);
407 	INIT_LIST_HEAD(&n->conn_sks);
408 	skb_queue_head_init(&n->bc_entry.namedq);
409 	skb_queue_head_init(&n->bc_entry.inputq1);
410 	__skb_queue_head_init(&n->bc_entry.arrvq);
411 	skb_queue_head_init(&n->bc_entry.inputq2);
412 	for (i = 0; i < MAX_BEARERS; i++)
413 		spin_lock_init(&n->links[i].lock);
414 	n->state = SELF_DOWN_PEER_LEAVING;
415 	n->delete_at = jiffies + msecs_to_jiffies(NODE_CLEANUP_AFTER);
416 	n->signature = INVALID_NODE_SIG;
417 	n->active_links[0] = INVALID_BEARER_ID;
418 	n->active_links[1] = INVALID_BEARER_ID;
419 	if (!tipc_link_bc_create(net, tipc_own_addr(net),
420 				 addr, U16_MAX,
421 				 tipc_link_window(tipc_bc_sndlink(net)),
422 				 n->capabilities,
423 				 &n->bc_entry.inputq1,
424 				 &n->bc_entry.namedq,
425 				 tipc_bc_sndlink(net),
426 				 &n->bc_entry.link)) {
427 		pr_warn("Broadcast rcv link creation failed, no memory\n");
428 		kfree(n);
429 		n = NULL;
430 		goto exit;
431 	}
432 	tipc_node_get(n);
433 	timer_setup(&n->timer, tipc_node_timeout, 0);
434 	n->keepalive_intv = U32_MAX;
435 	hlist_add_head_rcu(&n->hash, &tn->node_htable[tipc_hashfn(addr)]);
436 	list_for_each_entry_rcu(temp_node, &tn->node_list, list) {
437 		if (n->addr < temp_node->addr)
438 			break;
439 	}
440 	list_add_tail_rcu(&n->list, &temp_node->list);
441 	/* Calculate cluster capabilities */
442 	tn->capabilities = TIPC_NODE_CAPABILITIES;
443 	list_for_each_entry_rcu(temp_node, &tn->node_list, list) {
444 		tn->capabilities &= temp_node->capabilities;
445 	}
446 	trace_tipc_node_create(n, true, " ");
447 exit:
448 	spin_unlock_bh(&tn->node_list_lock);
449 	return n;
450 }
451 
452 static void tipc_node_calculate_timer(struct tipc_node *n, struct tipc_link *l)
453 {
454 	unsigned long tol = tipc_link_tolerance(l);
455 	unsigned long intv = ((tol / 4) > 500) ? 500 : tol / 4;
456 
457 	/* Link with lowest tolerance determines timer interval */
458 	if (intv < n->keepalive_intv)
459 		n->keepalive_intv = intv;
460 
461 	/* Ensure link's abort limit corresponds to current tolerance */
462 	tipc_link_set_abort_limit(l, tol / n->keepalive_intv);
463 }
464 
465 static void tipc_node_delete_from_list(struct tipc_node *node)
466 {
467 	list_del_rcu(&node->list);
468 	hlist_del_rcu(&node->hash);
469 	tipc_node_put(node);
470 }
471 
472 static void tipc_node_delete(struct tipc_node *node)
473 {
474 	trace_tipc_node_delete(node, true, " ");
475 	tipc_node_delete_from_list(node);
476 
477 	del_timer_sync(&node->timer);
478 	tipc_node_put(node);
479 }
480 
481 void tipc_node_stop(struct net *net)
482 {
483 	struct tipc_net *tn = tipc_net(net);
484 	struct tipc_node *node, *t_node;
485 
486 	spin_lock_bh(&tn->node_list_lock);
487 	list_for_each_entry_safe(node, t_node, &tn->node_list, list)
488 		tipc_node_delete(node);
489 	spin_unlock_bh(&tn->node_list_lock);
490 }
491 
492 void tipc_node_subscribe(struct net *net, struct list_head *subscr, u32 addr)
493 {
494 	struct tipc_node *n;
495 
496 	if (in_own_node(net, addr))
497 		return;
498 
499 	n = tipc_node_find(net, addr);
500 	if (!n) {
501 		pr_warn("Node subscribe rejected, unknown node 0x%x\n", addr);
502 		return;
503 	}
504 	tipc_node_write_lock(n);
505 	list_add_tail(subscr, &n->publ_list);
506 	tipc_node_write_unlock_fast(n);
507 	tipc_node_put(n);
508 }
509 
510 void tipc_node_unsubscribe(struct net *net, struct list_head *subscr, u32 addr)
511 {
512 	struct tipc_node *n;
513 
514 	if (in_own_node(net, addr))
515 		return;
516 
517 	n = tipc_node_find(net, addr);
518 	if (!n) {
519 		pr_warn("Node unsubscribe rejected, unknown node 0x%x\n", addr);
520 		return;
521 	}
522 	tipc_node_write_lock(n);
523 	list_del_init(subscr);
524 	tipc_node_write_unlock_fast(n);
525 	tipc_node_put(n);
526 }
527 
528 int tipc_node_add_conn(struct net *net, u32 dnode, u32 port, u32 peer_port)
529 {
530 	struct tipc_node *node;
531 	struct tipc_sock_conn *conn;
532 	int err = 0;
533 
534 	if (in_own_node(net, dnode))
535 		return 0;
536 
537 	node = tipc_node_find(net, dnode);
538 	if (!node) {
539 		pr_warn("Connecting sock to node 0x%x failed\n", dnode);
540 		return -EHOSTUNREACH;
541 	}
542 	conn = kmalloc(sizeof(*conn), GFP_ATOMIC);
543 	if (!conn) {
544 		err = -EHOSTUNREACH;
545 		goto exit;
546 	}
547 	conn->peer_node = dnode;
548 	conn->port = port;
549 	conn->peer_port = peer_port;
550 
551 	tipc_node_write_lock(node);
552 	list_add_tail(&conn->list, &node->conn_sks);
553 	tipc_node_write_unlock(node);
554 exit:
555 	tipc_node_put(node);
556 	return err;
557 }
558 
559 void tipc_node_remove_conn(struct net *net, u32 dnode, u32 port)
560 {
561 	struct tipc_node *node;
562 	struct tipc_sock_conn *conn, *safe;
563 
564 	if (in_own_node(net, dnode))
565 		return;
566 
567 	node = tipc_node_find(net, dnode);
568 	if (!node)
569 		return;
570 
571 	tipc_node_write_lock(node);
572 	list_for_each_entry_safe(conn, safe, &node->conn_sks, list) {
573 		if (port != conn->port)
574 			continue;
575 		list_del(&conn->list);
576 		kfree(conn);
577 	}
578 	tipc_node_write_unlock(node);
579 	tipc_node_put(node);
580 }
581 
582 static void  tipc_node_clear_links(struct tipc_node *node)
583 {
584 	int i;
585 
586 	for (i = 0; i < MAX_BEARERS; i++) {
587 		struct tipc_link_entry *le = &node->links[i];
588 
589 		if (le->link) {
590 			kfree(le->link);
591 			le->link = NULL;
592 			node->link_cnt--;
593 		}
594 	}
595 }
596 
597 /* tipc_node_cleanup - delete nodes that does not
598  * have active links for NODE_CLEANUP_AFTER time
599  */
600 static bool tipc_node_cleanup(struct tipc_node *peer)
601 {
602 	struct tipc_node *temp_node;
603 	struct tipc_net *tn = tipc_net(peer->net);
604 	bool deleted = false;
605 
606 	/* If lock held by tipc_node_stop() the node will be deleted anyway */
607 	if (!spin_trylock_bh(&tn->node_list_lock))
608 		return false;
609 
610 	tipc_node_write_lock(peer);
611 
612 	if (!node_is_up(peer) && time_after(jiffies, peer->delete_at)) {
613 		tipc_node_clear_links(peer);
614 		tipc_node_delete_from_list(peer);
615 		deleted = true;
616 	}
617 	tipc_node_write_unlock(peer);
618 
619 	/* Calculate cluster capabilities */
620 	tn->capabilities = TIPC_NODE_CAPABILITIES;
621 	list_for_each_entry_rcu(temp_node, &tn->node_list, list) {
622 		tn->capabilities &= temp_node->capabilities;
623 	}
624 
625 	spin_unlock_bh(&tn->node_list_lock);
626 	return deleted;
627 }
628 
629 /* tipc_node_timeout - handle expiration of node timer
630  */
631 static void tipc_node_timeout(struct timer_list *t)
632 {
633 	struct tipc_node *n = from_timer(n, t, timer);
634 	struct tipc_link_entry *le;
635 	struct sk_buff_head xmitq;
636 	int remains = n->link_cnt;
637 	int bearer_id;
638 	int rc = 0;
639 
640 	trace_tipc_node_timeout(n, false, " ");
641 	if (!node_is_up(n) && tipc_node_cleanup(n)) {
642 		/*Removing the reference of Timer*/
643 		tipc_node_put(n);
644 		return;
645 	}
646 
647 	__skb_queue_head_init(&xmitq);
648 
649 	/* Initial node interval to value larger (10 seconds), then it will be
650 	 * recalculated with link lowest tolerance
651 	 */
652 	tipc_node_read_lock(n);
653 	n->keepalive_intv = 10000;
654 	tipc_node_read_unlock(n);
655 	for (bearer_id = 0; remains && (bearer_id < MAX_BEARERS); bearer_id++) {
656 		tipc_node_read_lock(n);
657 		le = &n->links[bearer_id];
658 		if (le->link) {
659 			spin_lock_bh(&le->lock);
660 			/* Link tolerance may change asynchronously: */
661 			tipc_node_calculate_timer(n, le->link);
662 			rc = tipc_link_timeout(le->link, &xmitq);
663 			spin_unlock_bh(&le->lock);
664 			remains--;
665 		}
666 		tipc_node_read_unlock(n);
667 		tipc_bearer_xmit(n->net, bearer_id, &xmitq, &le->maddr);
668 		if (rc & TIPC_LINK_DOWN_EVT)
669 			tipc_node_link_down(n, bearer_id, false);
670 	}
671 	mod_timer(&n->timer, jiffies + msecs_to_jiffies(n->keepalive_intv));
672 }
673 
674 /**
675  * __tipc_node_link_up - handle addition of link
676  * Node lock must be held by caller
677  * Link becomes active (alone or shared) or standby, depending on its priority.
678  */
679 static void __tipc_node_link_up(struct tipc_node *n, int bearer_id,
680 				struct sk_buff_head *xmitq)
681 {
682 	int *slot0 = &n->active_links[0];
683 	int *slot1 = &n->active_links[1];
684 	struct tipc_link *ol = node_active_link(n, 0);
685 	struct tipc_link *nl = n->links[bearer_id].link;
686 
687 	if (!nl || tipc_link_is_up(nl))
688 		return;
689 
690 	tipc_link_fsm_evt(nl, LINK_ESTABLISH_EVT);
691 	if (!tipc_link_is_up(nl))
692 		return;
693 
694 	n->working_links++;
695 	n->action_flags |= TIPC_NOTIFY_LINK_UP;
696 	n->link_id = tipc_link_id(nl);
697 
698 	/* Leave room for tunnel header when returning 'mtu' to users: */
699 	n->links[bearer_id].mtu = tipc_link_mtu(nl) - INT_H_SIZE;
700 
701 	tipc_bearer_add_dest(n->net, bearer_id, n->addr);
702 	tipc_bcast_inc_bearer_dst_cnt(n->net, bearer_id);
703 
704 	pr_debug("Established link <%s> on network plane %c\n",
705 		 tipc_link_name(nl), tipc_link_plane(nl));
706 	trace_tipc_node_link_up(n, true, " ");
707 
708 	/* Ensure that a STATE message goes first */
709 	tipc_link_build_state_msg(nl, xmitq);
710 
711 	/* First link? => give it both slots */
712 	if (!ol) {
713 		*slot0 = bearer_id;
714 		*slot1 = bearer_id;
715 		tipc_node_fsm_evt(n, SELF_ESTABL_CONTACT_EVT);
716 		n->failover_sent = false;
717 		n->action_flags |= TIPC_NOTIFY_NODE_UP;
718 		tipc_link_set_active(nl, true);
719 		tipc_bcast_add_peer(n->net, nl, xmitq);
720 		return;
721 	}
722 
723 	/* Second link => redistribute slots */
724 	if (tipc_link_prio(nl) > tipc_link_prio(ol)) {
725 		pr_debug("Old link <%s> becomes standby\n", tipc_link_name(ol));
726 		*slot0 = bearer_id;
727 		*slot1 = bearer_id;
728 		tipc_link_set_active(nl, true);
729 		tipc_link_set_active(ol, false);
730 	} else if (tipc_link_prio(nl) == tipc_link_prio(ol)) {
731 		tipc_link_set_active(nl, true);
732 		*slot1 = bearer_id;
733 	} else {
734 		pr_debug("New link <%s> is standby\n", tipc_link_name(nl));
735 	}
736 
737 	/* Prepare synchronization with first link */
738 	tipc_link_tnl_prepare(ol, nl, SYNCH_MSG, xmitq);
739 }
740 
741 /**
742  * tipc_node_link_up - handle addition of link
743  *
744  * Link becomes active (alone or shared) or standby, depending on its priority.
745  */
746 static void tipc_node_link_up(struct tipc_node *n, int bearer_id,
747 			      struct sk_buff_head *xmitq)
748 {
749 	struct tipc_media_addr *maddr;
750 
751 	tipc_node_write_lock(n);
752 	__tipc_node_link_up(n, bearer_id, xmitq);
753 	maddr = &n->links[bearer_id].maddr;
754 	tipc_bearer_xmit(n->net, bearer_id, xmitq, maddr);
755 	tipc_node_write_unlock(n);
756 }
757 
758 /**
759  * __tipc_node_link_down - handle loss of link
760  */
761 static void __tipc_node_link_down(struct tipc_node *n, int *bearer_id,
762 				  struct sk_buff_head *xmitq,
763 				  struct tipc_media_addr **maddr)
764 {
765 	struct tipc_link_entry *le = &n->links[*bearer_id];
766 	int *slot0 = &n->active_links[0];
767 	int *slot1 = &n->active_links[1];
768 	int i, highest = 0, prio;
769 	struct tipc_link *l, *_l, *tnl;
770 
771 	l = n->links[*bearer_id].link;
772 	if (!l || tipc_link_is_reset(l))
773 		return;
774 
775 	n->working_links--;
776 	n->action_flags |= TIPC_NOTIFY_LINK_DOWN;
777 	n->link_id = tipc_link_id(l);
778 
779 	tipc_bearer_remove_dest(n->net, *bearer_id, n->addr);
780 
781 	pr_debug("Lost link <%s> on network plane %c\n",
782 		 tipc_link_name(l), tipc_link_plane(l));
783 
784 	/* Select new active link if any available */
785 	*slot0 = INVALID_BEARER_ID;
786 	*slot1 = INVALID_BEARER_ID;
787 	for (i = 0; i < MAX_BEARERS; i++) {
788 		_l = n->links[i].link;
789 		if (!_l || !tipc_link_is_up(_l))
790 			continue;
791 		if (_l == l)
792 			continue;
793 		prio = tipc_link_prio(_l);
794 		if (prio < highest)
795 			continue;
796 		if (prio > highest) {
797 			highest = prio;
798 			*slot0 = i;
799 			*slot1 = i;
800 			continue;
801 		}
802 		*slot1 = i;
803 	}
804 
805 	if (!node_is_up(n)) {
806 		if (tipc_link_peer_is_down(l))
807 			tipc_node_fsm_evt(n, PEER_LOST_CONTACT_EVT);
808 		tipc_node_fsm_evt(n, SELF_LOST_CONTACT_EVT);
809 		trace_tipc_link_reset(l, TIPC_DUMP_ALL, "link down!");
810 		tipc_link_fsm_evt(l, LINK_RESET_EVT);
811 		tipc_link_reset(l);
812 		tipc_link_build_reset_msg(l, xmitq);
813 		*maddr = &n->links[*bearer_id].maddr;
814 		node_lost_contact(n, &le->inputq);
815 		tipc_bcast_dec_bearer_dst_cnt(n->net, *bearer_id);
816 		return;
817 	}
818 	tipc_bcast_dec_bearer_dst_cnt(n->net, *bearer_id);
819 
820 	/* There is still a working link => initiate failover */
821 	*bearer_id = n->active_links[0];
822 	tnl = n->links[*bearer_id].link;
823 	tipc_link_fsm_evt(tnl, LINK_SYNCH_END_EVT);
824 	tipc_node_fsm_evt(n, NODE_SYNCH_END_EVT);
825 	n->sync_point = tipc_link_rcv_nxt(tnl) + (U16_MAX / 2 - 1);
826 	tipc_link_tnl_prepare(l, tnl, FAILOVER_MSG, xmitq);
827 	trace_tipc_link_reset(l, TIPC_DUMP_ALL, "link down -> failover!");
828 	tipc_link_reset(l);
829 	tipc_link_fsm_evt(l, LINK_RESET_EVT);
830 	tipc_link_fsm_evt(l, LINK_FAILOVER_BEGIN_EVT);
831 	tipc_node_fsm_evt(n, NODE_FAILOVER_BEGIN_EVT);
832 	*maddr = &n->links[*bearer_id].maddr;
833 }
834 
835 static void tipc_node_link_down(struct tipc_node *n, int bearer_id, bool delete)
836 {
837 	struct tipc_link_entry *le = &n->links[bearer_id];
838 	struct tipc_media_addr *maddr = NULL;
839 	struct tipc_link *l = le->link;
840 	int old_bearer_id = bearer_id;
841 	struct sk_buff_head xmitq;
842 
843 	if (!l)
844 		return;
845 
846 	__skb_queue_head_init(&xmitq);
847 
848 	tipc_node_write_lock(n);
849 	if (!tipc_link_is_establishing(l)) {
850 		__tipc_node_link_down(n, &bearer_id, &xmitq, &maddr);
851 	} else {
852 		/* Defuse pending tipc_node_link_up() */
853 		tipc_link_reset(l);
854 		tipc_link_fsm_evt(l, LINK_RESET_EVT);
855 	}
856 	if (delete) {
857 		kfree(l);
858 		le->link = NULL;
859 		n->link_cnt--;
860 	}
861 	trace_tipc_node_link_down(n, true, "node link down or deleted!");
862 	tipc_node_write_unlock(n);
863 	if (delete)
864 		tipc_mon_remove_peer(n->net, n->addr, old_bearer_id);
865 	if (!skb_queue_empty(&xmitq))
866 		tipc_bearer_xmit(n->net, bearer_id, &xmitq, maddr);
867 	tipc_sk_rcv(n->net, &le->inputq);
868 }
869 
870 static bool node_is_up(struct tipc_node *n)
871 {
872 	return n->active_links[0] != INVALID_BEARER_ID;
873 }
874 
875 bool tipc_node_is_up(struct net *net, u32 addr)
876 {
877 	struct tipc_node *n;
878 	bool retval = false;
879 
880 	if (in_own_node(net, addr))
881 		return true;
882 
883 	n = tipc_node_find(net, addr);
884 	if (!n)
885 		return false;
886 	retval = node_is_up(n);
887 	tipc_node_put(n);
888 	return retval;
889 }
890 
891 static u32 tipc_node_suggest_addr(struct net *net, u32 addr)
892 {
893 	struct tipc_node *n;
894 
895 	addr ^= tipc_net(net)->random;
896 	while ((n = tipc_node_find(net, addr))) {
897 		tipc_node_put(n);
898 		addr++;
899 	}
900 	return addr;
901 }
902 
903 /* tipc_node_try_addr(): Check if addr can be used by peer, suggest other if not
904  * Returns suggested address if any, otherwise 0
905  */
906 u32 tipc_node_try_addr(struct net *net, u8 *id, u32 addr)
907 {
908 	struct tipc_net *tn = tipc_net(net);
909 	struct tipc_node *n;
910 
911 	/* Suggest new address if some other peer is using this one */
912 	n = tipc_node_find(net, addr);
913 	if (n) {
914 		if (!memcmp(n->peer_id, id, NODE_ID_LEN))
915 			addr = 0;
916 		tipc_node_put(n);
917 		if (!addr)
918 			return 0;
919 		return tipc_node_suggest_addr(net, addr);
920 	}
921 
922 	/* Suggest previously used address if peer is known */
923 	n = tipc_node_find_by_id(net, id);
924 	if (n) {
925 		addr = n->addr;
926 		tipc_node_put(n);
927 		return addr;
928 	}
929 
930 	/* Even this node may be in conflict */
931 	if (tn->trial_addr == addr)
932 		return tipc_node_suggest_addr(net, addr);
933 
934 	return 0;
935 }
936 
937 void tipc_node_check_dest(struct net *net, u32 addr,
938 			  u8 *peer_id, struct tipc_bearer *b,
939 			  u16 capabilities, u32 signature,
940 			  struct tipc_media_addr *maddr,
941 			  bool *respond, bool *dupl_addr)
942 {
943 	struct tipc_node *n;
944 	struct tipc_link *l;
945 	struct tipc_link_entry *le;
946 	bool addr_match = false;
947 	bool sign_match = false;
948 	bool link_up = false;
949 	bool accept_addr = false;
950 	bool reset = true;
951 	char *if_name;
952 	unsigned long intv;
953 	u16 session;
954 
955 	*dupl_addr = false;
956 	*respond = false;
957 
958 	n = tipc_node_create(net, addr, peer_id, capabilities);
959 	if (!n)
960 		return;
961 
962 	tipc_node_write_lock(n);
963 
964 	le = &n->links[b->identity];
965 
966 	/* Prepare to validate requesting node's signature and media address */
967 	l = le->link;
968 	link_up = l && tipc_link_is_up(l);
969 	addr_match = l && !memcmp(&le->maddr, maddr, sizeof(*maddr));
970 	sign_match = (signature == n->signature);
971 
972 	/* These three flags give us eight permutations: */
973 
974 	if (sign_match && addr_match && link_up) {
975 		/* All is fine. Do nothing. */
976 		reset = false;
977 	} else if (sign_match && addr_match && !link_up) {
978 		/* Respond. The link will come up in due time */
979 		*respond = true;
980 	} else if (sign_match && !addr_match && link_up) {
981 		/* Peer has changed i/f address without rebooting.
982 		 * If so, the link will reset soon, and the next
983 		 * discovery will be accepted. So we can ignore it.
984 		 * It may also be an cloned or malicious peer having
985 		 * chosen the same node address and signature as an
986 		 * existing one.
987 		 * Ignore requests until the link goes down, if ever.
988 		 */
989 		*dupl_addr = true;
990 	} else if (sign_match && !addr_match && !link_up) {
991 		/* Peer link has changed i/f address without rebooting.
992 		 * It may also be a cloned or malicious peer; we can't
993 		 * distinguish between the two.
994 		 * The signature is correct, so we must accept.
995 		 */
996 		accept_addr = true;
997 		*respond = true;
998 	} else if (!sign_match && addr_match && link_up) {
999 		/* Peer node rebooted. Two possibilities:
1000 		 *  - Delayed re-discovery; this link endpoint has already
1001 		 *    reset and re-established contact with the peer, before
1002 		 *    receiving a discovery message from that node.
1003 		 *    (The peer happened to receive one from this node first).
1004 		 *  - The peer came back so fast that our side has not
1005 		 *    discovered it yet. Probing from this side will soon
1006 		 *    reset the link, since there can be no working link
1007 		 *    endpoint at the peer end, and the link will re-establish.
1008 		 *  Accept the signature, since it comes from a known peer.
1009 		 */
1010 		n->signature = signature;
1011 	} else if (!sign_match && addr_match && !link_up) {
1012 		/*  The peer node has rebooted.
1013 		 *  Accept signature, since it is a known peer.
1014 		 */
1015 		n->signature = signature;
1016 		*respond = true;
1017 	} else if (!sign_match && !addr_match && link_up) {
1018 		/* Peer rebooted with new address, or a new/duplicate peer.
1019 		 * Ignore until the link goes down, if ever.
1020 		 */
1021 		*dupl_addr = true;
1022 	} else if (!sign_match && !addr_match && !link_up) {
1023 		/* Peer rebooted with new address, or it is a new peer.
1024 		 * Accept signature and address.
1025 		 */
1026 		n->signature = signature;
1027 		accept_addr = true;
1028 		*respond = true;
1029 	}
1030 
1031 	if (!accept_addr)
1032 		goto exit;
1033 
1034 	/* Now create new link if not already existing */
1035 	if (!l) {
1036 		if (n->link_cnt == 2)
1037 			goto exit;
1038 
1039 		if_name = strchr(b->name, ':') + 1;
1040 		get_random_bytes(&session, sizeof(u16));
1041 		if (!tipc_link_create(net, if_name, b->identity, b->tolerance,
1042 				      b->net_plane, b->mtu, b->priority,
1043 				      b->window, session,
1044 				      tipc_own_addr(net), addr, peer_id,
1045 				      n->capabilities,
1046 				      tipc_bc_sndlink(n->net), n->bc_entry.link,
1047 				      &le->inputq,
1048 				      &n->bc_entry.namedq, &l)) {
1049 			*respond = false;
1050 			goto exit;
1051 		}
1052 		trace_tipc_link_reset(l, TIPC_DUMP_ALL, "link created!");
1053 		tipc_link_reset(l);
1054 		tipc_link_fsm_evt(l, LINK_RESET_EVT);
1055 		if (n->state == NODE_FAILINGOVER)
1056 			tipc_link_fsm_evt(l, LINK_FAILOVER_BEGIN_EVT);
1057 		le->link = l;
1058 		n->link_cnt++;
1059 		tipc_node_calculate_timer(n, l);
1060 		if (n->link_cnt == 1) {
1061 			intv = jiffies + msecs_to_jiffies(n->keepalive_intv);
1062 			if (!mod_timer(&n->timer, intv))
1063 				tipc_node_get(n);
1064 		}
1065 	}
1066 	memcpy(&le->maddr, maddr, sizeof(*maddr));
1067 exit:
1068 	tipc_node_write_unlock(n);
1069 	if (reset && l && !tipc_link_is_reset(l))
1070 		tipc_node_link_down(n, b->identity, false);
1071 	tipc_node_put(n);
1072 }
1073 
1074 void tipc_node_delete_links(struct net *net, int bearer_id)
1075 {
1076 	struct tipc_net *tn = net_generic(net, tipc_net_id);
1077 	struct tipc_node *n;
1078 
1079 	rcu_read_lock();
1080 	list_for_each_entry_rcu(n, &tn->node_list, list) {
1081 		tipc_node_link_down(n, bearer_id, true);
1082 	}
1083 	rcu_read_unlock();
1084 }
1085 
1086 static void tipc_node_reset_links(struct tipc_node *n)
1087 {
1088 	int i;
1089 
1090 	pr_warn("Resetting all links to %x\n", n->addr);
1091 
1092 	trace_tipc_node_reset_links(n, true, " ");
1093 	for (i = 0; i < MAX_BEARERS; i++) {
1094 		tipc_node_link_down(n, i, false);
1095 	}
1096 }
1097 
1098 /* tipc_node_fsm_evt - node finite state machine
1099  * Determines when contact is allowed with peer node
1100  */
1101 static void tipc_node_fsm_evt(struct tipc_node *n, int evt)
1102 {
1103 	int state = n->state;
1104 
1105 	switch (state) {
1106 	case SELF_DOWN_PEER_DOWN:
1107 		switch (evt) {
1108 		case SELF_ESTABL_CONTACT_EVT:
1109 			state = SELF_UP_PEER_COMING;
1110 			break;
1111 		case PEER_ESTABL_CONTACT_EVT:
1112 			state = SELF_COMING_PEER_UP;
1113 			break;
1114 		case SELF_LOST_CONTACT_EVT:
1115 		case PEER_LOST_CONTACT_EVT:
1116 			break;
1117 		case NODE_SYNCH_END_EVT:
1118 		case NODE_SYNCH_BEGIN_EVT:
1119 		case NODE_FAILOVER_BEGIN_EVT:
1120 		case NODE_FAILOVER_END_EVT:
1121 		default:
1122 			goto illegal_evt;
1123 		}
1124 		break;
1125 	case SELF_UP_PEER_UP:
1126 		switch (evt) {
1127 		case SELF_LOST_CONTACT_EVT:
1128 			state = SELF_DOWN_PEER_LEAVING;
1129 			break;
1130 		case PEER_LOST_CONTACT_EVT:
1131 			state = SELF_LEAVING_PEER_DOWN;
1132 			break;
1133 		case NODE_SYNCH_BEGIN_EVT:
1134 			state = NODE_SYNCHING;
1135 			break;
1136 		case NODE_FAILOVER_BEGIN_EVT:
1137 			state = NODE_FAILINGOVER;
1138 			break;
1139 		case SELF_ESTABL_CONTACT_EVT:
1140 		case PEER_ESTABL_CONTACT_EVT:
1141 		case NODE_SYNCH_END_EVT:
1142 		case NODE_FAILOVER_END_EVT:
1143 			break;
1144 		default:
1145 			goto illegal_evt;
1146 		}
1147 		break;
1148 	case SELF_DOWN_PEER_LEAVING:
1149 		switch (evt) {
1150 		case PEER_LOST_CONTACT_EVT:
1151 			state = SELF_DOWN_PEER_DOWN;
1152 			break;
1153 		case SELF_ESTABL_CONTACT_EVT:
1154 		case PEER_ESTABL_CONTACT_EVT:
1155 		case SELF_LOST_CONTACT_EVT:
1156 			break;
1157 		case NODE_SYNCH_END_EVT:
1158 		case NODE_SYNCH_BEGIN_EVT:
1159 		case NODE_FAILOVER_BEGIN_EVT:
1160 		case NODE_FAILOVER_END_EVT:
1161 		default:
1162 			goto illegal_evt;
1163 		}
1164 		break;
1165 	case SELF_UP_PEER_COMING:
1166 		switch (evt) {
1167 		case PEER_ESTABL_CONTACT_EVT:
1168 			state = SELF_UP_PEER_UP;
1169 			break;
1170 		case SELF_LOST_CONTACT_EVT:
1171 			state = SELF_DOWN_PEER_DOWN;
1172 			break;
1173 		case SELF_ESTABL_CONTACT_EVT:
1174 		case PEER_LOST_CONTACT_EVT:
1175 		case NODE_SYNCH_END_EVT:
1176 		case NODE_FAILOVER_BEGIN_EVT:
1177 			break;
1178 		case NODE_SYNCH_BEGIN_EVT:
1179 		case NODE_FAILOVER_END_EVT:
1180 		default:
1181 			goto illegal_evt;
1182 		}
1183 		break;
1184 	case SELF_COMING_PEER_UP:
1185 		switch (evt) {
1186 		case SELF_ESTABL_CONTACT_EVT:
1187 			state = SELF_UP_PEER_UP;
1188 			break;
1189 		case PEER_LOST_CONTACT_EVT:
1190 			state = SELF_DOWN_PEER_DOWN;
1191 			break;
1192 		case SELF_LOST_CONTACT_EVT:
1193 		case PEER_ESTABL_CONTACT_EVT:
1194 			break;
1195 		case NODE_SYNCH_END_EVT:
1196 		case NODE_SYNCH_BEGIN_EVT:
1197 		case NODE_FAILOVER_BEGIN_EVT:
1198 		case NODE_FAILOVER_END_EVT:
1199 		default:
1200 			goto illegal_evt;
1201 		}
1202 		break;
1203 	case SELF_LEAVING_PEER_DOWN:
1204 		switch (evt) {
1205 		case SELF_LOST_CONTACT_EVT:
1206 			state = SELF_DOWN_PEER_DOWN;
1207 			break;
1208 		case SELF_ESTABL_CONTACT_EVT:
1209 		case PEER_ESTABL_CONTACT_EVT:
1210 		case PEER_LOST_CONTACT_EVT:
1211 			break;
1212 		case NODE_SYNCH_END_EVT:
1213 		case NODE_SYNCH_BEGIN_EVT:
1214 		case NODE_FAILOVER_BEGIN_EVT:
1215 		case NODE_FAILOVER_END_EVT:
1216 		default:
1217 			goto illegal_evt;
1218 		}
1219 		break;
1220 	case NODE_FAILINGOVER:
1221 		switch (evt) {
1222 		case SELF_LOST_CONTACT_EVT:
1223 			state = SELF_DOWN_PEER_LEAVING;
1224 			break;
1225 		case PEER_LOST_CONTACT_EVT:
1226 			state = SELF_LEAVING_PEER_DOWN;
1227 			break;
1228 		case NODE_FAILOVER_END_EVT:
1229 			state = SELF_UP_PEER_UP;
1230 			break;
1231 		case NODE_FAILOVER_BEGIN_EVT:
1232 		case SELF_ESTABL_CONTACT_EVT:
1233 		case PEER_ESTABL_CONTACT_EVT:
1234 			break;
1235 		case NODE_SYNCH_BEGIN_EVT:
1236 		case NODE_SYNCH_END_EVT:
1237 		default:
1238 			goto illegal_evt;
1239 		}
1240 		break;
1241 	case NODE_SYNCHING:
1242 		switch (evt) {
1243 		case SELF_LOST_CONTACT_EVT:
1244 			state = SELF_DOWN_PEER_LEAVING;
1245 			break;
1246 		case PEER_LOST_CONTACT_EVT:
1247 			state = SELF_LEAVING_PEER_DOWN;
1248 			break;
1249 		case NODE_SYNCH_END_EVT:
1250 			state = SELF_UP_PEER_UP;
1251 			break;
1252 		case NODE_FAILOVER_BEGIN_EVT:
1253 			state = NODE_FAILINGOVER;
1254 			break;
1255 		case NODE_SYNCH_BEGIN_EVT:
1256 		case SELF_ESTABL_CONTACT_EVT:
1257 		case PEER_ESTABL_CONTACT_EVT:
1258 			break;
1259 		case NODE_FAILOVER_END_EVT:
1260 		default:
1261 			goto illegal_evt;
1262 		}
1263 		break;
1264 	default:
1265 		pr_err("Unknown node fsm state %x\n", state);
1266 		break;
1267 	}
1268 	trace_tipc_node_fsm(n->peer_id, n->state, state, evt);
1269 	n->state = state;
1270 	return;
1271 
1272 illegal_evt:
1273 	pr_err("Illegal node fsm evt %x in state %x\n", evt, state);
1274 	trace_tipc_node_fsm(n->peer_id, n->state, state, evt);
1275 }
1276 
1277 static void node_lost_contact(struct tipc_node *n,
1278 			      struct sk_buff_head *inputq)
1279 {
1280 	struct tipc_sock_conn *conn, *safe;
1281 	struct tipc_link *l;
1282 	struct list_head *conns = &n->conn_sks;
1283 	struct sk_buff *skb;
1284 	uint i;
1285 
1286 	pr_debug("Lost contact with %x\n", n->addr);
1287 	n->delete_at = jiffies + msecs_to_jiffies(NODE_CLEANUP_AFTER);
1288 	trace_tipc_node_lost_contact(n, true, " ");
1289 
1290 	/* Clean up broadcast state */
1291 	tipc_bcast_remove_peer(n->net, n->bc_entry.link);
1292 
1293 	/* Abort any ongoing link failover */
1294 	for (i = 0; i < MAX_BEARERS; i++) {
1295 		l = n->links[i].link;
1296 		if (l)
1297 			tipc_link_fsm_evt(l, LINK_FAILOVER_END_EVT);
1298 	}
1299 
1300 	/* Notify publications from this node */
1301 	n->action_flags |= TIPC_NOTIFY_NODE_DOWN;
1302 
1303 	/* Notify sockets connected to node */
1304 	list_for_each_entry_safe(conn, safe, conns, list) {
1305 		skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE, TIPC_CONN_MSG,
1306 				      SHORT_H_SIZE, 0, tipc_own_addr(n->net),
1307 				      conn->peer_node, conn->port,
1308 				      conn->peer_port, TIPC_ERR_NO_NODE);
1309 		if (likely(skb))
1310 			skb_queue_tail(inputq, skb);
1311 		list_del(&conn->list);
1312 		kfree(conn);
1313 	}
1314 }
1315 
1316 /**
1317  * tipc_node_get_linkname - get the name of a link
1318  *
1319  * @bearer_id: id of the bearer
1320  * @node: peer node address
1321  * @linkname: link name output buffer
1322  *
1323  * Returns 0 on success
1324  */
1325 int tipc_node_get_linkname(struct net *net, u32 bearer_id, u32 addr,
1326 			   char *linkname, size_t len)
1327 {
1328 	struct tipc_link *link;
1329 	int err = -EINVAL;
1330 	struct tipc_node *node = tipc_node_find(net, addr);
1331 
1332 	if (!node)
1333 		return err;
1334 
1335 	if (bearer_id >= MAX_BEARERS)
1336 		goto exit;
1337 
1338 	tipc_node_read_lock(node);
1339 	link = node->links[bearer_id].link;
1340 	if (link) {
1341 		strncpy(linkname, tipc_link_name(link), len);
1342 		err = 0;
1343 	}
1344 	tipc_node_read_unlock(node);
1345 exit:
1346 	tipc_node_put(node);
1347 	return err;
1348 }
1349 
1350 /* Caller should hold node lock for the passed node */
1351 static int __tipc_nl_add_node(struct tipc_nl_msg *msg, struct tipc_node *node)
1352 {
1353 	void *hdr;
1354 	struct nlattr *attrs;
1355 
1356 	hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
1357 			  NLM_F_MULTI, TIPC_NL_NODE_GET);
1358 	if (!hdr)
1359 		return -EMSGSIZE;
1360 
1361 	attrs = nla_nest_start(msg->skb, TIPC_NLA_NODE);
1362 	if (!attrs)
1363 		goto msg_full;
1364 
1365 	if (nla_put_u32(msg->skb, TIPC_NLA_NODE_ADDR, node->addr))
1366 		goto attr_msg_full;
1367 	if (node_is_up(node))
1368 		if (nla_put_flag(msg->skb, TIPC_NLA_NODE_UP))
1369 			goto attr_msg_full;
1370 
1371 	nla_nest_end(msg->skb, attrs);
1372 	genlmsg_end(msg->skb, hdr);
1373 
1374 	return 0;
1375 
1376 attr_msg_full:
1377 	nla_nest_cancel(msg->skb, attrs);
1378 msg_full:
1379 	genlmsg_cancel(msg->skb, hdr);
1380 
1381 	return -EMSGSIZE;
1382 }
1383 
1384 /**
1385  * tipc_node_xmit() is the general link level function for message sending
1386  * @net: the applicable net namespace
1387  * @list: chain of buffers containing message
1388  * @dnode: address of destination node
1389  * @selector: a number used for deterministic link selection
1390  * Consumes the buffer chain.
1391  * Returns 0 if success, otherwise: -ELINKCONG,-EHOSTUNREACH,-EMSGSIZE,-ENOBUF
1392  */
1393 int tipc_node_xmit(struct net *net, struct sk_buff_head *list,
1394 		   u32 dnode, int selector)
1395 {
1396 	struct tipc_link_entry *le = NULL;
1397 	struct tipc_node *n;
1398 	struct sk_buff_head xmitq;
1399 	int bearer_id;
1400 	int rc;
1401 
1402 	if (in_own_node(net, dnode)) {
1403 		tipc_sk_rcv(net, list);
1404 		return 0;
1405 	}
1406 
1407 	n = tipc_node_find(net, dnode);
1408 	if (unlikely(!n)) {
1409 		skb_queue_purge(list);
1410 		return -EHOSTUNREACH;
1411 	}
1412 
1413 	tipc_node_read_lock(n);
1414 	bearer_id = n->active_links[selector & 1];
1415 	if (unlikely(bearer_id == INVALID_BEARER_ID)) {
1416 		tipc_node_read_unlock(n);
1417 		tipc_node_put(n);
1418 		skb_queue_purge(list);
1419 		return -EHOSTUNREACH;
1420 	}
1421 
1422 	__skb_queue_head_init(&xmitq);
1423 	le = &n->links[bearer_id];
1424 	spin_lock_bh(&le->lock);
1425 	rc = tipc_link_xmit(le->link, list, &xmitq);
1426 	spin_unlock_bh(&le->lock);
1427 	tipc_node_read_unlock(n);
1428 
1429 	if (unlikely(rc == -ENOBUFS))
1430 		tipc_node_link_down(n, bearer_id, false);
1431 	else
1432 		tipc_bearer_xmit(net, bearer_id, &xmitq, &le->maddr);
1433 
1434 	tipc_node_put(n);
1435 
1436 	return rc;
1437 }
1438 
1439 /* tipc_node_xmit_skb(): send single buffer to destination
1440  * Buffers sent via this functon are generally TIPC_SYSTEM_IMPORTANCE
1441  * messages, which will not be rejected
1442  * The only exception is datagram messages rerouted after secondary
1443  * lookup, which are rare and safe to dispose of anyway.
1444  */
1445 int tipc_node_xmit_skb(struct net *net, struct sk_buff *skb, u32 dnode,
1446 		       u32 selector)
1447 {
1448 	struct sk_buff_head head;
1449 
1450 	skb_queue_head_init(&head);
1451 	__skb_queue_tail(&head, skb);
1452 	tipc_node_xmit(net, &head, dnode, selector);
1453 	return 0;
1454 }
1455 
1456 /* tipc_node_distr_xmit(): send single buffer msgs to individual destinations
1457  * Note: this is only for SYSTEM_IMPORTANCE messages, which cannot be rejected
1458  */
1459 int tipc_node_distr_xmit(struct net *net, struct sk_buff_head *xmitq)
1460 {
1461 	struct sk_buff *skb;
1462 	u32 selector, dnode;
1463 
1464 	while ((skb = __skb_dequeue(xmitq))) {
1465 		selector = msg_origport(buf_msg(skb));
1466 		dnode = msg_destnode(buf_msg(skb));
1467 		tipc_node_xmit_skb(net, skb, dnode, selector);
1468 	}
1469 	return 0;
1470 }
1471 
1472 void tipc_node_broadcast(struct net *net, struct sk_buff *skb)
1473 {
1474 	struct sk_buff *txskb;
1475 	struct tipc_node *n;
1476 	u32 dst;
1477 
1478 	rcu_read_lock();
1479 	list_for_each_entry_rcu(n, tipc_nodes(net), list) {
1480 		dst = n->addr;
1481 		if (in_own_node(net, dst))
1482 			continue;
1483 		if (!node_is_up(n))
1484 			continue;
1485 		txskb = pskb_copy(skb, GFP_ATOMIC);
1486 		if (!txskb)
1487 			break;
1488 		msg_set_destnode(buf_msg(txskb), dst);
1489 		tipc_node_xmit_skb(net, txskb, dst, 0);
1490 	}
1491 	rcu_read_unlock();
1492 
1493 	kfree_skb(skb);
1494 }
1495 
1496 static void tipc_node_mcast_rcv(struct tipc_node *n)
1497 {
1498 	struct tipc_bclink_entry *be = &n->bc_entry;
1499 
1500 	/* 'arrvq' is under inputq2's lock protection */
1501 	spin_lock_bh(&be->inputq2.lock);
1502 	spin_lock_bh(&be->inputq1.lock);
1503 	skb_queue_splice_tail_init(&be->inputq1, &be->arrvq);
1504 	spin_unlock_bh(&be->inputq1.lock);
1505 	spin_unlock_bh(&be->inputq2.lock);
1506 	tipc_sk_mcast_rcv(n->net, &be->arrvq, &be->inputq2);
1507 }
1508 
1509 static void tipc_node_bc_sync_rcv(struct tipc_node *n, struct tipc_msg *hdr,
1510 				  int bearer_id, struct sk_buff_head *xmitq)
1511 {
1512 	struct tipc_link *ucl;
1513 	int rc;
1514 
1515 	rc = tipc_bcast_sync_rcv(n->net, n->bc_entry.link, hdr);
1516 
1517 	if (rc & TIPC_LINK_DOWN_EVT) {
1518 		tipc_node_reset_links(n);
1519 		return;
1520 	}
1521 
1522 	if (!(rc & TIPC_LINK_SND_STATE))
1523 		return;
1524 
1525 	/* If probe message, a STATE response will be sent anyway */
1526 	if (msg_probe(hdr))
1527 		return;
1528 
1529 	/* Produce a STATE message carrying broadcast NACK */
1530 	tipc_node_read_lock(n);
1531 	ucl = n->links[bearer_id].link;
1532 	if (ucl)
1533 		tipc_link_build_state_msg(ucl, xmitq);
1534 	tipc_node_read_unlock(n);
1535 }
1536 
1537 /**
1538  * tipc_node_bc_rcv - process TIPC broadcast packet arriving from off-node
1539  * @net: the applicable net namespace
1540  * @skb: TIPC packet
1541  * @bearer_id: id of bearer message arrived on
1542  *
1543  * Invoked with no locks held.
1544  */
1545 static void tipc_node_bc_rcv(struct net *net, struct sk_buff *skb, int bearer_id)
1546 {
1547 	int rc;
1548 	struct sk_buff_head xmitq;
1549 	struct tipc_bclink_entry *be;
1550 	struct tipc_link_entry *le;
1551 	struct tipc_msg *hdr = buf_msg(skb);
1552 	int usr = msg_user(hdr);
1553 	u32 dnode = msg_destnode(hdr);
1554 	struct tipc_node *n;
1555 
1556 	__skb_queue_head_init(&xmitq);
1557 
1558 	/* If NACK for other node, let rcv link for that node peek into it */
1559 	if ((usr == BCAST_PROTOCOL) && (dnode != tipc_own_addr(net)))
1560 		n = tipc_node_find(net, dnode);
1561 	else
1562 		n = tipc_node_find(net, msg_prevnode(hdr));
1563 	if (!n) {
1564 		kfree_skb(skb);
1565 		return;
1566 	}
1567 	be = &n->bc_entry;
1568 	le = &n->links[bearer_id];
1569 
1570 	rc = tipc_bcast_rcv(net, be->link, skb);
1571 
1572 	/* Broadcast ACKs are sent on a unicast link */
1573 	if (rc & TIPC_LINK_SND_STATE) {
1574 		tipc_node_read_lock(n);
1575 		tipc_link_build_state_msg(le->link, &xmitq);
1576 		tipc_node_read_unlock(n);
1577 	}
1578 
1579 	if (!skb_queue_empty(&xmitq))
1580 		tipc_bearer_xmit(net, bearer_id, &xmitq, &le->maddr);
1581 
1582 	if (!skb_queue_empty(&be->inputq1))
1583 		tipc_node_mcast_rcv(n);
1584 
1585 	/* Handle NAME_DISTRIBUTOR messages sent from 1.7 nodes */
1586 	if (!skb_queue_empty(&n->bc_entry.namedq))
1587 		tipc_named_rcv(net, &n->bc_entry.namedq);
1588 
1589 	/* If reassembly or retransmission failure => reset all links to peer */
1590 	if (rc & TIPC_LINK_DOWN_EVT)
1591 		tipc_node_reset_links(n);
1592 
1593 	tipc_node_put(n);
1594 }
1595 
1596 /**
1597  * tipc_node_check_state - check and if necessary update node state
1598  * @skb: TIPC packet
1599  * @bearer_id: identity of bearer delivering the packet
1600  * Returns true if state and msg are ok, otherwise false
1601  */
1602 static bool tipc_node_check_state(struct tipc_node *n, struct sk_buff *skb,
1603 				  int bearer_id, struct sk_buff_head *xmitq)
1604 {
1605 	struct tipc_msg *hdr = buf_msg(skb);
1606 	int usr = msg_user(hdr);
1607 	int mtyp = msg_type(hdr);
1608 	u16 oseqno = msg_seqno(hdr);
1609 	u16 iseqno = msg_seqno(msg_get_wrapped(hdr));
1610 	u16 exp_pkts = msg_msgcnt(hdr);
1611 	u16 rcv_nxt, syncpt, dlv_nxt, inputq_len;
1612 	int state = n->state;
1613 	struct tipc_link *l, *tnl, *pl = NULL;
1614 	struct tipc_media_addr *maddr;
1615 	int pb_id;
1616 
1617 	if (trace_tipc_node_check_state_enabled()) {
1618 		trace_tipc_skb_dump(skb, false, "skb for node state check");
1619 		trace_tipc_node_check_state(n, true, " ");
1620 	}
1621 	l = n->links[bearer_id].link;
1622 	if (!l)
1623 		return false;
1624 	rcv_nxt = tipc_link_rcv_nxt(l);
1625 
1626 
1627 	if (likely((state == SELF_UP_PEER_UP) && (usr != TUNNEL_PROTOCOL)))
1628 		return true;
1629 
1630 	/* Find parallel link, if any */
1631 	for (pb_id = 0; pb_id < MAX_BEARERS; pb_id++) {
1632 		if ((pb_id != bearer_id) && n->links[pb_id].link) {
1633 			pl = n->links[pb_id].link;
1634 			break;
1635 		}
1636 	}
1637 
1638 	if (!tipc_link_validate_msg(l, hdr)) {
1639 		trace_tipc_skb_dump(skb, false, "PROTO invalid (2)!");
1640 		trace_tipc_link_dump(l, TIPC_DUMP_NONE, "PROTO invalid (2)!");
1641 		return false;
1642 	}
1643 
1644 	/* Check and update node accesibility if applicable */
1645 	if (state == SELF_UP_PEER_COMING) {
1646 		if (!tipc_link_is_up(l))
1647 			return true;
1648 		if (!msg_peer_link_is_up(hdr))
1649 			return true;
1650 		tipc_node_fsm_evt(n, PEER_ESTABL_CONTACT_EVT);
1651 	}
1652 
1653 	if (state == SELF_DOWN_PEER_LEAVING) {
1654 		if (msg_peer_node_is_up(hdr))
1655 			return false;
1656 		tipc_node_fsm_evt(n, PEER_LOST_CONTACT_EVT);
1657 		return true;
1658 	}
1659 
1660 	if (state == SELF_LEAVING_PEER_DOWN)
1661 		return false;
1662 
1663 	/* Ignore duplicate packets */
1664 	if ((usr != LINK_PROTOCOL) && less(oseqno, rcv_nxt))
1665 		return true;
1666 
1667 	/* Initiate or update failover mode if applicable */
1668 	if ((usr == TUNNEL_PROTOCOL) && (mtyp == FAILOVER_MSG)) {
1669 		syncpt = oseqno + exp_pkts - 1;
1670 		if (pl && tipc_link_is_up(pl)) {
1671 			__tipc_node_link_down(n, &pb_id, xmitq, &maddr);
1672 			trace_tipc_node_link_down(n, true,
1673 						  "node link down <- failover!");
1674 			tipc_skb_queue_splice_tail_init(tipc_link_inputq(pl),
1675 							tipc_link_inputq(l));
1676 		}
1677 		/* If parallel link was already down, and this happened before
1678 		 * the tunnel link came up, FAILOVER was never sent. Ensure that
1679 		 * FAILOVER is sent to get peer out of NODE_FAILINGOVER state.
1680 		 */
1681 		if (n->state != NODE_FAILINGOVER && !n->failover_sent) {
1682 			tipc_link_create_dummy_tnl_msg(l, xmitq);
1683 			n->failover_sent = true;
1684 		}
1685 		/* If pkts arrive out of order, use lowest calculated syncpt */
1686 		if (less(syncpt, n->sync_point))
1687 			n->sync_point = syncpt;
1688 	}
1689 
1690 	/* Open parallel link when tunnel link reaches synch point */
1691 	if ((n->state == NODE_FAILINGOVER) && tipc_link_is_up(l)) {
1692 		if (!more(rcv_nxt, n->sync_point))
1693 			return true;
1694 		tipc_node_fsm_evt(n, NODE_FAILOVER_END_EVT);
1695 		if (pl)
1696 			tipc_link_fsm_evt(pl, LINK_FAILOVER_END_EVT);
1697 		return true;
1698 	}
1699 
1700 	/* No synching needed if only one link */
1701 	if (!pl || !tipc_link_is_up(pl))
1702 		return true;
1703 
1704 	/* Initiate synch mode if applicable */
1705 	if ((usr == TUNNEL_PROTOCOL) && (mtyp == SYNCH_MSG) && (oseqno == 1)) {
1706 		syncpt = iseqno + exp_pkts - 1;
1707 		if (!tipc_link_is_up(l))
1708 			__tipc_node_link_up(n, bearer_id, xmitq);
1709 		if (n->state == SELF_UP_PEER_UP) {
1710 			n->sync_point = syncpt;
1711 			tipc_link_fsm_evt(l, LINK_SYNCH_BEGIN_EVT);
1712 			tipc_node_fsm_evt(n, NODE_SYNCH_BEGIN_EVT);
1713 		}
1714 	}
1715 
1716 	/* Open tunnel link when parallel link reaches synch point */
1717 	if (n->state == NODE_SYNCHING) {
1718 		if (tipc_link_is_synching(l)) {
1719 			tnl = l;
1720 		} else {
1721 			tnl = pl;
1722 			pl = l;
1723 		}
1724 		inputq_len = skb_queue_len(tipc_link_inputq(pl));
1725 		dlv_nxt = tipc_link_rcv_nxt(pl) - inputq_len;
1726 		if (more(dlv_nxt, n->sync_point)) {
1727 			tipc_link_fsm_evt(tnl, LINK_SYNCH_END_EVT);
1728 			tipc_node_fsm_evt(n, NODE_SYNCH_END_EVT);
1729 			return true;
1730 		}
1731 		if (l == pl)
1732 			return true;
1733 		if ((usr == TUNNEL_PROTOCOL) && (mtyp == SYNCH_MSG))
1734 			return true;
1735 		if (usr == LINK_PROTOCOL)
1736 			return true;
1737 		return false;
1738 	}
1739 	return true;
1740 }
1741 
1742 /**
1743  * tipc_rcv - process TIPC packets/messages arriving from off-node
1744  * @net: the applicable net namespace
1745  * @skb: TIPC packet
1746  * @bearer: pointer to bearer message arrived on
1747  *
1748  * Invoked with no locks held. Bearer pointer must point to a valid bearer
1749  * structure (i.e. cannot be NULL), but bearer can be inactive.
1750  */
1751 void tipc_rcv(struct net *net, struct sk_buff *skb, struct tipc_bearer *b)
1752 {
1753 	struct sk_buff_head xmitq;
1754 	struct tipc_node *n;
1755 	struct tipc_msg *hdr;
1756 	int bearer_id = b->identity;
1757 	struct tipc_link_entry *le;
1758 	u32 self = tipc_own_addr(net);
1759 	int usr, rc = 0;
1760 	u16 bc_ack;
1761 
1762 	__skb_queue_head_init(&xmitq);
1763 
1764 	/* Ensure message is well-formed before touching the header */
1765 	if (unlikely(!tipc_msg_validate(&skb)))
1766 		goto discard;
1767 	hdr = buf_msg(skb);
1768 	usr = msg_user(hdr);
1769 	bc_ack = msg_bcast_ack(hdr);
1770 
1771 	/* Handle arrival of discovery or broadcast packet */
1772 	if (unlikely(msg_non_seq(hdr))) {
1773 		if (unlikely(usr == LINK_CONFIG))
1774 			return tipc_disc_rcv(net, skb, b);
1775 		else
1776 			return tipc_node_bc_rcv(net, skb, bearer_id);
1777 	}
1778 
1779 	/* Discard unicast link messages destined for another node */
1780 	if (unlikely(!msg_short(hdr) && (msg_destnode(hdr) != self)))
1781 		goto discard;
1782 
1783 	/* Locate neighboring node that sent packet */
1784 	n = tipc_node_find(net, msg_prevnode(hdr));
1785 	if (unlikely(!n))
1786 		goto discard;
1787 	le = &n->links[bearer_id];
1788 
1789 	/* Ensure broadcast reception is in synch with peer's send state */
1790 	if (unlikely(usr == LINK_PROTOCOL))
1791 		tipc_node_bc_sync_rcv(n, hdr, bearer_id, &xmitq);
1792 	else if (unlikely(tipc_link_acked(n->bc_entry.link) != bc_ack))
1793 		tipc_bcast_ack_rcv(net, n->bc_entry.link, hdr);
1794 
1795 	/* Receive packet directly if conditions permit */
1796 	tipc_node_read_lock(n);
1797 	if (likely((n->state == SELF_UP_PEER_UP) && (usr != TUNNEL_PROTOCOL))) {
1798 		spin_lock_bh(&le->lock);
1799 		if (le->link) {
1800 			rc = tipc_link_rcv(le->link, skb, &xmitq);
1801 			skb = NULL;
1802 		}
1803 		spin_unlock_bh(&le->lock);
1804 	}
1805 	tipc_node_read_unlock(n);
1806 
1807 	/* Check/update node state before receiving */
1808 	if (unlikely(skb)) {
1809 		if (unlikely(skb_linearize(skb)))
1810 			goto discard;
1811 		tipc_node_write_lock(n);
1812 		if (tipc_node_check_state(n, skb, bearer_id, &xmitq)) {
1813 			if (le->link) {
1814 				rc = tipc_link_rcv(le->link, skb, &xmitq);
1815 				skb = NULL;
1816 			}
1817 		}
1818 		tipc_node_write_unlock(n);
1819 	}
1820 
1821 	if (unlikely(rc & TIPC_LINK_UP_EVT))
1822 		tipc_node_link_up(n, bearer_id, &xmitq);
1823 
1824 	if (unlikely(rc & TIPC_LINK_DOWN_EVT))
1825 		tipc_node_link_down(n, bearer_id, false);
1826 
1827 	if (unlikely(!skb_queue_empty(&n->bc_entry.namedq)))
1828 		tipc_named_rcv(net, &n->bc_entry.namedq);
1829 
1830 	if (unlikely(!skb_queue_empty(&n->bc_entry.inputq1)))
1831 		tipc_node_mcast_rcv(n);
1832 
1833 	if (!skb_queue_empty(&le->inputq))
1834 		tipc_sk_rcv(net, &le->inputq);
1835 
1836 	if (!skb_queue_empty(&xmitq))
1837 		tipc_bearer_xmit(net, bearer_id, &xmitq, &le->maddr);
1838 
1839 	tipc_node_put(n);
1840 discard:
1841 	kfree_skb(skb);
1842 }
1843 
1844 void tipc_node_apply_property(struct net *net, struct tipc_bearer *b,
1845 			      int prop)
1846 {
1847 	struct tipc_net *tn = tipc_net(net);
1848 	int bearer_id = b->identity;
1849 	struct sk_buff_head xmitq;
1850 	struct tipc_link_entry *e;
1851 	struct tipc_node *n;
1852 
1853 	__skb_queue_head_init(&xmitq);
1854 
1855 	rcu_read_lock();
1856 
1857 	list_for_each_entry_rcu(n, &tn->node_list, list) {
1858 		tipc_node_write_lock(n);
1859 		e = &n->links[bearer_id];
1860 		if (e->link) {
1861 			if (prop == TIPC_NLA_PROP_TOL)
1862 				tipc_link_set_tolerance(e->link, b->tolerance,
1863 							&xmitq);
1864 			else if (prop == TIPC_NLA_PROP_MTU)
1865 				tipc_link_set_mtu(e->link, b->mtu);
1866 		}
1867 		tipc_node_write_unlock(n);
1868 		tipc_bearer_xmit(net, bearer_id, &xmitq, &e->maddr);
1869 	}
1870 
1871 	rcu_read_unlock();
1872 }
1873 
1874 int tipc_nl_peer_rm(struct sk_buff *skb, struct genl_info *info)
1875 {
1876 	struct net *net = sock_net(skb->sk);
1877 	struct tipc_net *tn = net_generic(net, tipc_net_id);
1878 	struct nlattr *attrs[TIPC_NLA_NET_MAX + 1];
1879 	struct tipc_node *peer;
1880 	u32 addr;
1881 	int err;
1882 
1883 	/* We identify the peer by its net */
1884 	if (!info->attrs[TIPC_NLA_NET])
1885 		return -EINVAL;
1886 
1887 	err = nla_parse_nested(attrs, TIPC_NLA_NET_MAX,
1888 			       info->attrs[TIPC_NLA_NET], tipc_nl_net_policy,
1889 			       info->extack);
1890 	if (err)
1891 		return err;
1892 
1893 	if (!attrs[TIPC_NLA_NET_ADDR])
1894 		return -EINVAL;
1895 
1896 	addr = nla_get_u32(attrs[TIPC_NLA_NET_ADDR]);
1897 
1898 	if (in_own_node(net, addr))
1899 		return -ENOTSUPP;
1900 
1901 	spin_lock_bh(&tn->node_list_lock);
1902 	peer = tipc_node_find(net, addr);
1903 	if (!peer) {
1904 		spin_unlock_bh(&tn->node_list_lock);
1905 		return -ENXIO;
1906 	}
1907 
1908 	tipc_node_write_lock(peer);
1909 	if (peer->state != SELF_DOWN_PEER_DOWN &&
1910 	    peer->state != SELF_DOWN_PEER_LEAVING) {
1911 		tipc_node_write_unlock(peer);
1912 		err = -EBUSY;
1913 		goto err_out;
1914 	}
1915 
1916 	tipc_node_clear_links(peer);
1917 	tipc_node_write_unlock(peer);
1918 	tipc_node_delete(peer);
1919 
1920 	err = 0;
1921 err_out:
1922 	tipc_node_put(peer);
1923 	spin_unlock_bh(&tn->node_list_lock);
1924 
1925 	return err;
1926 }
1927 
1928 int tipc_nl_node_dump(struct sk_buff *skb, struct netlink_callback *cb)
1929 {
1930 	int err;
1931 	struct net *net = sock_net(skb->sk);
1932 	struct tipc_net *tn = net_generic(net, tipc_net_id);
1933 	int done = cb->args[0];
1934 	int last_addr = cb->args[1];
1935 	struct tipc_node *node;
1936 	struct tipc_nl_msg msg;
1937 
1938 	if (done)
1939 		return 0;
1940 
1941 	msg.skb = skb;
1942 	msg.portid = NETLINK_CB(cb->skb).portid;
1943 	msg.seq = cb->nlh->nlmsg_seq;
1944 
1945 	rcu_read_lock();
1946 	if (last_addr) {
1947 		node = tipc_node_find(net, last_addr);
1948 		if (!node) {
1949 			rcu_read_unlock();
1950 			/* We never set seq or call nl_dump_check_consistent()
1951 			 * this means that setting prev_seq here will cause the
1952 			 * consistence check to fail in the netlink callback
1953 			 * handler. Resulting in the NLMSG_DONE message having
1954 			 * the NLM_F_DUMP_INTR flag set if the node state
1955 			 * changed while we released the lock.
1956 			 */
1957 			cb->prev_seq = 1;
1958 			return -EPIPE;
1959 		}
1960 		tipc_node_put(node);
1961 	}
1962 
1963 	list_for_each_entry_rcu(node, &tn->node_list, list) {
1964 		if (last_addr) {
1965 			if (node->addr == last_addr)
1966 				last_addr = 0;
1967 			else
1968 				continue;
1969 		}
1970 
1971 		tipc_node_read_lock(node);
1972 		err = __tipc_nl_add_node(&msg, node);
1973 		if (err) {
1974 			last_addr = node->addr;
1975 			tipc_node_read_unlock(node);
1976 			goto out;
1977 		}
1978 
1979 		tipc_node_read_unlock(node);
1980 	}
1981 	done = 1;
1982 out:
1983 	cb->args[0] = done;
1984 	cb->args[1] = last_addr;
1985 	rcu_read_unlock();
1986 
1987 	return skb->len;
1988 }
1989 
1990 /* tipc_node_find_by_name - locate owner node of link by link's name
1991  * @net: the applicable net namespace
1992  * @name: pointer to link name string
1993  * @bearer_id: pointer to index in 'node->links' array where the link was found.
1994  *
1995  * Returns pointer to node owning the link, or 0 if no matching link is found.
1996  */
1997 static struct tipc_node *tipc_node_find_by_name(struct net *net,
1998 						const char *link_name,
1999 						unsigned int *bearer_id)
2000 {
2001 	struct tipc_net *tn = net_generic(net, tipc_net_id);
2002 	struct tipc_link *l;
2003 	struct tipc_node *n;
2004 	struct tipc_node *found_node = NULL;
2005 	int i;
2006 
2007 	*bearer_id = 0;
2008 	rcu_read_lock();
2009 	list_for_each_entry_rcu(n, &tn->node_list, list) {
2010 		tipc_node_read_lock(n);
2011 		for (i = 0; i < MAX_BEARERS; i++) {
2012 			l = n->links[i].link;
2013 			if (l && !strcmp(tipc_link_name(l), link_name)) {
2014 				*bearer_id = i;
2015 				found_node = n;
2016 				break;
2017 			}
2018 		}
2019 		tipc_node_read_unlock(n);
2020 		if (found_node)
2021 			break;
2022 	}
2023 	rcu_read_unlock();
2024 
2025 	return found_node;
2026 }
2027 
2028 int tipc_nl_node_set_link(struct sk_buff *skb, struct genl_info *info)
2029 {
2030 	int err;
2031 	int res = 0;
2032 	int bearer_id;
2033 	char *name;
2034 	struct tipc_link *link;
2035 	struct tipc_node *node;
2036 	struct sk_buff_head xmitq;
2037 	struct nlattr *attrs[TIPC_NLA_LINK_MAX + 1];
2038 	struct net *net = sock_net(skb->sk);
2039 
2040 	__skb_queue_head_init(&xmitq);
2041 
2042 	if (!info->attrs[TIPC_NLA_LINK])
2043 		return -EINVAL;
2044 
2045 	err = nla_parse_nested(attrs, TIPC_NLA_LINK_MAX,
2046 			       info->attrs[TIPC_NLA_LINK],
2047 			       tipc_nl_link_policy, info->extack);
2048 	if (err)
2049 		return err;
2050 
2051 	if (!attrs[TIPC_NLA_LINK_NAME])
2052 		return -EINVAL;
2053 
2054 	name = nla_data(attrs[TIPC_NLA_LINK_NAME]);
2055 
2056 	if (strcmp(name, tipc_bclink_name) == 0)
2057 		return tipc_nl_bc_link_set(net, attrs);
2058 
2059 	node = tipc_node_find_by_name(net, name, &bearer_id);
2060 	if (!node)
2061 		return -EINVAL;
2062 
2063 	tipc_node_read_lock(node);
2064 
2065 	link = node->links[bearer_id].link;
2066 	if (!link) {
2067 		res = -EINVAL;
2068 		goto out;
2069 	}
2070 
2071 	if (attrs[TIPC_NLA_LINK_PROP]) {
2072 		struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
2073 
2074 		err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_LINK_PROP],
2075 					      props);
2076 		if (err) {
2077 			res = err;
2078 			goto out;
2079 		}
2080 
2081 		if (props[TIPC_NLA_PROP_TOL]) {
2082 			u32 tol;
2083 
2084 			tol = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
2085 			tipc_link_set_tolerance(link, tol, &xmitq);
2086 		}
2087 		if (props[TIPC_NLA_PROP_PRIO]) {
2088 			u32 prio;
2089 
2090 			prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
2091 			tipc_link_set_prio(link, prio, &xmitq);
2092 		}
2093 		if (props[TIPC_NLA_PROP_WIN]) {
2094 			u32 win;
2095 
2096 			win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
2097 			tipc_link_set_queue_limits(link, win);
2098 		}
2099 	}
2100 
2101 out:
2102 	tipc_node_read_unlock(node);
2103 	tipc_bearer_xmit(net, bearer_id, &xmitq, &node->links[bearer_id].maddr);
2104 	return res;
2105 }
2106 
2107 int tipc_nl_node_get_link(struct sk_buff *skb, struct genl_info *info)
2108 {
2109 	struct net *net = genl_info_net(info);
2110 	struct nlattr *attrs[TIPC_NLA_LINK_MAX + 1];
2111 	struct tipc_nl_msg msg;
2112 	char *name;
2113 	int err;
2114 
2115 	msg.portid = info->snd_portid;
2116 	msg.seq = info->snd_seq;
2117 
2118 	if (!info->attrs[TIPC_NLA_LINK])
2119 		return -EINVAL;
2120 
2121 	err = nla_parse_nested(attrs, TIPC_NLA_LINK_MAX,
2122 			       info->attrs[TIPC_NLA_LINK],
2123 			       tipc_nl_link_policy, info->extack);
2124 	if (err)
2125 		return err;
2126 
2127 	if (!attrs[TIPC_NLA_LINK_NAME])
2128 		return -EINVAL;
2129 
2130 	name = nla_data(attrs[TIPC_NLA_LINK_NAME]);
2131 
2132 	msg.skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
2133 	if (!msg.skb)
2134 		return -ENOMEM;
2135 
2136 	if (strcmp(name, tipc_bclink_name) == 0) {
2137 		err = tipc_nl_add_bc_link(net, &msg);
2138 		if (err)
2139 			goto err_free;
2140 	} else {
2141 		int bearer_id;
2142 		struct tipc_node *node;
2143 		struct tipc_link *link;
2144 
2145 		node = tipc_node_find_by_name(net, name, &bearer_id);
2146 		if (!node) {
2147 			err = -EINVAL;
2148 			goto err_free;
2149 		}
2150 
2151 		tipc_node_read_lock(node);
2152 		link = node->links[bearer_id].link;
2153 		if (!link) {
2154 			tipc_node_read_unlock(node);
2155 			err = -EINVAL;
2156 			goto err_free;
2157 		}
2158 
2159 		err = __tipc_nl_add_link(net, &msg, link, 0);
2160 		tipc_node_read_unlock(node);
2161 		if (err)
2162 			goto err_free;
2163 	}
2164 
2165 	return genlmsg_reply(msg.skb, info);
2166 
2167 err_free:
2168 	nlmsg_free(msg.skb);
2169 	return err;
2170 }
2171 
2172 int tipc_nl_node_reset_link_stats(struct sk_buff *skb, struct genl_info *info)
2173 {
2174 	int err;
2175 	char *link_name;
2176 	unsigned int bearer_id;
2177 	struct tipc_link *link;
2178 	struct tipc_node *node;
2179 	struct nlattr *attrs[TIPC_NLA_LINK_MAX + 1];
2180 	struct net *net = sock_net(skb->sk);
2181 	struct tipc_link_entry *le;
2182 
2183 	if (!info->attrs[TIPC_NLA_LINK])
2184 		return -EINVAL;
2185 
2186 	err = nla_parse_nested(attrs, TIPC_NLA_LINK_MAX,
2187 			       info->attrs[TIPC_NLA_LINK],
2188 			       tipc_nl_link_policy, info->extack);
2189 	if (err)
2190 		return err;
2191 
2192 	if (!attrs[TIPC_NLA_LINK_NAME])
2193 		return -EINVAL;
2194 
2195 	link_name = nla_data(attrs[TIPC_NLA_LINK_NAME]);
2196 
2197 	if (strcmp(link_name, tipc_bclink_name) == 0) {
2198 		err = tipc_bclink_reset_stats(net);
2199 		if (err)
2200 			return err;
2201 		return 0;
2202 	}
2203 
2204 	node = tipc_node_find_by_name(net, link_name, &bearer_id);
2205 	if (!node)
2206 		return -EINVAL;
2207 
2208 	le = &node->links[bearer_id];
2209 	tipc_node_read_lock(node);
2210 	spin_lock_bh(&le->lock);
2211 	link = node->links[bearer_id].link;
2212 	if (!link) {
2213 		spin_unlock_bh(&le->lock);
2214 		tipc_node_read_unlock(node);
2215 		return -EINVAL;
2216 	}
2217 	tipc_link_reset_stats(link);
2218 	spin_unlock_bh(&le->lock);
2219 	tipc_node_read_unlock(node);
2220 	return 0;
2221 }
2222 
2223 /* Caller should hold node lock  */
2224 static int __tipc_nl_add_node_links(struct net *net, struct tipc_nl_msg *msg,
2225 				    struct tipc_node *node, u32 *prev_link)
2226 {
2227 	u32 i;
2228 	int err;
2229 
2230 	for (i = *prev_link; i < MAX_BEARERS; i++) {
2231 		*prev_link = i;
2232 
2233 		if (!node->links[i].link)
2234 			continue;
2235 
2236 		err = __tipc_nl_add_link(net, msg,
2237 					 node->links[i].link, NLM_F_MULTI);
2238 		if (err)
2239 			return err;
2240 	}
2241 	*prev_link = 0;
2242 
2243 	return 0;
2244 }
2245 
2246 int tipc_nl_node_dump_link(struct sk_buff *skb, struct netlink_callback *cb)
2247 {
2248 	struct net *net = sock_net(skb->sk);
2249 	struct tipc_net *tn = net_generic(net, tipc_net_id);
2250 	struct tipc_node *node;
2251 	struct tipc_nl_msg msg;
2252 	u32 prev_node = cb->args[0];
2253 	u32 prev_link = cb->args[1];
2254 	int done = cb->args[2];
2255 	int err;
2256 
2257 	if (done)
2258 		return 0;
2259 
2260 	msg.skb = skb;
2261 	msg.portid = NETLINK_CB(cb->skb).portid;
2262 	msg.seq = cb->nlh->nlmsg_seq;
2263 
2264 	rcu_read_lock();
2265 	if (prev_node) {
2266 		node = tipc_node_find(net, prev_node);
2267 		if (!node) {
2268 			/* We never set seq or call nl_dump_check_consistent()
2269 			 * this means that setting prev_seq here will cause the
2270 			 * consistence check to fail in the netlink callback
2271 			 * handler. Resulting in the last NLMSG_DONE message
2272 			 * having the NLM_F_DUMP_INTR flag set.
2273 			 */
2274 			cb->prev_seq = 1;
2275 			goto out;
2276 		}
2277 		tipc_node_put(node);
2278 
2279 		list_for_each_entry_continue_rcu(node, &tn->node_list,
2280 						 list) {
2281 			tipc_node_read_lock(node);
2282 			err = __tipc_nl_add_node_links(net, &msg, node,
2283 						       &prev_link);
2284 			tipc_node_read_unlock(node);
2285 			if (err)
2286 				goto out;
2287 
2288 			prev_node = node->addr;
2289 		}
2290 	} else {
2291 		err = tipc_nl_add_bc_link(net, &msg);
2292 		if (err)
2293 			goto out;
2294 
2295 		list_for_each_entry_rcu(node, &tn->node_list, list) {
2296 			tipc_node_read_lock(node);
2297 			err = __tipc_nl_add_node_links(net, &msg, node,
2298 						       &prev_link);
2299 			tipc_node_read_unlock(node);
2300 			if (err)
2301 				goto out;
2302 
2303 			prev_node = node->addr;
2304 		}
2305 	}
2306 	done = 1;
2307 out:
2308 	rcu_read_unlock();
2309 
2310 	cb->args[0] = prev_node;
2311 	cb->args[1] = prev_link;
2312 	cb->args[2] = done;
2313 
2314 	return skb->len;
2315 }
2316 
2317 int tipc_nl_node_set_monitor(struct sk_buff *skb, struct genl_info *info)
2318 {
2319 	struct nlattr *attrs[TIPC_NLA_MON_MAX + 1];
2320 	struct net *net = sock_net(skb->sk);
2321 	int err;
2322 
2323 	if (!info->attrs[TIPC_NLA_MON])
2324 		return -EINVAL;
2325 
2326 	err = nla_parse_nested(attrs, TIPC_NLA_MON_MAX,
2327 			       info->attrs[TIPC_NLA_MON],
2328 			       tipc_nl_monitor_policy, info->extack);
2329 	if (err)
2330 		return err;
2331 
2332 	if (attrs[TIPC_NLA_MON_ACTIVATION_THRESHOLD]) {
2333 		u32 val;
2334 
2335 		val = nla_get_u32(attrs[TIPC_NLA_MON_ACTIVATION_THRESHOLD]);
2336 		err = tipc_nl_monitor_set_threshold(net, val);
2337 		if (err)
2338 			return err;
2339 	}
2340 
2341 	return 0;
2342 }
2343 
2344 static int __tipc_nl_add_monitor_prop(struct net *net, struct tipc_nl_msg *msg)
2345 {
2346 	struct nlattr *attrs;
2347 	void *hdr;
2348 	u32 val;
2349 
2350 	hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
2351 			  0, TIPC_NL_MON_GET);
2352 	if (!hdr)
2353 		return -EMSGSIZE;
2354 
2355 	attrs = nla_nest_start(msg->skb, TIPC_NLA_MON);
2356 	if (!attrs)
2357 		goto msg_full;
2358 
2359 	val = tipc_nl_monitor_get_threshold(net);
2360 
2361 	if (nla_put_u32(msg->skb, TIPC_NLA_MON_ACTIVATION_THRESHOLD, val))
2362 		goto attr_msg_full;
2363 
2364 	nla_nest_end(msg->skb, attrs);
2365 	genlmsg_end(msg->skb, hdr);
2366 
2367 	return 0;
2368 
2369 attr_msg_full:
2370 	nla_nest_cancel(msg->skb, attrs);
2371 msg_full:
2372 	genlmsg_cancel(msg->skb, hdr);
2373 
2374 	return -EMSGSIZE;
2375 }
2376 
2377 int tipc_nl_node_get_monitor(struct sk_buff *skb, struct genl_info *info)
2378 {
2379 	struct net *net = sock_net(skb->sk);
2380 	struct tipc_nl_msg msg;
2381 	int err;
2382 
2383 	msg.skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
2384 	if (!msg.skb)
2385 		return -ENOMEM;
2386 	msg.portid = info->snd_portid;
2387 	msg.seq = info->snd_seq;
2388 
2389 	err = __tipc_nl_add_monitor_prop(net, &msg);
2390 	if (err) {
2391 		nlmsg_free(msg.skb);
2392 		return err;
2393 	}
2394 
2395 	return genlmsg_reply(msg.skb, info);
2396 }
2397 
2398 int tipc_nl_node_dump_monitor(struct sk_buff *skb, struct netlink_callback *cb)
2399 {
2400 	struct net *net = sock_net(skb->sk);
2401 	u32 prev_bearer = cb->args[0];
2402 	struct tipc_nl_msg msg;
2403 	int bearer_id;
2404 	int err;
2405 
2406 	if (prev_bearer == MAX_BEARERS)
2407 		return 0;
2408 
2409 	msg.skb = skb;
2410 	msg.portid = NETLINK_CB(cb->skb).portid;
2411 	msg.seq = cb->nlh->nlmsg_seq;
2412 
2413 	rtnl_lock();
2414 	for (bearer_id = prev_bearer; bearer_id < MAX_BEARERS; bearer_id++) {
2415 		err = __tipc_nl_add_monitor(net, &msg, bearer_id);
2416 		if (err)
2417 			break;
2418 	}
2419 	rtnl_unlock();
2420 	cb->args[0] = bearer_id;
2421 
2422 	return skb->len;
2423 }
2424 
2425 int tipc_nl_node_dump_monitor_peer(struct sk_buff *skb,
2426 				   struct netlink_callback *cb)
2427 {
2428 	struct net *net = sock_net(skb->sk);
2429 	u32 prev_node = cb->args[1];
2430 	u32 bearer_id = cb->args[2];
2431 	int done = cb->args[0];
2432 	struct tipc_nl_msg msg;
2433 	int err;
2434 
2435 	if (!prev_node) {
2436 		struct nlattr **attrs;
2437 		struct nlattr *mon[TIPC_NLA_MON_MAX + 1];
2438 
2439 		err = tipc_nlmsg_parse(cb->nlh, &attrs);
2440 		if (err)
2441 			return err;
2442 
2443 		if (!attrs[TIPC_NLA_MON])
2444 			return -EINVAL;
2445 
2446 		err = nla_parse_nested(mon, TIPC_NLA_MON_MAX,
2447 				       attrs[TIPC_NLA_MON],
2448 				       tipc_nl_monitor_policy, NULL);
2449 		if (err)
2450 			return err;
2451 
2452 		if (!mon[TIPC_NLA_MON_REF])
2453 			return -EINVAL;
2454 
2455 		bearer_id = nla_get_u32(mon[TIPC_NLA_MON_REF]);
2456 
2457 		if (bearer_id >= MAX_BEARERS)
2458 			return -EINVAL;
2459 	}
2460 
2461 	if (done)
2462 		return 0;
2463 
2464 	msg.skb = skb;
2465 	msg.portid = NETLINK_CB(cb->skb).portid;
2466 	msg.seq = cb->nlh->nlmsg_seq;
2467 
2468 	rtnl_lock();
2469 	err = tipc_nl_add_monitor_peer(net, &msg, bearer_id, &prev_node);
2470 	if (!err)
2471 		done = 1;
2472 
2473 	rtnl_unlock();
2474 	cb->args[0] = done;
2475 	cb->args[1] = prev_node;
2476 	cb->args[2] = bearer_id;
2477 
2478 	return skb->len;
2479 }
2480 
2481 u32 tipc_node_get_addr(struct tipc_node *node)
2482 {
2483 	return (node) ? node->addr : 0;
2484 }
2485 
2486 /**
2487  * tipc_node_dump - dump TIPC node data
2488  * @n: tipc node to be dumped
2489  * @more: dump more?
2490  *        - false: dump only tipc node data
2491  *        - true: dump node link data as well
2492  * @buf: returned buffer of dump data in format
2493  */
2494 int tipc_node_dump(struct tipc_node *n, bool more, char *buf)
2495 {
2496 	int i = 0;
2497 	size_t sz = (more) ? NODE_LMAX : NODE_LMIN;
2498 
2499 	if (!n) {
2500 		i += scnprintf(buf, sz, "node data: (null)\n");
2501 		return i;
2502 	}
2503 
2504 	i += scnprintf(buf, sz, "node data: %x", n->addr);
2505 	i += scnprintf(buf + i, sz - i, " %x", n->state);
2506 	i += scnprintf(buf + i, sz - i, " %d", n->active_links[0]);
2507 	i += scnprintf(buf + i, sz - i, " %d", n->active_links[1]);
2508 	i += scnprintf(buf + i, sz - i, " %x", n->action_flags);
2509 	i += scnprintf(buf + i, sz - i, " %u", n->failover_sent);
2510 	i += scnprintf(buf + i, sz - i, " %u", n->sync_point);
2511 	i += scnprintf(buf + i, sz - i, " %d", n->link_cnt);
2512 	i += scnprintf(buf + i, sz - i, " %u", n->working_links);
2513 	i += scnprintf(buf + i, sz - i, " %x", n->capabilities);
2514 	i += scnprintf(buf + i, sz - i, " %lu\n", n->keepalive_intv);
2515 
2516 	if (!more)
2517 		return i;
2518 
2519 	i += scnprintf(buf + i, sz - i, "link_entry[0]:\n");
2520 	i += scnprintf(buf + i, sz - i, " mtu: %u\n", n->links[0].mtu);
2521 	i += scnprintf(buf + i, sz - i, " media: ");
2522 	i += tipc_media_addr_printf(buf + i, sz - i, &n->links[0].maddr);
2523 	i += scnprintf(buf + i, sz - i, "\n");
2524 	i += tipc_link_dump(n->links[0].link, TIPC_DUMP_NONE, buf + i);
2525 	i += scnprintf(buf + i, sz - i, " inputq: ");
2526 	i += tipc_list_dump(&n->links[0].inputq, false, buf + i);
2527 
2528 	i += scnprintf(buf + i, sz - i, "link_entry[1]:\n");
2529 	i += scnprintf(buf + i, sz - i, " mtu: %u\n", n->links[1].mtu);
2530 	i += scnprintf(buf + i, sz - i, " media: ");
2531 	i += tipc_media_addr_printf(buf + i, sz - i, &n->links[1].maddr);
2532 	i += scnprintf(buf + i, sz - i, "\n");
2533 	i += tipc_link_dump(n->links[1].link, TIPC_DUMP_NONE, buf + i);
2534 	i += scnprintf(buf + i, sz - i, " inputq: ");
2535 	i += tipc_list_dump(&n->links[1].inputq, false, buf + i);
2536 
2537 	i += scnprintf(buf + i, sz - i, "bclink:\n ");
2538 	i += tipc_link_dump(n->bc_entry.link, TIPC_DUMP_NONE, buf + i);
2539 
2540 	return i;
2541 }
2542