blob: 60059827563ae2ae52f8cbe4f995900fc82d03d6 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/*
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"
David Brazdil0f672f62019-12-10 10:32:29 +000046#include "trace.h"
Olivier Deprez157378f2022-04-04 15:47:50 +020047#include "crypto.h"
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000048
49#define INVALID_NODE_SIG 0x10000
50#define NODE_CLEANUP_AFTER 300000
51
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
56 */
57enum {
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)
62};
63
64struct tipc_link_entry {
65 struct tipc_link *link;
66 spinlock_t lock; /* per link */
67 u32 mtu;
68 struct sk_buff_head inputq;
69 struct tipc_media_addr maddr;
70};
71
72struct 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;
Olivier Deprez157378f2022-04-04 15:47:50 +020078 u16 named_rcv_nxt;
79 bool named_open;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000080};
81
82/**
83 * struct tipc_node - TIPC node structure
84 * @addr: network address of node
85 * @ref: 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 * @inputq: pointer to input queue containing messages for msg event
90 * @namedq: pointer to name table input queue with name table messages
91 * @active_links: bearer ids of active links, used as index into links[] array
92 * @links: array containing references to all links to node
93 * @action_flags: bit mask of different types of node actions
94 * @state: connectivity state vs peer node
Olivier Deprez157378f2022-04-04 15:47:50 +020095 * @preliminary: a preliminary node or not
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000096 * @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 * @publ_list: list of publications
104 * @rcu: rcu struct for tipc_node
105 * @delete_at: indicates the time for deleting a down node
Olivier Deprez157378f2022-04-04 15:47:50 +0200106 * @crypto_rx: RX crypto handler
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000107 */
108struct tipc_node {
109 u32 addr;
110 struct kref kref;
111 rwlock_t lock;
112 struct net *net;
113 struct hlist_node hash;
114 int active_links[2];
115 struct tipc_link_entry links[MAX_BEARERS];
116 struct tipc_bclink_entry bc_entry;
117 int action_flags;
118 struct list_head list;
119 int state;
Olivier Deprez157378f2022-04-04 15:47:50 +0200120 bool preliminary;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000121 bool failover_sent;
122 u16 sync_point;
123 int link_cnt;
124 u16 working_links;
125 u16 capabilities;
126 u32 signature;
127 u32 link_id;
128 u8 peer_id[16];
Olivier Deprez157378f2022-04-04 15:47:50 +0200129 char peer_id_string[NODE_ID_STR_LEN];
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000130 struct list_head publ_list;
131 struct list_head conn_sks;
132 unsigned long keepalive_intv;
133 struct timer_list timer;
134 struct rcu_head rcu;
135 unsigned long delete_at;
Olivier Deprez157378f2022-04-04 15:47:50 +0200136 struct net *peer_net;
137 u32 peer_hash_mix;
138#ifdef CONFIG_TIPC_CRYPTO
139 struct tipc_crypto *crypto_rx;
140#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000141};
142
143/* Node FSM states and events:
144 */
145enum {
146 SELF_DOWN_PEER_DOWN = 0xdd,
147 SELF_UP_PEER_UP = 0xaa,
148 SELF_DOWN_PEER_LEAVING = 0xd1,
149 SELF_UP_PEER_COMING = 0xac,
150 SELF_COMING_PEER_UP = 0xca,
151 SELF_LEAVING_PEER_DOWN = 0x1d,
152 NODE_FAILINGOVER = 0xf0,
153 NODE_SYNCHING = 0xcc
154};
155
156enum {
157 SELF_ESTABL_CONTACT_EVT = 0xece,
158 SELF_LOST_CONTACT_EVT = 0x1ce,
159 PEER_ESTABL_CONTACT_EVT = 0x9ece,
160 PEER_LOST_CONTACT_EVT = 0x91ce,
161 NODE_FAILOVER_BEGIN_EVT = 0xfbe,
162 NODE_FAILOVER_END_EVT = 0xfee,
163 NODE_SYNCH_BEGIN_EVT = 0xcbe,
164 NODE_SYNCH_END_EVT = 0xcee
165};
166
167static void __tipc_node_link_down(struct tipc_node *n, int *bearer_id,
168 struct sk_buff_head *xmitq,
169 struct tipc_media_addr **maddr);
170static void tipc_node_link_down(struct tipc_node *n, int bearer_id,
171 bool delete);
172static void node_lost_contact(struct tipc_node *n, struct sk_buff_head *inputq);
173static void tipc_node_delete(struct tipc_node *node);
174static void tipc_node_timeout(struct timer_list *t);
175static void tipc_node_fsm_evt(struct tipc_node *n, int evt);
176static struct tipc_node *tipc_node_find(struct net *net, u32 addr);
177static struct tipc_node *tipc_node_find_by_id(struct net *net, u8 *id);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000178static bool node_is_up(struct tipc_node *n);
179static void tipc_node_delete_from_list(struct tipc_node *node);
180
181struct tipc_sock_conn {
182 u32 port;
183 u32 peer_port;
184 u32 peer_node;
185 struct list_head list;
186};
187
188static struct tipc_link *node_active_link(struct tipc_node *n, int sel)
189{
190 int bearer_id = n->active_links[sel & 1];
191
192 if (unlikely(bearer_id == INVALID_BEARER_ID))
193 return NULL;
194
195 return n->links[bearer_id].link;
196}
197
Olivier Deprez157378f2022-04-04 15:47:50 +0200198int tipc_node_get_mtu(struct net *net, u32 addr, u32 sel, bool connected)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000199{
200 struct tipc_node *n;
201 int bearer_id;
202 unsigned int mtu = MAX_MSG_SIZE;
203
204 n = tipc_node_find(net, addr);
205 if (unlikely(!n))
206 return mtu;
207
Olivier Deprez157378f2022-04-04 15:47:50 +0200208 /* Allow MAX_MSG_SIZE when building connection oriented message
209 * if they are in the same core network
210 */
211 if (n->peer_net && connected) {
212 tipc_node_put(n);
213 return mtu;
214 }
215
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000216 bearer_id = n->active_links[sel & 1];
217 if (likely(bearer_id != INVALID_BEARER_ID))
218 mtu = n->links[bearer_id].mtu;
219 tipc_node_put(n);
220 return mtu;
221}
222
223bool tipc_node_get_id(struct net *net, u32 addr, u8 *id)
224{
225 u8 *own_id = tipc_own_id(net);
226 struct tipc_node *n;
227
228 if (!own_id)
229 return true;
230
231 if (addr == tipc_own_addr(net)) {
232 memcpy(id, own_id, TIPC_NODEID_LEN);
233 return true;
234 }
235 n = tipc_node_find(net, addr);
236 if (!n)
237 return false;
238
239 memcpy(id, &n->peer_id, TIPC_NODEID_LEN);
240 tipc_node_put(n);
241 return true;
242}
243
244u16 tipc_node_get_capabilities(struct net *net, u32 addr)
245{
246 struct tipc_node *n;
247 u16 caps;
248
249 n = tipc_node_find(net, addr);
250 if (unlikely(!n))
251 return TIPC_NODE_CAPABILITIES;
252 caps = n->capabilities;
253 tipc_node_put(n);
254 return caps;
255}
256
Olivier Deprez157378f2022-04-04 15:47:50 +0200257u32 tipc_node_get_addr(struct tipc_node *node)
258{
259 return (node) ? node->addr : 0;
260}
261
262char *tipc_node_get_id_str(struct tipc_node *node)
263{
264 return node->peer_id_string;
265}
266
267#ifdef CONFIG_TIPC_CRYPTO
268/**
269 * tipc_node_crypto_rx - Retrieve crypto RX handle from node
270 * Note: node ref counter must be held first!
271 */
272struct tipc_crypto *tipc_node_crypto_rx(struct tipc_node *__n)
273{
274 return (__n) ? __n->crypto_rx : NULL;
275}
276
277struct tipc_crypto *tipc_node_crypto_rx_by_list(struct list_head *pos)
278{
279 return container_of(pos, struct tipc_node, list)->crypto_rx;
280}
281
282struct tipc_crypto *tipc_node_crypto_rx_by_addr(struct net *net, u32 addr)
283{
284 struct tipc_node *n;
285
286 n = tipc_node_find(net, addr);
287 return (n) ? n->crypto_rx : NULL;
288}
289#endif
290
291static void tipc_node_free(struct rcu_head *rp)
292{
293 struct tipc_node *n = container_of(rp, struct tipc_node, rcu);
294
295#ifdef CONFIG_TIPC_CRYPTO
296 tipc_crypto_stop(&n->crypto_rx);
297#endif
298 kfree(n);
299}
300
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000301static void tipc_node_kref_release(struct kref *kref)
302{
303 struct tipc_node *n = container_of(kref, struct tipc_node, kref);
304
305 kfree(n->bc_entry.link);
Olivier Deprez157378f2022-04-04 15:47:50 +0200306 call_rcu(&n->rcu, tipc_node_free);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000307}
308
Olivier Deprez157378f2022-04-04 15:47:50 +0200309void tipc_node_put(struct tipc_node *node)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000310{
311 kref_put(&node->kref, tipc_node_kref_release);
312}
313
Olivier Deprez157378f2022-04-04 15:47:50 +0200314void tipc_node_get(struct tipc_node *node)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000315{
316 kref_get(&node->kref);
317}
318
319/*
320 * tipc_node_find - locate specified node object, if it exists
321 */
322static struct tipc_node *tipc_node_find(struct net *net, u32 addr)
323{
324 struct tipc_net *tn = tipc_net(net);
325 struct tipc_node *node;
326 unsigned int thash = tipc_hashfn(addr);
327
328 rcu_read_lock();
329 hlist_for_each_entry_rcu(node, &tn->node_htable[thash], hash) {
Olivier Deprez157378f2022-04-04 15:47:50 +0200330 if (node->addr != addr || node->preliminary)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000331 continue;
332 if (!kref_get_unless_zero(&node->kref))
333 node = NULL;
334 break;
335 }
336 rcu_read_unlock();
337 return node;
338}
339
340/* tipc_node_find_by_id - locate specified node object by its 128-bit id
341 * Note: this function is called only when a discovery request failed
342 * to find the node by its 32-bit id, and is not time critical
343 */
344static struct tipc_node *tipc_node_find_by_id(struct net *net, u8 *id)
345{
346 struct tipc_net *tn = tipc_net(net);
347 struct tipc_node *n;
348 bool found = false;
349
350 rcu_read_lock();
351 list_for_each_entry_rcu(n, &tn->node_list, list) {
352 read_lock_bh(&n->lock);
353 if (!memcmp(id, n->peer_id, 16) &&
354 kref_get_unless_zero(&n->kref))
355 found = true;
356 read_unlock_bh(&n->lock);
357 if (found)
358 break;
359 }
360 rcu_read_unlock();
361 return found ? n : NULL;
362}
363
364static void tipc_node_read_lock(struct tipc_node *n)
365{
366 read_lock_bh(&n->lock);
367}
368
369static void tipc_node_read_unlock(struct tipc_node *n)
370{
371 read_unlock_bh(&n->lock);
372}
373
374static void tipc_node_write_lock(struct tipc_node *n)
375{
376 write_lock_bh(&n->lock);
377}
378
379static void tipc_node_write_unlock_fast(struct tipc_node *n)
380{
381 write_unlock_bh(&n->lock);
382}
383
384static void tipc_node_write_unlock(struct tipc_node *n)
385{
386 struct net *net = n->net;
387 u32 addr = 0;
388 u32 flags = n->action_flags;
389 u32 link_id = 0;
390 u32 bearer_id;
391 struct list_head *publ_list;
392
393 if (likely(!flags)) {
394 write_unlock_bh(&n->lock);
395 return;
396 }
397
398 addr = n->addr;
399 link_id = n->link_id;
400 bearer_id = link_id & 0xffff;
401 publ_list = &n->publ_list;
402
403 n->action_flags &= ~(TIPC_NOTIFY_NODE_DOWN | TIPC_NOTIFY_NODE_UP |
404 TIPC_NOTIFY_LINK_DOWN | TIPC_NOTIFY_LINK_UP);
405
406 write_unlock_bh(&n->lock);
407
408 if (flags & TIPC_NOTIFY_NODE_DOWN)
Olivier Deprez157378f2022-04-04 15:47:50 +0200409 tipc_publ_notify(net, publ_list, addr, n->capabilities);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000410
411 if (flags & TIPC_NOTIFY_NODE_UP)
Olivier Deprez157378f2022-04-04 15:47:50 +0200412 tipc_named_node_up(net, addr, n->capabilities);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000413
414 if (flags & TIPC_NOTIFY_LINK_UP) {
415 tipc_mon_peer_up(net, addr, bearer_id);
416 tipc_nametbl_publish(net, TIPC_LINK_STATE, addr, addr,
417 TIPC_NODE_SCOPE, link_id, link_id);
418 }
419 if (flags & TIPC_NOTIFY_LINK_DOWN) {
420 tipc_mon_peer_down(net, addr, bearer_id);
421 tipc_nametbl_withdraw(net, TIPC_LINK_STATE, addr,
422 addr, link_id);
423 }
424}
425
Olivier Deprez157378f2022-04-04 15:47:50 +0200426static void tipc_node_assign_peer_net(struct tipc_node *n, u32 hash_mixes)
427{
428 int net_id = tipc_netid(n->net);
429 struct tipc_net *tn_peer;
430 struct net *tmp;
431 u32 hash_chk;
432
433 if (n->peer_net)
434 return;
435
436 for_each_net_rcu(tmp) {
437 tn_peer = tipc_net(tmp);
438 if (!tn_peer)
439 continue;
440 /* Integrity checking whether node exists in namespace or not */
441 if (tn_peer->net_id != net_id)
442 continue;
443 if (memcmp(n->peer_id, tn_peer->node_id, NODE_ID_LEN))
444 continue;
445 hash_chk = tipc_net_hash_mixes(tmp, tn_peer->random);
446 if (hash_mixes ^ hash_chk)
447 continue;
448 n->peer_net = tmp;
449 n->peer_hash_mix = hash_mixes;
450 break;
451 }
452}
453
454struct tipc_node *tipc_node_create(struct net *net, u32 addr, u8 *peer_id,
455 u16 capabilities, u32 hash_mixes,
456 bool preliminary)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000457{
458 struct tipc_net *tn = net_generic(net, tipc_net_id);
Olivier Deprez92d4c212022-12-06 15:05:30 +0100459 struct tipc_link *l, *snd_l = tipc_bc_sndlink(net);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000460 struct tipc_node *n, *temp_node;
Olivier Deprez157378f2022-04-04 15:47:50 +0200461 unsigned long intv;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000462 int bearer_id;
463 int i;
464
465 spin_lock_bh(&tn->node_list_lock);
Olivier Deprez157378f2022-04-04 15:47:50 +0200466 n = tipc_node_find(net, addr) ?:
467 tipc_node_find_by_id(net, peer_id);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000468 if (n) {
Olivier Deprez157378f2022-04-04 15:47:50 +0200469 if (!n->preliminary)
470 goto update;
471 if (preliminary)
472 goto exit;
473 /* A preliminary node becomes "real" now, refresh its data */
474 tipc_node_write_lock(n);
Olivier Deprez92d4c212022-12-06 15:05:30 +0100475 if (!tipc_link_bc_create(net, tipc_own_addr(net), addr, peer_id, U16_MAX,
476 tipc_link_min_win(snd_l), tipc_link_max_win(snd_l),
477 n->capabilities, &n->bc_entry.inputq1,
478 &n->bc_entry.namedq, snd_l, &n->bc_entry.link)) {
479 pr_warn("Broadcast rcv link refresh failed, no memory\n");
480 tipc_node_write_unlock_fast(n);
481 tipc_node_put(n);
482 n = NULL;
483 goto exit;
484 }
Olivier Deprez157378f2022-04-04 15:47:50 +0200485 n->preliminary = false;
486 n->addr = addr;
487 hlist_del_rcu(&n->hash);
488 hlist_add_head_rcu(&n->hash,
489 &tn->node_htable[tipc_hashfn(addr)]);
490 list_del_rcu(&n->list);
491 list_for_each_entry_rcu(temp_node, &tn->node_list, list) {
492 if (n->addr < temp_node->addr)
493 break;
494 }
495 list_add_tail_rcu(&n->list, &temp_node->list);
496 tipc_node_write_unlock_fast(n);
497
498update:
499 if (n->peer_hash_mix ^ hash_mixes)
500 tipc_node_assign_peer_net(n, hash_mixes);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000501 if (n->capabilities == capabilities)
502 goto exit;
503 /* Same node may come back with new capabilities */
David Brazdil0f672f62019-12-10 10:32:29 +0000504 tipc_node_write_lock(n);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000505 n->capabilities = capabilities;
506 for (bearer_id = 0; bearer_id < MAX_BEARERS; bearer_id++) {
507 l = n->links[bearer_id].link;
508 if (l)
509 tipc_link_update_caps(l, capabilities);
510 }
David Brazdil0f672f62019-12-10 10:32:29 +0000511 tipc_node_write_unlock_fast(n);
512
513 /* Calculate cluster capabilities */
514 tn->capabilities = TIPC_NODE_CAPABILITIES;
515 list_for_each_entry_rcu(temp_node, &tn->node_list, list) {
516 tn->capabilities &= temp_node->capabilities;
517 }
Olivier Deprez157378f2022-04-04 15:47:50 +0200518
519 tipc_bcast_toggle_rcast(net,
520 (tn->capabilities & TIPC_BCAST_RCAST));
521
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000522 goto exit;
523 }
524 n = kzalloc(sizeof(*n), GFP_ATOMIC);
525 if (!n) {
526 pr_warn("Node creation failed, no memory\n");
527 goto exit;
528 }
Olivier Deprez157378f2022-04-04 15:47:50 +0200529 tipc_nodeid2string(n->peer_id_string, peer_id);
530#ifdef CONFIG_TIPC_CRYPTO
531 if (unlikely(tipc_crypto_start(&n->crypto_rx, net, n))) {
532 pr_warn("Failed to start crypto RX(%s)!\n", n->peer_id_string);
533 kfree(n);
534 n = NULL;
535 goto exit;
536 }
537#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000538 n->addr = addr;
Olivier Deprez157378f2022-04-04 15:47:50 +0200539 n->preliminary = preliminary;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000540 memcpy(&n->peer_id, peer_id, 16);
541 n->net = net;
Olivier Deprez157378f2022-04-04 15:47:50 +0200542 n->peer_net = NULL;
543 n->peer_hash_mix = 0;
544 /* Assign kernel local namespace if exists */
545 tipc_node_assign_peer_net(n, hash_mixes);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000546 n->capabilities = capabilities;
547 kref_init(&n->kref);
548 rwlock_init(&n->lock);
549 INIT_HLIST_NODE(&n->hash);
550 INIT_LIST_HEAD(&n->list);
551 INIT_LIST_HEAD(&n->publ_list);
552 INIT_LIST_HEAD(&n->conn_sks);
553 skb_queue_head_init(&n->bc_entry.namedq);
554 skb_queue_head_init(&n->bc_entry.inputq1);
555 __skb_queue_head_init(&n->bc_entry.arrvq);
556 skb_queue_head_init(&n->bc_entry.inputq2);
557 for (i = 0; i < MAX_BEARERS; i++)
558 spin_lock_init(&n->links[i].lock);
559 n->state = SELF_DOWN_PEER_LEAVING;
560 n->delete_at = jiffies + msecs_to_jiffies(NODE_CLEANUP_AFTER);
561 n->signature = INVALID_NODE_SIG;
562 n->active_links[0] = INVALID_BEARER_ID;
563 n->active_links[1] = INVALID_BEARER_ID;
Olivier Deprez92d4c212022-12-06 15:05:30 +0100564 if (!preliminary &&
565 !tipc_link_bc_create(net, tipc_own_addr(net), addr, peer_id, U16_MAX,
566 tipc_link_min_win(snd_l), tipc_link_max_win(snd_l),
567 n->capabilities, &n->bc_entry.inputq1,
568 &n->bc_entry.namedq, snd_l, &n->bc_entry.link)) {
569 pr_warn("Broadcast rcv link creation failed, no memory\n");
570 kfree(n);
571 n = NULL;
572 goto exit;
573 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000574 tipc_node_get(n);
575 timer_setup(&n->timer, tipc_node_timeout, 0);
Olivier Deprez157378f2022-04-04 15:47:50 +0200576 /* Start a slow timer anyway, crypto needs it */
577 n->keepalive_intv = 10000;
578 intv = jiffies + msecs_to_jiffies(n->keepalive_intv);
579 if (!mod_timer(&n->timer, intv))
580 tipc_node_get(n);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000581 hlist_add_head_rcu(&n->hash, &tn->node_htable[tipc_hashfn(addr)]);
582 list_for_each_entry_rcu(temp_node, &tn->node_list, list) {
583 if (n->addr < temp_node->addr)
584 break;
585 }
586 list_add_tail_rcu(&n->list, &temp_node->list);
David Brazdil0f672f62019-12-10 10:32:29 +0000587 /* Calculate cluster capabilities */
588 tn->capabilities = TIPC_NODE_CAPABILITIES;
589 list_for_each_entry_rcu(temp_node, &tn->node_list, list) {
590 tn->capabilities &= temp_node->capabilities;
591 }
Olivier Deprez157378f2022-04-04 15:47:50 +0200592 tipc_bcast_toggle_rcast(net, (tn->capabilities & TIPC_BCAST_RCAST));
David Brazdil0f672f62019-12-10 10:32:29 +0000593 trace_tipc_node_create(n, true, " ");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000594exit:
595 spin_unlock_bh(&tn->node_list_lock);
596 return n;
597}
598
599static void tipc_node_calculate_timer(struct tipc_node *n, struct tipc_link *l)
600{
601 unsigned long tol = tipc_link_tolerance(l);
602 unsigned long intv = ((tol / 4) > 500) ? 500 : tol / 4;
603
604 /* Link with lowest tolerance determines timer interval */
605 if (intv < n->keepalive_intv)
606 n->keepalive_intv = intv;
607
608 /* Ensure link's abort limit corresponds to current tolerance */
609 tipc_link_set_abort_limit(l, tol / n->keepalive_intv);
610}
611
612static void tipc_node_delete_from_list(struct tipc_node *node)
613{
Olivier Deprez157378f2022-04-04 15:47:50 +0200614#ifdef CONFIG_TIPC_CRYPTO
615 tipc_crypto_key_flush(node->crypto_rx);
616#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000617 list_del_rcu(&node->list);
618 hlist_del_rcu(&node->hash);
619 tipc_node_put(node);
620}
621
622static void tipc_node_delete(struct tipc_node *node)
623{
David Brazdil0f672f62019-12-10 10:32:29 +0000624 trace_tipc_node_delete(node, true, " ");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000625 tipc_node_delete_from_list(node);
626
627 del_timer_sync(&node->timer);
628 tipc_node_put(node);
629}
630
631void tipc_node_stop(struct net *net)
632{
633 struct tipc_net *tn = tipc_net(net);
634 struct tipc_node *node, *t_node;
635
636 spin_lock_bh(&tn->node_list_lock);
637 list_for_each_entry_safe(node, t_node, &tn->node_list, list)
638 tipc_node_delete(node);
639 spin_unlock_bh(&tn->node_list_lock);
640}
641
642void tipc_node_subscribe(struct net *net, struct list_head *subscr, u32 addr)
643{
644 struct tipc_node *n;
645
646 if (in_own_node(net, addr))
647 return;
648
649 n = tipc_node_find(net, addr);
650 if (!n) {
651 pr_warn("Node subscribe rejected, unknown node 0x%x\n", addr);
652 return;
653 }
654 tipc_node_write_lock(n);
655 list_add_tail(subscr, &n->publ_list);
656 tipc_node_write_unlock_fast(n);
657 tipc_node_put(n);
658}
659
660void tipc_node_unsubscribe(struct net *net, struct list_head *subscr, u32 addr)
661{
662 struct tipc_node *n;
663
664 if (in_own_node(net, addr))
665 return;
666
667 n = tipc_node_find(net, addr);
668 if (!n) {
669 pr_warn("Node unsubscribe rejected, unknown node 0x%x\n", addr);
670 return;
671 }
672 tipc_node_write_lock(n);
673 list_del_init(subscr);
674 tipc_node_write_unlock_fast(n);
675 tipc_node_put(n);
676}
677
678int tipc_node_add_conn(struct net *net, u32 dnode, u32 port, u32 peer_port)
679{
680 struct tipc_node *node;
681 struct tipc_sock_conn *conn;
682 int err = 0;
683
684 if (in_own_node(net, dnode))
685 return 0;
686
687 node = tipc_node_find(net, dnode);
688 if (!node) {
689 pr_warn("Connecting sock to node 0x%x failed\n", dnode);
690 return -EHOSTUNREACH;
691 }
692 conn = kmalloc(sizeof(*conn), GFP_ATOMIC);
693 if (!conn) {
694 err = -EHOSTUNREACH;
695 goto exit;
696 }
697 conn->peer_node = dnode;
698 conn->port = port;
699 conn->peer_port = peer_port;
700
701 tipc_node_write_lock(node);
702 list_add_tail(&conn->list, &node->conn_sks);
703 tipc_node_write_unlock(node);
704exit:
705 tipc_node_put(node);
706 return err;
707}
708
709void tipc_node_remove_conn(struct net *net, u32 dnode, u32 port)
710{
711 struct tipc_node *node;
712 struct tipc_sock_conn *conn, *safe;
713
714 if (in_own_node(net, dnode))
715 return;
716
717 node = tipc_node_find(net, dnode);
718 if (!node)
719 return;
720
721 tipc_node_write_lock(node);
722 list_for_each_entry_safe(conn, safe, &node->conn_sks, list) {
723 if (port != conn->port)
724 continue;
725 list_del(&conn->list);
726 kfree(conn);
727 }
728 tipc_node_write_unlock(node);
729 tipc_node_put(node);
730}
731
732static void tipc_node_clear_links(struct tipc_node *node)
733{
734 int i;
735
736 for (i = 0; i < MAX_BEARERS; i++) {
737 struct tipc_link_entry *le = &node->links[i];
738
739 if (le->link) {
740 kfree(le->link);
741 le->link = NULL;
742 node->link_cnt--;
743 }
744 }
745}
746
747/* tipc_node_cleanup - delete nodes that does not
748 * have active links for NODE_CLEANUP_AFTER time
749 */
750static bool tipc_node_cleanup(struct tipc_node *peer)
751{
David Brazdil0f672f62019-12-10 10:32:29 +0000752 struct tipc_node *temp_node;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000753 struct tipc_net *tn = tipc_net(peer->net);
754 bool deleted = false;
755
756 /* If lock held by tipc_node_stop() the node will be deleted anyway */
757 if (!spin_trylock_bh(&tn->node_list_lock))
758 return false;
759
760 tipc_node_write_lock(peer);
761
762 if (!node_is_up(peer) && time_after(jiffies, peer->delete_at)) {
763 tipc_node_clear_links(peer);
764 tipc_node_delete_from_list(peer);
765 deleted = true;
766 }
767 tipc_node_write_unlock(peer);
David Brazdil0f672f62019-12-10 10:32:29 +0000768
Olivier Deprez157378f2022-04-04 15:47:50 +0200769 if (!deleted) {
770 spin_unlock_bh(&tn->node_list_lock);
771 return deleted;
772 }
773
David Brazdil0f672f62019-12-10 10:32:29 +0000774 /* Calculate cluster capabilities */
775 tn->capabilities = TIPC_NODE_CAPABILITIES;
776 list_for_each_entry_rcu(temp_node, &tn->node_list, list) {
777 tn->capabilities &= temp_node->capabilities;
778 }
Olivier Deprez157378f2022-04-04 15:47:50 +0200779 tipc_bcast_toggle_rcast(peer->net,
780 (tn->capabilities & TIPC_BCAST_RCAST));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000781 spin_unlock_bh(&tn->node_list_lock);
782 return deleted;
783}
784
785/* tipc_node_timeout - handle expiration of node timer
786 */
787static void tipc_node_timeout(struct timer_list *t)
788{
789 struct tipc_node *n = from_timer(n, t, timer);
790 struct tipc_link_entry *le;
791 struct sk_buff_head xmitq;
792 int remains = n->link_cnt;
793 int bearer_id;
794 int rc = 0;
795
David Brazdil0f672f62019-12-10 10:32:29 +0000796 trace_tipc_node_timeout(n, false, " ");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000797 if (!node_is_up(n) && tipc_node_cleanup(n)) {
798 /*Removing the reference of Timer*/
799 tipc_node_put(n);
800 return;
801 }
802
Olivier Deprez157378f2022-04-04 15:47:50 +0200803#ifdef CONFIG_TIPC_CRYPTO
804 /* Take any crypto key related actions first */
805 tipc_crypto_timeout(n->crypto_rx);
806#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000807 __skb_queue_head_init(&xmitq);
808
David Brazdil0f672f62019-12-10 10:32:29 +0000809 /* Initial node interval to value larger (10 seconds), then it will be
810 * recalculated with link lowest tolerance
811 */
812 tipc_node_read_lock(n);
813 n->keepalive_intv = 10000;
814 tipc_node_read_unlock(n);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000815 for (bearer_id = 0; remains && (bearer_id < MAX_BEARERS); bearer_id++) {
816 tipc_node_read_lock(n);
817 le = &n->links[bearer_id];
818 if (le->link) {
819 spin_lock_bh(&le->lock);
820 /* Link tolerance may change asynchronously: */
821 tipc_node_calculate_timer(n, le->link);
822 rc = tipc_link_timeout(le->link, &xmitq);
823 spin_unlock_bh(&le->lock);
824 remains--;
825 }
826 tipc_node_read_unlock(n);
Olivier Deprez157378f2022-04-04 15:47:50 +0200827 tipc_bearer_xmit(n->net, bearer_id, &xmitq, &le->maddr, n);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000828 if (rc & TIPC_LINK_DOWN_EVT)
829 tipc_node_link_down(n, bearer_id, false);
830 }
831 mod_timer(&n->timer, jiffies + msecs_to_jiffies(n->keepalive_intv));
832}
833
834/**
835 * __tipc_node_link_up - handle addition of link
836 * Node lock must be held by caller
837 * Link becomes active (alone or shared) or standby, depending on its priority.
838 */
839static void __tipc_node_link_up(struct tipc_node *n, int bearer_id,
840 struct sk_buff_head *xmitq)
841{
842 int *slot0 = &n->active_links[0];
843 int *slot1 = &n->active_links[1];
844 struct tipc_link *ol = node_active_link(n, 0);
845 struct tipc_link *nl = n->links[bearer_id].link;
846
847 if (!nl || tipc_link_is_up(nl))
848 return;
849
850 tipc_link_fsm_evt(nl, LINK_ESTABLISH_EVT);
851 if (!tipc_link_is_up(nl))
852 return;
853
854 n->working_links++;
855 n->action_flags |= TIPC_NOTIFY_LINK_UP;
856 n->link_id = tipc_link_id(nl);
857
858 /* Leave room for tunnel header when returning 'mtu' to users: */
Olivier Deprez157378f2022-04-04 15:47:50 +0200859 n->links[bearer_id].mtu = tipc_link_mss(nl);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000860
861 tipc_bearer_add_dest(n->net, bearer_id, n->addr);
862 tipc_bcast_inc_bearer_dst_cnt(n->net, bearer_id);
863
864 pr_debug("Established link <%s> on network plane %c\n",
865 tipc_link_name(nl), tipc_link_plane(nl));
David Brazdil0f672f62019-12-10 10:32:29 +0000866 trace_tipc_node_link_up(n, true, " ");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000867
868 /* Ensure that a STATE message goes first */
869 tipc_link_build_state_msg(nl, xmitq);
870
871 /* First link? => give it both slots */
872 if (!ol) {
873 *slot0 = bearer_id;
874 *slot1 = bearer_id;
875 tipc_node_fsm_evt(n, SELF_ESTABL_CONTACT_EVT);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000876 n->action_flags |= TIPC_NOTIFY_NODE_UP;
877 tipc_link_set_active(nl, true);
878 tipc_bcast_add_peer(n->net, nl, xmitq);
879 return;
880 }
881
882 /* Second link => redistribute slots */
883 if (tipc_link_prio(nl) > tipc_link_prio(ol)) {
884 pr_debug("Old link <%s> becomes standby\n", tipc_link_name(ol));
885 *slot0 = bearer_id;
886 *slot1 = bearer_id;
887 tipc_link_set_active(nl, true);
888 tipc_link_set_active(ol, false);
889 } else if (tipc_link_prio(nl) == tipc_link_prio(ol)) {
890 tipc_link_set_active(nl, true);
891 *slot1 = bearer_id;
892 } else {
893 pr_debug("New link <%s> is standby\n", tipc_link_name(nl));
894 }
895
896 /* Prepare synchronization with first link */
897 tipc_link_tnl_prepare(ol, nl, SYNCH_MSG, xmitq);
898}
899
900/**
901 * tipc_node_link_up - handle addition of link
902 *
903 * Link becomes active (alone or shared) or standby, depending on its priority.
904 */
905static void tipc_node_link_up(struct tipc_node *n, int bearer_id,
906 struct sk_buff_head *xmitq)
907{
908 struct tipc_media_addr *maddr;
909
910 tipc_node_write_lock(n);
911 __tipc_node_link_up(n, bearer_id, xmitq);
912 maddr = &n->links[bearer_id].maddr;
Olivier Deprez157378f2022-04-04 15:47:50 +0200913 tipc_bearer_xmit(n->net, bearer_id, xmitq, maddr, n);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000914 tipc_node_write_unlock(n);
915}
916
917/**
David Brazdil0f672f62019-12-10 10:32:29 +0000918 * tipc_node_link_failover() - start failover in case "half-failover"
919 *
920 * This function is only called in a very special situation where link
921 * failover can be already started on peer node but not on this node.
922 * This can happen when e.g.
923 * 1. Both links <1A-2A>, <1B-2B> down
924 * 2. Link endpoint 2A up, but 1A still down (e.g. due to network
925 * disturbance, wrong session, etc.)
926 * 3. Link <1B-2B> up
927 * 4. Link endpoint 2A down (e.g. due to link tolerance timeout)
928 * 5. Node 2 starts failover onto link <1B-2B>
929 *
930 * ==> Node 1 does never start link/node failover!
931 *
932 * @n: tipc node structure
933 * @l: link peer endpoint failingover (- can be NULL)
934 * @tnl: tunnel link
935 * @xmitq: queue for messages to be xmited on tnl link later
936 */
937static void tipc_node_link_failover(struct tipc_node *n, struct tipc_link *l,
938 struct tipc_link *tnl,
939 struct sk_buff_head *xmitq)
940{
941 /* Avoid to be "self-failover" that can never end */
942 if (!tipc_link_is_up(tnl))
943 return;
944
945 /* Don't rush, failure link may be in the process of resetting */
946 if (l && !tipc_link_is_reset(l))
947 return;
948
949 tipc_link_fsm_evt(tnl, LINK_SYNCH_END_EVT);
950 tipc_node_fsm_evt(n, NODE_SYNCH_END_EVT);
951
952 n->sync_point = tipc_link_rcv_nxt(tnl) + (U16_MAX / 2 - 1);
953 tipc_link_failover_prepare(l, tnl, xmitq);
954
955 if (l)
956 tipc_link_fsm_evt(l, LINK_FAILOVER_BEGIN_EVT);
957 tipc_node_fsm_evt(n, NODE_FAILOVER_BEGIN_EVT);
958}
959
960/**
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000961 * __tipc_node_link_down - handle loss of link
962 */
963static void __tipc_node_link_down(struct tipc_node *n, int *bearer_id,
964 struct sk_buff_head *xmitq,
965 struct tipc_media_addr **maddr)
966{
967 struct tipc_link_entry *le = &n->links[*bearer_id];
968 int *slot0 = &n->active_links[0];
969 int *slot1 = &n->active_links[1];
970 int i, highest = 0, prio;
971 struct tipc_link *l, *_l, *tnl;
972
973 l = n->links[*bearer_id].link;
974 if (!l || tipc_link_is_reset(l))
975 return;
976
977 n->working_links--;
978 n->action_flags |= TIPC_NOTIFY_LINK_DOWN;
979 n->link_id = tipc_link_id(l);
980
981 tipc_bearer_remove_dest(n->net, *bearer_id, n->addr);
982
983 pr_debug("Lost link <%s> on network plane %c\n",
984 tipc_link_name(l), tipc_link_plane(l));
985
986 /* Select new active link if any available */
987 *slot0 = INVALID_BEARER_ID;
988 *slot1 = INVALID_BEARER_ID;
989 for (i = 0; i < MAX_BEARERS; i++) {
990 _l = n->links[i].link;
991 if (!_l || !tipc_link_is_up(_l))
992 continue;
993 if (_l == l)
994 continue;
995 prio = tipc_link_prio(_l);
996 if (prio < highest)
997 continue;
998 if (prio > highest) {
999 highest = prio;
1000 *slot0 = i;
1001 *slot1 = i;
1002 continue;
1003 }
1004 *slot1 = i;
1005 }
1006
1007 if (!node_is_up(n)) {
1008 if (tipc_link_peer_is_down(l))
1009 tipc_node_fsm_evt(n, PEER_LOST_CONTACT_EVT);
1010 tipc_node_fsm_evt(n, SELF_LOST_CONTACT_EVT);
David Brazdil0f672f62019-12-10 10:32:29 +00001011 trace_tipc_link_reset(l, TIPC_DUMP_ALL, "link down!");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001012 tipc_link_fsm_evt(l, LINK_RESET_EVT);
1013 tipc_link_reset(l);
1014 tipc_link_build_reset_msg(l, xmitq);
1015 *maddr = &n->links[*bearer_id].maddr;
1016 node_lost_contact(n, &le->inputq);
1017 tipc_bcast_dec_bearer_dst_cnt(n->net, *bearer_id);
1018 return;
1019 }
1020 tipc_bcast_dec_bearer_dst_cnt(n->net, *bearer_id);
1021
1022 /* There is still a working link => initiate failover */
1023 *bearer_id = n->active_links[0];
1024 tnl = n->links[*bearer_id].link;
1025 tipc_link_fsm_evt(tnl, LINK_SYNCH_END_EVT);
1026 tipc_node_fsm_evt(n, NODE_SYNCH_END_EVT);
1027 n->sync_point = tipc_link_rcv_nxt(tnl) + (U16_MAX / 2 - 1);
1028 tipc_link_tnl_prepare(l, tnl, FAILOVER_MSG, xmitq);
David Brazdil0f672f62019-12-10 10:32:29 +00001029 trace_tipc_link_reset(l, TIPC_DUMP_ALL, "link down -> failover!");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001030 tipc_link_reset(l);
1031 tipc_link_fsm_evt(l, LINK_RESET_EVT);
1032 tipc_link_fsm_evt(l, LINK_FAILOVER_BEGIN_EVT);
1033 tipc_node_fsm_evt(n, NODE_FAILOVER_BEGIN_EVT);
1034 *maddr = &n->links[*bearer_id].maddr;
1035}
1036
1037static void tipc_node_link_down(struct tipc_node *n, int bearer_id, bool delete)
1038{
1039 struct tipc_link_entry *le = &n->links[bearer_id];
David Brazdil0f672f62019-12-10 10:32:29 +00001040 struct tipc_media_addr *maddr = NULL;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001041 struct tipc_link *l = le->link;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001042 int old_bearer_id = bearer_id;
David Brazdil0f672f62019-12-10 10:32:29 +00001043 struct sk_buff_head xmitq;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001044
1045 if (!l)
1046 return;
1047
1048 __skb_queue_head_init(&xmitq);
1049
1050 tipc_node_write_lock(n);
1051 if (!tipc_link_is_establishing(l)) {
1052 __tipc_node_link_down(n, &bearer_id, &xmitq, &maddr);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001053 } else {
1054 /* Defuse pending tipc_node_link_up() */
David Brazdil0f672f62019-12-10 10:32:29 +00001055 tipc_link_reset(l);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001056 tipc_link_fsm_evt(l, LINK_RESET_EVT);
1057 }
David Brazdil0f672f62019-12-10 10:32:29 +00001058 if (delete) {
1059 kfree(l);
1060 le->link = NULL;
1061 n->link_cnt--;
1062 }
1063 trace_tipc_node_link_down(n, true, "node link down or deleted!");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001064 tipc_node_write_unlock(n);
1065 if (delete)
1066 tipc_mon_remove_peer(n->net, n->addr, old_bearer_id);
David Brazdil0f672f62019-12-10 10:32:29 +00001067 if (!skb_queue_empty(&xmitq))
Olivier Deprez157378f2022-04-04 15:47:50 +02001068 tipc_bearer_xmit(n->net, bearer_id, &xmitq, maddr, n);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001069 tipc_sk_rcv(n->net, &le->inputq);
1070}
1071
1072static bool node_is_up(struct tipc_node *n)
1073{
1074 return n->active_links[0] != INVALID_BEARER_ID;
1075}
1076
1077bool tipc_node_is_up(struct net *net, u32 addr)
1078{
1079 struct tipc_node *n;
1080 bool retval = false;
1081
1082 if (in_own_node(net, addr))
1083 return true;
1084
1085 n = tipc_node_find(net, addr);
1086 if (!n)
1087 return false;
1088 retval = node_is_up(n);
1089 tipc_node_put(n);
1090 return retval;
1091}
1092
1093static u32 tipc_node_suggest_addr(struct net *net, u32 addr)
1094{
1095 struct tipc_node *n;
1096
1097 addr ^= tipc_net(net)->random;
1098 while ((n = tipc_node_find(net, addr))) {
1099 tipc_node_put(n);
1100 addr++;
1101 }
1102 return addr;
1103}
1104
1105/* tipc_node_try_addr(): Check if addr can be used by peer, suggest other if not
1106 * Returns suggested address if any, otherwise 0
1107 */
1108u32 tipc_node_try_addr(struct net *net, u8 *id, u32 addr)
1109{
1110 struct tipc_net *tn = tipc_net(net);
1111 struct tipc_node *n;
Olivier Deprez157378f2022-04-04 15:47:50 +02001112 bool preliminary;
1113 u32 sugg_addr;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001114
1115 /* Suggest new address if some other peer is using this one */
1116 n = tipc_node_find(net, addr);
1117 if (n) {
1118 if (!memcmp(n->peer_id, id, NODE_ID_LEN))
1119 addr = 0;
1120 tipc_node_put(n);
1121 if (!addr)
1122 return 0;
1123 return tipc_node_suggest_addr(net, addr);
1124 }
1125
1126 /* Suggest previously used address if peer is known */
1127 n = tipc_node_find_by_id(net, id);
1128 if (n) {
Olivier Deprez157378f2022-04-04 15:47:50 +02001129 sugg_addr = n->addr;
1130 preliminary = n->preliminary;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001131 tipc_node_put(n);
Olivier Deprez157378f2022-04-04 15:47:50 +02001132 if (!preliminary)
1133 return sugg_addr;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001134 }
1135
1136 /* Even this node may be in conflict */
1137 if (tn->trial_addr == addr)
1138 return tipc_node_suggest_addr(net, addr);
1139
1140 return 0;
1141}
1142
1143void tipc_node_check_dest(struct net *net, u32 addr,
1144 u8 *peer_id, struct tipc_bearer *b,
Olivier Deprez157378f2022-04-04 15:47:50 +02001145 u16 capabilities, u32 signature, u32 hash_mixes,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001146 struct tipc_media_addr *maddr,
1147 bool *respond, bool *dupl_addr)
1148{
1149 struct tipc_node *n;
Olivier Deprez92d4c212022-12-06 15:05:30 +01001150 struct tipc_link *l;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001151 struct tipc_link_entry *le;
1152 bool addr_match = false;
1153 bool sign_match = false;
1154 bool link_up = false;
1155 bool accept_addr = false;
1156 bool reset = true;
1157 char *if_name;
1158 unsigned long intv;
1159 u16 session;
1160
1161 *dupl_addr = false;
1162 *respond = false;
1163
Olivier Deprez157378f2022-04-04 15:47:50 +02001164 n = tipc_node_create(net, addr, peer_id, capabilities, hash_mixes,
1165 false);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001166 if (!n)
1167 return;
1168
1169 tipc_node_write_lock(n);
1170
1171 le = &n->links[b->identity];
1172
1173 /* Prepare to validate requesting node's signature and media address */
1174 l = le->link;
1175 link_up = l && tipc_link_is_up(l);
1176 addr_match = l && !memcmp(&le->maddr, maddr, sizeof(*maddr));
1177 sign_match = (signature == n->signature);
1178
1179 /* These three flags give us eight permutations: */
1180
1181 if (sign_match && addr_match && link_up) {
1182 /* All is fine. Do nothing. */
1183 reset = false;
Olivier Deprez157378f2022-04-04 15:47:50 +02001184 /* Peer node is not a container/local namespace */
1185 if (!n->peer_hash_mix)
1186 n->peer_hash_mix = hash_mixes;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001187 } else if (sign_match && addr_match && !link_up) {
1188 /* Respond. The link will come up in due time */
1189 *respond = true;
1190 } else if (sign_match && !addr_match && link_up) {
1191 /* Peer has changed i/f address without rebooting.
1192 * If so, the link will reset soon, and the next
1193 * discovery will be accepted. So we can ignore it.
1194 * It may also be an cloned or malicious peer having
1195 * chosen the same node address and signature as an
1196 * existing one.
1197 * Ignore requests until the link goes down, if ever.
1198 */
1199 *dupl_addr = true;
1200 } else if (sign_match && !addr_match && !link_up) {
1201 /* Peer link has changed i/f address without rebooting.
1202 * It may also be a cloned or malicious peer; we can't
1203 * distinguish between the two.
1204 * The signature is correct, so we must accept.
1205 */
1206 accept_addr = true;
1207 *respond = true;
1208 } else if (!sign_match && addr_match && link_up) {
1209 /* Peer node rebooted. Two possibilities:
1210 * - Delayed re-discovery; this link endpoint has already
1211 * reset and re-established contact with the peer, before
1212 * receiving a discovery message from that node.
1213 * (The peer happened to receive one from this node first).
1214 * - The peer came back so fast that our side has not
1215 * discovered it yet. Probing from this side will soon
1216 * reset the link, since there can be no working link
1217 * endpoint at the peer end, and the link will re-establish.
1218 * Accept the signature, since it comes from a known peer.
1219 */
1220 n->signature = signature;
1221 } else if (!sign_match && addr_match && !link_up) {
1222 /* The peer node has rebooted.
1223 * Accept signature, since it is a known peer.
1224 */
1225 n->signature = signature;
1226 *respond = true;
1227 } else if (!sign_match && !addr_match && link_up) {
1228 /* Peer rebooted with new address, or a new/duplicate peer.
1229 * Ignore until the link goes down, if ever.
1230 */
1231 *dupl_addr = true;
1232 } else if (!sign_match && !addr_match && !link_up) {
1233 /* Peer rebooted with new address, or it is a new peer.
1234 * Accept signature and address.
1235 */
1236 n->signature = signature;
1237 accept_addr = true;
1238 *respond = true;
1239 }
1240
1241 if (!accept_addr)
1242 goto exit;
1243
1244 /* Now create new link if not already existing */
1245 if (!l) {
1246 if (n->link_cnt == 2)
1247 goto exit;
1248
1249 if_name = strchr(b->name, ':') + 1;
1250 get_random_bytes(&session, sizeof(u16));
1251 if (!tipc_link_create(net, if_name, b->identity, b->tolerance,
1252 b->net_plane, b->mtu, b->priority,
Olivier Deprez157378f2022-04-04 15:47:50 +02001253 b->min_win, b->max_win, session,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001254 tipc_own_addr(net), addr, peer_id,
1255 n->capabilities,
1256 tipc_bc_sndlink(n->net), n->bc_entry.link,
1257 &le->inputq,
1258 &n->bc_entry.namedq, &l)) {
1259 *respond = false;
1260 goto exit;
1261 }
David Brazdil0f672f62019-12-10 10:32:29 +00001262 trace_tipc_link_reset(l, TIPC_DUMP_ALL, "link created!");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001263 tipc_link_reset(l);
1264 tipc_link_fsm_evt(l, LINK_RESET_EVT);
1265 if (n->state == NODE_FAILINGOVER)
1266 tipc_link_fsm_evt(l, LINK_FAILOVER_BEGIN_EVT);
1267 le->link = l;
1268 n->link_cnt++;
1269 tipc_node_calculate_timer(n, l);
1270 if (n->link_cnt == 1) {
1271 intv = jiffies + msecs_to_jiffies(n->keepalive_intv);
1272 if (!mod_timer(&n->timer, intv))
1273 tipc_node_get(n);
1274 }
1275 }
1276 memcpy(&le->maddr, maddr, sizeof(*maddr));
1277exit:
1278 tipc_node_write_unlock(n);
1279 if (reset && l && !tipc_link_is_reset(l))
1280 tipc_node_link_down(n, b->identity, false);
1281 tipc_node_put(n);
1282}
1283
1284void tipc_node_delete_links(struct net *net, int bearer_id)
1285{
1286 struct tipc_net *tn = net_generic(net, tipc_net_id);
1287 struct tipc_node *n;
1288
1289 rcu_read_lock();
1290 list_for_each_entry_rcu(n, &tn->node_list, list) {
1291 tipc_node_link_down(n, bearer_id, true);
1292 }
1293 rcu_read_unlock();
1294}
1295
1296static void tipc_node_reset_links(struct tipc_node *n)
1297{
1298 int i;
1299
1300 pr_warn("Resetting all links to %x\n", n->addr);
1301
David Brazdil0f672f62019-12-10 10:32:29 +00001302 trace_tipc_node_reset_links(n, true, " ");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001303 for (i = 0; i < MAX_BEARERS; i++) {
1304 tipc_node_link_down(n, i, false);
1305 }
1306}
1307
1308/* tipc_node_fsm_evt - node finite state machine
1309 * Determines when contact is allowed with peer node
1310 */
1311static void tipc_node_fsm_evt(struct tipc_node *n, int evt)
1312{
1313 int state = n->state;
1314
1315 switch (state) {
1316 case SELF_DOWN_PEER_DOWN:
1317 switch (evt) {
1318 case SELF_ESTABL_CONTACT_EVT:
1319 state = SELF_UP_PEER_COMING;
1320 break;
1321 case PEER_ESTABL_CONTACT_EVT:
1322 state = SELF_COMING_PEER_UP;
1323 break;
1324 case SELF_LOST_CONTACT_EVT:
1325 case PEER_LOST_CONTACT_EVT:
1326 break;
1327 case NODE_SYNCH_END_EVT:
1328 case NODE_SYNCH_BEGIN_EVT:
1329 case NODE_FAILOVER_BEGIN_EVT:
1330 case NODE_FAILOVER_END_EVT:
1331 default:
1332 goto illegal_evt;
1333 }
1334 break;
1335 case SELF_UP_PEER_UP:
1336 switch (evt) {
1337 case SELF_LOST_CONTACT_EVT:
1338 state = SELF_DOWN_PEER_LEAVING;
1339 break;
1340 case PEER_LOST_CONTACT_EVT:
1341 state = SELF_LEAVING_PEER_DOWN;
1342 break;
1343 case NODE_SYNCH_BEGIN_EVT:
1344 state = NODE_SYNCHING;
1345 break;
1346 case NODE_FAILOVER_BEGIN_EVT:
1347 state = NODE_FAILINGOVER;
1348 break;
1349 case SELF_ESTABL_CONTACT_EVT:
1350 case PEER_ESTABL_CONTACT_EVT:
1351 case NODE_SYNCH_END_EVT:
1352 case NODE_FAILOVER_END_EVT:
1353 break;
1354 default:
1355 goto illegal_evt;
1356 }
1357 break;
1358 case SELF_DOWN_PEER_LEAVING:
1359 switch (evt) {
1360 case PEER_LOST_CONTACT_EVT:
1361 state = SELF_DOWN_PEER_DOWN;
1362 break;
1363 case SELF_ESTABL_CONTACT_EVT:
1364 case PEER_ESTABL_CONTACT_EVT:
1365 case SELF_LOST_CONTACT_EVT:
1366 break;
1367 case NODE_SYNCH_END_EVT:
1368 case NODE_SYNCH_BEGIN_EVT:
1369 case NODE_FAILOVER_BEGIN_EVT:
1370 case NODE_FAILOVER_END_EVT:
1371 default:
1372 goto illegal_evt;
1373 }
1374 break;
1375 case SELF_UP_PEER_COMING:
1376 switch (evt) {
1377 case PEER_ESTABL_CONTACT_EVT:
1378 state = SELF_UP_PEER_UP;
1379 break;
1380 case SELF_LOST_CONTACT_EVT:
1381 state = SELF_DOWN_PEER_DOWN;
1382 break;
1383 case SELF_ESTABL_CONTACT_EVT:
1384 case PEER_LOST_CONTACT_EVT:
1385 case NODE_SYNCH_END_EVT:
1386 case NODE_FAILOVER_BEGIN_EVT:
1387 break;
1388 case NODE_SYNCH_BEGIN_EVT:
1389 case NODE_FAILOVER_END_EVT:
1390 default:
1391 goto illegal_evt;
1392 }
1393 break;
1394 case SELF_COMING_PEER_UP:
1395 switch (evt) {
1396 case SELF_ESTABL_CONTACT_EVT:
1397 state = SELF_UP_PEER_UP;
1398 break;
1399 case PEER_LOST_CONTACT_EVT:
1400 state = SELF_DOWN_PEER_DOWN;
1401 break;
1402 case SELF_LOST_CONTACT_EVT:
1403 case PEER_ESTABL_CONTACT_EVT:
1404 break;
1405 case NODE_SYNCH_END_EVT:
1406 case NODE_SYNCH_BEGIN_EVT:
1407 case NODE_FAILOVER_BEGIN_EVT:
1408 case NODE_FAILOVER_END_EVT:
1409 default:
1410 goto illegal_evt;
1411 }
1412 break;
1413 case SELF_LEAVING_PEER_DOWN:
1414 switch (evt) {
1415 case SELF_LOST_CONTACT_EVT:
1416 state = SELF_DOWN_PEER_DOWN;
1417 break;
1418 case SELF_ESTABL_CONTACT_EVT:
1419 case PEER_ESTABL_CONTACT_EVT:
1420 case PEER_LOST_CONTACT_EVT:
1421 break;
1422 case NODE_SYNCH_END_EVT:
1423 case NODE_SYNCH_BEGIN_EVT:
1424 case NODE_FAILOVER_BEGIN_EVT:
1425 case NODE_FAILOVER_END_EVT:
1426 default:
1427 goto illegal_evt;
1428 }
1429 break;
1430 case NODE_FAILINGOVER:
1431 switch (evt) {
1432 case SELF_LOST_CONTACT_EVT:
1433 state = SELF_DOWN_PEER_LEAVING;
1434 break;
1435 case PEER_LOST_CONTACT_EVT:
1436 state = SELF_LEAVING_PEER_DOWN;
1437 break;
1438 case NODE_FAILOVER_END_EVT:
1439 state = SELF_UP_PEER_UP;
1440 break;
1441 case NODE_FAILOVER_BEGIN_EVT:
1442 case SELF_ESTABL_CONTACT_EVT:
1443 case PEER_ESTABL_CONTACT_EVT:
1444 break;
1445 case NODE_SYNCH_BEGIN_EVT:
1446 case NODE_SYNCH_END_EVT:
1447 default:
1448 goto illegal_evt;
1449 }
1450 break;
1451 case NODE_SYNCHING:
1452 switch (evt) {
1453 case SELF_LOST_CONTACT_EVT:
1454 state = SELF_DOWN_PEER_LEAVING;
1455 break;
1456 case PEER_LOST_CONTACT_EVT:
1457 state = SELF_LEAVING_PEER_DOWN;
1458 break;
1459 case NODE_SYNCH_END_EVT:
1460 state = SELF_UP_PEER_UP;
1461 break;
1462 case NODE_FAILOVER_BEGIN_EVT:
1463 state = NODE_FAILINGOVER;
1464 break;
1465 case NODE_SYNCH_BEGIN_EVT:
1466 case SELF_ESTABL_CONTACT_EVT:
1467 case PEER_ESTABL_CONTACT_EVT:
1468 break;
1469 case NODE_FAILOVER_END_EVT:
1470 default:
1471 goto illegal_evt;
1472 }
1473 break;
1474 default:
1475 pr_err("Unknown node fsm state %x\n", state);
1476 break;
1477 }
David Brazdil0f672f62019-12-10 10:32:29 +00001478 trace_tipc_node_fsm(n->peer_id, n->state, state, evt);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001479 n->state = state;
1480 return;
1481
1482illegal_evt:
1483 pr_err("Illegal node fsm evt %x in state %x\n", evt, state);
David Brazdil0f672f62019-12-10 10:32:29 +00001484 trace_tipc_node_fsm(n->peer_id, n->state, state, evt);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001485}
1486
1487static void node_lost_contact(struct tipc_node *n,
1488 struct sk_buff_head *inputq)
1489{
1490 struct tipc_sock_conn *conn, *safe;
1491 struct tipc_link *l;
1492 struct list_head *conns = &n->conn_sks;
1493 struct sk_buff *skb;
1494 uint i;
1495
1496 pr_debug("Lost contact with %x\n", n->addr);
1497 n->delete_at = jiffies + msecs_to_jiffies(NODE_CLEANUP_AFTER);
David Brazdil0f672f62019-12-10 10:32:29 +00001498 trace_tipc_node_lost_contact(n, true, " ");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001499
1500 /* Clean up broadcast state */
1501 tipc_bcast_remove_peer(n->net, n->bc_entry.link);
Olivier Deprez157378f2022-04-04 15:47:50 +02001502 skb_queue_purge(&n->bc_entry.namedq);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001503
1504 /* Abort any ongoing link failover */
1505 for (i = 0; i < MAX_BEARERS; i++) {
1506 l = n->links[i].link;
1507 if (l)
1508 tipc_link_fsm_evt(l, LINK_FAILOVER_END_EVT);
1509 }
1510
1511 /* Notify publications from this node */
1512 n->action_flags |= TIPC_NOTIFY_NODE_DOWN;
Olivier Deprez157378f2022-04-04 15:47:50 +02001513 n->peer_net = NULL;
1514 n->peer_hash_mix = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001515 /* Notify sockets connected to node */
1516 list_for_each_entry_safe(conn, safe, conns, list) {
1517 skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE, TIPC_CONN_MSG,
1518 SHORT_H_SIZE, 0, tipc_own_addr(n->net),
1519 conn->peer_node, conn->port,
1520 conn->peer_port, TIPC_ERR_NO_NODE);
1521 if (likely(skb))
1522 skb_queue_tail(inputq, skb);
1523 list_del(&conn->list);
1524 kfree(conn);
1525 }
1526}
1527
1528/**
1529 * tipc_node_get_linkname - get the name of a link
1530 *
1531 * @bearer_id: id of the bearer
Olivier Deprez157378f2022-04-04 15:47:50 +02001532 * @addr: peer node address
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001533 * @linkname: link name output buffer
1534 *
1535 * Returns 0 on success
1536 */
1537int tipc_node_get_linkname(struct net *net, u32 bearer_id, u32 addr,
1538 char *linkname, size_t len)
1539{
1540 struct tipc_link *link;
1541 int err = -EINVAL;
1542 struct tipc_node *node = tipc_node_find(net, addr);
1543
1544 if (!node)
1545 return err;
1546
1547 if (bearer_id >= MAX_BEARERS)
1548 goto exit;
1549
1550 tipc_node_read_lock(node);
1551 link = node->links[bearer_id].link;
1552 if (link) {
1553 strncpy(linkname, tipc_link_name(link), len);
1554 err = 0;
1555 }
1556 tipc_node_read_unlock(node);
1557exit:
1558 tipc_node_put(node);
1559 return err;
1560}
1561
1562/* Caller should hold node lock for the passed node */
1563static int __tipc_nl_add_node(struct tipc_nl_msg *msg, struct tipc_node *node)
1564{
1565 void *hdr;
1566 struct nlattr *attrs;
1567
1568 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
1569 NLM_F_MULTI, TIPC_NL_NODE_GET);
1570 if (!hdr)
1571 return -EMSGSIZE;
1572
David Brazdil0f672f62019-12-10 10:32:29 +00001573 attrs = nla_nest_start_noflag(msg->skb, TIPC_NLA_NODE);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001574 if (!attrs)
1575 goto msg_full;
1576
1577 if (nla_put_u32(msg->skb, TIPC_NLA_NODE_ADDR, node->addr))
1578 goto attr_msg_full;
1579 if (node_is_up(node))
1580 if (nla_put_flag(msg->skb, TIPC_NLA_NODE_UP))
1581 goto attr_msg_full;
1582
1583 nla_nest_end(msg->skb, attrs);
1584 genlmsg_end(msg->skb, hdr);
1585
1586 return 0;
1587
1588attr_msg_full:
1589 nla_nest_cancel(msg->skb, attrs);
1590msg_full:
1591 genlmsg_cancel(msg->skb, hdr);
1592
1593 return -EMSGSIZE;
1594}
1595
Olivier Deprez157378f2022-04-04 15:47:50 +02001596static void tipc_lxc_xmit(struct net *peer_net, struct sk_buff_head *list)
1597{
1598 struct tipc_msg *hdr = buf_msg(skb_peek(list));
1599 struct sk_buff_head inputq;
1600
1601 switch (msg_user(hdr)) {
1602 case TIPC_LOW_IMPORTANCE:
1603 case TIPC_MEDIUM_IMPORTANCE:
1604 case TIPC_HIGH_IMPORTANCE:
1605 case TIPC_CRITICAL_IMPORTANCE:
1606 if (msg_connected(hdr) || msg_named(hdr) ||
1607 msg_direct(hdr)) {
1608 tipc_loopback_trace(peer_net, list);
1609 spin_lock_init(&list->lock);
1610 tipc_sk_rcv(peer_net, list);
1611 return;
1612 }
1613 if (msg_mcast(hdr)) {
1614 tipc_loopback_trace(peer_net, list);
1615 skb_queue_head_init(&inputq);
1616 tipc_sk_mcast_rcv(peer_net, list, &inputq);
1617 __skb_queue_purge(list);
1618 skb_queue_purge(&inputq);
1619 return;
1620 }
1621 return;
1622 case MSG_FRAGMENTER:
1623 if (tipc_msg_assemble(list)) {
1624 tipc_loopback_trace(peer_net, list);
1625 skb_queue_head_init(&inputq);
1626 tipc_sk_mcast_rcv(peer_net, list, &inputq);
1627 __skb_queue_purge(list);
1628 skb_queue_purge(&inputq);
1629 }
1630 return;
1631 case GROUP_PROTOCOL:
1632 case CONN_MANAGER:
1633 tipc_loopback_trace(peer_net, list);
1634 spin_lock_init(&list->lock);
1635 tipc_sk_rcv(peer_net, list);
1636 return;
1637 case LINK_PROTOCOL:
1638 case NAME_DISTRIBUTOR:
1639 case TUNNEL_PROTOCOL:
1640 case BCAST_PROTOCOL:
1641 return;
1642 default:
1643 return;
1644 };
1645}
1646
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001647/**
1648 * tipc_node_xmit() is the general link level function for message sending
1649 * @net: the applicable net namespace
1650 * @list: chain of buffers containing message
1651 * @dnode: address of destination node
1652 * @selector: a number used for deterministic link selection
1653 * Consumes the buffer chain.
1654 * Returns 0 if success, otherwise: -ELINKCONG,-EHOSTUNREACH,-EMSGSIZE,-ENOBUF
1655 */
1656int tipc_node_xmit(struct net *net, struct sk_buff_head *list,
1657 u32 dnode, int selector)
1658{
1659 struct tipc_link_entry *le = NULL;
1660 struct tipc_node *n;
1661 struct sk_buff_head xmitq;
Olivier Deprez157378f2022-04-04 15:47:50 +02001662 bool node_up = false;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001663 int bearer_id;
1664 int rc;
1665
1666 if (in_own_node(net, dnode)) {
David Brazdil0f672f62019-12-10 10:32:29 +00001667 tipc_loopback_trace(net, list);
1668 spin_lock_init(&list->lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001669 tipc_sk_rcv(net, list);
1670 return 0;
1671 }
1672
1673 n = tipc_node_find(net, dnode);
1674 if (unlikely(!n)) {
David Brazdil0f672f62019-12-10 10:32:29 +00001675 __skb_queue_purge(list);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001676 return -EHOSTUNREACH;
1677 }
1678
1679 tipc_node_read_lock(n);
Olivier Deprez157378f2022-04-04 15:47:50 +02001680 node_up = node_is_up(n);
1681 if (node_up && n->peer_net && check_net(n->peer_net)) {
1682 /* xmit inner linux container */
1683 tipc_lxc_xmit(n->peer_net, list);
1684 if (likely(skb_queue_empty(list))) {
1685 tipc_node_read_unlock(n);
1686 tipc_node_put(n);
1687 return 0;
1688 }
1689 }
1690
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001691 bearer_id = n->active_links[selector & 1];
1692 if (unlikely(bearer_id == INVALID_BEARER_ID)) {
1693 tipc_node_read_unlock(n);
1694 tipc_node_put(n);
David Brazdil0f672f62019-12-10 10:32:29 +00001695 __skb_queue_purge(list);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001696 return -EHOSTUNREACH;
1697 }
1698
1699 __skb_queue_head_init(&xmitq);
1700 le = &n->links[bearer_id];
1701 spin_lock_bh(&le->lock);
1702 rc = tipc_link_xmit(le->link, list, &xmitq);
1703 spin_unlock_bh(&le->lock);
1704 tipc_node_read_unlock(n);
1705
1706 if (unlikely(rc == -ENOBUFS))
1707 tipc_node_link_down(n, bearer_id, false);
1708 else
Olivier Deprez157378f2022-04-04 15:47:50 +02001709 tipc_bearer_xmit(net, bearer_id, &xmitq, &le->maddr, n);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001710
1711 tipc_node_put(n);
1712
1713 return rc;
1714}
1715
1716/* tipc_node_xmit_skb(): send single buffer to destination
1717 * Buffers sent via this functon are generally TIPC_SYSTEM_IMPORTANCE
1718 * messages, which will not be rejected
1719 * The only exception is datagram messages rerouted after secondary
1720 * lookup, which are rare and safe to dispose of anyway.
1721 */
1722int tipc_node_xmit_skb(struct net *net, struct sk_buff *skb, u32 dnode,
1723 u32 selector)
1724{
1725 struct sk_buff_head head;
1726
David Brazdil0f672f62019-12-10 10:32:29 +00001727 __skb_queue_head_init(&head);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001728 __skb_queue_tail(&head, skb);
1729 tipc_node_xmit(net, &head, dnode, selector);
1730 return 0;
1731}
1732
1733/* tipc_node_distr_xmit(): send single buffer msgs to individual destinations
1734 * Note: this is only for SYSTEM_IMPORTANCE messages, which cannot be rejected
1735 */
1736int tipc_node_distr_xmit(struct net *net, struct sk_buff_head *xmitq)
1737{
1738 struct sk_buff *skb;
1739 u32 selector, dnode;
1740
1741 while ((skb = __skb_dequeue(xmitq))) {
1742 selector = msg_origport(buf_msg(skb));
1743 dnode = msg_destnode(buf_msg(skb));
1744 tipc_node_xmit_skb(net, skb, dnode, selector);
1745 }
1746 return 0;
1747}
1748
Olivier Deprez157378f2022-04-04 15:47:50 +02001749void tipc_node_broadcast(struct net *net, struct sk_buff *skb, int rc_dests)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001750{
Olivier Deprez157378f2022-04-04 15:47:50 +02001751 struct sk_buff_head xmitq;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001752 struct sk_buff *txskb;
1753 struct tipc_node *n;
Olivier Deprez157378f2022-04-04 15:47:50 +02001754 u16 dummy;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001755 u32 dst;
1756
Olivier Deprez157378f2022-04-04 15:47:50 +02001757 /* Use broadcast if all nodes support it */
1758 if (!rc_dests && tipc_bcast_get_mode(net) != BCLINK_MODE_RCAST) {
1759 __skb_queue_head_init(&xmitq);
1760 __skb_queue_tail(&xmitq, skb);
1761 tipc_bcast_xmit(net, &xmitq, &dummy);
1762 return;
1763 }
1764
1765 /* Otherwise use legacy replicast method */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001766 rcu_read_lock();
1767 list_for_each_entry_rcu(n, tipc_nodes(net), list) {
1768 dst = n->addr;
1769 if (in_own_node(net, dst))
1770 continue;
1771 if (!node_is_up(n))
1772 continue;
1773 txskb = pskb_copy(skb, GFP_ATOMIC);
1774 if (!txskb)
1775 break;
1776 msg_set_destnode(buf_msg(txskb), dst);
1777 tipc_node_xmit_skb(net, txskb, dst, 0);
1778 }
1779 rcu_read_unlock();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001780 kfree_skb(skb);
1781}
1782
1783static void tipc_node_mcast_rcv(struct tipc_node *n)
1784{
1785 struct tipc_bclink_entry *be = &n->bc_entry;
1786
1787 /* 'arrvq' is under inputq2's lock protection */
1788 spin_lock_bh(&be->inputq2.lock);
1789 spin_lock_bh(&be->inputq1.lock);
1790 skb_queue_splice_tail_init(&be->inputq1, &be->arrvq);
1791 spin_unlock_bh(&be->inputq1.lock);
1792 spin_unlock_bh(&be->inputq2.lock);
1793 tipc_sk_mcast_rcv(n->net, &be->arrvq, &be->inputq2);
1794}
1795
1796static void tipc_node_bc_sync_rcv(struct tipc_node *n, struct tipc_msg *hdr,
1797 int bearer_id, struct sk_buff_head *xmitq)
1798{
1799 struct tipc_link *ucl;
1800 int rc;
1801
Olivier Deprez157378f2022-04-04 15:47:50 +02001802 rc = tipc_bcast_sync_rcv(n->net, n->bc_entry.link, hdr, xmitq);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001803
1804 if (rc & TIPC_LINK_DOWN_EVT) {
1805 tipc_node_reset_links(n);
1806 return;
1807 }
1808
1809 if (!(rc & TIPC_LINK_SND_STATE))
1810 return;
1811
1812 /* If probe message, a STATE response will be sent anyway */
1813 if (msg_probe(hdr))
1814 return;
1815
1816 /* Produce a STATE message carrying broadcast NACK */
1817 tipc_node_read_lock(n);
1818 ucl = n->links[bearer_id].link;
1819 if (ucl)
1820 tipc_link_build_state_msg(ucl, xmitq);
1821 tipc_node_read_unlock(n);
1822}
1823
1824/**
1825 * tipc_node_bc_rcv - process TIPC broadcast packet arriving from off-node
1826 * @net: the applicable net namespace
1827 * @skb: TIPC packet
1828 * @bearer_id: id of bearer message arrived on
1829 *
1830 * Invoked with no locks held.
1831 */
1832static void tipc_node_bc_rcv(struct net *net, struct sk_buff *skb, int bearer_id)
1833{
1834 int rc;
1835 struct sk_buff_head xmitq;
1836 struct tipc_bclink_entry *be;
1837 struct tipc_link_entry *le;
1838 struct tipc_msg *hdr = buf_msg(skb);
1839 int usr = msg_user(hdr);
1840 u32 dnode = msg_destnode(hdr);
1841 struct tipc_node *n;
1842
1843 __skb_queue_head_init(&xmitq);
1844
1845 /* If NACK for other node, let rcv link for that node peek into it */
1846 if ((usr == BCAST_PROTOCOL) && (dnode != tipc_own_addr(net)))
1847 n = tipc_node_find(net, dnode);
1848 else
1849 n = tipc_node_find(net, msg_prevnode(hdr));
1850 if (!n) {
1851 kfree_skb(skb);
1852 return;
1853 }
1854 be = &n->bc_entry;
1855 le = &n->links[bearer_id];
1856
1857 rc = tipc_bcast_rcv(net, be->link, skb);
1858
1859 /* Broadcast ACKs are sent on a unicast link */
1860 if (rc & TIPC_LINK_SND_STATE) {
1861 tipc_node_read_lock(n);
1862 tipc_link_build_state_msg(le->link, &xmitq);
1863 tipc_node_read_unlock(n);
1864 }
1865
1866 if (!skb_queue_empty(&xmitq))
Olivier Deprez157378f2022-04-04 15:47:50 +02001867 tipc_bearer_xmit(net, bearer_id, &xmitq, &le->maddr, n);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001868
1869 if (!skb_queue_empty(&be->inputq1))
1870 tipc_node_mcast_rcv(n);
1871
David Brazdil0f672f62019-12-10 10:32:29 +00001872 /* Handle NAME_DISTRIBUTOR messages sent from 1.7 nodes */
1873 if (!skb_queue_empty(&n->bc_entry.namedq))
Olivier Deprez157378f2022-04-04 15:47:50 +02001874 tipc_named_rcv(net, &n->bc_entry.namedq,
1875 &n->bc_entry.named_rcv_nxt,
1876 &n->bc_entry.named_open);
David Brazdil0f672f62019-12-10 10:32:29 +00001877
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001878 /* If reassembly or retransmission failure => reset all links to peer */
1879 if (rc & TIPC_LINK_DOWN_EVT)
1880 tipc_node_reset_links(n);
1881
1882 tipc_node_put(n);
1883}
1884
1885/**
1886 * tipc_node_check_state - check and if necessary update node state
1887 * @skb: TIPC packet
1888 * @bearer_id: identity of bearer delivering the packet
1889 * Returns true if state and msg are ok, otherwise false
1890 */
1891static bool tipc_node_check_state(struct tipc_node *n, struct sk_buff *skb,
1892 int bearer_id, struct sk_buff_head *xmitq)
1893{
1894 struct tipc_msg *hdr = buf_msg(skb);
1895 int usr = msg_user(hdr);
1896 int mtyp = msg_type(hdr);
1897 u16 oseqno = msg_seqno(hdr);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001898 u16 exp_pkts = msg_msgcnt(hdr);
1899 u16 rcv_nxt, syncpt, dlv_nxt, inputq_len;
1900 int state = n->state;
1901 struct tipc_link *l, *tnl, *pl = NULL;
1902 struct tipc_media_addr *maddr;
1903 int pb_id;
1904
David Brazdil0f672f62019-12-10 10:32:29 +00001905 if (trace_tipc_node_check_state_enabled()) {
1906 trace_tipc_skb_dump(skb, false, "skb for node state check");
1907 trace_tipc_node_check_state(n, true, " ");
1908 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001909 l = n->links[bearer_id].link;
1910 if (!l)
1911 return false;
1912 rcv_nxt = tipc_link_rcv_nxt(l);
1913
1914
1915 if (likely((state == SELF_UP_PEER_UP) && (usr != TUNNEL_PROTOCOL)))
1916 return true;
1917
1918 /* Find parallel link, if any */
1919 for (pb_id = 0; pb_id < MAX_BEARERS; pb_id++) {
1920 if ((pb_id != bearer_id) && n->links[pb_id].link) {
1921 pl = n->links[pb_id].link;
1922 break;
1923 }
1924 }
1925
David Brazdil0f672f62019-12-10 10:32:29 +00001926 if (!tipc_link_validate_msg(l, hdr)) {
1927 trace_tipc_skb_dump(skb, false, "PROTO invalid (2)!");
1928 trace_tipc_link_dump(l, TIPC_DUMP_NONE, "PROTO invalid (2)!");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001929 return false;
David Brazdil0f672f62019-12-10 10:32:29 +00001930 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001931
1932 /* Check and update node accesibility if applicable */
1933 if (state == SELF_UP_PEER_COMING) {
1934 if (!tipc_link_is_up(l))
1935 return true;
1936 if (!msg_peer_link_is_up(hdr))
1937 return true;
1938 tipc_node_fsm_evt(n, PEER_ESTABL_CONTACT_EVT);
1939 }
1940
1941 if (state == SELF_DOWN_PEER_LEAVING) {
1942 if (msg_peer_node_is_up(hdr))
1943 return false;
1944 tipc_node_fsm_evt(n, PEER_LOST_CONTACT_EVT);
1945 return true;
1946 }
1947
1948 if (state == SELF_LEAVING_PEER_DOWN)
1949 return false;
1950
1951 /* Ignore duplicate packets */
1952 if ((usr != LINK_PROTOCOL) && less(oseqno, rcv_nxt))
1953 return true;
1954
1955 /* Initiate or update failover mode if applicable */
1956 if ((usr == TUNNEL_PROTOCOL) && (mtyp == FAILOVER_MSG)) {
1957 syncpt = oseqno + exp_pkts - 1;
David Brazdil0f672f62019-12-10 10:32:29 +00001958 if (pl && !tipc_link_is_reset(pl)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001959 __tipc_node_link_down(n, &pb_id, xmitq, &maddr);
David Brazdil0f672f62019-12-10 10:32:29 +00001960 trace_tipc_node_link_down(n, true,
1961 "node link down <- failover!");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001962 tipc_skb_queue_splice_tail_init(tipc_link_inputq(pl),
1963 tipc_link_inputq(l));
1964 }
David Brazdil0f672f62019-12-10 10:32:29 +00001965
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001966 /* If parallel link was already down, and this happened before
David Brazdil0f672f62019-12-10 10:32:29 +00001967 * the tunnel link came up, node failover was never started.
1968 * Ensure that a FAILOVER_MSG is sent to get peer out of
1969 * NODE_FAILINGOVER state, also this node must accept
1970 * TUNNEL_MSGs from peer.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001971 */
David Brazdil0f672f62019-12-10 10:32:29 +00001972 if (n->state != NODE_FAILINGOVER)
1973 tipc_node_link_failover(n, pl, l, xmitq);
1974
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001975 /* If pkts arrive out of order, use lowest calculated syncpt */
1976 if (less(syncpt, n->sync_point))
1977 n->sync_point = syncpt;
1978 }
1979
1980 /* Open parallel link when tunnel link reaches synch point */
1981 if ((n->state == NODE_FAILINGOVER) && tipc_link_is_up(l)) {
1982 if (!more(rcv_nxt, n->sync_point))
1983 return true;
1984 tipc_node_fsm_evt(n, NODE_FAILOVER_END_EVT);
1985 if (pl)
1986 tipc_link_fsm_evt(pl, LINK_FAILOVER_END_EVT);
1987 return true;
1988 }
1989
1990 /* No synching needed if only one link */
1991 if (!pl || !tipc_link_is_up(pl))
1992 return true;
1993
1994 /* Initiate synch mode if applicable */
1995 if ((usr == TUNNEL_PROTOCOL) && (mtyp == SYNCH_MSG) && (oseqno == 1)) {
David Brazdil0f672f62019-12-10 10:32:29 +00001996 if (n->capabilities & TIPC_TUNNEL_ENHANCED)
1997 syncpt = msg_syncpt(hdr);
1998 else
1999 syncpt = msg_seqno(msg_inner_hdr(hdr)) + exp_pkts - 1;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002000 if (!tipc_link_is_up(l))
2001 __tipc_node_link_up(n, bearer_id, xmitq);
2002 if (n->state == SELF_UP_PEER_UP) {
2003 n->sync_point = syncpt;
2004 tipc_link_fsm_evt(l, LINK_SYNCH_BEGIN_EVT);
2005 tipc_node_fsm_evt(n, NODE_SYNCH_BEGIN_EVT);
2006 }
2007 }
2008
2009 /* Open tunnel link when parallel link reaches synch point */
2010 if (n->state == NODE_SYNCHING) {
2011 if (tipc_link_is_synching(l)) {
2012 tnl = l;
2013 } else {
2014 tnl = pl;
2015 pl = l;
2016 }
2017 inputq_len = skb_queue_len(tipc_link_inputq(pl));
2018 dlv_nxt = tipc_link_rcv_nxt(pl) - inputq_len;
2019 if (more(dlv_nxt, n->sync_point)) {
2020 tipc_link_fsm_evt(tnl, LINK_SYNCH_END_EVT);
2021 tipc_node_fsm_evt(n, NODE_SYNCH_END_EVT);
2022 return true;
2023 }
2024 if (l == pl)
2025 return true;
2026 if ((usr == TUNNEL_PROTOCOL) && (mtyp == SYNCH_MSG))
2027 return true;
2028 if (usr == LINK_PROTOCOL)
2029 return true;
2030 return false;
2031 }
2032 return true;
2033}
2034
2035/**
2036 * tipc_rcv - process TIPC packets/messages arriving from off-node
2037 * @net: the applicable net namespace
2038 * @skb: TIPC packet
Olivier Deprez157378f2022-04-04 15:47:50 +02002039 * @b: pointer to bearer message arrived on
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002040 *
2041 * Invoked with no locks held. Bearer pointer must point to a valid bearer
2042 * structure (i.e. cannot be NULL), but bearer can be inactive.
2043 */
2044void tipc_rcv(struct net *net, struct sk_buff *skb, struct tipc_bearer *b)
2045{
2046 struct sk_buff_head xmitq;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002047 struct tipc_link_entry *le;
Olivier Deprez157378f2022-04-04 15:47:50 +02002048 struct tipc_msg *hdr;
2049 struct tipc_node *n;
2050 int bearer_id = b->identity;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002051 u32 self = tipc_own_addr(net);
2052 int usr, rc = 0;
2053 u16 bc_ack;
Olivier Deprez157378f2022-04-04 15:47:50 +02002054#ifdef CONFIG_TIPC_CRYPTO
2055 struct tipc_ehdr *ehdr;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002056
Olivier Deprez157378f2022-04-04 15:47:50 +02002057 /* Check if message must be decrypted first */
2058 if (TIPC_SKB_CB(skb)->decrypted || !tipc_ehdr_validate(skb))
2059 goto rcv;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002060
Olivier Deprez157378f2022-04-04 15:47:50 +02002061 ehdr = (struct tipc_ehdr *)skb->data;
2062 if (likely(ehdr->user != LINK_CONFIG)) {
2063 n = tipc_node_find(net, ntohl(ehdr->addr));
2064 if (unlikely(!n))
2065 goto discard;
2066 } else {
2067 n = tipc_node_find_by_id(net, ehdr->id);
2068 }
2069 tipc_crypto_rcv(net, (n) ? n->crypto_rx : NULL, &skb, b);
2070 if (!skb)
2071 return;
2072
2073rcv:
2074#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002075 /* Ensure message is well-formed before touching the header */
2076 if (unlikely(!tipc_msg_validate(&skb)))
2077 goto discard;
Olivier Deprez157378f2022-04-04 15:47:50 +02002078 __skb_queue_head_init(&xmitq);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002079 hdr = buf_msg(skb);
2080 usr = msg_user(hdr);
2081 bc_ack = msg_bcast_ack(hdr);
2082
2083 /* Handle arrival of discovery or broadcast packet */
2084 if (unlikely(msg_non_seq(hdr))) {
2085 if (unlikely(usr == LINK_CONFIG))
2086 return tipc_disc_rcv(net, skb, b);
2087 else
2088 return tipc_node_bc_rcv(net, skb, bearer_id);
2089 }
2090
2091 /* Discard unicast link messages destined for another node */
2092 if (unlikely(!msg_short(hdr) && (msg_destnode(hdr) != self)))
2093 goto discard;
2094
2095 /* Locate neighboring node that sent packet */
2096 n = tipc_node_find(net, msg_prevnode(hdr));
2097 if (unlikely(!n))
2098 goto discard;
2099 le = &n->links[bearer_id];
2100
2101 /* Ensure broadcast reception is in synch with peer's send state */
Olivier Deprez157378f2022-04-04 15:47:50 +02002102 if (unlikely(usr == LINK_PROTOCOL)) {
2103 if (unlikely(skb_linearize(skb))) {
2104 tipc_node_put(n);
2105 goto discard;
2106 }
2107 hdr = buf_msg(skb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002108 tipc_node_bc_sync_rcv(n, hdr, bearer_id, &xmitq);
Olivier Deprez157378f2022-04-04 15:47:50 +02002109 } else if (unlikely(tipc_link_acked(n->bc_entry.link) != bc_ack)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002110 tipc_bcast_ack_rcv(net, n->bc_entry.link, hdr);
Olivier Deprez157378f2022-04-04 15:47:50 +02002111 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002112
2113 /* Receive packet directly if conditions permit */
2114 tipc_node_read_lock(n);
2115 if (likely((n->state == SELF_UP_PEER_UP) && (usr != TUNNEL_PROTOCOL))) {
2116 spin_lock_bh(&le->lock);
2117 if (le->link) {
2118 rc = tipc_link_rcv(le->link, skb, &xmitq);
2119 skb = NULL;
2120 }
2121 spin_unlock_bh(&le->lock);
2122 }
2123 tipc_node_read_unlock(n);
2124
2125 /* Check/update node state before receiving */
2126 if (unlikely(skb)) {
2127 if (unlikely(skb_linearize(skb)))
Olivier Deprez157378f2022-04-04 15:47:50 +02002128 goto out_node_put;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002129 tipc_node_write_lock(n);
2130 if (tipc_node_check_state(n, skb, bearer_id, &xmitq)) {
2131 if (le->link) {
2132 rc = tipc_link_rcv(le->link, skb, &xmitq);
2133 skb = NULL;
2134 }
2135 }
2136 tipc_node_write_unlock(n);
2137 }
2138
2139 if (unlikely(rc & TIPC_LINK_UP_EVT))
2140 tipc_node_link_up(n, bearer_id, &xmitq);
2141
2142 if (unlikely(rc & TIPC_LINK_DOWN_EVT))
2143 tipc_node_link_down(n, bearer_id, false);
2144
2145 if (unlikely(!skb_queue_empty(&n->bc_entry.namedq)))
Olivier Deprez157378f2022-04-04 15:47:50 +02002146 tipc_named_rcv(net, &n->bc_entry.namedq,
2147 &n->bc_entry.named_rcv_nxt,
2148 &n->bc_entry.named_open);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002149
2150 if (unlikely(!skb_queue_empty(&n->bc_entry.inputq1)))
2151 tipc_node_mcast_rcv(n);
2152
2153 if (!skb_queue_empty(&le->inputq))
2154 tipc_sk_rcv(net, &le->inputq);
2155
2156 if (!skb_queue_empty(&xmitq))
Olivier Deprez157378f2022-04-04 15:47:50 +02002157 tipc_bearer_xmit(net, bearer_id, &xmitq, &le->maddr, n);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002158
Olivier Deprez157378f2022-04-04 15:47:50 +02002159out_node_put:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002160 tipc_node_put(n);
2161discard:
2162 kfree_skb(skb);
2163}
2164
2165void tipc_node_apply_property(struct net *net, struct tipc_bearer *b,
2166 int prop)
2167{
2168 struct tipc_net *tn = tipc_net(net);
2169 int bearer_id = b->identity;
2170 struct sk_buff_head xmitq;
2171 struct tipc_link_entry *e;
2172 struct tipc_node *n;
2173
2174 __skb_queue_head_init(&xmitq);
2175
2176 rcu_read_lock();
2177
2178 list_for_each_entry_rcu(n, &tn->node_list, list) {
2179 tipc_node_write_lock(n);
2180 e = &n->links[bearer_id];
2181 if (e->link) {
2182 if (prop == TIPC_NLA_PROP_TOL)
2183 tipc_link_set_tolerance(e->link, b->tolerance,
2184 &xmitq);
2185 else if (prop == TIPC_NLA_PROP_MTU)
2186 tipc_link_set_mtu(e->link, b->mtu);
Olivier Deprez157378f2022-04-04 15:47:50 +02002187
2188 /* Update MTU for node link entry */
2189 e->mtu = tipc_link_mss(e->link);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002190 }
Olivier Deprez157378f2022-04-04 15:47:50 +02002191
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002192 tipc_node_write_unlock(n);
Olivier Deprez157378f2022-04-04 15:47:50 +02002193 tipc_bearer_xmit(net, bearer_id, &xmitq, &e->maddr, NULL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002194 }
2195
2196 rcu_read_unlock();
2197}
2198
2199int tipc_nl_peer_rm(struct sk_buff *skb, struct genl_info *info)
2200{
2201 struct net *net = sock_net(skb->sk);
2202 struct tipc_net *tn = net_generic(net, tipc_net_id);
2203 struct nlattr *attrs[TIPC_NLA_NET_MAX + 1];
Olivier Deprez157378f2022-04-04 15:47:50 +02002204 struct tipc_node *peer, *temp_node;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002205 u32 addr;
2206 int err;
2207
2208 /* We identify the peer by its net */
2209 if (!info->attrs[TIPC_NLA_NET])
2210 return -EINVAL;
2211
David Brazdil0f672f62019-12-10 10:32:29 +00002212 err = nla_parse_nested_deprecated(attrs, TIPC_NLA_NET_MAX,
2213 info->attrs[TIPC_NLA_NET],
2214 tipc_nl_net_policy, info->extack);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002215 if (err)
2216 return err;
2217
2218 if (!attrs[TIPC_NLA_NET_ADDR])
2219 return -EINVAL;
2220
2221 addr = nla_get_u32(attrs[TIPC_NLA_NET_ADDR]);
2222
2223 if (in_own_node(net, addr))
2224 return -ENOTSUPP;
2225
2226 spin_lock_bh(&tn->node_list_lock);
2227 peer = tipc_node_find(net, addr);
2228 if (!peer) {
2229 spin_unlock_bh(&tn->node_list_lock);
2230 return -ENXIO;
2231 }
2232
2233 tipc_node_write_lock(peer);
2234 if (peer->state != SELF_DOWN_PEER_DOWN &&
2235 peer->state != SELF_DOWN_PEER_LEAVING) {
2236 tipc_node_write_unlock(peer);
2237 err = -EBUSY;
2238 goto err_out;
2239 }
2240
2241 tipc_node_clear_links(peer);
2242 tipc_node_write_unlock(peer);
2243 tipc_node_delete(peer);
2244
Olivier Deprez157378f2022-04-04 15:47:50 +02002245 /* Calculate cluster capabilities */
2246 tn->capabilities = TIPC_NODE_CAPABILITIES;
2247 list_for_each_entry_rcu(temp_node, &tn->node_list, list) {
2248 tn->capabilities &= temp_node->capabilities;
2249 }
2250 tipc_bcast_toggle_rcast(net, (tn->capabilities & TIPC_BCAST_RCAST));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002251 err = 0;
2252err_out:
2253 tipc_node_put(peer);
2254 spin_unlock_bh(&tn->node_list_lock);
2255
2256 return err;
2257}
2258
2259int tipc_nl_node_dump(struct sk_buff *skb, struct netlink_callback *cb)
2260{
2261 int err;
2262 struct net *net = sock_net(skb->sk);
2263 struct tipc_net *tn = net_generic(net, tipc_net_id);
2264 int done = cb->args[0];
2265 int last_addr = cb->args[1];
2266 struct tipc_node *node;
2267 struct tipc_nl_msg msg;
2268
2269 if (done)
2270 return 0;
2271
2272 msg.skb = skb;
2273 msg.portid = NETLINK_CB(cb->skb).portid;
2274 msg.seq = cb->nlh->nlmsg_seq;
2275
2276 rcu_read_lock();
2277 if (last_addr) {
2278 node = tipc_node_find(net, last_addr);
2279 if (!node) {
2280 rcu_read_unlock();
2281 /* We never set seq or call nl_dump_check_consistent()
2282 * this means that setting prev_seq here will cause the
2283 * consistence check to fail in the netlink callback
2284 * handler. Resulting in the NLMSG_DONE message having
2285 * the NLM_F_DUMP_INTR flag set if the node state
2286 * changed while we released the lock.
2287 */
2288 cb->prev_seq = 1;
2289 return -EPIPE;
2290 }
2291 tipc_node_put(node);
2292 }
2293
2294 list_for_each_entry_rcu(node, &tn->node_list, list) {
Olivier Deprez157378f2022-04-04 15:47:50 +02002295 if (node->preliminary)
2296 continue;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002297 if (last_addr) {
2298 if (node->addr == last_addr)
2299 last_addr = 0;
2300 else
2301 continue;
2302 }
2303
2304 tipc_node_read_lock(node);
2305 err = __tipc_nl_add_node(&msg, node);
2306 if (err) {
2307 last_addr = node->addr;
2308 tipc_node_read_unlock(node);
2309 goto out;
2310 }
2311
2312 tipc_node_read_unlock(node);
2313 }
2314 done = 1;
2315out:
2316 cb->args[0] = done;
2317 cb->args[1] = last_addr;
2318 rcu_read_unlock();
2319
2320 return skb->len;
2321}
2322
2323/* tipc_node_find_by_name - locate owner node of link by link's name
2324 * @net: the applicable net namespace
2325 * @name: pointer to link name string
2326 * @bearer_id: pointer to index in 'node->links' array where the link was found.
2327 *
2328 * Returns pointer to node owning the link, or 0 if no matching link is found.
2329 */
2330static struct tipc_node *tipc_node_find_by_name(struct net *net,
2331 const char *link_name,
2332 unsigned int *bearer_id)
2333{
2334 struct tipc_net *tn = net_generic(net, tipc_net_id);
2335 struct tipc_link *l;
2336 struct tipc_node *n;
2337 struct tipc_node *found_node = NULL;
2338 int i;
2339
2340 *bearer_id = 0;
2341 rcu_read_lock();
2342 list_for_each_entry_rcu(n, &tn->node_list, list) {
2343 tipc_node_read_lock(n);
2344 for (i = 0; i < MAX_BEARERS; i++) {
2345 l = n->links[i].link;
2346 if (l && !strcmp(tipc_link_name(l), link_name)) {
2347 *bearer_id = i;
2348 found_node = n;
2349 break;
2350 }
2351 }
2352 tipc_node_read_unlock(n);
2353 if (found_node)
2354 break;
2355 }
2356 rcu_read_unlock();
2357
2358 return found_node;
2359}
2360
2361int tipc_nl_node_set_link(struct sk_buff *skb, struct genl_info *info)
2362{
2363 int err;
2364 int res = 0;
2365 int bearer_id;
2366 char *name;
2367 struct tipc_link *link;
2368 struct tipc_node *node;
2369 struct sk_buff_head xmitq;
2370 struct nlattr *attrs[TIPC_NLA_LINK_MAX + 1];
2371 struct net *net = sock_net(skb->sk);
2372
2373 __skb_queue_head_init(&xmitq);
2374
2375 if (!info->attrs[TIPC_NLA_LINK])
2376 return -EINVAL;
2377
David Brazdil0f672f62019-12-10 10:32:29 +00002378 err = nla_parse_nested_deprecated(attrs, TIPC_NLA_LINK_MAX,
2379 info->attrs[TIPC_NLA_LINK],
2380 tipc_nl_link_policy, info->extack);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002381 if (err)
2382 return err;
2383
2384 if (!attrs[TIPC_NLA_LINK_NAME])
2385 return -EINVAL;
2386
2387 name = nla_data(attrs[TIPC_NLA_LINK_NAME]);
2388
2389 if (strcmp(name, tipc_bclink_name) == 0)
2390 return tipc_nl_bc_link_set(net, attrs);
2391
2392 node = tipc_node_find_by_name(net, name, &bearer_id);
2393 if (!node)
2394 return -EINVAL;
2395
2396 tipc_node_read_lock(node);
2397
2398 link = node->links[bearer_id].link;
2399 if (!link) {
2400 res = -EINVAL;
2401 goto out;
2402 }
2403
2404 if (attrs[TIPC_NLA_LINK_PROP]) {
2405 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
2406
Olivier Deprez157378f2022-04-04 15:47:50 +02002407 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_LINK_PROP], props);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002408 if (err) {
2409 res = err;
2410 goto out;
2411 }
2412
2413 if (props[TIPC_NLA_PROP_TOL]) {
2414 u32 tol;
2415
2416 tol = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
2417 tipc_link_set_tolerance(link, tol, &xmitq);
2418 }
2419 if (props[TIPC_NLA_PROP_PRIO]) {
2420 u32 prio;
2421
2422 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
2423 tipc_link_set_prio(link, prio, &xmitq);
2424 }
2425 if (props[TIPC_NLA_PROP_WIN]) {
Olivier Deprez157378f2022-04-04 15:47:50 +02002426 u32 max_win;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002427
Olivier Deprez157378f2022-04-04 15:47:50 +02002428 max_win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
2429 tipc_link_set_queue_limits(link,
2430 tipc_link_min_win(link),
2431 max_win);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002432 }
2433 }
2434
2435out:
2436 tipc_node_read_unlock(node);
Olivier Deprez157378f2022-04-04 15:47:50 +02002437 tipc_bearer_xmit(net, bearer_id, &xmitq, &node->links[bearer_id].maddr,
2438 NULL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002439 return res;
2440}
2441
2442int tipc_nl_node_get_link(struct sk_buff *skb, struct genl_info *info)
2443{
2444 struct net *net = genl_info_net(info);
2445 struct nlattr *attrs[TIPC_NLA_LINK_MAX + 1];
2446 struct tipc_nl_msg msg;
2447 char *name;
2448 int err;
2449
2450 msg.portid = info->snd_portid;
2451 msg.seq = info->snd_seq;
2452
2453 if (!info->attrs[TIPC_NLA_LINK])
2454 return -EINVAL;
2455
David Brazdil0f672f62019-12-10 10:32:29 +00002456 err = nla_parse_nested_deprecated(attrs, TIPC_NLA_LINK_MAX,
2457 info->attrs[TIPC_NLA_LINK],
2458 tipc_nl_link_policy, info->extack);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002459 if (err)
2460 return err;
2461
2462 if (!attrs[TIPC_NLA_LINK_NAME])
2463 return -EINVAL;
2464
2465 name = nla_data(attrs[TIPC_NLA_LINK_NAME]);
2466
2467 msg.skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
2468 if (!msg.skb)
2469 return -ENOMEM;
2470
2471 if (strcmp(name, tipc_bclink_name) == 0) {
Olivier Deprez157378f2022-04-04 15:47:50 +02002472 err = tipc_nl_add_bc_link(net, &msg, tipc_net(net)->bcl);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002473 if (err)
2474 goto err_free;
2475 } else {
2476 int bearer_id;
2477 struct tipc_node *node;
2478 struct tipc_link *link;
2479
2480 node = tipc_node_find_by_name(net, name, &bearer_id);
2481 if (!node) {
2482 err = -EINVAL;
2483 goto err_free;
2484 }
2485
2486 tipc_node_read_lock(node);
2487 link = node->links[bearer_id].link;
2488 if (!link) {
2489 tipc_node_read_unlock(node);
2490 err = -EINVAL;
2491 goto err_free;
2492 }
2493
2494 err = __tipc_nl_add_link(net, &msg, link, 0);
2495 tipc_node_read_unlock(node);
2496 if (err)
2497 goto err_free;
2498 }
2499
2500 return genlmsg_reply(msg.skb, info);
2501
2502err_free:
2503 nlmsg_free(msg.skb);
2504 return err;
2505}
2506
2507int tipc_nl_node_reset_link_stats(struct sk_buff *skb, struct genl_info *info)
2508{
2509 int err;
2510 char *link_name;
2511 unsigned int bearer_id;
2512 struct tipc_link *link;
2513 struct tipc_node *node;
2514 struct nlattr *attrs[TIPC_NLA_LINK_MAX + 1];
2515 struct net *net = sock_net(skb->sk);
Olivier Deprez157378f2022-04-04 15:47:50 +02002516 struct tipc_net *tn = tipc_net(net);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002517 struct tipc_link_entry *le;
2518
2519 if (!info->attrs[TIPC_NLA_LINK])
2520 return -EINVAL;
2521
David Brazdil0f672f62019-12-10 10:32:29 +00002522 err = nla_parse_nested_deprecated(attrs, TIPC_NLA_LINK_MAX,
2523 info->attrs[TIPC_NLA_LINK],
2524 tipc_nl_link_policy, info->extack);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002525 if (err)
2526 return err;
2527
2528 if (!attrs[TIPC_NLA_LINK_NAME])
2529 return -EINVAL;
2530
2531 link_name = nla_data(attrs[TIPC_NLA_LINK_NAME]);
2532
Olivier Deprez157378f2022-04-04 15:47:50 +02002533 err = -EINVAL;
2534 if (!strcmp(link_name, tipc_bclink_name)) {
2535 err = tipc_bclink_reset_stats(net, tipc_bc_sndlink(net));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002536 if (err)
2537 return err;
2538 return 0;
Olivier Deprez157378f2022-04-04 15:47:50 +02002539 } else if (strstr(link_name, tipc_bclink_name)) {
2540 rcu_read_lock();
2541 list_for_each_entry_rcu(node, &tn->node_list, list) {
2542 tipc_node_read_lock(node);
2543 link = node->bc_entry.link;
2544 if (link && !strcmp(link_name, tipc_link_name(link))) {
2545 err = tipc_bclink_reset_stats(net, link);
2546 tipc_node_read_unlock(node);
2547 break;
2548 }
2549 tipc_node_read_unlock(node);
2550 }
2551 rcu_read_unlock();
2552 return err;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002553 }
2554
2555 node = tipc_node_find_by_name(net, link_name, &bearer_id);
2556 if (!node)
2557 return -EINVAL;
2558
2559 le = &node->links[bearer_id];
2560 tipc_node_read_lock(node);
2561 spin_lock_bh(&le->lock);
2562 link = node->links[bearer_id].link;
2563 if (!link) {
2564 spin_unlock_bh(&le->lock);
2565 tipc_node_read_unlock(node);
2566 return -EINVAL;
2567 }
2568 tipc_link_reset_stats(link);
2569 spin_unlock_bh(&le->lock);
2570 tipc_node_read_unlock(node);
2571 return 0;
2572}
2573
2574/* Caller should hold node lock */
2575static int __tipc_nl_add_node_links(struct net *net, struct tipc_nl_msg *msg,
Olivier Deprez157378f2022-04-04 15:47:50 +02002576 struct tipc_node *node, u32 *prev_link,
2577 bool bc_link)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002578{
2579 u32 i;
2580 int err;
2581
2582 for (i = *prev_link; i < MAX_BEARERS; i++) {
2583 *prev_link = i;
2584
2585 if (!node->links[i].link)
2586 continue;
2587
2588 err = __tipc_nl_add_link(net, msg,
2589 node->links[i].link, NLM_F_MULTI);
2590 if (err)
2591 return err;
2592 }
Olivier Deprez157378f2022-04-04 15:47:50 +02002593
2594 if (bc_link) {
2595 *prev_link = i;
2596 err = tipc_nl_add_bc_link(net, msg, node->bc_entry.link);
2597 if (err)
2598 return err;
2599 }
2600
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002601 *prev_link = 0;
2602
2603 return 0;
2604}
2605
2606int tipc_nl_node_dump_link(struct sk_buff *skb, struct netlink_callback *cb)
2607{
2608 struct net *net = sock_net(skb->sk);
Olivier Deprez157378f2022-04-04 15:47:50 +02002609 struct nlattr **attrs = genl_dumpit_info(cb)->attrs;
2610 struct nlattr *link[TIPC_NLA_LINK_MAX + 1];
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002611 struct tipc_net *tn = net_generic(net, tipc_net_id);
2612 struct tipc_node *node;
2613 struct tipc_nl_msg msg;
2614 u32 prev_node = cb->args[0];
2615 u32 prev_link = cb->args[1];
2616 int done = cb->args[2];
Olivier Deprez157378f2022-04-04 15:47:50 +02002617 bool bc_link = cb->args[3];
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002618 int err;
2619
2620 if (done)
2621 return 0;
2622
Olivier Deprez157378f2022-04-04 15:47:50 +02002623 if (!prev_node) {
2624 /* Check if broadcast-receiver links dumping is needed */
2625 if (attrs && attrs[TIPC_NLA_LINK]) {
2626 err = nla_parse_nested_deprecated(link,
2627 TIPC_NLA_LINK_MAX,
2628 attrs[TIPC_NLA_LINK],
2629 tipc_nl_link_policy,
2630 NULL);
2631 if (unlikely(err))
2632 return err;
2633 if (unlikely(!link[TIPC_NLA_LINK_BROADCAST]))
2634 return -EINVAL;
2635 bc_link = true;
2636 }
2637 }
2638
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002639 msg.skb = skb;
2640 msg.portid = NETLINK_CB(cb->skb).portid;
2641 msg.seq = cb->nlh->nlmsg_seq;
2642
2643 rcu_read_lock();
2644 if (prev_node) {
2645 node = tipc_node_find(net, prev_node);
2646 if (!node) {
2647 /* We never set seq or call nl_dump_check_consistent()
2648 * this means that setting prev_seq here will cause the
2649 * consistence check to fail in the netlink callback
2650 * handler. Resulting in the last NLMSG_DONE message
2651 * having the NLM_F_DUMP_INTR flag set.
2652 */
2653 cb->prev_seq = 1;
2654 goto out;
2655 }
2656 tipc_node_put(node);
2657
2658 list_for_each_entry_continue_rcu(node, &tn->node_list,
2659 list) {
2660 tipc_node_read_lock(node);
2661 err = __tipc_nl_add_node_links(net, &msg, node,
Olivier Deprez157378f2022-04-04 15:47:50 +02002662 &prev_link, bc_link);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002663 tipc_node_read_unlock(node);
2664 if (err)
2665 goto out;
2666
2667 prev_node = node->addr;
2668 }
2669 } else {
Olivier Deprez157378f2022-04-04 15:47:50 +02002670 err = tipc_nl_add_bc_link(net, &msg, tn->bcl);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002671 if (err)
2672 goto out;
2673
2674 list_for_each_entry_rcu(node, &tn->node_list, list) {
2675 tipc_node_read_lock(node);
2676 err = __tipc_nl_add_node_links(net, &msg, node,
Olivier Deprez157378f2022-04-04 15:47:50 +02002677 &prev_link, bc_link);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002678 tipc_node_read_unlock(node);
2679 if (err)
2680 goto out;
2681
2682 prev_node = node->addr;
2683 }
2684 }
2685 done = 1;
2686out:
2687 rcu_read_unlock();
2688
2689 cb->args[0] = prev_node;
2690 cb->args[1] = prev_link;
2691 cb->args[2] = done;
Olivier Deprez157378f2022-04-04 15:47:50 +02002692 cb->args[3] = bc_link;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002693
2694 return skb->len;
2695}
2696
2697int tipc_nl_node_set_monitor(struct sk_buff *skb, struct genl_info *info)
2698{
2699 struct nlattr *attrs[TIPC_NLA_MON_MAX + 1];
2700 struct net *net = sock_net(skb->sk);
2701 int err;
2702
2703 if (!info->attrs[TIPC_NLA_MON])
2704 return -EINVAL;
2705
David Brazdil0f672f62019-12-10 10:32:29 +00002706 err = nla_parse_nested_deprecated(attrs, TIPC_NLA_MON_MAX,
2707 info->attrs[TIPC_NLA_MON],
2708 tipc_nl_monitor_policy,
2709 info->extack);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002710 if (err)
2711 return err;
2712
2713 if (attrs[TIPC_NLA_MON_ACTIVATION_THRESHOLD]) {
2714 u32 val;
2715
2716 val = nla_get_u32(attrs[TIPC_NLA_MON_ACTIVATION_THRESHOLD]);
2717 err = tipc_nl_monitor_set_threshold(net, val);
2718 if (err)
2719 return err;
2720 }
2721
2722 return 0;
2723}
2724
2725static int __tipc_nl_add_monitor_prop(struct net *net, struct tipc_nl_msg *msg)
2726{
2727 struct nlattr *attrs;
2728 void *hdr;
2729 u32 val;
2730
2731 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
2732 0, TIPC_NL_MON_GET);
2733 if (!hdr)
2734 return -EMSGSIZE;
2735
David Brazdil0f672f62019-12-10 10:32:29 +00002736 attrs = nla_nest_start_noflag(msg->skb, TIPC_NLA_MON);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002737 if (!attrs)
2738 goto msg_full;
2739
2740 val = tipc_nl_monitor_get_threshold(net);
2741
2742 if (nla_put_u32(msg->skb, TIPC_NLA_MON_ACTIVATION_THRESHOLD, val))
2743 goto attr_msg_full;
2744
2745 nla_nest_end(msg->skb, attrs);
2746 genlmsg_end(msg->skb, hdr);
2747
2748 return 0;
2749
2750attr_msg_full:
2751 nla_nest_cancel(msg->skb, attrs);
2752msg_full:
2753 genlmsg_cancel(msg->skb, hdr);
2754
2755 return -EMSGSIZE;
2756}
2757
2758int tipc_nl_node_get_monitor(struct sk_buff *skb, struct genl_info *info)
2759{
2760 struct net *net = sock_net(skb->sk);
2761 struct tipc_nl_msg msg;
2762 int err;
2763
2764 msg.skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
2765 if (!msg.skb)
2766 return -ENOMEM;
2767 msg.portid = info->snd_portid;
2768 msg.seq = info->snd_seq;
2769
2770 err = __tipc_nl_add_monitor_prop(net, &msg);
2771 if (err) {
2772 nlmsg_free(msg.skb);
2773 return err;
2774 }
2775
2776 return genlmsg_reply(msg.skb, info);
2777}
2778
2779int tipc_nl_node_dump_monitor(struct sk_buff *skb, struct netlink_callback *cb)
2780{
2781 struct net *net = sock_net(skb->sk);
2782 u32 prev_bearer = cb->args[0];
2783 struct tipc_nl_msg msg;
2784 int bearer_id;
2785 int err;
2786
2787 if (prev_bearer == MAX_BEARERS)
2788 return 0;
2789
2790 msg.skb = skb;
2791 msg.portid = NETLINK_CB(cb->skb).portid;
2792 msg.seq = cb->nlh->nlmsg_seq;
2793
2794 rtnl_lock();
2795 for (bearer_id = prev_bearer; bearer_id < MAX_BEARERS; bearer_id++) {
2796 err = __tipc_nl_add_monitor(net, &msg, bearer_id);
2797 if (err)
2798 break;
2799 }
2800 rtnl_unlock();
2801 cb->args[0] = bearer_id;
2802
2803 return skb->len;
2804}
2805
2806int tipc_nl_node_dump_monitor_peer(struct sk_buff *skb,
2807 struct netlink_callback *cb)
2808{
2809 struct net *net = sock_net(skb->sk);
2810 u32 prev_node = cb->args[1];
2811 u32 bearer_id = cb->args[2];
2812 int done = cb->args[0];
2813 struct tipc_nl_msg msg;
2814 int err;
2815
2816 if (!prev_node) {
Olivier Deprez157378f2022-04-04 15:47:50 +02002817 struct nlattr **attrs = genl_dumpit_info(cb)->attrs;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002818 struct nlattr *mon[TIPC_NLA_MON_MAX + 1];
2819
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002820 if (!attrs[TIPC_NLA_MON])
2821 return -EINVAL;
2822
David Brazdil0f672f62019-12-10 10:32:29 +00002823 err = nla_parse_nested_deprecated(mon, TIPC_NLA_MON_MAX,
2824 attrs[TIPC_NLA_MON],
2825 tipc_nl_monitor_policy,
2826 NULL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002827 if (err)
2828 return err;
2829
2830 if (!mon[TIPC_NLA_MON_REF])
2831 return -EINVAL;
2832
2833 bearer_id = nla_get_u32(mon[TIPC_NLA_MON_REF]);
2834
2835 if (bearer_id >= MAX_BEARERS)
2836 return -EINVAL;
2837 }
2838
2839 if (done)
2840 return 0;
2841
2842 msg.skb = skb;
2843 msg.portid = NETLINK_CB(cb->skb).portid;
2844 msg.seq = cb->nlh->nlmsg_seq;
2845
2846 rtnl_lock();
2847 err = tipc_nl_add_monitor_peer(net, &msg, bearer_id, &prev_node);
2848 if (!err)
2849 done = 1;
2850
2851 rtnl_unlock();
2852 cb->args[0] = done;
2853 cb->args[1] = prev_node;
2854 cb->args[2] = bearer_id;
2855
2856 return skb->len;
2857}
David Brazdil0f672f62019-12-10 10:32:29 +00002858
Olivier Deprez157378f2022-04-04 15:47:50 +02002859#ifdef CONFIG_TIPC_CRYPTO
2860static int tipc_nl_retrieve_key(struct nlattr **attrs,
2861 struct tipc_aead_key **pkey)
David Brazdil0f672f62019-12-10 10:32:29 +00002862{
Olivier Deprez157378f2022-04-04 15:47:50 +02002863 struct nlattr *attr = attrs[TIPC_NLA_NODE_KEY];
2864 struct tipc_aead_key *key;
2865
2866 if (!attr)
2867 return -ENODATA;
2868
2869 if (nla_len(attr) < sizeof(*key))
2870 return -EINVAL;
2871 key = (struct tipc_aead_key *)nla_data(attr);
2872 if (key->keylen > TIPC_AEAD_KEYLEN_MAX ||
2873 nla_len(attr) < tipc_aead_key_size(key))
2874 return -EINVAL;
2875
2876 *pkey = key;
2877 return 0;
David Brazdil0f672f62019-12-10 10:32:29 +00002878}
2879
Olivier Deprez157378f2022-04-04 15:47:50 +02002880static int tipc_nl_retrieve_nodeid(struct nlattr **attrs, u8 **node_id)
2881{
2882 struct nlattr *attr = attrs[TIPC_NLA_NODE_ID];
2883
2884 if (!attr)
2885 return -ENODATA;
2886
2887 if (nla_len(attr) < TIPC_NODEID_LEN)
2888 return -EINVAL;
2889
2890 *node_id = (u8 *)nla_data(attr);
2891 return 0;
2892}
2893
2894static int tipc_nl_retrieve_rekeying(struct nlattr **attrs, u32 *intv)
2895{
2896 struct nlattr *attr = attrs[TIPC_NLA_NODE_REKEYING];
2897
2898 if (!attr)
2899 return -ENODATA;
2900
2901 *intv = nla_get_u32(attr);
2902 return 0;
2903}
2904
2905static int __tipc_nl_node_set_key(struct sk_buff *skb, struct genl_info *info)
2906{
2907 struct nlattr *attrs[TIPC_NLA_NODE_MAX + 1];
2908 struct net *net = sock_net(skb->sk);
2909 struct tipc_crypto *tx = tipc_net(net)->crypto_tx, *c = tx;
2910 struct tipc_node *n = NULL;
2911 struct tipc_aead_key *ukey;
2912 bool rekeying = true, master_key = false;
2913 u8 *id, *own_id, mode;
2914 u32 intv = 0;
2915 int rc = 0;
2916
2917 if (!info->attrs[TIPC_NLA_NODE])
2918 return -EINVAL;
2919
2920 rc = nla_parse_nested(attrs, TIPC_NLA_NODE_MAX,
2921 info->attrs[TIPC_NLA_NODE],
2922 tipc_nl_node_policy, info->extack);
2923 if (rc)
2924 return rc;
2925
2926 own_id = tipc_own_id(net);
2927 if (!own_id) {
2928 GENL_SET_ERR_MSG(info, "not found own node identity (set id?)");
2929 return -EPERM;
2930 }
2931
2932 rc = tipc_nl_retrieve_rekeying(attrs, &intv);
2933 if (rc == -ENODATA)
2934 rekeying = false;
2935
2936 rc = tipc_nl_retrieve_key(attrs, &ukey);
2937 if (rc == -ENODATA && rekeying)
2938 goto rekeying;
2939 else if (rc)
2940 return rc;
2941
2942 rc = tipc_aead_key_validate(ukey, info);
2943 if (rc)
2944 return rc;
2945
2946 rc = tipc_nl_retrieve_nodeid(attrs, &id);
2947 switch (rc) {
2948 case -ENODATA:
2949 mode = CLUSTER_KEY;
2950 master_key = !!(attrs[TIPC_NLA_NODE_KEY_MASTER]);
2951 break;
2952 case 0:
2953 mode = PER_NODE_KEY;
2954 if (memcmp(id, own_id, NODE_ID_LEN)) {
2955 n = tipc_node_find_by_id(net, id) ?:
2956 tipc_node_create(net, 0, id, 0xffffu, 0, true);
2957 if (unlikely(!n))
2958 return -ENOMEM;
2959 c = n->crypto_rx;
2960 }
2961 break;
2962 default:
2963 return rc;
2964 }
2965
2966 /* Initiate the TX/RX key */
2967 rc = tipc_crypto_key_init(c, ukey, mode, master_key);
2968 if (n)
2969 tipc_node_put(n);
2970
2971 if (unlikely(rc < 0)) {
2972 GENL_SET_ERR_MSG(info, "unable to initiate or attach new key");
2973 return rc;
2974 } else if (c == tx) {
2975 /* Distribute TX key but not master one */
2976 if (!master_key && tipc_crypto_key_distr(tx, rc, NULL))
2977 GENL_SET_ERR_MSG(info, "failed to replicate new key");
2978rekeying:
2979 /* Schedule TX rekeying if needed */
2980 tipc_crypto_rekeying_sched(tx, rekeying, intv);
2981 }
2982
2983 return 0;
2984}
2985
2986int tipc_nl_node_set_key(struct sk_buff *skb, struct genl_info *info)
2987{
2988 int err;
2989
2990 rtnl_lock();
2991 err = __tipc_nl_node_set_key(skb, info);
2992 rtnl_unlock();
2993
2994 return err;
2995}
2996
2997static int __tipc_nl_node_flush_key(struct sk_buff *skb,
2998 struct genl_info *info)
2999{
3000 struct net *net = sock_net(skb->sk);
3001 struct tipc_net *tn = tipc_net(net);
3002 struct tipc_node *n;
3003
3004 tipc_crypto_key_flush(tn->crypto_tx);
3005 rcu_read_lock();
3006 list_for_each_entry_rcu(n, &tn->node_list, list)
3007 tipc_crypto_key_flush(n->crypto_rx);
3008 rcu_read_unlock();
3009
3010 return 0;
3011}
3012
3013int tipc_nl_node_flush_key(struct sk_buff *skb, struct genl_info *info)
3014{
3015 int err;
3016
3017 rtnl_lock();
3018 err = __tipc_nl_node_flush_key(skb, info);
3019 rtnl_unlock();
3020
3021 return err;
3022}
3023#endif
3024
David Brazdil0f672f62019-12-10 10:32:29 +00003025/**
3026 * tipc_node_dump - dump TIPC node data
3027 * @n: tipc node to be dumped
3028 * @more: dump more?
3029 * - false: dump only tipc node data
3030 * - true: dump node link data as well
3031 * @buf: returned buffer of dump data in format
3032 */
3033int tipc_node_dump(struct tipc_node *n, bool more, char *buf)
3034{
3035 int i = 0;
3036 size_t sz = (more) ? NODE_LMAX : NODE_LMIN;
3037
3038 if (!n) {
3039 i += scnprintf(buf, sz, "node data: (null)\n");
3040 return i;
3041 }
3042
3043 i += scnprintf(buf, sz, "node data: %x", n->addr);
3044 i += scnprintf(buf + i, sz - i, " %x", n->state);
3045 i += scnprintf(buf + i, sz - i, " %d", n->active_links[0]);
3046 i += scnprintf(buf + i, sz - i, " %d", n->active_links[1]);
3047 i += scnprintf(buf + i, sz - i, " %x", n->action_flags);
3048 i += scnprintf(buf + i, sz - i, " %u", n->failover_sent);
3049 i += scnprintf(buf + i, sz - i, " %u", n->sync_point);
3050 i += scnprintf(buf + i, sz - i, " %d", n->link_cnt);
3051 i += scnprintf(buf + i, sz - i, " %u", n->working_links);
3052 i += scnprintf(buf + i, sz - i, " %x", n->capabilities);
3053 i += scnprintf(buf + i, sz - i, " %lu\n", n->keepalive_intv);
3054
3055 if (!more)
3056 return i;
3057
3058 i += scnprintf(buf + i, sz - i, "link_entry[0]:\n");
3059 i += scnprintf(buf + i, sz - i, " mtu: %u\n", n->links[0].mtu);
3060 i += scnprintf(buf + i, sz - i, " media: ");
3061 i += tipc_media_addr_printf(buf + i, sz - i, &n->links[0].maddr);
3062 i += scnprintf(buf + i, sz - i, "\n");
3063 i += tipc_link_dump(n->links[0].link, TIPC_DUMP_NONE, buf + i);
3064 i += scnprintf(buf + i, sz - i, " inputq: ");
3065 i += tipc_list_dump(&n->links[0].inputq, false, buf + i);
3066
3067 i += scnprintf(buf + i, sz - i, "link_entry[1]:\n");
3068 i += scnprintf(buf + i, sz - i, " mtu: %u\n", n->links[1].mtu);
3069 i += scnprintf(buf + i, sz - i, " media: ");
3070 i += tipc_media_addr_printf(buf + i, sz - i, &n->links[1].maddr);
3071 i += scnprintf(buf + i, sz - i, "\n");
3072 i += tipc_link_dump(n->links[1].link, TIPC_DUMP_NONE, buf + i);
3073 i += scnprintf(buf + i, sz - i, " inputq: ");
3074 i += tipc_list_dump(&n->links[1].inputq, false, buf + i);
3075
3076 i += scnprintf(buf + i, sz - i, "bclink:\n ");
3077 i += tipc_link_dump(n->bc_entry.link, TIPC_DUMP_NONE, buf + i);
3078
3079 return i;
3080}
Olivier Deprez157378f2022-04-04 15:47:50 +02003081
3082void tipc_node_pre_cleanup_net(struct net *exit_net)
3083{
3084 struct tipc_node *n;
3085 struct tipc_net *tn;
3086 struct net *tmp;
3087
3088 rcu_read_lock();
3089 for_each_net_rcu(tmp) {
3090 if (tmp == exit_net)
3091 continue;
3092 tn = tipc_net(tmp);
3093 if (!tn)
3094 continue;
3095 spin_lock_bh(&tn->node_list_lock);
3096 list_for_each_entry_rcu(n, &tn->node_list, list) {
3097 if (!n->peer_net)
3098 continue;
3099 if (n->peer_net != exit_net)
3100 continue;
3101 tipc_node_write_lock(n);
3102 n->peer_net = NULL;
3103 n->peer_hash_mix = 0;
3104 tipc_node_write_unlock_fast(n);
3105 break;
3106 }
3107 spin_unlock_bh(&tn->node_list_lock);
3108 }
3109 rcu_read_unlock();
3110}