2 * net/tipc/node.c: TIPC node management routines
4 * Copyright (c) 2000-2006, 2012-2016, Ericsson AB
5 * Copyright (c) 2005-2006, 2010-2014, Wind River Systems
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
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.
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.
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.
40 #include "name_distr.h"
49 #define INVALID_NODE_SIG 0x10000
50 #define NODE_CLEANUP_AFTER 300000
52 /* Flags used to take different actions according to flag type
53 * TIPC_NOTIFY_NODE_DOWN: notify node is down
54 * TIPC_NOTIFY_NODE_UP: notify node is up
55 * TIPC_DISTRIBUTE_NAME: publish or withdraw link state name type
58 TIPC_NOTIFY_NODE_DOWN
= (1 << 3),
59 TIPC_NOTIFY_NODE_UP
= (1 << 4),
60 TIPC_NOTIFY_LINK_UP
= (1 << 6),
61 TIPC_NOTIFY_LINK_DOWN
= (1 << 7)
64 struct tipc_link_entry
{
65 struct tipc_link
*link
;
66 spinlock_t lock
; /* per link */
68 struct sk_buff_head inputq
;
69 struct tipc_media_addr maddr
;
72 struct tipc_bclink_entry
{
73 struct tipc_link
*link
;
74 struct sk_buff_head inputq1
;
75 struct sk_buff_head arrvq
;
76 struct sk_buff_head inputq2
;
77 struct sk_buff_head namedq
;
83 * struct tipc_node - TIPC node structure
84 * @addr: network address of node
85 * @kref: reference counter to node object
86 * @lock: rwlock governing access to structure
87 * @net: the applicable net namespace
88 * @hash: links to adjacent nodes in unsorted hash chain
89 * @active_links: bearer ids of active links, used as index into links[] array
90 * @links: array containing references to all links to node
91 * @bc_entry: broadcast link entry
92 * @action_flags: bit mask of different types of node actions
93 * @state: connectivity state vs peer node
94 * @preliminary: a preliminary node or not
95 * @failover_sent: failover sent or not
96 * @sync_point: sequence number where synch/failover is finished
97 * @list: links to adjacent nodes in sorted list of cluster's nodes
98 * @working_links: number of working links to node (both active and standby)
99 * @link_cnt: number of links to node
100 * @capabilities: bitmap, indicating peer node's functional capabilities
101 * @signature: node instance identifier
102 * @link_id: local and remote bearer ids of changing link, if any
103 * @peer_id: 128-bit ID of peer
104 * @peer_id_string: ID string of peer
105 * @publ_list: list of publications
106 * @conn_sks: list of connections (FIXME)
107 * @timer: node's keepalive timer
108 * @keepalive_intv: keepalive interval in milliseconds
109 * @rcu: rcu struct for tipc_node
110 * @delete_at: indicates the time for deleting a down node
111 * @peer_net: peer's net namespace
112 * @peer_hash_mix: hash for this peer (FIXME)
113 * @crypto_rx: RX crypto handler
120 struct hlist_node hash
;
122 struct tipc_link_entry links
[MAX_BEARERS
];
123 struct tipc_bclink_entry bc_entry
;
125 struct list_head list
;
136 char peer_id_string
[NODE_ID_STR_LEN
];
137 struct list_head publ_list
;
138 struct list_head conn_sks
;
139 unsigned long keepalive_intv
;
140 struct timer_list timer
;
142 unsigned long delete_at
;
143 struct net
*peer_net
;
145 #ifdef CONFIG_TIPC_CRYPTO
146 struct tipc_crypto
*crypto_rx
;
150 /* Node FSM states and events:
153 SELF_DOWN_PEER_DOWN
= 0xdd,
154 SELF_UP_PEER_UP
= 0xaa,
155 SELF_DOWN_PEER_LEAVING
= 0xd1,
156 SELF_UP_PEER_COMING
= 0xac,
157 SELF_COMING_PEER_UP
= 0xca,
158 SELF_LEAVING_PEER_DOWN
= 0x1d,
159 NODE_FAILINGOVER
= 0xf0,
164 SELF_ESTABL_CONTACT_EVT
= 0xece,
165 SELF_LOST_CONTACT_EVT
= 0x1ce,
166 PEER_ESTABL_CONTACT_EVT
= 0x9ece,
167 PEER_LOST_CONTACT_EVT
= 0x91ce,
168 NODE_FAILOVER_BEGIN_EVT
= 0xfbe,
169 NODE_FAILOVER_END_EVT
= 0xfee,
170 NODE_SYNCH_BEGIN_EVT
= 0xcbe,
171 NODE_SYNCH_END_EVT
= 0xcee
174 static void __tipc_node_link_down(struct tipc_node
*n
, int *bearer_id
,
175 struct sk_buff_head
*xmitq
,
176 struct tipc_media_addr
**maddr
);
177 static void tipc_node_link_down(struct tipc_node
*n
, int bearer_id
,
179 static void node_lost_contact(struct tipc_node
*n
, struct sk_buff_head
*inputq
);
180 static void tipc_node_delete(struct tipc_node
*node
);
181 static void tipc_node_timeout(struct timer_list
*t
);
182 static void tipc_node_fsm_evt(struct tipc_node
*n
, int evt
);
183 static struct tipc_node
*tipc_node_find(struct net
*net
, u32 addr
);
184 static struct tipc_node
*tipc_node_find_by_id(struct net
*net
, u8
*id
);
185 static bool node_is_up(struct tipc_node
*n
);
186 static void tipc_node_delete_from_list(struct tipc_node
*node
);
188 struct tipc_sock_conn
{
192 struct list_head list
;
195 static struct tipc_link
*node_active_link(struct tipc_node
*n
, int sel
)
197 int bearer_id
= n
->active_links
[sel
& 1];
199 if (unlikely(bearer_id
== INVALID_BEARER_ID
))
202 return n
->links
[bearer_id
].link
;
205 int tipc_node_get_mtu(struct net
*net
, u32 addr
, u32 sel
, bool connected
)
209 unsigned int mtu
= MAX_MSG_SIZE
;
211 n
= tipc_node_find(net
, addr
);
215 /* Allow MAX_MSG_SIZE when building connection oriented message
216 * if they are in the same core network
218 if (n
->peer_net
&& connected
) {
223 bearer_id
= n
->active_links
[sel
& 1];
224 if (likely(bearer_id
!= INVALID_BEARER_ID
))
225 mtu
= n
->links
[bearer_id
].mtu
;
230 bool tipc_node_get_id(struct net
*net
, u32 addr
, u8
*id
)
232 u8
*own_id
= tipc_own_id(net
);
238 if (addr
== tipc_own_addr(net
)) {
239 memcpy(id
, own_id
, TIPC_NODEID_LEN
);
242 n
= tipc_node_find(net
, addr
);
246 memcpy(id
, &n
->peer_id
, TIPC_NODEID_LEN
);
251 u16
tipc_node_get_capabilities(struct net
*net
, u32 addr
)
256 n
= tipc_node_find(net
, addr
);
258 return TIPC_NODE_CAPABILITIES
;
259 caps
= n
->capabilities
;
264 u32
tipc_node_get_addr(struct tipc_node
*node
)
266 return (node
) ? node
->addr
: 0;
269 char *tipc_node_get_id_str(struct tipc_node
*node
)
271 return node
->peer_id_string
;
274 #ifdef CONFIG_TIPC_CRYPTO
276 * tipc_node_crypto_rx - Retrieve crypto RX handle from node
277 * @__n: target tipc_node
278 * Note: node ref counter must be held first!
280 struct tipc_crypto
*tipc_node_crypto_rx(struct tipc_node
*__n
)
282 return (__n
) ? __n
->crypto_rx
: NULL
;
285 struct tipc_crypto
*tipc_node_crypto_rx_by_list(struct list_head
*pos
)
287 return container_of(pos
, struct tipc_node
, list
)->crypto_rx
;
290 struct tipc_crypto
*tipc_node_crypto_rx_by_addr(struct net
*net
, u32 addr
)
294 n
= tipc_node_find(net
, addr
);
295 return (n
) ? n
->crypto_rx
: NULL
;
299 static void tipc_node_free(struct rcu_head
*rp
)
301 struct tipc_node
*n
= container_of(rp
, struct tipc_node
, rcu
);
303 #ifdef CONFIG_TIPC_CRYPTO
304 tipc_crypto_stop(&n
->crypto_rx
);
309 static void tipc_node_kref_release(struct kref
*kref
)
311 struct tipc_node
*n
= container_of(kref
, struct tipc_node
, kref
);
313 kfree(n
->bc_entry
.link
);
314 call_rcu(&n
->rcu
, tipc_node_free
);
317 void tipc_node_put(struct tipc_node
*node
)
319 kref_put(&node
->kref
, tipc_node_kref_release
);
322 void tipc_node_get(struct tipc_node
*node
)
324 kref_get(&node
->kref
);
328 * tipc_node_find - locate specified node object, if it exists
330 static struct tipc_node
*tipc_node_find(struct net
*net
, u32 addr
)
332 struct tipc_net
*tn
= tipc_net(net
);
333 struct tipc_node
*node
;
334 unsigned int thash
= tipc_hashfn(addr
);
337 hlist_for_each_entry_rcu(node
, &tn
->node_htable
[thash
], hash
) {
338 if (node
->addr
!= addr
|| node
->preliminary
)
340 if (!kref_get_unless_zero(&node
->kref
))
348 /* tipc_node_find_by_id - locate specified node object by its 128-bit id
349 * Note: this function is called only when a discovery request failed
350 * to find the node by its 32-bit id, and is not time critical
352 static struct tipc_node
*tipc_node_find_by_id(struct net
*net
, u8
*id
)
354 struct tipc_net
*tn
= tipc_net(net
);
359 list_for_each_entry_rcu(n
, &tn
->node_list
, list
) {
360 read_lock_bh(&n
->lock
);
361 if (!memcmp(id
, n
->peer_id
, 16) &&
362 kref_get_unless_zero(&n
->kref
))
364 read_unlock_bh(&n
->lock
);
369 return found
? n
: NULL
;
372 static void tipc_node_read_lock(struct tipc_node
*n
)
375 read_lock_bh(&n
->lock
);
378 static void tipc_node_read_unlock(struct tipc_node
*n
)
381 read_unlock_bh(&n
->lock
);
384 static void tipc_node_write_lock(struct tipc_node
*n
)
387 write_lock_bh(&n
->lock
);
390 static void tipc_node_write_unlock_fast(struct tipc_node
*n
)
393 write_unlock_bh(&n
->lock
);
396 static void tipc_node_write_unlock(struct tipc_node
*n
)
399 struct tipc_socket_addr sk
;
400 struct net
*net
= n
->net
;
401 u32 flags
= n
->action_flags
;
402 struct list_head
*publ_list
;
403 struct tipc_uaddr ua
;
406 if (likely(!flags
)) {
407 write_unlock_bh(&n
->lock
);
411 tipc_uaddr(&ua
, TIPC_SERVICE_RANGE
, TIPC_NODE_SCOPE
,
412 TIPC_LINK_STATE
, n
->addr
, n
->addr
);
414 sk
.node
= tipc_own_addr(net
);
416 bearer_id
= n
->link_id
& 0xffff;
417 publ_list
= &n
->publ_list
;
419 n
->action_flags
&= ~(TIPC_NOTIFY_NODE_DOWN
| TIPC_NOTIFY_NODE_UP
|
420 TIPC_NOTIFY_LINK_DOWN
| TIPC_NOTIFY_LINK_UP
);
422 write_unlock_bh(&n
->lock
);
424 if (flags
& TIPC_NOTIFY_NODE_DOWN
)
425 tipc_publ_notify(net
, publ_list
, node
, n
->capabilities
);
427 if (flags
& TIPC_NOTIFY_NODE_UP
)
428 tipc_named_node_up(net
, node
, n
->capabilities
);
430 if (flags
& TIPC_NOTIFY_LINK_UP
) {
431 tipc_mon_peer_up(net
, node
, bearer_id
);
432 tipc_nametbl_publish(net
, &ua
, &sk
, sk
.ref
);
434 if (flags
& TIPC_NOTIFY_LINK_DOWN
) {
435 tipc_mon_peer_down(net
, node
, bearer_id
);
436 tipc_nametbl_withdraw(net
, &ua
, &sk
, sk
.ref
);
440 static void tipc_node_assign_peer_net(struct tipc_node
*n
, u32 hash_mixes
)
442 int net_id
= tipc_netid(n
->net
);
443 struct tipc_net
*tn_peer
;
450 for_each_net_rcu(tmp
) {
451 tn_peer
= tipc_net(tmp
);
454 /* Integrity checking whether node exists in namespace or not */
455 if (tn_peer
->net_id
!= net_id
)
457 if (memcmp(n
->peer_id
, tn_peer
->node_id
, NODE_ID_LEN
))
459 hash_chk
= tipc_net_hash_mixes(tmp
, tn_peer
->random
);
460 if (hash_mixes
^ hash_chk
)
463 n
->peer_hash_mix
= hash_mixes
;
468 struct tipc_node
*tipc_node_create(struct net
*net
, u32 addr
, u8
*peer_id
,
469 u16 capabilities
, u32 hash_mixes
,
472 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
473 struct tipc_link
*l
, *snd_l
= tipc_bc_sndlink(net
);
474 struct tipc_node
*n
, *temp_node
;
479 spin_lock_bh(&tn
->node_list_lock
);
480 n
= tipc_node_find(net
, addr
) ?:
481 tipc_node_find_by_id(net
, peer_id
);
487 /* A preliminary node becomes "real" now, refresh its data */
488 tipc_node_write_lock(n
);
489 if (!tipc_link_bc_create(net
, tipc_own_addr(net
), addr
, peer_id
, U16_MAX
,
490 tipc_link_min_win(snd_l
), tipc_link_max_win(snd_l
),
491 n
->capabilities
, &n
->bc_entry
.inputq1
,
492 &n
->bc_entry
.namedq
, snd_l
, &n
->bc_entry
.link
)) {
493 pr_warn("Broadcast rcv link refresh failed, no memory\n");
494 tipc_node_write_unlock_fast(n
);
499 n
->preliminary
= false;
501 hlist_del_rcu(&n
->hash
);
502 hlist_add_head_rcu(&n
->hash
,
503 &tn
->node_htable
[tipc_hashfn(addr
)]);
504 list_del_rcu(&n
->list
);
505 list_for_each_entry_rcu(temp_node
, &tn
->node_list
, list
) {
506 if (n
->addr
< temp_node
->addr
)
509 list_add_tail_rcu(&n
->list
, &temp_node
->list
);
510 tipc_node_write_unlock_fast(n
);
513 if (n
->peer_hash_mix
^ hash_mixes
)
514 tipc_node_assign_peer_net(n
, hash_mixes
);
515 if (n
->capabilities
== capabilities
)
517 /* Same node may come back with new capabilities */
518 tipc_node_write_lock(n
);
519 n
->capabilities
= capabilities
;
520 for (bearer_id
= 0; bearer_id
< MAX_BEARERS
; bearer_id
++) {
521 l
= n
->links
[bearer_id
].link
;
523 tipc_link_update_caps(l
, capabilities
);
525 tipc_node_write_unlock_fast(n
);
527 /* Calculate cluster capabilities */
528 tn
->capabilities
= TIPC_NODE_CAPABILITIES
;
529 list_for_each_entry_rcu(temp_node
, &tn
->node_list
, list
) {
530 tn
->capabilities
&= temp_node
->capabilities
;
533 tipc_bcast_toggle_rcast(net
,
534 (tn
->capabilities
& TIPC_BCAST_RCAST
));
538 n
= kzalloc(sizeof(*n
), GFP_ATOMIC
);
540 pr_warn("Node creation failed, no memory\n");
543 tipc_nodeid2string(n
->peer_id_string
, peer_id
);
544 #ifdef CONFIG_TIPC_CRYPTO
545 if (unlikely(tipc_crypto_start(&n
->crypto_rx
, net
, n
))) {
546 pr_warn("Failed to start crypto RX(%s)!\n", n
->peer_id_string
);
553 n
->preliminary
= preliminary
;
554 memcpy(&n
->peer_id
, peer_id
, 16);
557 n
->peer_hash_mix
= 0;
558 /* Assign kernel local namespace if exists */
559 tipc_node_assign_peer_net(n
, hash_mixes
);
560 n
->capabilities
= capabilities
;
562 rwlock_init(&n
->lock
);
563 INIT_HLIST_NODE(&n
->hash
);
564 INIT_LIST_HEAD(&n
->list
);
565 INIT_LIST_HEAD(&n
->publ_list
);
566 INIT_LIST_HEAD(&n
->conn_sks
);
567 skb_queue_head_init(&n
->bc_entry
.namedq
);
568 skb_queue_head_init(&n
->bc_entry
.inputq1
);
569 __skb_queue_head_init(&n
->bc_entry
.arrvq
);
570 skb_queue_head_init(&n
->bc_entry
.inputq2
);
571 for (i
= 0; i
< MAX_BEARERS
; i
++)
572 spin_lock_init(&n
->links
[i
].lock
);
573 n
->state
= SELF_DOWN_PEER_LEAVING
;
574 n
->delete_at
= jiffies
+ msecs_to_jiffies(NODE_CLEANUP_AFTER
);
575 n
->signature
= INVALID_NODE_SIG
;
576 n
->active_links
[0] = INVALID_BEARER_ID
;
577 n
->active_links
[1] = INVALID_BEARER_ID
;
579 !tipc_link_bc_create(net
, tipc_own_addr(net
), addr
, peer_id
, U16_MAX
,
580 tipc_link_min_win(snd_l
), tipc_link_max_win(snd_l
),
581 n
->capabilities
, &n
->bc_entry
.inputq1
,
582 &n
->bc_entry
.namedq
, snd_l
, &n
->bc_entry
.link
)) {
583 pr_warn("Broadcast rcv link creation failed, no memory\n");
589 timer_setup(&n
->timer
, tipc_node_timeout
, 0);
590 /* Start a slow timer anyway, crypto needs it */
591 n
->keepalive_intv
= 10000;
592 intv
= jiffies
+ msecs_to_jiffies(n
->keepalive_intv
);
593 if (!mod_timer(&n
->timer
, intv
))
595 hlist_add_head_rcu(&n
->hash
, &tn
->node_htable
[tipc_hashfn(addr
)]);
596 list_for_each_entry_rcu(temp_node
, &tn
->node_list
, list
) {
597 if (n
->addr
< temp_node
->addr
)
600 list_add_tail_rcu(&n
->list
, &temp_node
->list
);
601 /* Calculate cluster capabilities */
602 tn
->capabilities
= TIPC_NODE_CAPABILITIES
;
603 list_for_each_entry_rcu(temp_node
, &tn
->node_list
, list
) {
604 tn
->capabilities
&= temp_node
->capabilities
;
606 tipc_bcast_toggle_rcast(net
, (tn
->capabilities
& TIPC_BCAST_RCAST
));
607 trace_tipc_node_create(n
, true, " ");
609 spin_unlock_bh(&tn
->node_list_lock
);
613 static void tipc_node_calculate_timer(struct tipc_node
*n
, struct tipc_link
*l
)
615 unsigned long tol
= tipc_link_tolerance(l
);
616 unsigned long intv
= ((tol
/ 4) > 500) ? 500 : tol
/ 4;
618 /* Link with lowest tolerance determines timer interval */
619 if (intv
< n
->keepalive_intv
)
620 n
->keepalive_intv
= intv
;
622 /* Ensure link's abort limit corresponds to current tolerance */
623 tipc_link_set_abort_limit(l
, tol
/ n
->keepalive_intv
);
626 static void tipc_node_delete_from_list(struct tipc_node
*node
)
628 #ifdef CONFIG_TIPC_CRYPTO
629 tipc_crypto_key_flush(node
->crypto_rx
);
631 list_del_rcu(&node
->list
);
632 hlist_del_rcu(&node
->hash
);
636 static void tipc_node_delete(struct tipc_node
*node
)
638 trace_tipc_node_delete(node
, true, " ");
639 tipc_node_delete_from_list(node
);
641 del_timer_sync(&node
->timer
);
645 void tipc_node_stop(struct net
*net
)
647 struct tipc_net
*tn
= tipc_net(net
);
648 struct tipc_node
*node
, *t_node
;
650 spin_lock_bh(&tn
->node_list_lock
);
651 list_for_each_entry_safe(node
, t_node
, &tn
->node_list
, list
)
652 tipc_node_delete(node
);
653 spin_unlock_bh(&tn
->node_list_lock
);
656 void tipc_node_subscribe(struct net
*net
, struct list_head
*subscr
, u32 addr
)
660 if (in_own_node(net
, addr
))
663 n
= tipc_node_find(net
, addr
);
665 pr_warn("Node subscribe rejected, unknown node 0x%x\n", addr
);
668 tipc_node_write_lock(n
);
669 list_add_tail(subscr
, &n
->publ_list
);
670 tipc_node_write_unlock_fast(n
);
674 void tipc_node_unsubscribe(struct net
*net
, struct list_head
*subscr
, u32 addr
)
678 if (in_own_node(net
, addr
))
681 n
= tipc_node_find(net
, addr
);
683 pr_warn("Node unsubscribe rejected, unknown node 0x%x\n", addr
);
686 tipc_node_write_lock(n
);
687 list_del_init(subscr
);
688 tipc_node_write_unlock_fast(n
);
692 int tipc_node_add_conn(struct net
*net
, u32 dnode
, u32 port
, u32 peer_port
)
694 struct tipc_node
*node
;
695 struct tipc_sock_conn
*conn
;
698 if (in_own_node(net
, dnode
))
701 node
= tipc_node_find(net
, dnode
);
703 pr_warn("Connecting sock to node 0x%x failed\n", dnode
);
704 return -EHOSTUNREACH
;
706 conn
= kmalloc(sizeof(*conn
), GFP_ATOMIC
);
711 conn
->peer_node
= dnode
;
713 conn
->peer_port
= peer_port
;
715 tipc_node_write_lock(node
);
716 list_add_tail(&conn
->list
, &node
->conn_sks
);
717 tipc_node_write_unlock(node
);
723 void tipc_node_remove_conn(struct net
*net
, u32 dnode
, u32 port
)
725 struct tipc_node
*node
;
726 struct tipc_sock_conn
*conn
, *safe
;
728 if (in_own_node(net
, dnode
))
731 node
= tipc_node_find(net
, dnode
);
735 tipc_node_write_lock(node
);
736 list_for_each_entry_safe(conn
, safe
, &node
->conn_sks
, list
) {
737 if (port
!= conn
->port
)
739 list_del(&conn
->list
);
742 tipc_node_write_unlock(node
);
746 static void tipc_node_clear_links(struct tipc_node
*node
)
750 for (i
= 0; i
< MAX_BEARERS
; i
++) {
751 struct tipc_link_entry
*le
= &node
->links
[i
];
761 /* tipc_node_cleanup - delete nodes that does not
762 * have active links for NODE_CLEANUP_AFTER time
764 static bool tipc_node_cleanup(struct tipc_node
*peer
)
766 struct tipc_node
*temp_node
;
767 struct tipc_net
*tn
= tipc_net(peer
->net
);
768 bool deleted
= false;
770 /* If lock held by tipc_node_stop() the node will be deleted anyway */
771 if (!spin_trylock_bh(&tn
->node_list_lock
))
774 tipc_node_write_lock(peer
);
776 if (!node_is_up(peer
) && time_after(jiffies
, peer
->delete_at
)) {
777 tipc_node_clear_links(peer
);
778 tipc_node_delete_from_list(peer
);
781 tipc_node_write_unlock(peer
);
784 spin_unlock_bh(&tn
->node_list_lock
);
788 /* Calculate cluster capabilities */
789 tn
->capabilities
= TIPC_NODE_CAPABILITIES
;
790 list_for_each_entry_rcu(temp_node
, &tn
->node_list
, list
) {
791 tn
->capabilities
&= temp_node
->capabilities
;
793 tipc_bcast_toggle_rcast(peer
->net
,
794 (tn
->capabilities
& TIPC_BCAST_RCAST
));
795 spin_unlock_bh(&tn
->node_list_lock
);
799 /* tipc_node_timeout - handle expiration of node timer
801 static void tipc_node_timeout(struct timer_list
*t
)
803 struct tipc_node
*n
= from_timer(n
, t
, timer
);
804 struct tipc_link_entry
*le
;
805 struct sk_buff_head xmitq
;
806 int remains
= n
->link_cnt
;
810 trace_tipc_node_timeout(n
, false, " ");
811 if (!node_is_up(n
) && tipc_node_cleanup(n
)) {
812 /*Removing the reference of Timer*/
817 #ifdef CONFIG_TIPC_CRYPTO
818 /* Take any crypto key related actions first */
819 tipc_crypto_timeout(n
->crypto_rx
);
821 __skb_queue_head_init(&xmitq
);
823 /* Initial node interval to value larger (10 seconds), then it will be
824 * recalculated with link lowest tolerance
826 tipc_node_read_lock(n
);
827 n
->keepalive_intv
= 10000;
828 tipc_node_read_unlock(n
);
829 for (bearer_id
= 0; remains
&& (bearer_id
< MAX_BEARERS
); bearer_id
++) {
830 tipc_node_read_lock(n
);
831 le
= &n
->links
[bearer_id
];
833 spin_lock_bh(&le
->lock
);
834 /* Link tolerance may change asynchronously: */
835 tipc_node_calculate_timer(n
, le
->link
);
836 rc
= tipc_link_timeout(le
->link
, &xmitq
);
837 spin_unlock_bh(&le
->lock
);
840 tipc_node_read_unlock(n
);
841 tipc_bearer_xmit(n
->net
, bearer_id
, &xmitq
, &le
->maddr
, n
);
842 if (rc
& TIPC_LINK_DOWN_EVT
)
843 tipc_node_link_down(n
, bearer_id
, false);
845 mod_timer(&n
->timer
, jiffies
+ msecs_to_jiffies(n
->keepalive_intv
));
849 * __tipc_node_link_up - handle addition of link
850 * @n: target tipc_node
851 * @bearer_id: id of the bearer
852 * @xmitq: queue for messages to be xmited on
853 * Node lock must be held by caller
854 * Link becomes active (alone or shared) or standby, depending on its priority.
856 static void __tipc_node_link_up(struct tipc_node
*n
, int bearer_id
,
857 struct sk_buff_head
*xmitq
)
859 int *slot0
= &n
->active_links
[0];
860 int *slot1
= &n
->active_links
[1];
861 struct tipc_link
*ol
= node_active_link(n
, 0);
862 struct tipc_link
*nl
= n
->links
[bearer_id
].link
;
864 if (!nl
|| tipc_link_is_up(nl
))
867 tipc_link_fsm_evt(nl
, LINK_ESTABLISH_EVT
);
868 if (!tipc_link_is_up(nl
))
872 n
->action_flags
|= TIPC_NOTIFY_LINK_UP
;
873 n
->link_id
= tipc_link_id(nl
);
875 /* Leave room for tunnel header when returning 'mtu' to users: */
876 n
->links
[bearer_id
].mtu
= tipc_link_mss(nl
);
878 tipc_bearer_add_dest(n
->net
, bearer_id
, n
->addr
);
879 tipc_bcast_inc_bearer_dst_cnt(n
->net
, bearer_id
);
881 pr_debug("Established link <%s> on network plane %c\n",
882 tipc_link_name(nl
), tipc_link_plane(nl
));
883 trace_tipc_node_link_up(n
, true, " ");
885 /* Ensure that a STATE message goes first */
886 tipc_link_build_state_msg(nl
, xmitq
);
888 /* First link? => give it both slots */
892 tipc_node_fsm_evt(n
, SELF_ESTABL_CONTACT_EVT
);
893 n
->action_flags
|= TIPC_NOTIFY_NODE_UP
;
894 tipc_link_set_active(nl
, true);
895 tipc_bcast_add_peer(n
->net
, nl
, xmitq
);
899 /* Second link => redistribute slots */
900 if (tipc_link_prio(nl
) > tipc_link_prio(ol
)) {
901 pr_debug("Old link <%s> becomes standby\n", tipc_link_name(ol
));
904 tipc_link_set_active(nl
, true);
905 tipc_link_set_active(ol
, false);
906 } else if (tipc_link_prio(nl
) == tipc_link_prio(ol
)) {
907 tipc_link_set_active(nl
, true);
910 pr_debug("New link <%s> is standby\n", tipc_link_name(nl
));
913 /* Prepare synchronization with first link */
914 tipc_link_tnl_prepare(ol
, nl
, SYNCH_MSG
, xmitq
);
918 * tipc_node_link_up - handle addition of link
919 * @n: target tipc_node
920 * @bearer_id: id of the bearer
921 * @xmitq: queue for messages to be xmited on
923 * Link becomes active (alone or shared) or standby, depending on its priority.
925 static void tipc_node_link_up(struct tipc_node
*n
, int bearer_id
,
926 struct sk_buff_head
*xmitq
)
928 struct tipc_media_addr
*maddr
;
930 tipc_node_write_lock(n
);
931 __tipc_node_link_up(n
, bearer_id
, xmitq
);
932 maddr
= &n
->links
[bearer_id
].maddr
;
933 tipc_bearer_xmit(n
->net
, bearer_id
, xmitq
, maddr
, n
);
934 tipc_node_write_unlock(n
);
938 * tipc_node_link_failover() - start failover in case "half-failover"
940 * This function is only called in a very special situation where link
941 * failover can be already started on peer node but not on this node.
942 * This can happen when e.g.::
944 * 1. Both links <1A-2A>, <1B-2B> down
945 * 2. Link endpoint 2A up, but 1A still down (e.g. due to network
946 * disturbance, wrong session, etc.)
948 * 4. Link endpoint 2A down (e.g. due to link tolerance timeout)
949 * 5. Node 2 starts failover onto link <1B-2B>
951 * ==> Node 1 does never start link/node failover!
953 * @n: tipc node structure
954 * @l: link peer endpoint failingover (- can be NULL)
956 * @xmitq: queue for messages to be xmited on tnl link later
958 static void tipc_node_link_failover(struct tipc_node
*n
, struct tipc_link
*l
,
959 struct tipc_link
*tnl
,
960 struct sk_buff_head
*xmitq
)
962 /* Avoid to be "self-failover" that can never end */
963 if (!tipc_link_is_up(tnl
))
966 /* Don't rush, failure link may be in the process of resetting */
967 if (l
&& !tipc_link_is_reset(l
))
970 tipc_link_fsm_evt(tnl
, LINK_SYNCH_END_EVT
);
971 tipc_node_fsm_evt(n
, NODE_SYNCH_END_EVT
);
973 n
->sync_point
= tipc_link_rcv_nxt(tnl
) + (U16_MAX
/ 2 - 1);
974 tipc_link_failover_prepare(l
, tnl
, xmitq
);
977 tipc_link_fsm_evt(l
, LINK_FAILOVER_BEGIN_EVT
);
978 tipc_node_fsm_evt(n
, NODE_FAILOVER_BEGIN_EVT
);
982 * __tipc_node_link_down - handle loss of link
983 * @n: target tipc_node
984 * @bearer_id: id of the bearer
985 * @xmitq: queue for messages to be xmited on
986 * @maddr: output media address of the bearer
988 static void __tipc_node_link_down(struct tipc_node
*n
, int *bearer_id
,
989 struct sk_buff_head
*xmitq
,
990 struct tipc_media_addr
**maddr
)
992 struct tipc_link_entry
*le
= &n
->links
[*bearer_id
];
993 int *slot0
= &n
->active_links
[0];
994 int *slot1
= &n
->active_links
[1];
995 int i
, highest
= 0, prio
;
996 struct tipc_link
*l
, *_l
, *tnl
;
998 l
= n
->links
[*bearer_id
].link
;
999 if (!l
|| tipc_link_is_reset(l
))
1003 n
->action_flags
|= TIPC_NOTIFY_LINK_DOWN
;
1004 n
->link_id
= tipc_link_id(l
);
1006 tipc_bearer_remove_dest(n
->net
, *bearer_id
, n
->addr
);
1008 pr_debug("Lost link <%s> on network plane %c\n",
1009 tipc_link_name(l
), tipc_link_plane(l
));
1011 /* Select new active link if any available */
1012 *slot0
= INVALID_BEARER_ID
;
1013 *slot1
= INVALID_BEARER_ID
;
1014 for (i
= 0; i
< MAX_BEARERS
; i
++) {
1015 _l
= n
->links
[i
].link
;
1016 if (!_l
|| !tipc_link_is_up(_l
))
1020 prio
= tipc_link_prio(_l
);
1023 if (prio
> highest
) {
1032 if (!node_is_up(n
)) {
1033 if (tipc_link_peer_is_down(l
))
1034 tipc_node_fsm_evt(n
, PEER_LOST_CONTACT_EVT
);
1035 tipc_node_fsm_evt(n
, SELF_LOST_CONTACT_EVT
);
1036 trace_tipc_link_reset(l
, TIPC_DUMP_ALL
, "link down!");
1037 tipc_link_fsm_evt(l
, LINK_RESET_EVT
);
1039 tipc_link_build_reset_msg(l
, xmitq
);
1040 *maddr
= &n
->links
[*bearer_id
].maddr
;
1041 node_lost_contact(n
, &le
->inputq
);
1042 tipc_bcast_dec_bearer_dst_cnt(n
->net
, *bearer_id
);
1045 tipc_bcast_dec_bearer_dst_cnt(n
->net
, *bearer_id
);
1047 /* There is still a working link => initiate failover */
1048 *bearer_id
= n
->active_links
[0];
1049 tnl
= n
->links
[*bearer_id
].link
;
1050 tipc_link_fsm_evt(tnl
, LINK_SYNCH_END_EVT
);
1051 tipc_node_fsm_evt(n
, NODE_SYNCH_END_EVT
);
1052 n
->sync_point
= tipc_link_rcv_nxt(tnl
) + (U16_MAX
/ 2 - 1);
1053 tipc_link_tnl_prepare(l
, tnl
, FAILOVER_MSG
, xmitq
);
1054 trace_tipc_link_reset(l
, TIPC_DUMP_ALL
, "link down -> failover!");
1056 tipc_link_fsm_evt(l
, LINK_RESET_EVT
);
1057 tipc_link_fsm_evt(l
, LINK_FAILOVER_BEGIN_EVT
);
1058 tipc_node_fsm_evt(n
, NODE_FAILOVER_BEGIN_EVT
);
1059 *maddr
= &n
->links
[*bearer_id
].maddr
;
1062 static void tipc_node_link_down(struct tipc_node
*n
, int bearer_id
, bool delete)
1064 struct tipc_link_entry
*le
= &n
->links
[bearer_id
];
1065 struct tipc_media_addr
*maddr
= NULL
;
1066 struct tipc_link
*l
= le
->link
;
1067 int old_bearer_id
= bearer_id
;
1068 struct sk_buff_head xmitq
;
1073 __skb_queue_head_init(&xmitq
);
1075 tipc_node_write_lock(n
);
1076 if (!tipc_link_is_establishing(l
)) {
1077 __tipc_node_link_down(n
, &bearer_id
, &xmitq
, &maddr
);
1079 /* Defuse pending tipc_node_link_up() */
1081 tipc_link_fsm_evt(l
, LINK_RESET_EVT
);
1088 trace_tipc_node_link_down(n
, true, "node link down or deleted!");
1089 tipc_node_write_unlock(n
);
1091 tipc_mon_remove_peer(n
->net
, n
->addr
, old_bearer_id
);
1092 if (!skb_queue_empty(&xmitq
))
1093 tipc_bearer_xmit(n
->net
, bearer_id
, &xmitq
, maddr
, n
);
1094 tipc_sk_rcv(n
->net
, &le
->inputq
);
1097 static bool node_is_up(struct tipc_node
*n
)
1099 return n
->active_links
[0] != INVALID_BEARER_ID
;
1102 bool tipc_node_is_up(struct net
*net
, u32 addr
)
1104 struct tipc_node
*n
;
1105 bool retval
= false;
1107 if (in_own_node(net
, addr
))
1110 n
= tipc_node_find(net
, addr
);
1113 retval
= node_is_up(n
);
1118 static u32
tipc_node_suggest_addr(struct net
*net
, u32 addr
)
1120 struct tipc_node
*n
;
1122 addr
^= tipc_net(net
)->random
;
1123 while ((n
= tipc_node_find(net
, addr
))) {
1130 /* tipc_node_try_addr(): Check if addr can be used by peer, suggest other if not
1131 * Returns suggested address if any, otherwise 0
1133 u32
tipc_node_try_addr(struct net
*net
, u8
*id
, u32 addr
)
1135 struct tipc_net
*tn
= tipc_net(net
);
1136 struct tipc_node
*n
;
1140 /* Suggest new address if some other peer is using this one */
1141 n
= tipc_node_find(net
, addr
);
1143 if (!memcmp(n
->peer_id
, id
, NODE_ID_LEN
))
1148 return tipc_node_suggest_addr(net
, addr
);
1151 /* Suggest previously used address if peer is known */
1152 n
= tipc_node_find_by_id(net
, id
);
1154 sugg_addr
= n
->addr
;
1155 preliminary
= n
->preliminary
;
1161 /* Even this node may be in conflict */
1162 if (tn
->trial_addr
== addr
)
1163 return tipc_node_suggest_addr(net
, addr
);
1168 void tipc_node_check_dest(struct net
*net
, u32 addr
,
1169 u8
*peer_id
, struct tipc_bearer
*b
,
1170 u16 capabilities
, u32 signature
, u32 hash_mixes
,
1171 struct tipc_media_addr
*maddr
,
1172 bool *respond
, bool *dupl_addr
)
1174 struct tipc_node
*n
;
1175 struct tipc_link
*l
;
1176 struct tipc_link_entry
*le
;
1177 bool addr_match
= false;
1178 bool sign_match
= false;
1179 bool link_up
= false;
1180 bool link_is_reset
= false;
1181 bool accept_addr
= false;
1190 n
= tipc_node_create(net
, addr
, peer_id
, capabilities
, hash_mixes
,
1195 tipc_node_write_lock(n
);
1197 le
= &n
->links
[b
->identity
];
1199 /* Prepare to validate requesting node's signature and media address */
1201 link_up
= l
&& tipc_link_is_up(l
);
1202 link_is_reset
= l
&& tipc_link_is_reset(l
);
1203 addr_match
= l
&& !memcmp(&le
->maddr
, maddr
, sizeof(*maddr
));
1204 sign_match
= (signature
== n
->signature
);
1206 /* These three flags give us eight permutations: */
1208 if (sign_match
&& addr_match
&& link_up
) {
1209 /* All is fine. Ignore requests. */
1210 /* Peer node is not a container/local namespace */
1211 if (!n
->peer_hash_mix
)
1212 n
->peer_hash_mix
= hash_mixes
;
1213 } else if (sign_match
&& addr_match
&& !link_up
) {
1214 /* Respond. The link will come up in due time */
1216 } else if (sign_match
&& !addr_match
&& link_up
) {
1217 /* Peer has changed i/f address without rebooting.
1218 * If so, the link will reset soon, and the next
1219 * discovery will be accepted. So we can ignore it.
1220 * It may also be a cloned or malicious peer having
1221 * chosen the same node address and signature as an
1223 * Ignore requests until the link goes down, if ever.
1226 } else if (sign_match
&& !addr_match
&& !link_up
) {
1227 /* Peer link has changed i/f address without rebooting.
1228 * It may also be a cloned or malicious peer; we can't
1229 * distinguish between the two.
1230 * The signature is correct, so we must accept.
1235 } else if (!sign_match
&& addr_match
&& link_up
) {
1236 /* Peer node rebooted. Two possibilities:
1237 * - Delayed re-discovery; this link endpoint has already
1238 * reset and re-established contact with the peer, before
1239 * receiving a discovery message from that node.
1240 * (The peer happened to receive one from this node first).
1241 * - The peer came back so fast that our side has not
1242 * discovered it yet. Probing from this side will soon
1243 * reset the link, since there can be no working link
1244 * endpoint at the peer end, and the link will re-establish.
1245 * Accept the signature, since it comes from a known peer.
1247 n
->signature
= signature
;
1248 } else if (!sign_match
&& addr_match
&& !link_up
) {
1249 /* The peer node has rebooted.
1250 * Accept signature, since it is a known peer.
1252 n
->signature
= signature
;
1254 } else if (!sign_match
&& !addr_match
&& link_up
) {
1255 /* Peer rebooted with new address, or a new/duplicate peer.
1256 * Ignore until the link goes down, if ever.
1259 } else if (!sign_match
&& !addr_match
&& !link_up
) {
1260 /* Peer rebooted with new address, or it is a new peer.
1261 * Accept signature and address.
1263 n
->signature
= signature
;
1272 /* Now create new link if not already existing */
1274 if (n
->link_cnt
== 2)
1277 if_name
= strchr(b
->name
, ':') + 1;
1278 get_random_bytes(&session
, sizeof(u16
));
1279 if (!tipc_link_create(net
, if_name
, b
->identity
, b
->tolerance
,
1280 b
->net_plane
, b
->mtu
, b
->priority
,
1281 b
->min_win
, b
->max_win
, session
,
1282 tipc_own_addr(net
), addr
, peer_id
,
1284 tipc_bc_sndlink(n
->net
), n
->bc_entry
.link
,
1286 &n
->bc_entry
.namedq
, &l
)) {
1290 trace_tipc_link_reset(l
, TIPC_DUMP_ALL
, "link created!");
1292 tipc_link_fsm_evt(l
, LINK_RESET_EVT
);
1293 if (n
->state
== NODE_FAILINGOVER
)
1294 tipc_link_fsm_evt(l
, LINK_FAILOVER_BEGIN_EVT
);
1295 link_is_reset
= tipc_link_is_reset(l
);
1298 tipc_node_calculate_timer(n
, l
);
1299 if (n
->link_cnt
== 1) {
1300 intv
= jiffies
+ msecs_to_jiffies(n
->keepalive_intv
);
1301 if (!mod_timer(&n
->timer
, intv
))
1305 memcpy(&le
->maddr
, maddr
, sizeof(*maddr
));
1307 tipc_node_write_unlock(n
);
1308 if (reset
&& !link_is_reset
)
1309 tipc_node_link_down(n
, b
->identity
, false);
1313 void tipc_node_delete_links(struct net
*net
, int bearer_id
)
1315 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
1316 struct tipc_node
*n
;
1319 list_for_each_entry_rcu(n
, &tn
->node_list
, list
) {
1320 tipc_node_link_down(n
, bearer_id
, true);
1325 static void tipc_node_reset_links(struct tipc_node
*n
)
1329 pr_warn("Resetting all links to %x\n", n
->addr
);
1331 trace_tipc_node_reset_links(n
, true, " ");
1332 for (i
= 0; i
< MAX_BEARERS
; i
++) {
1333 tipc_node_link_down(n
, i
, false);
1337 /* tipc_node_fsm_evt - node finite state machine
1338 * Determines when contact is allowed with peer node
1340 static void tipc_node_fsm_evt(struct tipc_node
*n
, int evt
)
1342 int state
= n
->state
;
1345 case SELF_DOWN_PEER_DOWN
:
1347 case SELF_ESTABL_CONTACT_EVT
:
1348 state
= SELF_UP_PEER_COMING
;
1350 case PEER_ESTABL_CONTACT_EVT
:
1351 state
= SELF_COMING_PEER_UP
;
1353 case SELF_LOST_CONTACT_EVT
:
1354 case PEER_LOST_CONTACT_EVT
:
1356 case NODE_SYNCH_END_EVT
:
1357 case NODE_SYNCH_BEGIN_EVT
:
1358 case NODE_FAILOVER_BEGIN_EVT
:
1359 case NODE_FAILOVER_END_EVT
:
1364 case SELF_UP_PEER_UP
:
1366 case SELF_LOST_CONTACT_EVT
:
1367 state
= SELF_DOWN_PEER_LEAVING
;
1369 case PEER_LOST_CONTACT_EVT
:
1370 state
= SELF_LEAVING_PEER_DOWN
;
1372 case NODE_SYNCH_BEGIN_EVT
:
1373 state
= NODE_SYNCHING
;
1375 case NODE_FAILOVER_BEGIN_EVT
:
1376 state
= NODE_FAILINGOVER
;
1378 case SELF_ESTABL_CONTACT_EVT
:
1379 case PEER_ESTABL_CONTACT_EVT
:
1380 case NODE_SYNCH_END_EVT
:
1381 case NODE_FAILOVER_END_EVT
:
1387 case SELF_DOWN_PEER_LEAVING
:
1389 case PEER_LOST_CONTACT_EVT
:
1390 state
= SELF_DOWN_PEER_DOWN
;
1392 case SELF_ESTABL_CONTACT_EVT
:
1393 case PEER_ESTABL_CONTACT_EVT
:
1394 case SELF_LOST_CONTACT_EVT
:
1396 case NODE_SYNCH_END_EVT
:
1397 case NODE_SYNCH_BEGIN_EVT
:
1398 case NODE_FAILOVER_BEGIN_EVT
:
1399 case NODE_FAILOVER_END_EVT
:
1404 case SELF_UP_PEER_COMING
:
1406 case PEER_ESTABL_CONTACT_EVT
:
1407 state
= SELF_UP_PEER_UP
;
1409 case SELF_LOST_CONTACT_EVT
:
1410 state
= SELF_DOWN_PEER_DOWN
;
1412 case SELF_ESTABL_CONTACT_EVT
:
1413 case PEER_LOST_CONTACT_EVT
:
1414 case NODE_SYNCH_END_EVT
:
1415 case NODE_FAILOVER_BEGIN_EVT
:
1417 case NODE_SYNCH_BEGIN_EVT
:
1418 case NODE_FAILOVER_END_EVT
:
1423 case SELF_COMING_PEER_UP
:
1425 case SELF_ESTABL_CONTACT_EVT
:
1426 state
= SELF_UP_PEER_UP
;
1428 case PEER_LOST_CONTACT_EVT
:
1429 state
= SELF_DOWN_PEER_DOWN
;
1431 case SELF_LOST_CONTACT_EVT
:
1432 case PEER_ESTABL_CONTACT_EVT
:
1434 case NODE_SYNCH_END_EVT
:
1435 case NODE_SYNCH_BEGIN_EVT
:
1436 case NODE_FAILOVER_BEGIN_EVT
:
1437 case NODE_FAILOVER_END_EVT
:
1442 case SELF_LEAVING_PEER_DOWN
:
1444 case SELF_LOST_CONTACT_EVT
:
1445 state
= SELF_DOWN_PEER_DOWN
;
1447 case SELF_ESTABL_CONTACT_EVT
:
1448 case PEER_ESTABL_CONTACT_EVT
:
1449 case PEER_LOST_CONTACT_EVT
:
1451 case NODE_SYNCH_END_EVT
:
1452 case NODE_SYNCH_BEGIN_EVT
:
1453 case NODE_FAILOVER_BEGIN_EVT
:
1454 case NODE_FAILOVER_END_EVT
:
1459 case NODE_FAILINGOVER
:
1461 case SELF_LOST_CONTACT_EVT
:
1462 state
= SELF_DOWN_PEER_LEAVING
;
1464 case PEER_LOST_CONTACT_EVT
:
1465 state
= SELF_LEAVING_PEER_DOWN
;
1467 case NODE_FAILOVER_END_EVT
:
1468 state
= SELF_UP_PEER_UP
;
1470 case NODE_FAILOVER_BEGIN_EVT
:
1471 case SELF_ESTABL_CONTACT_EVT
:
1472 case PEER_ESTABL_CONTACT_EVT
:
1474 case NODE_SYNCH_BEGIN_EVT
:
1475 case NODE_SYNCH_END_EVT
:
1482 case SELF_LOST_CONTACT_EVT
:
1483 state
= SELF_DOWN_PEER_LEAVING
;
1485 case PEER_LOST_CONTACT_EVT
:
1486 state
= SELF_LEAVING_PEER_DOWN
;
1488 case NODE_SYNCH_END_EVT
:
1489 state
= SELF_UP_PEER_UP
;
1491 case NODE_FAILOVER_BEGIN_EVT
:
1492 state
= NODE_FAILINGOVER
;
1494 case NODE_SYNCH_BEGIN_EVT
:
1495 case SELF_ESTABL_CONTACT_EVT
:
1496 case PEER_ESTABL_CONTACT_EVT
:
1498 case NODE_FAILOVER_END_EVT
:
1504 pr_err("Unknown node fsm state %x\n", state
);
1507 trace_tipc_node_fsm(n
->peer_id
, n
->state
, state
, evt
);
1512 pr_err("Illegal node fsm evt %x in state %x\n", evt
, state
);
1513 trace_tipc_node_fsm(n
->peer_id
, n
->state
, state
, evt
);
1516 static void node_lost_contact(struct tipc_node
*n
,
1517 struct sk_buff_head
*inputq
)
1519 struct tipc_sock_conn
*conn
, *safe
;
1520 struct tipc_link
*l
;
1521 struct list_head
*conns
= &n
->conn_sks
;
1522 struct sk_buff
*skb
;
1525 pr_debug("Lost contact with %x\n", n
->addr
);
1526 n
->delete_at
= jiffies
+ msecs_to_jiffies(NODE_CLEANUP_AFTER
);
1527 trace_tipc_node_lost_contact(n
, true, " ");
1529 /* Clean up broadcast state */
1530 tipc_bcast_remove_peer(n
->net
, n
->bc_entry
.link
);
1531 skb_queue_purge(&n
->bc_entry
.namedq
);
1533 /* Abort any ongoing link failover */
1534 for (i
= 0; i
< MAX_BEARERS
; i
++) {
1535 l
= n
->links
[i
].link
;
1537 tipc_link_fsm_evt(l
, LINK_FAILOVER_END_EVT
);
1540 /* Notify publications from this node */
1541 n
->action_flags
|= TIPC_NOTIFY_NODE_DOWN
;
1543 n
->peer_hash_mix
= 0;
1544 /* Notify sockets connected to node */
1545 list_for_each_entry_safe(conn
, safe
, conns
, list
) {
1546 skb
= tipc_msg_create(TIPC_CRITICAL_IMPORTANCE
, TIPC_CONN_MSG
,
1547 SHORT_H_SIZE
, 0, tipc_own_addr(n
->net
),
1548 conn
->peer_node
, conn
->port
,
1549 conn
->peer_port
, TIPC_ERR_NO_NODE
);
1551 skb_queue_tail(inputq
, skb
);
1552 list_del(&conn
->list
);
1558 * tipc_node_get_linkname - get the name of a link
1560 * @net: the applicable net namespace
1561 * @bearer_id: id of the bearer
1562 * @addr: peer node address
1563 * @linkname: link name output buffer
1564 * @len: size of @linkname output buffer
1566 * Return: 0 on success
1568 int tipc_node_get_linkname(struct net
*net
, u32 bearer_id
, u32 addr
,
1569 char *linkname
, size_t len
)
1571 struct tipc_link
*link
;
1573 struct tipc_node
*node
= tipc_node_find(net
, addr
);
1578 if (bearer_id
>= MAX_BEARERS
)
1581 tipc_node_read_lock(node
);
1582 link
= node
->links
[bearer_id
].link
;
1584 strncpy(linkname
, tipc_link_name(link
), len
);
1587 tipc_node_read_unlock(node
);
1589 tipc_node_put(node
);
1593 /* Caller should hold node lock for the passed node */
1594 static int __tipc_nl_add_node(struct tipc_nl_msg
*msg
, struct tipc_node
*node
)
1597 struct nlattr
*attrs
;
1599 hdr
= genlmsg_put(msg
->skb
, msg
->portid
, msg
->seq
, &tipc_genl_family
,
1600 NLM_F_MULTI
, TIPC_NL_NODE_GET
);
1604 attrs
= nla_nest_start_noflag(msg
->skb
, TIPC_NLA_NODE
);
1608 if (nla_put_u32(msg
->skb
, TIPC_NLA_NODE_ADDR
, node
->addr
))
1610 if (node_is_up(node
))
1611 if (nla_put_flag(msg
->skb
, TIPC_NLA_NODE_UP
))
1614 nla_nest_end(msg
->skb
, attrs
);
1615 genlmsg_end(msg
->skb
, hdr
);
1620 nla_nest_cancel(msg
->skb
, attrs
);
1622 genlmsg_cancel(msg
->skb
, hdr
);
1627 static void tipc_lxc_xmit(struct net
*peer_net
, struct sk_buff_head
*list
)
1629 struct tipc_msg
*hdr
= buf_msg(skb_peek(list
));
1630 struct sk_buff_head inputq
;
1632 switch (msg_user(hdr
)) {
1633 case TIPC_LOW_IMPORTANCE
:
1634 case TIPC_MEDIUM_IMPORTANCE
:
1635 case TIPC_HIGH_IMPORTANCE
:
1636 case TIPC_CRITICAL_IMPORTANCE
:
1637 if (msg_connected(hdr
) || msg_named(hdr
) ||
1639 tipc_loopback_trace(peer_net
, list
);
1640 spin_lock_init(&list
->lock
);
1641 tipc_sk_rcv(peer_net
, list
);
1644 if (msg_mcast(hdr
)) {
1645 tipc_loopback_trace(peer_net
, list
);
1646 skb_queue_head_init(&inputq
);
1647 tipc_sk_mcast_rcv(peer_net
, list
, &inputq
);
1648 __skb_queue_purge(list
);
1649 skb_queue_purge(&inputq
);
1653 case MSG_FRAGMENTER
:
1654 if (tipc_msg_assemble(list
)) {
1655 tipc_loopback_trace(peer_net
, list
);
1656 skb_queue_head_init(&inputq
);
1657 tipc_sk_mcast_rcv(peer_net
, list
, &inputq
);
1658 __skb_queue_purge(list
);
1659 skb_queue_purge(&inputq
);
1662 case GROUP_PROTOCOL
:
1664 tipc_loopback_trace(peer_net
, list
);
1665 spin_lock_init(&list
->lock
);
1666 tipc_sk_rcv(peer_net
, list
);
1669 case NAME_DISTRIBUTOR
:
1670 case TUNNEL_PROTOCOL
:
1671 case BCAST_PROTOCOL
:
1679 * tipc_node_xmit() - general link level function for message sending
1680 * @net: the applicable net namespace
1681 * @list: chain of buffers containing message
1682 * @dnode: address of destination node
1683 * @selector: a number used for deterministic link selection
1684 * Consumes the buffer chain.
1685 * Return: 0 if success, otherwise: -ELINKCONG,-EHOSTUNREACH,-EMSGSIZE,-ENOBUF
1687 int tipc_node_xmit(struct net
*net
, struct sk_buff_head
*list
,
1688 u32 dnode
, int selector
)
1690 struct tipc_link_entry
*le
= NULL
;
1691 struct tipc_node
*n
;
1692 struct sk_buff_head xmitq
;
1693 bool node_up
= false;
1694 struct net
*peer_net
;
1698 if (in_own_node(net
, dnode
)) {
1699 tipc_loopback_trace(net
, list
);
1700 spin_lock_init(&list
->lock
);
1701 tipc_sk_rcv(net
, list
);
1705 n
= tipc_node_find(net
, dnode
);
1707 __skb_queue_purge(list
);
1708 return -EHOSTUNREACH
;
1712 tipc_node_read_lock(n
);
1713 node_up
= node_is_up(n
);
1714 peer_net
= n
->peer_net
;
1715 tipc_node_read_unlock(n
);
1716 if (node_up
&& peer_net
&& check_net(peer_net
)) {
1717 /* xmit inner linux container */
1718 tipc_lxc_xmit(peer_net
, list
);
1719 if (likely(skb_queue_empty(list
))) {
1727 tipc_node_read_lock(n
);
1728 bearer_id
= n
->active_links
[selector
& 1];
1729 if (unlikely(bearer_id
== INVALID_BEARER_ID
)) {
1730 tipc_node_read_unlock(n
);
1732 __skb_queue_purge(list
);
1733 return -EHOSTUNREACH
;
1736 __skb_queue_head_init(&xmitq
);
1737 le
= &n
->links
[bearer_id
];
1738 spin_lock_bh(&le
->lock
);
1739 rc
= tipc_link_xmit(le
->link
, list
, &xmitq
);
1740 spin_unlock_bh(&le
->lock
);
1741 tipc_node_read_unlock(n
);
1743 if (unlikely(rc
== -ENOBUFS
))
1744 tipc_node_link_down(n
, bearer_id
, false);
1746 tipc_bearer_xmit(net
, bearer_id
, &xmitq
, &le
->maddr
, n
);
1753 /* tipc_node_xmit_skb(): send single buffer to destination
1754 * Buffers sent via this function are generally TIPC_SYSTEM_IMPORTANCE
1755 * messages, which will not be rejected
1756 * The only exception is datagram messages rerouted after secondary
1757 * lookup, which are rare and safe to dispose of anyway.
1759 int tipc_node_xmit_skb(struct net
*net
, struct sk_buff
*skb
, u32 dnode
,
1762 struct sk_buff_head head
;
1764 __skb_queue_head_init(&head
);
1765 __skb_queue_tail(&head
, skb
);
1766 tipc_node_xmit(net
, &head
, dnode
, selector
);
1770 /* tipc_node_distr_xmit(): send single buffer msgs to individual destinations
1771 * Note: this is only for SYSTEM_IMPORTANCE messages, which cannot be rejected
1773 int tipc_node_distr_xmit(struct net
*net
, struct sk_buff_head
*xmitq
)
1775 struct sk_buff
*skb
;
1776 u32 selector
, dnode
;
1778 while ((skb
= __skb_dequeue(xmitq
))) {
1779 selector
= msg_origport(buf_msg(skb
));
1780 dnode
= msg_destnode(buf_msg(skb
));
1781 tipc_node_xmit_skb(net
, skb
, dnode
, selector
);
1786 void tipc_node_broadcast(struct net
*net
, struct sk_buff
*skb
, int rc_dests
)
1788 struct sk_buff_head xmitq
;
1789 struct sk_buff
*txskb
;
1790 struct tipc_node
*n
;
1794 /* Use broadcast if all nodes support it */
1795 if (!rc_dests
&& tipc_bcast_get_mode(net
) != BCLINK_MODE_RCAST
) {
1796 __skb_queue_head_init(&xmitq
);
1797 __skb_queue_tail(&xmitq
, skb
);
1798 tipc_bcast_xmit(net
, &xmitq
, &dummy
);
1802 /* Otherwise use legacy replicast method */
1804 list_for_each_entry_rcu(n
, tipc_nodes(net
), list
) {
1806 if (in_own_node(net
, dst
))
1810 txskb
= pskb_copy(skb
, GFP_ATOMIC
);
1813 msg_set_destnode(buf_msg(txskb
), dst
);
1814 tipc_node_xmit_skb(net
, txskb
, dst
, 0);
1820 static void tipc_node_mcast_rcv(struct tipc_node
*n
)
1822 struct tipc_bclink_entry
*be
= &n
->bc_entry
;
1824 /* 'arrvq' is under inputq2's lock protection */
1825 spin_lock_bh(&be
->inputq2
.lock
);
1826 spin_lock_bh(&be
->inputq1
.lock
);
1827 skb_queue_splice_tail_init(&be
->inputq1
, &be
->arrvq
);
1828 spin_unlock_bh(&be
->inputq1
.lock
);
1829 spin_unlock_bh(&be
->inputq2
.lock
);
1830 tipc_sk_mcast_rcv(n
->net
, &be
->arrvq
, &be
->inputq2
);
1833 static void tipc_node_bc_sync_rcv(struct tipc_node
*n
, struct tipc_msg
*hdr
,
1834 int bearer_id
, struct sk_buff_head
*xmitq
)
1836 struct tipc_link
*ucl
;
1839 rc
= tipc_bcast_sync_rcv(n
->net
, n
->bc_entry
.link
, hdr
, xmitq
);
1841 if (rc
& TIPC_LINK_DOWN_EVT
) {
1842 tipc_node_reset_links(n
);
1846 if (!(rc
& TIPC_LINK_SND_STATE
))
1849 /* If probe message, a STATE response will be sent anyway */
1853 /* Produce a STATE message carrying broadcast NACK */
1854 tipc_node_read_lock(n
);
1855 ucl
= n
->links
[bearer_id
].link
;
1857 tipc_link_build_state_msg(ucl
, xmitq
);
1858 tipc_node_read_unlock(n
);
1862 * tipc_node_bc_rcv - process TIPC broadcast packet arriving from off-node
1863 * @net: the applicable net namespace
1865 * @bearer_id: id of bearer message arrived on
1867 * Invoked with no locks held.
1869 static void tipc_node_bc_rcv(struct net
*net
, struct sk_buff
*skb
, int bearer_id
)
1872 struct sk_buff_head xmitq
;
1873 struct tipc_bclink_entry
*be
;
1874 struct tipc_link_entry
*le
;
1875 struct tipc_msg
*hdr
= buf_msg(skb
);
1876 int usr
= msg_user(hdr
);
1877 u32 dnode
= msg_destnode(hdr
);
1878 struct tipc_node
*n
;
1880 __skb_queue_head_init(&xmitq
);
1882 /* If NACK for other node, let rcv link for that node peek into it */
1883 if ((usr
== BCAST_PROTOCOL
) && (dnode
!= tipc_own_addr(net
)))
1884 n
= tipc_node_find(net
, dnode
);
1886 n
= tipc_node_find(net
, msg_prevnode(hdr
));
1892 le
= &n
->links
[bearer_id
];
1894 rc
= tipc_bcast_rcv(net
, be
->link
, skb
);
1896 /* Broadcast ACKs are sent on a unicast link */
1897 if (rc
& TIPC_LINK_SND_STATE
) {
1898 tipc_node_read_lock(n
);
1899 tipc_link_build_state_msg(le
->link
, &xmitq
);
1900 tipc_node_read_unlock(n
);
1903 if (!skb_queue_empty(&xmitq
))
1904 tipc_bearer_xmit(net
, bearer_id
, &xmitq
, &le
->maddr
, n
);
1906 if (!skb_queue_empty(&be
->inputq1
))
1907 tipc_node_mcast_rcv(n
);
1909 /* Handle NAME_DISTRIBUTOR messages sent from 1.7 nodes */
1910 if (!skb_queue_empty(&n
->bc_entry
.namedq
))
1911 tipc_named_rcv(net
, &n
->bc_entry
.namedq
,
1912 &n
->bc_entry
.named_rcv_nxt
,
1913 &n
->bc_entry
.named_open
);
1915 /* If reassembly or retransmission failure => reset all links to peer */
1916 if (rc
& TIPC_LINK_DOWN_EVT
)
1917 tipc_node_reset_links(n
);
1923 * tipc_node_check_state - check and if necessary update node state
1924 * @n: target tipc_node
1926 * @bearer_id: identity of bearer delivering the packet
1927 * @xmitq: queue for messages to be xmited on
1928 * Return: true if state and msg are ok, otherwise false
1930 static bool tipc_node_check_state(struct tipc_node
*n
, struct sk_buff
*skb
,
1931 int bearer_id
, struct sk_buff_head
*xmitq
)
1933 struct tipc_msg
*hdr
= buf_msg(skb
);
1934 int usr
= msg_user(hdr
);
1935 int mtyp
= msg_type(hdr
);
1936 u16 oseqno
= msg_seqno(hdr
);
1937 u16 exp_pkts
= msg_msgcnt(hdr
);
1938 u16 rcv_nxt
, syncpt
, dlv_nxt
, inputq_len
;
1939 int state
= n
->state
;
1940 struct tipc_link
*l
, *tnl
, *pl
= NULL
;
1941 struct tipc_media_addr
*maddr
;
1944 if (trace_tipc_node_check_state_enabled()) {
1945 trace_tipc_skb_dump(skb
, false, "skb for node state check");
1946 trace_tipc_node_check_state(n
, true, " ");
1948 l
= n
->links
[bearer_id
].link
;
1951 rcv_nxt
= tipc_link_rcv_nxt(l
);
1954 if (likely((state
== SELF_UP_PEER_UP
) && (usr
!= TUNNEL_PROTOCOL
)))
1957 /* Find parallel link, if any */
1958 for (pb_id
= 0; pb_id
< MAX_BEARERS
; pb_id
++) {
1959 if ((pb_id
!= bearer_id
) && n
->links
[pb_id
].link
) {
1960 pl
= n
->links
[pb_id
].link
;
1965 if (!tipc_link_validate_msg(l
, hdr
)) {
1966 trace_tipc_skb_dump(skb
, false, "PROTO invalid (2)!");
1967 trace_tipc_link_dump(l
, TIPC_DUMP_NONE
, "PROTO invalid (2)!");
1971 /* Check and update node accesibility if applicable */
1972 if (state
== SELF_UP_PEER_COMING
) {
1973 if (!tipc_link_is_up(l
))
1975 if (!msg_peer_link_is_up(hdr
))
1977 tipc_node_fsm_evt(n
, PEER_ESTABL_CONTACT_EVT
);
1980 if (state
== SELF_DOWN_PEER_LEAVING
) {
1981 if (msg_peer_node_is_up(hdr
))
1983 tipc_node_fsm_evt(n
, PEER_LOST_CONTACT_EVT
);
1987 if (state
== SELF_LEAVING_PEER_DOWN
)
1990 /* Ignore duplicate packets */
1991 if ((usr
!= LINK_PROTOCOL
) && less(oseqno
, rcv_nxt
))
1994 /* Initiate or update failover mode if applicable */
1995 if ((usr
== TUNNEL_PROTOCOL
) && (mtyp
== FAILOVER_MSG
)) {
1996 syncpt
= oseqno
+ exp_pkts
- 1;
1997 if (pl
&& !tipc_link_is_reset(pl
)) {
1998 __tipc_node_link_down(n
, &pb_id
, xmitq
, &maddr
);
1999 trace_tipc_node_link_down(n
, true,
2000 "node link down <- failover!");
2001 tipc_skb_queue_splice_tail_init(tipc_link_inputq(pl
),
2002 tipc_link_inputq(l
));
2005 /* If parallel link was already down, and this happened before
2006 * the tunnel link came up, node failover was never started.
2007 * Ensure that a FAILOVER_MSG is sent to get peer out of
2008 * NODE_FAILINGOVER state, also this node must accept
2009 * TUNNEL_MSGs from peer.
2011 if (n
->state
!= NODE_FAILINGOVER
)
2012 tipc_node_link_failover(n
, pl
, l
, xmitq
);
2014 /* If pkts arrive out of order, use lowest calculated syncpt */
2015 if (less(syncpt
, n
->sync_point
))
2016 n
->sync_point
= syncpt
;
2019 /* Open parallel link when tunnel link reaches synch point */
2020 if ((n
->state
== NODE_FAILINGOVER
) && tipc_link_is_up(l
)) {
2021 if (!more(rcv_nxt
, n
->sync_point
))
2023 tipc_node_fsm_evt(n
, NODE_FAILOVER_END_EVT
);
2025 tipc_link_fsm_evt(pl
, LINK_FAILOVER_END_EVT
);
2029 /* No syncing needed if only one link */
2030 if (!pl
|| !tipc_link_is_up(pl
))
2033 /* Initiate synch mode if applicable */
2034 if ((usr
== TUNNEL_PROTOCOL
) && (mtyp
== SYNCH_MSG
) && (oseqno
== 1)) {
2035 if (n
->capabilities
& TIPC_TUNNEL_ENHANCED
)
2036 syncpt
= msg_syncpt(hdr
);
2038 syncpt
= msg_seqno(msg_inner_hdr(hdr
)) + exp_pkts
- 1;
2039 if (!tipc_link_is_up(l
))
2040 __tipc_node_link_up(n
, bearer_id
, xmitq
);
2041 if (n
->state
== SELF_UP_PEER_UP
) {
2042 n
->sync_point
= syncpt
;
2043 tipc_link_fsm_evt(l
, LINK_SYNCH_BEGIN_EVT
);
2044 tipc_node_fsm_evt(n
, NODE_SYNCH_BEGIN_EVT
);
2048 /* Open tunnel link when parallel link reaches synch point */
2049 if (n
->state
== NODE_SYNCHING
) {
2050 if (tipc_link_is_synching(l
)) {
2056 inputq_len
= skb_queue_len(tipc_link_inputq(pl
));
2057 dlv_nxt
= tipc_link_rcv_nxt(pl
) - inputq_len
;
2058 if (more(dlv_nxt
, n
->sync_point
)) {
2059 tipc_link_fsm_evt(tnl
, LINK_SYNCH_END_EVT
);
2060 tipc_node_fsm_evt(n
, NODE_SYNCH_END_EVT
);
2065 if ((usr
== TUNNEL_PROTOCOL
) && (mtyp
== SYNCH_MSG
))
2067 if (usr
== LINK_PROTOCOL
)
2075 * tipc_rcv - process TIPC packets/messages arriving from off-node
2076 * @net: the applicable net namespace
2078 * @b: pointer to bearer message arrived on
2080 * Invoked with no locks held. Bearer pointer must point to a valid bearer
2081 * structure (i.e. cannot be NULL), but bearer can be inactive.
2083 void tipc_rcv(struct net
*net
, struct sk_buff
*skb
, struct tipc_bearer
*b
)
2085 struct sk_buff_head xmitq
;
2086 struct tipc_link_entry
*le
;
2087 struct tipc_msg
*hdr
;
2088 struct tipc_node
*n
;
2089 int bearer_id
= b
->identity
;
2090 u32 self
= tipc_own_addr(net
);
2093 #ifdef CONFIG_TIPC_CRYPTO
2094 struct tipc_ehdr
*ehdr
;
2096 /* Check if message must be decrypted first */
2097 if (TIPC_SKB_CB(skb
)->decrypted
|| !tipc_ehdr_validate(skb
))
2100 ehdr
= (struct tipc_ehdr
*)skb
->data
;
2101 if (likely(ehdr
->user
!= LINK_CONFIG
)) {
2102 n
= tipc_node_find(net
, ntohl(ehdr
->addr
));
2106 n
= tipc_node_find_by_id(net
, ehdr
->id
);
2109 tipc_crypto_rcv(net
, (n
) ? n
->crypto_rx
: NULL
, &skb
, b
);
2115 /* Ensure message is well-formed before touching the header */
2116 if (unlikely(!tipc_msg_validate(&skb
)))
2118 __skb_queue_head_init(&xmitq
);
2120 usr
= msg_user(hdr
);
2121 bc_ack
= msg_bcast_ack(hdr
);
2123 /* Handle arrival of discovery or broadcast packet */
2124 if (unlikely(msg_non_seq(hdr
))) {
2125 if (unlikely(usr
== LINK_CONFIG
))
2126 return tipc_disc_rcv(net
, skb
, b
);
2128 return tipc_node_bc_rcv(net
, skb
, bearer_id
);
2131 /* Discard unicast link messages destined for another node */
2132 if (unlikely(!msg_short(hdr
) && (msg_destnode(hdr
) != self
)))
2135 /* Locate neighboring node that sent packet */
2136 n
= tipc_node_find(net
, msg_prevnode(hdr
));
2139 le
= &n
->links
[bearer_id
];
2141 /* Ensure broadcast reception is in synch with peer's send state */
2142 if (unlikely(usr
== LINK_PROTOCOL
)) {
2143 if (unlikely(skb_linearize(skb
))) {
2148 tipc_node_bc_sync_rcv(n
, hdr
, bearer_id
, &xmitq
);
2149 } else if (unlikely(tipc_link_acked(n
->bc_entry
.link
) != bc_ack
)) {
2150 tipc_bcast_ack_rcv(net
, n
->bc_entry
.link
, hdr
);
2153 /* Receive packet directly if conditions permit */
2154 tipc_node_read_lock(n
);
2155 if (likely((n
->state
== SELF_UP_PEER_UP
) && (usr
!= TUNNEL_PROTOCOL
))) {
2156 spin_lock_bh(&le
->lock
);
2158 rc
= tipc_link_rcv(le
->link
, skb
, &xmitq
);
2161 spin_unlock_bh(&le
->lock
);
2163 tipc_node_read_unlock(n
);
2165 /* Check/update node state before receiving */
2166 if (unlikely(skb
)) {
2167 if (unlikely(skb_linearize(skb
)))
2169 tipc_node_write_lock(n
);
2170 if (tipc_node_check_state(n
, skb
, bearer_id
, &xmitq
)) {
2172 rc
= tipc_link_rcv(le
->link
, skb
, &xmitq
);
2176 tipc_node_write_unlock(n
);
2179 if (unlikely(rc
& TIPC_LINK_UP_EVT
))
2180 tipc_node_link_up(n
, bearer_id
, &xmitq
);
2182 if (unlikely(rc
& TIPC_LINK_DOWN_EVT
))
2183 tipc_node_link_down(n
, bearer_id
, false);
2185 if (unlikely(!skb_queue_empty(&n
->bc_entry
.namedq
)))
2186 tipc_named_rcv(net
, &n
->bc_entry
.namedq
,
2187 &n
->bc_entry
.named_rcv_nxt
,
2188 &n
->bc_entry
.named_open
);
2190 if (unlikely(!skb_queue_empty(&n
->bc_entry
.inputq1
)))
2191 tipc_node_mcast_rcv(n
);
2193 if (!skb_queue_empty(&le
->inputq
))
2194 tipc_sk_rcv(net
, &le
->inputq
);
2196 if (!skb_queue_empty(&xmitq
))
2197 tipc_bearer_xmit(net
, bearer_id
, &xmitq
, &le
->maddr
, n
);
2205 void tipc_node_apply_property(struct net
*net
, struct tipc_bearer
*b
,
2208 struct tipc_net
*tn
= tipc_net(net
);
2209 int bearer_id
= b
->identity
;
2210 struct sk_buff_head xmitq
;
2211 struct tipc_link_entry
*e
;
2212 struct tipc_node
*n
;
2214 __skb_queue_head_init(&xmitq
);
2218 list_for_each_entry_rcu(n
, &tn
->node_list
, list
) {
2219 tipc_node_write_lock(n
);
2220 e
= &n
->links
[bearer_id
];
2222 if (prop
== TIPC_NLA_PROP_TOL
)
2223 tipc_link_set_tolerance(e
->link
, b
->tolerance
,
2225 else if (prop
== TIPC_NLA_PROP_MTU
)
2226 tipc_link_set_mtu(e
->link
, b
->mtu
);
2228 /* Update MTU for node link entry */
2229 e
->mtu
= tipc_link_mss(e
->link
);
2232 tipc_node_write_unlock(n
);
2233 tipc_bearer_xmit(net
, bearer_id
, &xmitq
, &e
->maddr
, NULL
);
2239 int tipc_nl_peer_rm(struct sk_buff
*skb
, struct genl_info
*info
)
2241 struct net
*net
= sock_net(skb
->sk
);
2242 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
2243 struct nlattr
*attrs
[TIPC_NLA_NET_MAX
+ 1];
2244 struct tipc_node
*peer
, *temp_node
;
2245 u8 node_id
[NODE_ID_LEN
];
2246 u64
*w0
= (u64
*)&node_id
[0];
2247 u64
*w1
= (u64
*)&node_id
[8];
2251 /* We identify the peer by its net */
2252 if (!info
->attrs
[TIPC_NLA_NET
])
2255 err
= nla_parse_nested_deprecated(attrs
, TIPC_NLA_NET_MAX
,
2256 info
->attrs
[TIPC_NLA_NET
],
2257 tipc_nl_net_policy
, info
->extack
);
2261 /* attrs[TIPC_NLA_NET_NODEID] and attrs[TIPC_NLA_NET_ADDR] are
2262 * mutually exclusive cases
2264 if (attrs
[TIPC_NLA_NET_ADDR
]) {
2265 addr
= nla_get_u32(attrs
[TIPC_NLA_NET_ADDR
]);
2270 if (attrs
[TIPC_NLA_NET_NODEID
]) {
2271 if (!attrs
[TIPC_NLA_NET_NODEID_W1
])
2273 *w0
= nla_get_u64(attrs
[TIPC_NLA_NET_NODEID
]);
2274 *w1
= nla_get_u64(attrs
[TIPC_NLA_NET_NODEID_W1
]);
2275 addr
= hash128to32(node_id
);
2278 if (in_own_node(net
, addr
))
2281 spin_lock_bh(&tn
->node_list_lock
);
2282 peer
= tipc_node_find(net
, addr
);
2284 spin_unlock_bh(&tn
->node_list_lock
);
2288 tipc_node_write_lock(peer
);
2289 if (peer
->state
!= SELF_DOWN_PEER_DOWN
&&
2290 peer
->state
!= SELF_DOWN_PEER_LEAVING
) {
2291 tipc_node_write_unlock(peer
);
2296 tipc_node_clear_links(peer
);
2297 tipc_node_write_unlock(peer
);
2298 tipc_node_delete(peer
);
2300 /* Calculate cluster capabilities */
2301 tn
->capabilities
= TIPC_NODE_CAPABILITIES
;
2302 list_for_each_entry_rcu(temp_node
, &tn
->node_list
, list
) {
2303 tn
->capabilities
&= temp_node
->capabilities
;
2305 tipc_bcast_toggle_rcast(net
, (tn
->capabilities
& TIPC_BCAST_RCAST
));
2308 tipc_node_put(peer
);
2309 spin_unlock_bh(&tn
->node_list_lock
);
2314 int tipc_nl_node_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
)
2317 struct net
*net
= sock_net(skb
->sk
);
2318 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
2319 int done
= cb
->args
[0];
2320 int last_addr
= cb
->args
[1];
2321 struct tipc_node
*node
;
2322 struct tipc_nl_msg msg
;
2328 msg
.portid
= NETLINK_CB(cb
->skb
).portid
;
2329 msg
.seq
= cb
->nlh
->nlmsg_seq
;
2333 node
= tipc_node_find(net
, last_addr
);
2336 /* We never set seq or call nl_dump_check_consistent()
2337 * this means that setting prev_seq here will cause the
2338 * consistence check to fail in the netlink callback
2339 * handler. Resulting in the NLMSG_DONE message having
2340 * the NLM_F_DUMP_INTR flag set if the node state
2341 * changed while we released the lock.
2346 tipc_node_put(node
);
2349 list_for_each_entry_rcu(node
, &tn
->node_list
, list
) {
2350 if (node
->preliminary
)
2353 if (node
->addr
== last_addr
)
2359 tipc_node_read_lock(node
);
2360 err
= __tipc_nl_add_node(&msg
, node
);
2362 last_addr
= node
->addr
;
2363 tipc_node_read_unlock(node
);
2367 tipc_node_read_unlock(node
);
2372 cb
->args
[1] = last_addr
;
2378 /* tipc_node_find_by_name - locate owner node of link by link's name
2379 * @net: the applicable net namespace
2380 * @name: pointer to link name string
2381 * @bearer_id: pointer to index in 'node->links' array where the link was found.
2383 * Returns pointer to node owning the link, or 0 if no matching link is found.
2385 static struct tipc_node
*tipc_node_find_by_name(struct net
*net
,
2386 const char *link_name
,
2387 unsigned int *bearer_id
)
2389 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
2390 struct tipc_link
*l
;
2391 struct tipc_node
*n
;
2392 struct tipc_node
*found_node
= NULL
;
2397 list_for_each_entry_rcu(n
, &tn
->node_list
, list
) {
2398 tipc_node_read_lock(n
);
2399 for (i
= 0; i
< MAX_BEARERS
; i
++) {
2400 l
= n
->links
[i
].link
;
2401 if (l
&& !strcmp(tipc_link_name(l
), link_name
)) {
2407 tipc_node_read_unlock(n
);
2416 int tipc_nl_node_set_link(struct sk_buff
*skb
, struct genl_info
*info
)
2422 struct tipc_link
*link
;
2423 struct tipc_node
*node
;
2424 struct sk_buff_head xmitq
;
2425 struct nlattr
*attrs
[TIPC_NLA_LINK_MAX
+ 1];
2426 struct net
*net
= sock_net(skb
->sk
);
2428 __skb_queue_head_init(&xmitq
);
2430 if (!info
->attrs
[TIPC_NLA_LINK
])
2433 err
= nla_parse_nested_deprecated(attrs
, TIPC_NLA_LINK_MAX
,
2434 info
->attrs
[TIPC_NLA_LINK
],
2435 tipc_nl_link_policy
, info
->extack
);
2439 if (!attrs
[TIPC_NLA_LINK_NAME
])
2442 name
= nla_data(attrs
[TIPC_NLA_LINK_NAME
]);
2444 if (strcmp(name
, tipc_bclink_name
) == 0)
2445 return tipc_nl_bc_link_set(net
, attrs
);
2447 node
= tipc_node_find_by_name(net
, name
, &bearer_id
);
2451 tipc_node_read_lock(node
);
2453 link
= node
->links
[bearer_id
].link
;
2459 if (attrs
[TIPC_NLA_LINK_PROP
]) {
2460 struct nlattr
*props
[TIPC_NLA_PROP_MAX
+ 1];
2462 err
= tipc_nl_parse_link_prop(attrs
[TIPC_NLA_LINK_PROP
], props
);
2468 if (props
[TIPC_NLA_PROP_TOL
]) {
2471 tol
= nla_get_u32(props
[TIPC_NLA_PROP_TOL
]);
2472 tipc_link_set_tolerance(link
, tol
, &xmitq
);
2474 if (props
[TIPC_NLA_PROP_PRIO
]) {
2477 prio
= nla_get_u32(props
[TIPC_NLA_PROP_PRIO
]);
2478 tipc_link_set_prio(link
, prio
, &xmitq
);
2480 if (props
[TIPC_NLA_PROP_WIN
]) {
2483 max_win
= nla_get_u32(props
[TIPC_NLA_PROP_WIN
]);
2484 tipc_link_set_queue_limits(link
,
2485 tipc_link_min_win(link
),
2491 tipc_node_read_unlock(node
);
2492 tipc_bearer_xmit(net
, bearer_id
, &xmitq
, &node
->links
[bearer_id
].maddr
,
2497 int tipc_nl_node_get_link(struct sk_buff
*skb
, struct genl_info
*info
)
2499 struct net
*net
= genl_info_net(info
);
2500 struct nlattr
*attrs
[TIPC_NLA_LINK_MAX
+ 1];
2501 struct tipc_nl_msg msg
;
2505 msg
.portid
= info
->snd_portid
;
2506 msg
.seq
= info
->snd_seq
;
2508 if (!info
->attrs
[TIPC_NLA_LINK
])
2511 err
= nla_parse_nested_deprecated(attrs
, TIPC_NLA_LINK_MAX
,
2512 info
->attrs
[TIPC_NLA_LINK
],
2513 tipc_nl_link_policy
, info
->extack
);
2517 if (!attrs
[TIPC_NLA_LINK_NAME
])
2520 name
= nla_data(attrs
[TIPC_NLA_LINK_NAME
]);
2522 msg
.skb
= nlmsg_new(NLMSG_GOODSIZE
, GFP_KERNEL
);
2526 if (strcmp(name
, tipc_bclink_name
) == 0) {
2527 err
= tipc_nl_add_bc_link(net
, &msg
, tipc_net(net
)->bcl
);
2532 struct tipc_node
*node
;
2533 struct tipc_link
*link
;
2535 node
= tipc_node_find_by_name(net
, name
, &bearer_id
);
2541 tipc_node_read_lock(node
);
2542 link
= node
->links
[bearer_id
].link
;
2544 tipc_node_read_unlock(node
);
2549 err
= __tipc_nl_add_link(net
, &msg
, link
, 0);
2550 tipc_node_read_unlock(node
);
2555 return genlmsg_reply(msg
.skb
, info
);
2558 nlmsg_free(msg
.skb
);
2562 int tipc_nl_node_reset_link_stats(struct sk_buff
*skb
, struct genl_info
*info
)
2566 unsigned int bearer_id
;
2567 struct tipc_link
*link
;
2568 struct tipc_node
*node
;
2569 struct nlattr
*attrs
[TIPC_NLA_LINK_MAX
+ 1];
2570 struct net
*net
= sock_net(skb
->sk
);
2571 struct tipc_net
*tn
= tipc_net(net
);
2572 struct tipc_link_entry
*le
;
2574 if (!info
->attrs
[TIPC_NLA_LINK
])
2577 err
= nla_parse_nested_deprecated(attrs
, TIPC_NLA_LINK_MAX
,
2578 info
->attrs
[TIPC_NLA_LINK
],
2579 tipc_nl_link_policy
, info
->extack
);
2583 if (!attrs
[TIPC_NLA_LINK_NAME
])
2586 link_name
= nla_data(attrs
[TIPC_NLA_LINK_NAME
]);
2589 if (!strcmp(link_name
, tipc_bclink_name
)) {
2590 err
= tipc_bclink_reset_stats(net
, tipc_bc_sndlink(net
));
2594 } else if (strstr(link_name
, tipc_bclink_name
)) {
2596 list_for_each_entry_rcu(node
, &tn
->node_list
, list
) {
2597 tipc_node_read_lock(node
);
2598 link
= node
->bc_entry
.link
;
2599 if (link
&& !strcmp(link_name
, tipc_link_name(link
))) {
2600 err
= tipc_bclink_reset_stats(net
, link
);
2601 tipc_node_read_unlock(node
);
2604 tipc_node_read_unlock(node
);
2610 node
= tipc_node_find_by_name(net
, link_name
, &bearer_id
);
2614 le
= &node
->links
[bearer_id
];
2615 tipc_node_read_lock(node
);
2616 spin_lock_bh(&le
->lock
);
2617 link
= node
->links
[bearer_id
].link
;
2619 spin_unlock_bh(&le
->lock
);
2620 tipc_node_read_unlock(node
);
2623 tipc_link_reset_stats(link
);
2624 spin_unlock_bh(&le
->lock
);
2625 tipc_node_read_unlock(node
);
2629 /* Caller should hold node lock */
2630 static int __tipc_nl_add_node_links(struct net
*net
, struct tipc_nl_msg
*msg
,
2631 struct tipc_node
*node
, u32
*prev_link
,
2637 for (i
= *prev_link
; i
< MAX_BEARERS
; i
++) {
2640 if (!node
->links
[i
].link
)
2643 err
= __tipc_nl_add_link(net
, msg
,
2644 node
->links
[i
].link
, NLM_F_MULTI
);
2651 err
= tipc_nl_add_bc_link(net
, msg
, node
->bc_entry
.link
);
2661 int tipc_nl_node_dump_link(struct sk_buff
*skb
, struct netlink_callback
*cb
)
2663 struct net
*net
= sock_net(skb
->sk
);
2664 struct nlattr
**attrs
= genl_dumpit_info(cb
)->info
.attrs
;
2665 struct nlattr
*link
[TIPC_NLA_LINK_MAX
+ 1];
2666 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
2667 struct tipc_node
*node
;
2668 struct tipc_nl_msg msg
;
2669 u32 prev_node
= cb
->args
[0];
2670 u32 prev_link
= cb
->args
[1];
2671 int done
= cb
->args
[2];
2672 bool bc_link
= cb
->args
[3];
2679 /* Check if broadcast-receiver links dumping is needed */
2680 if (attrs
&& attrs
[TIPC_NLA_LINK
]) {
2681 err
= nla_parse_nested_deprecated(link
,
2683 attrs
[TIPC_NLA_LINK
],
2684 tipc_nl_link_policy
,
2688 if (unlikely(!link
[TIPC_NLA_LINK_BROADCAST
]))
2695 msg
.portid
= NETLINK_CB(cb
->skb
).portid
;
2696 msg
.seq
= cb
->nlh
->nlmsg_seq
;
2700 node
= tipc_node_find(net
, prev_node
);
2702 /* We never set seq or call nl_dump_check_consistent()
2703 * this means that setting prev_seq here will cause the
2704 * consistence check to fail in the netlink callback
2705 * handler. Resulting in the last NLMSG_DONE message
2706 * having the NLM_F_DUMP_INTR flag set.
2711 tipc_node_put(node
);
2713 list_for_each_entry_continue_rcu(node
, &tn
->node_list
,
2715 tipc_node_read_lock(node
);
2716 err
= __tipc_nl_add_node_links(net
, &msg
, node
,
2717 &prev_link
, bc_link
);
2718 tipc_node_read_unlock(node
);
2722 prev_node
= node
->addr
;
2725 err
= tipc_nl_add_bc_link(net
, &msg
, tn
->bcl
);
2729 list_for_each_entry_rcu(node
, &tn
->node_list
, list
) {
2730 tipc_node_read_lock(node
);
2731 err
= __tipc_nl_add_node_links(net
, &msg
, node
,
2732 &prev_link
, bc_link
);
2733 tipc_node_read_unlock(node
);
2737 prev_node
= node
->addr
;
2744 cb
->args
[0] = prev_node
;
2745 cb
->args
[1] = prev_link
;
2747 cb
->args
[3] = bc_link
;
2752 int tipc_nl_node_set_monitor(struct sk_buff
*skb
, struct genl_info
*info
)
2754 struct nlattr
*attrs
[TIPC_NLA_MON_MAX
+ 1];
2755 struct net
*net
= sock_net(skb
->sk
);
2758 if (!info
->attrs
[TIPC_NLA_MON
])
2761 err
= nla_parse_nested_deprecated(attrs
, TIPC_NLA_MON_MAX
,
2762 info
->attrs
[TIPC_NLA_MON
],
2763 tipc_nl_monitor_policy
,
2768 if (attrs
[TIPC_NLA_MON_ACTIVATION_THRESHOLD
]) {
2771 val
= nla_get_u32(attrs
[TIPC_NLA_MON_ACTIVATION_THRESHOLD
]);
2772 err
= tipc_nl_monitor_set_threshold(net
, val
);
2780 static int __tipc_nl_add_monitor_prop(struct net
*net
, struct tipc_nl_msg
*msg
)
2782 struct nlattr
*attrs
;
2786 hdr
= genlmsg_put(msg
->skb
, msg
->portid
, msg
->seq
, &tipc_genl_family
,
2787 0, TIPC_NL_MON_GET
);
2791 attrs
= nla_nest_start_noflag(msg
->skb
, TIPC_NLA_MON
);
2795 val
= tipc_nl_monitor_get_threshold(net
);
2797 if (nla_put_u32(msg
->skb
, TIPC_NLA_MON_ACTIVATION_THRESHOLD
, val
))
2800 nla_nest_end(msg
->skb
, attrs
);
2801 genlmsg_end(msg
->skb
, hdr
);
2806 nla_nest_cancel(msg
->skb
, attrs
);
2808 genlmsg_cancel(msg
->skb
, hdr
);
2813 int tipc_nl_node_get_monitor(struct sk_buff
*skb
, struct genl_info
*info
)
2815 struct net
*net
= sock_net(skb
->sk
);
2816 struct tipc_nl_msg msg
;
2819 msg
.skb
= nlmsg_new(NLMSG_GOODSIZE
, GFP_KERNEL
);
2822 msg
.portid
= info
->snd_portid
;
2823 msg
.seq
= info
->snd_seq
;
2825 err
= __tipc_nl_add_monitor_prop(net
, &msg
);
2827 nlmsg_free(msg
.skb
);
2831 return genlmsg_reply(msg
.skb
, info
);
2834 int tipc_nl_node_dump_monitor(struct sk_buff
*skb
, struct netlink_callback
*cb
)
2836 struct net
*net
= sock_net(skb
->sk
);
2837 u32 prev_bearer
= cb
->args
[0];
2838 struct tipc_nl_msg msg
;
2842 if (prev_bearer
== MAX_BEARERS
)
2846 msg
.portid
= NETLINK_CB(cb
->skb
).portid
;
2847 msg
.seq
= cb
->nlh
->nlmsg_seq
;
2850 for (bearer_id
= prev_bearer
; bearer_id
< MAX_BEARERS
; bearer_id
++) {
2851 err
= __tipc_nl_add_monitor(net
, &msg
, bearer_id
);
2856 cb
->args
[0] = bearer_id
;
2861 int tipc_nl_node_dump_monitor_peer(struct sk_buff
*skb
,
2862 struct netlink_callback
*cb
)
2864 struct net
*net
= sock_net(skb
->sk
);
2865 u32 prev_node
= cb
->args
[1];
2866 u32 bearer_id
= cb
->args
[2];
2867 int done
= cb
->args
[0];
2868 struct tipc_nl_msg msg
;
2872 struct nlattr
**attrs
= genl_dumpit_info(cb
)->info
.attrs
;
2873 struct nlattr
*mon
[TIPC_NLA_MON_MAX
+ 1];
2875 if (!attrs
[TIPC_NLA_MON
])
2878 err
= nla_parse_nested_deprecated(mon
, TIPC_NLA_MON_MAX
,
2879 attrs
[TIPC_NLA_MON
],
2880 tipc_nl_monitor_policy
,
2885 if (!mon
[TIPC_NLA_MON_REF
])
2888 bearer_id
= nla_get_u32(mon
[TIPC_NLA_MON_REF
]);
2890 if (bearer_id
>= MAX_BEARERS
)
2898 msg
.portid
= NETLINK_CB(cb
->skb
).portid
;
2899 msg
.seq
= cb
->nlh
->nlmsg_seq
;
2902 err
= tipc_nl_add_monitor_peer(net
, &msg
, bearer_id
, &prev_node
);
2908 cb
->args
[1] = prev_node
;
2909 cb
->args
[2] = bearer_id
;
2914 #ifdef CONFIG_TIPC_CRYPTO
2915 static int tipc_nl_retrieve_key(struct nlattr
**attrs
,
2916 struct tipc_aead_key
**pkey
)
2918 struct nlattr
*attr
= attrs
[TIPC_NLA_NODE_KEY
];
2919 struct tipc_aead_key
*key
;
2924 if (nla_len(attr
) < sizeof(*key
))
2926 key
= (struct tipc_aead_key
*)nla_data(attr
);
2927 if (key
->keylen
> TIPC_AEAD_KEYLEN_MAX
||
2928 nla_len(attr
) < tipc_aead_key_size(key
))
2935 static int tipc_nl_retrieve_nodeid(struct nlattr
**attrs
, u8
**node_id
)
2937 struct nlattr
*attr
= attrs
[TIPC_NLA_NODE_ID
];
2942 if (nla_len(attr
) < TIPC_NODEID_LEN
)
2945 *node_id
= (u8
*)nla_data(attr
);
2949 static int tipc_nl_retrieve_rekeying(struct nlattr
**attrs
, u32
*intv
)
2951 struct nlattr
*attr
= attrs
[TIPC_NLA_NODE_REKEYING
];
2956 *intv
= nla_get_u32(attr
);
2960 static int __tipc_nl_node_set_key(struct sk_buff
*skb
, struct genl_info
*info
)
2962 struct nlattr
*attrs
[TIPC_NLA_NODE_MAX
+ 1];
2963 struct net
*net
= sock_net(skb
->sk
);
2964 struct tipc_crypto
*tx
= tipc_net(net
)->crypto_tx
, *c
= tx
;
2965 struct tipc_node
*n
= NULL
;
2966 struct tipc_aead_key
*ukey
;
2967 bool rekeying
= true, master_key
= false;
2968 u8
*id
, *own_id
, mode
;
2972 if (!info
->attrs
[TIPC_NLA_NODE
])
2975 rc
= nla_parse_nested(attrs
, TIPC_NLA_NODE_MAX
,
2976 info
->attrs
[TIPC_NLA_NODE
],
2977 tipc_nl_node_policy
, info
->extack
);
2981 own_id
= tipc_own_id(net
);
2983 GENL_SET_ERR_MSG(info
, "not found own node identity (set id?)");
2987 rc
= tipc_nl_retrieve_rekeying(attrs
, &intv
);
2991 rc
= tipc_nl_retrieve_key(attrs
, &ukey
);
2992 if (rc
== -ENODATA
&& rekeying
)
2997 rc
= tipc_aead_key_validate(ukey
, info
);
3001 rc
= tipc_nl_retrieve_nodeid(attrs
, &id
);
3005 master_key
= !!(attrs
[TIPC_NLA_NODE_KEY_MASTER
]);
3008 mode
= PER_NODE_KEY
;
3009 if (memcmp(id
, own_id
, NODE_ID_LEN
)) {
3010 n
= tipc_node_find_by_id(net
, id
) ?:
3011 tipc_node_create(net
, 0, id
, 0xffffu
, 0, true);
3021 /* Initiate the TX/RX key */
3022 rc
= tipc_crypto_key_init(c
, ukey
, mode
, master_key
);
3026 if (unlikely(rc
< 0)) {
3027 GENL_SET_ERR_MSG(info
, "unable to initiate or attach new key");
3029 } else if (c
== tx
) {
3030 /* Distribute TX key but not master one */
3031 if (!master_key
&& tipc_crypto_key_distr(tx
, rc
, NULL
))
3032 GENL_SET_ERR_MSG(info
, "failed to replicate new key");
3034 /* Schedule TX rekeying if needed */
3035 tipc_crypto_rekeying_sched(tx
, rekeying
, intv
);
3041 int tipc_nl_node_set_key(struct sk_buff
*skb
, struct genl_info
*info
)
3046 err
= __tipc_nl_node_set_key(skb
, info
);
3052 static int __tipc_nl_node_flush_key(struct sk_buff
*skb
,
3053 struct genl_info
*info
)
3055 struct net
*net
= sock_net(skb
->sk
);
3056 struct tipc_net
*tn
= tipc_net(net
);
3057 struct tipc_node
*n
;
3059 tipc_crypto_key_flush(tn
->crypto_tx
);
3061 list_for_each_entry_rcu(n
, &tn
->node_list
, list
)
3062 tipc_crypto_key_flush(n
->crypto_rx
);
3068 int tipc_nl_node_flush_key(struct sk_buff
*skb
, struct genl_info
*info
)
3073 err
= __tipc_nl_node_flush_key(skb
, info
);
3081 * tipc_node_dump - dump TIPC node data
3082 * @n: tipc node to be dumped
3084 * - false: dump only tipc node data
3085 * - true: dump node link data as well
3086 * @buf: returned buffer of dump data in format
3088 int tipc_node_dump(struct tipc_node
*n
, bool more
, char *buf
)
3091 size_t sz
= (more
) ? NODE_LMAX
: NODE_LMIN
;
3094 i
+= scnprintf(buf
, sz
, "node data: (null)\n");
3098 i
+= scnprintf(buf
, sz
, "node data: %x", n
->addr
);
3099 i
+= scnprintf(buf
+ i
, sz
- i
, " %x", n
->state
);
3100 i
+= scnprintf(buf
+ i
, sz
- i
, " %d", n
->active_links
[0]);
3101 i
+= scnprintf(buf
+ i
, sz
- i
, " %d", n
->active_links
[1]);
3102 i
+= scnprintf(buf
+ i
, sz
- i
, " %x", n
->action_flags
);
3103 i
+= scnprintf(buf
+ i
, sz
- i
, " %u", n
->failover_sent
);
3104 i
+= scnprintf(buf
+ i
, sz
- i
, " %u", n
->sync_point
);
3105 i
+= scnprintf(buf
+ i
, sz
- i
, " %d", n
->link_cnt
);
3106 i
+= scnprintf(buf
+ i
, sz
- i
, " %u", n
->working_links
);
3107 i
+= scnprintf(buf
+ i
, sz
- i
, " %x", n
->capabilities
);
3108 i
+= scnprintf(buf
+ i
, sz
- i
, " %lu\n", n
->keepalive_intv
);
3113 i
+= scnprintf(buf
+ i
, sz
- i
, "link_entry[0]:\n");
3114 i
+= scnprintf(buf
+ i
, sz
- i
, " mtu: %u\n", n
->links
[0].mtu
);
3115 i
+= scnprintf(buf
+ i
, sz
- i
, " media: ");
3116 i
+= tipc_media_addr_printf(buf
+ i
, sz
- i
, &n
->links
[0].maddr
);
3117 i
+= scnprintf(buf
+ i
, sz
- i
, "\n");
3118 i
+= tipc_link_dump(n
->links
[0].link
, TIPC_DUMP_NONE
, buf
+ i
);
3119 i
+= scnprintf(buf
+ i
, sz
- i
, " inputq: ");
3120 i
+= tipc_list_dump(&n
->links
[0].inputq
, false, buf
+ i
);
3122 i
+= scnprintf(buf
+ i
, sz
- i
, "link_entry[1]:\n");
3123 i
+= scnprintf(buf
+ i
, sz
- i
, " mtu: %u\n", n
->links
[1].mtu
);
3124 i
+= scnprintf(buf
+ i
, sz
- i
, " media: ");
3125 i
+= tipc_media_addr_printf(buf
+ i
, sz
- i
, &n
->links
[1].maddr
);
3126 i
+= scnprintf(buf
+ i
, sz
- i
, "\n");
3127 i
+= tipc_link_dump(n
->links
[1].link
, TIPC_DUMP_NONE
, buf
+ i
);
3128 i
+= scnprintf(buf
+ i
, sz
- i
, " inputq: ");
3129 i
+= tipc_list_dump(&n
->links
[1].inputq
, false, buf
+ i
);
3131 i
+= scnprintf(buf
+ i
, sz
- i
, "bclink:\n ");
3132 i
+= tipc_link_dump(n
->bc_entry
.link
, TIPC_DUMP_NONE
, buf
+ i
);
3137 void tipc_node_pre_cleanup_net(struct net
*exit_net
)
3139 struct tipc_node
*n
;
3140 struct tipc_net
*tn
;
3144 for_each_net_rcu(tmp
) {
3145 if (tmp
== exit_net
)
3150 spin_lock_bh(&tn
->node_list_lock
);
3151 list_for_each_entry_rcu(n
, &tn
->node_list
, list
) {
3154 if (n
->peer_net
!= exit_net
)
3156 tipc_node_write_lock(n
);
3158 n
->peer_hash_mix
= 0;
3159 tipc_node_write_unlock_fast(n
);
3162 spin_unlock_bh(&tn
->node_list_lock
);