1 /* 2 * net/tipc/node.c: TIPC node management routines 3 * 4 * Copyright (c) 2000-2006, 2012-2016, Ericsson AB 5 * Copyright (c) 2005-2006, 2010-2014, Wind River Systems 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions are met: 10 * 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 3. Neither the names of the copyright holders nor the names of its 17 * contributors may be used to endorse or promote products derived from 18 * this software without specific prior written permission. 19 * 20 * Alternatively, this software may be distributed under the terms of the 21 * GNU General Public License ("GPL") version 2 as published by the Free 22 * Software Foundation. 23 * 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 34 * POSSIBILITY OF SUCH DAMAGE. 35 */ 36 37 #include "core.h" 38 #include "link.h" 39 #include "node.h" 40 #include "name_distr.h" 41 #include "socket.h" 42 #include "bcast.h" 43 #include "monitor.h" 44 #include "discover.h" 45 #include "netlink.h" 46 #include "trace.h" 47 #include "crypto.h" 48 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 */ 57 enum { 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 64 struct 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 72 struct tipc_bclink_entry { 73 struct tipc_link *link; 74 struct sk_buff_head inputq1; 75 struct sk_buff_head arrvq; 76 struct sk_buff_head inputq2; 77 struct sk_buff_head namedq; 78 u16 named_rcv_nxt; 79 bool named_open; 80 }; 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 95 * @preliminary: a preliminary node or not 96 * @sync_point: sequence number where synch/failover is finished 97 * @list: links to adjacent nodes in sorted list of cluster's nodes 98 * @working_links: number of working links to node (both active and standby) 99 * @link_cnt: number of links to node 100 * @capabilities: bitmap, indicating peer node's functional capabilities 101 * @signature: node instance identifier 102 * @link_id: local and remote bearer ids of changing link, if any 103 * @publ_list: list of publications 104 * @rcu: rcu struct for tipc_node 105 * @delete_at: indicates the time for deleting a down node 106 * @crypto_rx: RX crypto handler 107 */ 108 struct 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; 120 bool preliminary; 121 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]; 129 char peer_id_string[NODE_ID_STR_LEN]; 130 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; 136 struct net *peer_net; 137 u32 peer_hash_mix; 138 #ifdef CONFIG_TIPC_CRYPTO 139 struct tipc_crypto *crypto_rx; 140 #endif 141 }; 142 143 /* Node FSM states and events: 144 */ 145 enum { 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 156 enum { 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 167 static void __tipc_node_link_down(struct tipc_node *n, int *bearer_id, 168 struct sk_buff_head *xmitq, 169 struct tipc_media_addr **maddr); 170 static void tipc_node_link_down(struct tipc_node *n, int bearer_id, 171 bool delete); 172 static void node_lost_contact(struct tipc_node *n, struct sk_buff_head *inputq); 173 static void tipc_node_delete(struct tipc_node *node); 174 static void tipc_node_timeout(struct timer_list *t); 175 static void tipc_node_fsm_evt(struct tipc_node *n, int evt); 176 static struct tipc_node *tipc_node_find(struct net *net, u32 addr); 177 static struct tipc_node *tipc_node_find_by_id(struct net *net, u8 *id); 178 static bool node_is_up(struct tipc_node *n); 179 static void tipc_node_delete_from_list(struct tipc_node *node); 180 181 struct tipc_sock_conn { 182 u32 port; 183 u32 peer_port; 184 u32 peer_node; 185 struct list_head list; 186 }; 187 188 static 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 198 int tipc_node_get_mtu(struct net *net, u32 addr, u32 sel, bool connected) 199 { 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 208 /* 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 216 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 223 bool 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 244 u16 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 257 u32 tipc_node_get_addr(struct tipc_node *node) 258 { 259 return (node) ? node->addr : 0; 260 } 261 262 char *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 */ 272 struct tipc_crypto *tipc_node_crypto_rx(struct tipc_node *__n) 273 { 274 return (__n) ? __n->crypto_rx : NULL; 275 } 276 277 struct 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 282 struct 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 291 static 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 301 static 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); 306 call_rcu(&n->rcu, tipc_node_free); 307 } 308 309 void tipc_node_put(struct tipc_node *node) 310 { 311 kref_put(&node->kref, tipc_node_kref_release); 312 } 313 314 void tipc_node_get(struct tipc_node *node) 315 { 316 kref_get(&node->kref); 317 } 318 319 /* 320 * tipc_node_find - locate specified node object, if it exists 321 */ 322 static 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) { 330 if (node->addr != addr || node->preliminary) 331 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 */ 344 static 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 364 static void tipc_node_read_lock(struct tipc_node *n) 365 { 366 read_lock_bh(&n->lock); 367 } 368 369 static void tipc_node_read_unlock(struct tipc_node *n) 370 { 371 read_unlock_bh(&n->lock); 372 } 373 374 static void tipc_node_write_lock(struct tipc_node *n) 375 { 376 write_lock_bh(&n->lock); 377 } 378 379 static void tipc_node_write_unlock_fast(struct tipc_node *n) 380 { 381 write_unlock_bh(&n->lock); 382 } 383 384 static 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) 409 tipc_publ_notify(net, publ_list, addr, n->capabilities); 410 411 if (flags & TIPC_NOTIFY_NODE_UP) 412 tipc_named_node_up(net, addr, n->capabilities); 413 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 426 static 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 454 struct tipc_node *tipc_node_create(struct net *net, u32 addr, u8 *peer_id, 455 u16 capabilities, u32 hash_mixes, 456 bool preliminary) 457 { 458 struct tipc_net *tn = net_generic(net, tipc_net_id); 459 struct tipc_node *n, *temp_node; 460 struct tipc_link *l; 461 unsigned long intv; 462 int bearer_id; 463 int i; 464 465 spin_lock_bh(&tn->node_list_lock); 466 n = tipc_node_find(net, addr) ?: 467 tipc_node_find_by_id(net, peer_id); 468 if (n) { 469 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); 475 n->preliminary = false; 476 n->addr = addr; 477 hlist_del_rcu(&n->hash); 478 hlist_add_head_rcu(&n->hash, 479 &tn->node_htable[tipc_hashfn(addr)]); 480 list_del_rcu(&n->list); 481 list_for_each_entry_rcu(temp_node, &tn->node_list, list) { 482 if (n->addr < temp_node->addr) 483 break; 484 } 485 list_add_tail_rcu(&n->list, &temp_node->list); 486 tipc_node_write_unlock_fast(n); 487 488 update: 489 if (n->peer_hash_mix ^ hash_mixes) 490 tipc_node_assign_peer_net(n, hash_mixes); 491 if (n->capabilities == capabilities) 492 goto exit; 493 /* Same node may come back with new capabilities */ 494 tipc_node_write_lock(n); 495 n->capabilities = capabilities; 496 for (bearer_id = 0; bearer_id < MAX_BEARERS; bearer_id++) { 497 l = n->links[bearer_id].link; 498 if (l) 499 tipc_link_update_caps(l, capabilities); 500 } 501 tipc_node_write_unlock_fast(n); 502 503 /* Calculate cluster capabilities */ 504 tn->capabilities = TIPC_NODE_CAPABILITIES; 505 list_for_each_entry_rcu(temp_node, &tn->node_list, list) { 506 tn->capabilities &= temp_node->capabilities; 507 } 508 509 tipc_bcast_toggle_rcast(net, 510 (tn->capabilities & TIPC_BCAST_RCAST)); 511 512 goto exit; 513 } 514 n = kzalloc(sizeof(*n), GFP_ATOMIC); 515 if (!n) { 516 pr_warn("Node creation failed, no memory\n"); 517 goto exit; 518 } 519 tipc_nodeid2string(n->peer_id_string, peer_id); 520 #ifdef CONFIG_TIPC_CRYPTO 521 if (unlikely(tipc_crypto_start(&n->crypto_rx, net, n))) { 522 pr_warn("Failed to start crypto RX(%s)!\n", n->peer_id_string); 523 kfree(n); 524 n = NULL; 525 goto exit; 526 } 527 #endif 528 n->addr = addr; 529 n->preliminary = preliminary; 530 memcpy(&n->peer_id, peer_id, 16); 531 n->net = net; 532 n->peer_net = NULL; 533 n->peer_hash_mix = 0; 534 /* Assign kernel local namespace if exists */ 535 tipc_node_assign_peer_net(n, hash_mixes); 536 n->capabilities = capabilities; 537 kref_init(&n->kref); 538 rwlock_init(&n->lock); 539 INIT_HLIST_NODE(&n->hash); 540 INIT_LIST_HEAD(&n->list); 541 INIT_LIST_HEAD(&n->publ_list); 542 INIT_LIST_HEAD(&n->conn_sks); 543 skb_queue_head_init(&n->bc_entry.namedq); 544 skb_queue_head_init(&n->bc_entry.inputq1); 545 __skb_queue_head_init(&n->bc_entry.arrvq); 546 skb_queue_head_init(&n->bc_entry.inputq2); 547 for (i = 0; i < MAX_BEARERS; i++) 548 spin_lock_init(&n->links[i].lock); 549 n->state = SELF_DOWN_PEER_LEAVING; 550 n->delete_at = jiffies + msecs_to_jiffies(NODE_CLEANUP_AFTER); 551 n->signature = INVALID_NODE_SIG; 552 n->active_links[0] = INVALID_BEARER_ID; 553 n->active_links[1] = INVALID_BEARER_ID; 554 n->bc_entry.link = NULL; 555 tipc_node_get(n); 556 timer_setup(&n->timer, tipc_node_timeout, 0); 557 /* Start a slow timer anyway, crypto needs it */ 558 n->keepalive_intv = 10000; 559 intv = jiffies + msecs_to_jiffies(n->keepalive_intv); 560 if (!mod_timer(&n->timer, intv)) 561 tipc_node_get(n); 562 hlist_add_head_rcu(&n->hash, &tn->node_htable[tipc_hashfn(addr)]); 563 list_for_each_entry_rcu(temp_node, &tn->node_list, list) { 564 if (n->addr < temp_node->addr) 565 break; 566 } 567 list_add_tail_rcu(&n->list, &temp_node->list); 568 /* Calculate cluster capabilities */ 569 tn->capabilities = TIPC_NODE_CAPABILITIES; 570 list_for_each_entry_rcu(temp_node, &tn->node_list, list) { 571 tn->capabilities &= temp_node->capabilities; 572 } 573 tipc_bcast_toggle_rcast(net, (tn->capabilities & TIPC_BCAST_RCAST)); 574 trace_tipc_node_create(n, true, " "); 575 exit: 576 spin_unlock_bh(&tn->node_list_lock); 577 return n; 578 } 579 580 static void tipc_node_calculate_timer(struct tipc_node *n, struct tipc_link *l) 581 { 582 unsigned long tol = tipc_link_tolerance(l); 583 unsigned long intv = ((tol / 4) > 500) ? 500 : tol / 4; 584 585 /* Link with lowest tolerance determines timer interval */ 586 if (intv < n->keepalive_intv) 587 n->keepalive_intv = intv; 588 589 /* Ensure link's abort limit corresponds to current tolerance */ 590 tipc_link_set_abort_limit(l, tol / n->keepalive_intv); 591 } 592 593 static void tipc_node_delete_from_list(struct tipc_node *node) 594 { 595 #ifdef CONFIG_TIPC_CRYPTO 596 tipc_crypto_key_flush(node->crypto_rx); 597 #endif 598 list_del_rcu(&node->list); 599 hlist_del_rcu(&node->hash); 600 tipc_node_put(node); 601 } 602 603 static void tipc_node_delete(struct tipc_node *node) 604 { 605 trace_tipc_node_delete(node, true, " "); 606 tipc_node_delete_from_list(node); 607 608 del_timer_sync(&node->timer); 609 tipc_node_put(node); 610 } 611 612 void tipc_node_stop(struct net *net) 613 { 614 struct tipc_net *tn = tipc_net(net); 615 struct tipc_node *node, *t_node; 616 617 spin_lock_bh(&tn->node_list_lock); 618 list_for_each_entry_safe(node, t_node, &tn->node_list, list) 619 tipc_node_delete(node); 620 spin_unlock_bh(&tn->node_list_lock); 621 } 622 623 void tipc_node_subscribe(struct net *net, struct list_head *subscr, u32 addr) 624 { 625 struct tipc_node *n; 626 627 if (in_own_node(net, addr)) 628 return; 629 630 n = tipc_node_find(net, addr); 631 if (!n) { 632 pr_warn("Node subscribe rejected, unknown node 0x%x\n", addr); 633 return; 634 } 635 tipc_node_write_lock(n); 636 list_add_tail(subscr, &n->publ_list); 637 tipc_node_write_unlock_fast(n); 638 tipc_node_put(n); 639 } 640 641 void tipc_node_unsubscribe(struct net *net, struct list_head *subscr, u32 addr) 642 { 643 struct tipc_node *n; 644 645 if (in_own_node(net, addr)) 646 return; 647 648 n = tipc_node_find(net, addr); 649 if (!n) { 650 pr_warn("Node unsubscribe rejected, unknown node 0x%x\n", addr); 651 return; 652 } 653 tipc_node_write_lock(n); 654 list_del_init(subscr); 655 tipc_node_write_unlock_fast(n); 656 tipc_node_put(n); 657 } 658 659 int tipc_node_add_conn(struct net *net, u32 dnode, u32 port, u32 peer_port) 660 { 661 struct tipc_node *node; 662 struct tipc_sock_conn *conn; 663 int err = 0; 664 665 if (in_own_node(net, dnode)) 666 return 0; 667 668 node = tipc_node_find(net, dnode); 669 if (!node) { 670 pr_warn("Connecting sock to node 0x%x failed\n", dnode); 671 return -EHOSTUNREACH; 672 } 673 conn = kmalloc(sizeof(*conn), GFP_ATOMIC); 674 if (!conn) { 675 err = -EHOSTUNREACH; 676 goto exit; 677 } 678 conn->peer_node = dnode; 679 conn->port = port; 680 conn->peer_port = peer_port; 681 682 tipc_node_write_lock(node); 683 list_add_tail(&conn->list, &node->conn_sks); 684 tipc_node_write_unlock(node); 685 exit: 686 tipc_node_put(node); 687 return err; 688 } 689 690 void tipc_node_remove_conn(struct net *net, u32 dnode, u32 port) 691 { 692 struct tipc_node *node; 693 struct tipc_sock_conn *conn, *safe; 694 695 if (in_own_node(net, dnode)) 696 return; 697 698 node = tipc_node_find(net, dnode); 699 if (!node) 700 return; 701 702 tipc_node_write_lock(node); 703 list_for_each_entry_safe(conn, safe, &node->conn_sks, list) { 704 if (port != conn->port) 705 continue; 706 list_del(&conn->list); 707 kfree(conn); 708 } 709 tipc_node_write_unlock(node); 710 tipc_node_put(node); 711 } 712 713 static void tipc_node_clear_links(struct tipc_node *node) 714 { 715 int i; 716 717 for (i = 0; i < MAX_BEARERS; i++) { 718 struct tipc_link_entry *le = &node->links[i]; 719 720 if (le->link) { 721 kfree(le->link); 722 le->link = NULL; 723 node->link_cnt--; 724 } 725 } 726 } 727 728 /* tipc_node_cleanup - delete nodes that does not 729 * have active links for NODE_CLEANUP_AFTER time 730 */ 731 static bool tipc_node_cleanup(struct tipc_node *peer) 732 { 733 struct tipc_node *temp_node; 734 struct tipc_net *tn = tipc_net(peer->net); 735 bool deleted = false; 736 737 /* If lock held by tipc_node_stop() the node will be deleted anyway */ 738 if (!spin_trylock_bh(&tn->node_list_lock)) 739 return false; 740 741 tipc_node_write_lock(peer); 742 743 if (!node_is_up(peer) && time_after(jiffies, peer->delete_at)) { 744 tipc_node_clear_links(peer); 745 tipc_node_delete_from_list(peer); 746 deleted = true; 747 } 748 tipc_node_write_unlock(peer); 749 750 if (!deleted) { 751 spin_unlock_bh(&tn->node_list_lock); 752 return deleted; 753 } 754 755 /* Calculate cluster capabilities */ 756 tn->capabilities = TIPC_NODE_CAPABILITIES; 757 list_for_each_entry_rcu(temp_node, &tn->node_list, list) { 758 tn->capabilities &= temp_node->capabilities; 759 } 760 tipc_bcast_toggle_rcast(peer->net, 761 (tn->capabilities & TIPC_BCAST_RCAST)); 762 spin_unlock_bh(&tn->node_list_lock); 763 return deleted; 764 } 765 766 /* tipc_node_timeout - handle expiration of node timer 767 */ 768 static void tipc_node_timeout(struct timer_list *t) 769 { 770 struct tipc_node *n = from_timer(n, t, timer); 771 struct tipc_link_entry *le; 772 struct sk_buff_head xmitq; 773 int remains = n->link_cnt; 774 int bearer_id; 775 int rc = 0; 776 777 trace_tipc_node_timeout(n, false, " "); 778 if (!node_is_up(n) && tipc_node_cleanup(n)) { 779 /*Removing the reference of Timer*/ 780 tipc_node_put(n); 781 return; 782 } 783 784 #ifdef CONFIG_TIPC_CRYPTO 785 /* Take any crypto key related actions first */ 786 tipc_crypto_timeout(n->crypto_rx); 787 #endif 788 __skb_queue_head_init(&xmitq); 789 790 /* Initial node interval to value larger (10 seconds), then it will be 791 * recalculated with link lowest tolerance 792 */ 793 tipc_node_read_lock(n); 794 n->keepalive_intv = 10000; 795 tipc_node_read_unlock(n); 796 for (bearer_id = 0; remains && (bearer_id < MAX_BEARERS); bearer_id++) { 797 tipc_node_read_lock(n); 798 le = &n->links[bearer_id]; 799 if (le->link) { 800 spin_lock_bh(&le->lock); 801 /* Link tolerance may change asynchronously: */ 802 tipc_node_calculate_timer(n, le->link); 803 rc = tipc_link_timeout(le->link, &xmitq); 804 spin_unlock_bh(&le->lock); 805 remains--; 806 } 807 tipc_node_read_unlock(n); 808 tipc_bearer_xmit(n->net, bearer_id, &xmitq, &le->maddr, n); 809 if (rc & TIPC_LINK_DOWN_EVT) 810 tipc_node_link_down(n, bearer_id, false); 811 } 812 mod_timer(&n->timer, jiffies + msecs_to_jiffies(n->keepalive_intv)); 813 } 814 815 /** 816 * __tipc_node_link_up - handle addition of link 817 * Node lock must be held by caller 818 * Link becomes active (alone or shared) or standby, depending on its priority. 819 */ 820 static void __tipc_node_link_up(struct tipc_node *n, int bearer_id, 821 struct sk_buff_head *xmitq) 822 { 823 int *slot0 = &n->active_links[0]; 824 int *slot1 = &n->active_links[1]; 825 struct tipc_link *ol = node_active_link(n, 0); 826 struct tipc_link *nl = n->links[bearer_id].link; 827 828 if (!nl || tipc_link_is_up(nl)) 829 return; 830 831 tipc_link_fsm_evt(nl, LINK_ESTABLISH_EVT); 832 if (!tipc_link_is_up(nl)) 833 return; 834 835 n->working_links++; 836 n->action_flags |= TIPC_NOTIFY_LINK_UP; 837 n->link_id = tipc_link_id(nl); 838 839 /* Leave room for tunnel header when returning 'mtu' to users: */ 840 n->links[bearer_id].mtu = tipc_link_mss(nl); 841 842 tipc_bearer_add_dest(n->net, bearer_id, n->addr); 843 tipc_bcast_inc_bearer_dst_cnt(n->net, bearer_id); 844 845 pr_debug("Established link <%s> on network plane %c\n", 846 tipc_link_name(nl), tipc_link_plane(nl)); 847 trace_tipc_node_link_up(n, true, " "); 848 849 /* Ensure that a STATE message goes first */ 850 tipc_link_build_state_msg(nl, xmitq); 851 852 /* First link? => give it both slots */ 853 if (!ol) { 854 *slot0 = bearer_id; 855 *slot1 = bearer_id; 856 tipc_node_fsm_evt(n, SELF_ESTABL_CONTACT_EVT); 857 n->action_flags |= TIPC_NOTIFY_NODE_UP; 858 tipc_link_set_active(nl, true); 859 tipc_bcast_add_peer(n->net, nl, xmitq); 860 return; 861 } 862 863 /* Second link => redistribute slots */ 864 if (tipc_link_prio(nl) > tipc_link_prio(ol)) { 865 pr_debug("Old link <%s> becomes standby\n", tipc_link_name(ol)); 866 *slot0 = bearer_id; 867 *slot1 = bearer_id; 868 tipc_link_set_active(nl, true); 869 tipc_link_set_active(ol, false); 870 } else if (tipc_link_prio(nl) == tipc_link_prio(ol)) { 871 tipc_link_set_active(nl, true); 872 *slot1 = bearer_id; 873 } else { 874 pr_debug("New link <%s> is standby\n", tipc_link_name(nl)); 875 } 876 877 /* Prepare synchronization with first link */ 878 tipc_link_tnl_prepare(ol, nl, SYNCH_MSG, xmitq); 879 } 880 881 /** 882 * tipc_node_link_up - handle addition of link 883 * 884 * Link becomes active (alone or shared) or standby, depending on its priority. 885 */ 886 static void tipc_node_link_up(struct tipc_node *n, int bearer_id, 887 struct sk_buff_head *xmitq) 888 { 889 struct tipc_media_addr *maddr; 890 891 tipc_node_write_lock(n); 892 __tipc_node_link_up(n, bearer_id, xmitq); 893 maddr = &n->links[bearer_id].maddr; 894 tipc_bearer_xmit(n->net, bearer_id, xmitq, maddr, n); 895 tipc_node_write_unlock(n); 896 } 897 898 /** 899 * tipc_node_link_failover() - start failover in case "half-failover" 900 * 901 * This function is only called in a very special situation where link 902 * failover can be already started on peer node but not on this node. 903 * This can happen when e.g.:: 904 * 905 * 1. Both links <1A-2A>, <1B-2B> down 906 * 2. Link endpoint 2A up, but 1A still down (e.g. due to network 907 * disturbance, wrong session, etc.) 908 * 3. Link <1B-2B> up 909 * 4. Link endpoint 2A down (e.g. due to link tolerance timeout) 910 * 5. Node 2 starts failover onto link <1B-2B> 911 * 912 * ==> Node 1 does never start link/node failover! 913 * 914 * @n: tipc node structure 915 * @l: link peer endpoint failingover (- can be NULL) 916 * @tnl: tunnel link 917 * @xmitq: queue for messages to be xmited on tnl link later 918 */ 919 static void tipc_node_link_failover(struct tipc_node *n, struct tipc_link *l, 920 struct tipc_link *tnl, 921 struct sk_buff_head *xmitq) 922 { 923 /* Avoid to be "self-failover" that can never end */ 924 if (!tipc_link_is_up(tnl)) 925 return; 926 927 /* Don't rush, failure link may be in the process of resetting */ 928 if (l && !tipc_link_is_reset(l)) 929 return; 930 931 tipc_link_fsm_evt(tnl, LINK_SYNCH_END_EVT); 932 tipc_node_fsm_evt(n, NODE_SYNCH_END_EVT); 933 934 n->sync_point = tipc_link_rcv_nxt(tnl) + (U16_MAX / 2 - 1); 935 tipc_link_failover_prepare(l, tnl, xmitq); 936 937 if (l) 938 tipc_link_fsm_evt(l, LINK_FAILOVER_BEGIN_EVT); 939 tipc_node_fsm_evt(n, NODE_FAILOVER_BEGIN_EVT); 940 } 941 942 /** 943 * __tipc_node_link_down - handle loss of link 944 */ 945 static void __tipc_node_link_down(struct tipc_node *n, int *bearer_id, 946 struct sk_buff_head *xmitq, 947 struct tipc_media_addr **maddr) 948 { 949 struct tipc_link_entry *le = &n->links[*bearer_id]; 950 int *slot0 = &n->active_links[0]; 951 int *slot1 = &n->active_links[1]; 952 int i, highest = 0, prio; 953 struct tipc_link *l, *_l, *tnl; 954 955 l = n->links[*bearer_id].link; 956 if (!l || tipc_link_is_reset(l)) 957 return; 958 959 n->working_links--; 960 n->action_flags |= TIPC_NOTIFY_LINK_DOWN; 961 n->link_id = tipc_link_id(l); 962 963 tipc_bearer_remove_dest(n->net, *bearer_id, n->addr); 964 965 pr_debug("Lost link <%s> on network plane %c\n", 966 tipc_link_name(l), tipc_link_plane(l)); 967 968 /* Select new active link if any available */ 969 *slot0 = INVALID_BEARER_ID; 970 *slot1 = INVALID_BEARER_ID; 971 for (i = 0; i < MAX_BEARERS; i++) { 972 _l = n->links[i].link; 973 if (!_l || !tipc_link_is_up(_l)) 974 continue; 975 if (_l == l) 976 continue; 977 prio = tipc_link_prio(_l); 978 if (prio < highest) 979 continue; 980 if (prio > highest) { 981 highest = prio; 982 *slot0 = i; 983 *slot1 = i; 984 continue; 985 } 986 *slot1 = i; 987 } 988 989 if (!node_is_up(n)) { 990 if (tipc_link_peer_is_down(l)) 991 tipc_node_fsm_evt(n, PEER_LOST_CONTACT_EVT); 992 tipc_node_fsm_evt(n, SELF_LOST_CONTACT_EVT); 993 trace_tipc_link_reset(l, TIPC_DUMP_ALL, "link down!"); 994 tipc_link_fsm_evt(l, LINK_RESET_EVT); 995 tipc_link_reset(l); 996 tipc_link_build_reset_msg(l, xmitq); 997 *maddr = &n->links[*bearer_id].maddr; 998 node_lost_contact(n, &le->inputq); 999 tipc_bcast_dec_bearer_dst_cnt(n->net, *bearer_id); 1000 return; 1001 } 1002 tipc_bcast_dec_bearer_dst_cnt(n->net, *bearer_id); 1003 1004 /* There is still a working link => initiate failover */ 1005 *bearer_id = n->active_links[0]; 1006 tnl = n->links[*bearer_id].link; 1007 tipc_link_fsm_evt(tnl, LINK_SYNCH_END_EVT); 1008 tipc_node_fsm_evt(n, NODE_SYNCH_END_EVT); 1009 n->sync_point = tipc_link_rcv_nxt(tnl) + (U16_MAX / 2 - 1); 1010 tipc_link_tnl_prepare(l, tnl, FAILOVER_MSG, xmitq); 1011 trace_tipc_link_reset(l, TIPC_DUMP_ALL, "link down -> failover!"); 1012 tipc_link_reset(l); 1013 tipc_link_fsm_evt(l, LINK_RESET_EVT); 1014 tipc_link_fsm_evt(l, LINK_FAILOVER_BEGIN_EVT); 1015 tipc_node_fsm_evt(n, NODE_FAILOVER_BEGIN_EVT); 1016 *maddr = &n->links[*bearer_id].maddr; 1017 } 1018 1019 static void tipc_node_link_down(struct tipc_node *n, int bearer_id, bool delete) 1020 { 1021 struct tipc_link_entry *le = &n->links[bearer_id]; 1022 struct tipc_media_addr *maddr = NULL; 1023 struct tipc_link *l = le->link; 1024 int old_bearer_id = bearer_id; 1025 struct sk_buff_head xmitq; 1026 1027 if (!l) 1028 return; 1029 1030 __skb_queue_head_init(&xmitq); 1031 1032 tipc_node_write_lock(n); 1033 if (!tipc_link_is_establishing(l)) { 1034 __tipc_node_link_down(n, &bearer_id, &xmitq, &maddr); 1035 } else { 1036 /* Defuse pending tipc_node_link_up() */ 1037 tipc_link_reset(l); 1038 tipc_link_fsm_evt(l, LINK_RESET_EVT); 1039 } 1040 if (delete) { 1041 kfree(l); 1042 le->link = NULL; 1043 n->link_cnt--; 1044 } 1045 trace_tipc_node_link_down(n, true, "node link down or deleted!"); 1046 tipc_node_write_unlock(n); 1047 if (delete) 1048 tipc_mon_remove_peer(n->net, n->addr, old_bearer_id); 1049 if (!skb_queue_empty(&xmitq)) 1050 tipc_bearer_xmit(n->net, bearer_id, &xmitq, maddr, n); 1051 tipc_sk_rcv(n->net, &le->inputq); 1052 } 1053 1054 static bool node_is_up(struct tipc_node *n) 1055 { 1056 return n->active_links[0] != INVALID_BEARER_ID; 1057 } 1058 1059 bool tipc_node_is_up(struct net *net, u32 addr) 1060 { 1061 struct tipc_node *n; 1062 bool retval = false; 1063 1064 if (in_own_node(net, addr)) 1065 return true; 1066 1067 n = tipc_node_find(net, addr); 1068 if (!n) 1069 return false; 1070 retval = node_is_up(n); 1071 tipc_node_put(n); 1072 return retval; 1073 } 1074 1075 static u32 tipc_node_suggest_addr(struct net *net, u32 addr) 1076 { 1077 struct tipc_node *n; 1078 1079 addr ^= tipc_net(net)->random; 1080 while ((n = tipc_node_find(net, addr))) { 1081 tipc_node_put(n); 1082 addr++; 1083 } 1084 return addr; 1085 } 1086 1087 /* tipc_node_try_addr(): Check if addr can be used by peer, suggest other if not 1088 * Returns suggested address if any, otherwise 0 1089 */ 1090 u32 tipc_node_try_addr(struct net *net, u8 *id, u32 addr) 1091 { 1092 struct tipc_net *tn = tipc_net(net); 1093 struct tipc_node *n; 1094 bool preliminary; 1095 u32 sugg_addr; 1096 1097 /* Suggest new address if some other peer is using this one */ 1098 n = tipc_node_find(net, addr); 1099 if (n) { 1100 if (!memcmp(n->peer_id, id, NODE_ID_LEN)) 1101 addr = 0; 1102 tipc_node_put(n); 1103 if (!addr) 1104 return 0; 1105 return tipc_node_suggest_addr(net, addr); 1106 } 1107 1108 /* Suggest previously used address if peer is known */ 1109 n = tipc_node_find_by_id(net, id); 1110 if (n) { 1111 sugg_addr = n->addr; 1112 preliminary = n->preliminary; 1113 tipc_node_put(n); 1114 if (!preliminary) 1115 return sugg_addr; 1116 } 1117 1118 /* Even this node may be in conflict */ 1119 if (tn->trial_addr == addr) 1120 return tipc_node_suggest_addr(net, addr); 1121 1122 return 0; 1123 } 1124 1125 void tipc_node_check_dest(struct net *net, u32 addr, 1126 u8 *peer_id, struct tipc_bearer *b, 1127 u16 capabilities, u32 signature, u32 hash_mixes, 1128 struct tipc_media_addr *maddr, 1129 bool *respond, bool *dupl_addr) 1130 { 1131 struct tipc_node *n; 1132 struct tipc_link *l, *snd_l; 1133 struct tipc_link_entry *le; 1134 bool addr_match = false; 1135 bool sign_match = false; 1136 bool link_up = false; 1137 bool accept_addr = false; 1138 bool reset = true; 1139 char *if_name; 1140 unsigned long intv; 1141 u16 session; 1142 1143 *dupl_addr = false; 1144 *respond = false; 1145 1146 n = tipc_node_create(net, addr, peer_id, capabilities, hash_mixes, 1147 false); 1148 if (!n) 1149 return; 1150 1151 tipc_node_write_lock(n); 1152 if (unlikely(!n->bc_entry.link)) { 1153 snd_l = tipc_bc_sndlink(net); 1154 if (!tipc_link_bc_create(net, tipc_own_addr(net), 1155 addr, peer_id, U16_MAX, 1156 tipc_link_min_win(snd_l), 1157 tipc_link_max_win(snd_l), 1158 n->capabilities, 1159 &n->bc_entry.inputq1, 1160 &n->bc_entry.namedq, snd_l, 1161 &n->bc_entry.link)) { 1162 pr_warn("Broadcast rcv link creation failed, no mem\n"); 1163 tipc_node_write_unlock_fast(n); 1164 tipc_node_put(n); 1165 return; 1166 } 1167 } 1168 1169 le = &n->links[b->identity]; 1170 1171 /* Prepare to validate requesting node's signature and media address */ 1172 l = le->link; 1173 link_up = l && tipc_link_is_up(l); 1174 addr_match = l && !memcmp(&le->maddr, maddr, sizeof(*maddr)); 1175 sign_match = (signature == n->signature); 1176 1177 /* These three flags give us eight permutations: */ 1178 1179 if (sign_match && addr_match && link_up) { 1180 /* All is fine. Do nothing. */ 1181 reset = false; 1182 /* Peer node is not a container/local namespace */ 1183 if (!n->peer_hash_mix) 1184 n->peer_hash_mix = hash_mixes; 1185 } else if (sign_match && addr_match && !link_up) { 1186 /* Respond. The link will come up in due time */ 1187 *respond = true; 1188 } else if (sign_match && !addr_match && link_up) { 1189 /* Peer has changed i/f address without rebooting. 1190 * If so, the link will reset soon, and the next 1191 * discovery will be accepted. So we can ignore it. 1192 * It may also be an cloned or malicious peer having 1193 * chosen the same node address and signature as an 1194 * existing one. 1195 * Ignore requests until the link goes down, if ever. 1196 */ 1197 *dupl_addr = true; 1198 } else if (sign_match && !addr_match && !link_up) { 1199 /* Peer link has changed i/f address without rebooting. 1200 * It may also be a cloned or malicious peer; we can't 1201 * distinguish between the two. 1202 * The signature is correct, so we must accept. 1203 */ 1204 accept_addr = true; 1205 *respond = true; 1206 } else if (!sign_match && addr_match && link_up) { 1207 /* Peer node rebooted. Two possibilities: 1208 * - Delayed re-discovery; this link endpoint has already 1209 * reset and re-established contact with the peer, before 1210 * receiving a discovery message from that node. 1211 * (The peer happened to receive one from this node first). 1212 * - The peer came back so fast that our side has not 1213 * discovered it yet. Probing from this side will soon 1214 * reset the link, since there can be no working link 1215 * endpoint at the peer end, and the link will re-establish. 1216 * Accept the signature, since it comes from a known peer. 1217 */ 1218 n->signature = signature; 1219 } else if (!sign_match && addr_match && !link_up) { 1220 /* The peer node has rebooted. 1221 * Accept signature, since it is a known peer. 1222 */ 1223 n->signature = signature; 1224 *respond = true; 1225 } else if (!sign_match && !addr_match && link_up) { 1226 /* Peer rebooted with new address, or a new/duplicate peer. 1227 * Ignore until the link goes down, if ever. 1228 */ 1229 *dupl_addr = true; 1230 } else if (!sign_match && !addr_match && !link_up) { 1231 /* Peer rebooted with new address, or it is a new peer. 1232 * Accept signature and address. 1233 */ 1234 n->signature = signature; 1235 accept_addr = true; 1236 *respond = true; 1237 } 1238 1239 if (!accept_addr) 1240 goto exit; 1241 1242 /* Now create new link if not already existing */ 1243 if (!l) { 1244 if (n->link_cnt == 2) 1245 goto exit; 1246 1247 if_name = strchr(b->name, ':') + 1; 1248 get_random_bytes(&session, sizeof(u16)); 1249 if (!tipc_link_create(net, if_name, b->identity, b->tolerance, 1250 b->net_plane, b->mtu, b->priority, 1251 b->min_win, b->max_win, session, 1252 tipc_own_addr(net), addr, peer_id, 1253 n->capabilities, 1254 tipc_bc_sndlink(n->net), n->bc_entry.link, 1255 &le->inputq, 1256 &n->bc_entry.namedq, &l)) { 1257 *respond = false; 1258 goto exit; 1259 } 1260 trace_tipc_link_reset(l, TIPC_DUMP_ALL, "link created!"); 1261 tipc_link_reset(l); 1262 tipc_link_fsm_evt(l, LINK_RESET_EVT); 1263 if (n->state == NODE_FAILINGOVER) 1264 tipc_link_fsm_evt(l, LINK_FAILOVER_BEGIN_EVT); 1265 le->link = l; 1266 n->link_cnt++; 1267 tipc_node_calculate_timer(n, l); 1268 if (n->link_cnt == 1) { 1269 intv = jiffies + msecs_to_jiffies(n->keepalive_intv); 1270 if (!mod_timer(&n->timer, intv)) 1271 tipc_node_get(n); 1272 } 1273 } 1274 memcpy(&le->maddr, maddr, sizeof(*maddr)); 1275 exit: 1276 tipc_node_write_unlock(n); 1277 if (reset && l && !tipc_link_is_reset(l)) 1278 tipc_node_link_down(n, b->identity, false); 1279 tipc_node_put(n); 1280 } 1281 1282 void tipc_node_delete_links(struct net *net, int bearer_id) 1283 { 1284 struct tipc_net *tn = net_generic(net, tipc_net_id); 1285 struct tipc_node *n; 1286 1287 rcu_read_lock(); 1288 list_for_each_entry_rcu(n, &tn->node_list, list) { 1289 tipc_node_link_down(n, bearer_id, true); 1290 } 1291 rcu_read_unlock(); 1292 } 1293 1294 static void tipc_node_reset_links(struct tipc_node *n) 1295 { 1296 int i; 1297 1298 pr_warn("Resetting all links to %x\n", n->addr); 1299 1300 trace_tipc_node_reset_links(n, true, " "); 1301 for (i = 0; i < MAX_BEARERS; i++) { 1302 tipc_node_link_down(n, i, false); 1303 } 1304 } 1305 1306 /* tipc_node_fsm_evt - node finite state machine 1307 * Determines when contact is allowed with peer node 1308 */ 1309 static void tipc_node_fsm_evt(struct tipc_node *n, int evt) 1310 { 1311 int state = n->state; 1312 1313 switch (state) { 1314 case SELF_DOWN_PEER_DOWN: 1315 switch (evt) { 1316 case SELF_ESTABL_CONTACT_EVT: 1317 state = SELF_UP_PEER_COMING; 1318 break; 1319 case PEER_ESTABL_CONTACT_EVT: 1320 state = SELF_COMING_PEER_UP; 1321 break; 1322 case SELF_LOST_CONTACT_EVT: 1323 case PEER_LOST_CONTACT_EVT: 1324 break; 1325 case NODE_SYNCH_END_EVT: 1326 case NODE_SYNCH_BEGIN_EVT: 1327 case NODE_FAILOVER_BEGIN_EVT: 1328 case NODE_FAILOVER_END_EVT: 1329 default: 1330 goto illegal_evt; 1331 } 1332 break; 1333 case SELF_UP_PEER_UP: 1334 switch (evt) { 1335 case SELF_LOST_CONTACT_EVT: 1336 state = SELF_DOWN_PEER_LEAVING; 1337 break; 1338 case PEER_LOST_CONTACT_EVT: 1339 state = SELF_LEAVING_PEER_DOWN; 1340 break; 1341 case NODE_SYNCH_BEGIN_EVT: 1342 state = NODE_SYNCHING; 1343 break; 1344 case NODE_FAILOVER_BEGIN_EVT: 1345 state = NODE_FAILINGOVER; 1346 break; 1347 case SELF_ESTABL_CONTACT_EVT: 1348 case PEER_ESTABL_CONTACT_EVT: 1349 case NODE_SYNCH_END_EVT: 1350 case NODE_FAILOVER_END_EVT: 1351 break; 1352 default: 1353 goto illegal_evt; 1354 } 1355 break; 1356 case SELF_DOWN_PEER_LEAVING: 1357 switch (evt) { 1358 case PEER_LOST_CONTACT_EVT: 1359 state = SELF_DOWN_PEER_DOWN; 1360 break; 1361 case SELF_ESTABL_CONTACT_EVT: 1362 case PEER_ESTABL_CONTACT_EVT: 1363 case SELF_LOST_CONTACT_EVT: 1364 break; 1365 case NODE_SYNCH_END_EVT: 1366 case NODE_SYNCH_BEGIN_EVT: 1367 case NODE_FAILOVER_BEGIN_EVT: 1368 case NODE_FAILOVER_END_EVT: 1369 default: 1370 goto illegal_evt; 1371 } 1372 break; 1373 case SELF_UP_PEER_COMING: 1374 switch (evt) { 1375 case PEER_ESTABL_CONTACT_EVT: 1376 state = SELF_UP_PEER_UP; 1377 break; 1378 case SELF_LOST_CONTACT_EVT: 1379 state = SELF_DOWN_PEER_DOWN; 1380 break; 1381 case SELF_ESTABL_CONTACT_EVT: 1382 case PEER_LOST_CONTACT_EVT: 1383 case NODE_SYNCH_END_EVT: 1384 case NODE_FAILOVER_BEGIN_EVT: 1385 break; 1386 case NODE_SYNCH_BEGIN_EVT: 1387 case NODE_FAILOVER_END_EVT: 1388 default: 1389 goto illegal_evt; 1390 } 1391 break; 1392 case SELF_COMING_PEER_UP: 1393 switch (evt) { 1394 case SELF_ESTABL_CONTACT_EVT: 1395 state = SELF_UP_PEER_UP; 1396 break; 1397 case PEER_LOST_CONTACT_EVT: 1398 state = SELF_DOWN_PEER_DOWN; 1399 break; 1400 case SELF_LOST_CONTACT_EVT: 1401 case PEER_ESTABL_CONTACT_EVT: 1402 break; 1403 case NODE_SYNCH_END_EVT: 1404 case NODE_SYNCH_BEGIN_EVT: 1405 case NODE_FAILOVER_BEGIN_EVT: 1406 case NODE_FAILOVER_END_EVT: 1407 default: 1408 goto illegal_evt; 1409 } 1410 break; 1411 case SELF_LEAVING_PEER_DOWN: 1412 switch (evt) { 1413 case SELF_LOST_CONTACT_EVT: 1414 state = SELF_DOWN_PEER_DOWN; 1415 break; 1416 case SELF_ESTABL_CONTACT_EVT: 1417 case PEER_ESTABL_CONTACT_EVT: 1418 case PEER_LOST_CONTACT_EVT: 1419 break; 1420 case NODE_SYNCH_END_EVT: 1421 case NODE_SYNCH_BEGIN_EVT: 1422 case NODE_FAILOVER_BEGIN_EVT: 1423 case NODE_FAILOVER_END_EVT: 1424 default: 1425 goto illegal_evt; 1426 } 1427 break; 1428 case NODE_FAILINGOVER: 1429 switch (evt) { 1430 case SELF_LOST_CONTACT_EVT: 1431 state = SELF_DOWN_PEER_LEAVING; 1432 break; 1433 case PEER_LOST_CONTACT_EVT: 1434 state = SELF_LEAVING_PEER_DOWN; 1435 break; 1436 case NODE_FAILOVER_END_EVT: 1437 state = SELF_UP_PEER_UP; 1438 break; 1439 case NODE_FAILOVER_BEGIN_EVT: 1440 case SELF_ESTABL_CONTACT_EVT: 1441 case PEER_ESTABL_CONTACT_EVT: 1442 break; 1443 case NODE_SYNCH_BEGIN_EVT: 1444 case NODE_SYNCH_END_EVT: 1445 default: 1446 goto illegal_evt; 1447 } 1448 break; 1449 case NODE_SYNCHING: 1450 switch (evt) { 1451 case SELF_LOST_CONTACT_EVT: 1452 state = SELF_DOWN_PEER_LEAVING; 1453 break; 1454 case PEER_LOST_CONTACT_EVT: 1455 state = SELF_LEAVING_PEER_DOWN; 1456 break; 1457 case NODE_SYNCH_END_EVT: 1458 state = SELF_UP_PEER_UP; 1459 break; 1460 case NODE_FAILOVER_BEGIN_EVT: 1461 state = NODE_FAILINGOVER; 1462 break; 1463 case NODE_SYNCH_BEGIN_EVT: 1464 case SELF_ESTABL_CONTACT_EVT: 1465 case PEER_ESTABL_CONTACT_EVT: 1466 break; 1467 case NODE_FAILOVER_END_EVT: 1468 default: 1469 goto illegal_evt; 1470 } 1471 break; 1472 default: 1473 pr_err("Unknown node fsm state %x\n", state); 1474 break; 1475 } 1476 trace_tipc_node_fsm(n->peer_id, n->state, state, evt); 1477 n->state = state; 1478 return; 1479 1480 illegal_evt: 1481 pr_err("Illegal node fsm evt %x in state %x\n", evt, state); 1482 trace_tipc_node_fsm(n->peer_id, n->state, state, evt); 1483 } 1484 1485 static void node_lost_contact(struct tipc_node *n, 1486 struct sk_buff_head *inputq) 1487 { 1488 struct tipc_sock_conn *conn, *safe; 1489 struct tipc_link *l; 1490 struct list_head *conns = &n->conn_sks; 1491 struct sk_buff *skb; 1492 uint i; 1493 1494 pr_debug("Lost contact with %x\n", n->addr); 1495 n->delete_at = jiffies + msecs_to_jiffies(NODE_CLEANUP_AFTER); 1496 trace_tipc_node_lost_contact(n, true, " "); 1497 1498 /* Clean up broadcast state */ 1499 tipc_bcast_remove_peer(n->net, n->bc_entry.link); 1500 skb_queue_purge(&n->bc_entry.namedq); 1501 1502 /* Abort any ongoing link failover */ 1503 for (i = 0; i < MAX_BEARERS; i++) { 1504 l = n->links[i].link; 1505 if (l) 1506 tipc_link_fsm_evt(l, LINK_FAILOVER_END_EVT); 1507 } 1508 1509 /* Notify publications from this node */ 1510 n->action_flags |= TIPC_NOTIFY_NODE_DOWN; 1511 n->peer_net = NULL; 1512 n->peer_hash_mix = 0; 1513 /* Notify sockets connected to node */ 1514 list_for_each_entry_safe(conn, safe, conns, list) { 1515 skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE, TIPC_CONN_MSG, 1516 SHORT_H_SIZE, 0, tipc_own_addr(n->net), 1517 conn->peer_node, conn->port, 1518 conn->peer_port, TIPC_ERR_NO_NODE); 1519 if (likely(skb)) 1520 skb_queue_tail(inputq, skb); 1521 list_del(&conn->list); 1522 kfree(conn); 1523 } 1524 } 1525 1526 /** 1527 * tipc_node_get_linkname - get the name of a link 1528 * 1529 * @bearer_id: id of the bearer 1530 * @addr: peer node address 1531 * @linkname: link name output buffer 1532 * 1533 * Returns 0 on success 1534 */ 1535 int tipc_node_get_linkname(struct net *net, u32 bearer_id, u32 addr, 1536 char *linkname, size_t len) 1537 { 1538 struct tipc_link *link; 1539 int err = -EINVAL; 1540 struct tipc_node *node = tipc_node_find(net, addr); 1541 1542 if (!node) 1543 return err; 1544 1545 if (bearer_id >= MAX_BEARERS) 1546 goto exit; 1547 1548 tipc_node_read_lock(node); 1549 link = node->links[bearer_id].link; 1550 if (link) { 1551 strncpy(linkname, tipc_link_name(link), len); 1552 err = 0; 1553 } 1554 tipc_node_read_unlock(node); 1555 exit: 1556 tipc_node_put(node); 1557 return err; 1558 } 1559 1560 /* Caller should hold node lock for the passed node */ 1561 static int __tipc_nl_add_node(struct tipc_nl_msg *msg, struct tipc_node *node) 1562 { 1563 void *hdr; 1564 struct nlattr *attrs; 1565 1566 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family, 1567 NLM_F_MULTI, TIPC_NL_NODE_GET); 1568 if (!hdr) 1569 return -EMSGSIZE; 1570 1571 attrs = nla_nest_start_noflag(msg->skb, TIPC_NLA_NODE); 1572 if (!attrs) 1573 goto msg_full; 1574 1575 if (nla_put_u32(msg->skb, TIPC_NLA_NODE_ADDR, node->addr)) 1576 goto attr_msg_full; 1577 if (node_is_up(node)) 1578 if (nla_put_flag(msg->skb, TIPC_NLA_NODE_UP)) 1579 goto attr_msg_full; 1580 1581 nla_nest_end(msg->skb, attrs); 1582 genlmsg_end(msg->skb, hdr); 1583 1584 return 0; 1585 1586 attr_msg_full: 1587 nla_nest_cancel(msg->skb, attrs); 1588 msg_full: 1589 genlmsg_cancel(msg->skb, hdr); 1590 1591 return -EMSGSIZE; 1592 } 1593 1594 static void tipc_lxc_xmit(struct net *peer_net, struct sk_buff_head *list) 1595 { 1596 struct tipc_msg *hdr = buf_msg(skb_peek(list)); 1597 struct sk_buff_head inputq; 1598 1599 switch (msg_user(hdr)) { 1600 case TIPC_LOW_IMPORTANCE: 1601 case TIPC_MEDIUM_IMPORTANCE: 1602 case TIPC_HIGH_IMPORTANCE: 1603 case TIPC_CRITICAL_IMPORTANCE: 1604 if (msg_connected(hdr) || msg_named(hdr) || 1605 msg_direct(hdr)) { 1606 tipc_loopback_trace(peer_net, list); 1607 spin_lock_init(&list->lock); 1608 tipc_sk_rcv(peer_net, list); 1609 return; 1610 } 1611 if (msg_mcast(hdr)) { 1612 tipc_loopback_trace(peer_net, list); 1613 skb_queue_head_init(&inputq); 1614 tipc_sk_mcast_rcv(peer_net, list, &inputq); 1615 __skb_queue_purge(list); 1616 skb_queue_purge(&inputq); 1617 return; 1618 } 1619 return; 1620 case MSG_FRAGMENTER: 1621 if (tipc_msg_assemble(list)) { 1622 tipc_loopback_trace(peer_net, list); 1623 skb_queue_head_init(&inputq); 1624 tipc_sk_mcast_rcv(peer_net, list, &inputq); 1625 __skb_queue_purge(list); 1626 skb_queue_purge(&inputq); 1627 } 1628 return; 1629 case GROUP_PROTOCOL: 1630 case CONN_MANAGER: 1631 tipc_loopback_trace(peer_net, list); 1632 spin_lock_init(&list->lock); 1633 tipc_sk_rcv(peer_net, list); 1634 return; 1635 case LINK_PROTOCOL: 1636 case NAME_DISTRIBUTOR: 1637 case TUNNEL_PROTOCOL: 1638 case BCAST_PROTOCOL: 1639 return; 1640 default: 1641 return; 1642 } 1643 } 1644 1645 /** 1646 * tipc_node_xmit() is the general link level function for message sending 1647 * @net: the applicable net namespace 1648 * @list: chain of buffers containing message 1649 * @dnode: address of destination node 1650 * @selector: a number used for deterministic link selection 1651 * Consumes the buffer chain. 1652 * Returns 0 if success, otherwise: -ELINKCONG,-EHOSTUNREACH,-EMSGSIZE,-ENOBUF 1653 */ 1654 int tipc_node_xmit(struct net *net, struct sk_buff_head *list, 1655 u32 dnode, int selector) 1656 { 1657 struct tipc_link_entry *le = NULL; 1658 struct tipc_node *n; 1659 struct sk_buff_head xmitq; 1660 bool node_up = false; 1661 int bearer_id; 1662 int rc; 1663 1664 if (in_own_node(net, dnode)) { 1665 tipc_loopback_trace(net, list); 1666 spin_lock_init(&list->lock); 1667 tipc_sk_rcv(net, list); 1668 return 0; 1669 } 1670 1671 n = tipc_node_find(net, dnode); 1672 if (unlikely(!n)) { 1673 __skb_queue_purge(list); 1674 return -EHOSTUNREACH; 1675 } 1676 1677 tipc_node_read_lock(n); 1678 node_up = node_is_up(n); 1679 if (node_up && n->peer_net && check_net(n->peer_net)) { 1680 /* xmit inner linux container */ 1681 tipc_lxc_xmit(n->peer_net, list); 1682 if (likely(skb_queue_empty(list))) { 1683 tipc_node_read_unlock(n); 1684 tipc_node_put(n); 1685 return 0; 1686 } 1687 } 1688 1689 bearer_id = n->active_links[selector & 1]; 1690 if (unlikely(bearer_id == INVALID_BEARER_ID)) { 1691 tipc_node_read_unlock(n); 1692 tipc_node_put(n); 1693 __skb_queue_purge(list); 1694 return -EHOSTUNREACH; 1695 } 1696 1697 __skb_queue_head_init(&xmitq); 1698 le = &n->links[bearer_id]; 1699 spin_lock_bh(&le->lock); 1700 rc = tipc_link_xmit(le->link, list, &xmitq); 1701 spin_unlock_bh(&le->lock); 1702 tipc_node_read_unlock(n); 1703 1704 if (unlikely(rc == -ENOBUFS)) 1705 tipc_node_link_down(n, bearer_id, false); 1706 else 1707 tipc_bearer_xmit(net, bearer_id, &xmitq, &le->maddr, n); 1708 1709 tipc_node_put(n); 1710 1711 return rc; 1712 } 1713 1714 /* tipc_node_xmit_skb(): send single buffer to destination 1715 * Buffers sent via this functon are generally TIPC_SYSTEM_IMPORTANCE 1716 * messages, which will not be rejected 1717 * The only exception is datagram messages rerouted after secondary 1718 * lookup, which are rare and safe to dispose of anyway. 1719 */ 1720 int tipc_node_xmit_skb(struct net *net, struct sk_buff *skb, u32 dnode, 1721 u32 selector) 1722 { 1723 struct sk_buff_head head; 1724 1725 __skb_queue_head_init(&head); 1726 __skb_queue_tail(&head, skb); 1727 tipc_node_xmit(net, &head, dnode, selector); 1728 return 0; 1729 } 1730 1731 /* tipc_node_distr_xmit(): send single buffer msgs to individual destinations 1732 * Note: this is only for SYSTEM_IMPORTANCE messages, which cannot be rejected 1733 */ 1734 int tipc_node_distr_xmit(struct net *net, struct sk_buff_head *xmitq) 1735 { 1736 struct sk_buff *skb; 1737 u32 selector, dnode; 1738 1739 while ((skb = __skb_dequeue(xmitq))) { 1740 selector = msg_origport(buf_msg(skb)); 1741 dnode = msg_destnode(buf_msg(skb)); 1742 tipc_node_xmit_skb(net, skb, dnode, selector); 1743 } 1744 return 0; 1745 } 1746 1747 void tipc_node_broadcast(struct net *net, struct sk_buff *skb, int rc_dests) 1748 { 1749 struct sk_buff_head xmitq; 1750 struct sk_buff *txskb; 1751 struct tipc_node *n; 1752 u16 dummy; 1753 u32 dst; 1754 1755 /* Use broadcast if all nodes support it */ 1756 if (!rc_dests && tipc_bcast_get_mode(net) != BCLINK_MODE_RCAST) { 1757 __skb_queue_head_init(&xmitq); 1758 __skb_queue_tail(&xmitq, skb); 1759 tipc_bcast_xmit(net, &xmitq, &dummy); 1760 return; 1761 } 1762 1763 /* Otherwise use legacy replicast method */ 1764 rcu_read_lock(); 1765 list_for_each_entry_rcu(n, tipc_nodes(net), list) { 1766 dst = n->addr; 1767 if (in_own_node(net, dst)) 1768 continue; 1769 if (!node_is_up(n)) 1770 continue; 1771 txskb = pskb_copy(skb, GFP_ATOMIC); 1772 if (!txskb) 1773 break; 1774 msg_set_destnode(buf_msg(txskb), dst); 1775 tipc_node_xmit_skb(net, txskb, dst, 0); 1776 } 1777 rcu_read_unlock(); 1778 kfree_skb(skb); 1779 } 1780 1781 static void tipc_node_mcast_rcv(struct tipc_node *n) 1782 { 1783 struct tipc_bclink_entry *be = &n->bc_entry; 1784 1785 /* 'arrvq' is under inputq2's lock protection */ 1786 spin_lock_bh(&be->inputq2.lock); 1787 spin_lock_bh(&be->inputq1.lock); 1788 skb_queue_splice_tail_init(&be->inputq1, &be->arrvq); 1789 spin_unlock_bh(&be->inputq1.lock); 1790 spin_unlock_bh(&be->inputq2.lock); 1791 tipc_sk_mcast_rcv(n->net, &be->arrvq, &be->inputq2); 1792 } 1793 1794 static void tipc_node_bc_sync_rcv(struct tipc_node *n, struct tipc_msg *hdr, 1795 int bearer_id, struct sk_buff_head *xmitq) 1796 { 1797 struct tipc_link *ucl; 1798 int rc; 1799 1800 rc = tipc_bcast_sync_rcv(n->net, n->bc_entry.link, hdr, xmitq); 1801 1802 if (rc & TIPC_LINK_DOWN_EVT) { 1803 tipc_node_reset_links(n); 1804 return; 1805 } 1806 1807 if (!(rc & TIPC_LINK_SND_STATE)) 1808 return; 1809 1810 /* If probe message, a STATE response will be sent anyway */ 1811 if (msg_probe(hdr)) 1812 return; 1813 1814 /* Produce a STATE message carrying broadcast NACK */ 1815 tipc_node_read_lock(n); 1816 ucl = n->links[bearer_id].link; 1817 if (ucl) 1818 tipc_link_build_state_msg(ucl, xmitq); 1819 tipc_node_read_unlock(n); 1820 } 1821 1822 /** 1823 * tipc_node_bc_rcv - process TIPC broadcast packet arriving from off-node 1824 * @net: the applicable net namespace 1825 * @skb: TIPC packet 1826 * @bearer_id: id of bearer message arrived on 1827 * 1828 * Invoked with no locks held. 1829 */ 1830 static void tipc_node_bc_rcv(struct net *net, struct sk_buff *skb, int bearer_id) 1831 { 1832 int rc; 1833 struct sk_buff_head xmitq; 1834 struct tipc_bclink_entry *be; 1835 struct tipc_link_entry *le; 1836 struct tipc_msg *hdr = buf_msg(skb); 1837 int usr = msg_user(hdr); 1838 u32 dnode = msg_destnode(hdr); 1839 struct tipc_node *n; 1840 1841 __skb_queue_head_init(&xmitq); 1842 1843 /* If NACK for other node, let rcv link for that node peek into it */ 1844 if ((usr == BCAST_PROTOCOL) && (dnode != tipc_own_addr(net))) 1845 n = tipc_node_find(net, dnode); 1846 else 1847 n = tipc_node_find(net, msg_prevnode(hdr)); 1848 if (!n) { 1849 kfree_skb(skb); 1850 return; 1851 } 1852 be = &n->bc_entry; 1853 le = &n->links[bearer_id]; 1854 1855 rc = tipc_bcast_rcv(net, be->link, skb); 1856 1857 /* Broadcast ACKs are sent on a unicast link */ 1858 if (rc & TIPC_LINK_SND_STATE) { 1859 tipc_node_read_lock(n); 1860 tipc_link_build_state_msg(le->link, &xmitq); 1861 tipc_node_read_unlock(n); 1862 } 1863 1864 if (!skb_queue_empty(&xmitq)) 1865 tipc_bearer_xmit(net, bearer_id, &xmitq, &le->maddr, n); 1866 1867 if (!skb_queue_empty(&be->inputq1)) 1868 tipc_node_mcast_rcv(n); 1869 1870 /* Handle NAME_DISTRIBUTOR messages sent from 1.7 nodes */ 1871 if (!skb_queue_empty(&n->bc_entry.namedq)) 1872 tipc_named_rcv(net, &n->bc_entry.namedq, 1873 &n->bc_entry.named_rcv_nxt, 1874 &n->bc_entry.named_open); 1875 1876 /* If reassembly or retransmission failure => reset all links to peer */ 1877 if (rc & TIPC_LINK_DOWN_EVT) 1878 tipc_node_reset_links(n); 1879 1880 tipc_node_put(n); 1881 } 1882 1883 /** 1884 * tipc_node_check_state - check and if necessary update node state 1885 * @skb: TIPC packet 1886 * @bearer_id: identity of bearer delivering the packet 1887 * Returns true if state and msg are ok, otherwise false 1888 */ 1889 static bool tipc_node_check_state(struct tipc_node *n, struct sk_buff *skb, 1890 int bearer_id, struct sk_buff_head *xmitq) 1891 { 1892 struct tipc_msg *hdr = buf_msg(skb); 1893 int usr = msg_user(hdr); 1894 int mtyp = msg_type(hdr); 1895 u16 oseqno = msg_seqno(hdr); 1896 u16 exp_pkts = msg_msgcnt(hdr); 1897 u16 rcv_nxt, syncpt, dlv_nxt, inputq_len; 1898 int state = n->state; 1899 struct tipc_link *l, *tnl, *pl = NULL; 1900 struct tipc_media_addr *maddr; 1901 int pb_id; 1902 1903 if (trace_tipc_node_check_state_enabled()) { 1904 trace_tipc_skb_dump(skb, false, "skb for node state check"); 1905 trace_tipc_node_check_state(n, true, " "); 1906 } 1907 l = n->links[bearer_id].link; 1908 if (!l) 1909 return false; 1910 rcv_nxt = tipc_link_rcv_nxt(l); 1911 1912 1913 if (likely((state == SELF_UP_PEER_UP) && (usr != TUNNEL_PROTOCOL))) 1914 return true; 1915 1916 /* Find parallel link, if any */ 1917 for (pb_id = 0; pb_id < MAX_BEARERS; pb_id++) { 1918 if ((pb_id != bearer_id) && n->links[pb_id].link) { 1919 pl = n->links[pb_id].link; 1920 break; 1921 } 1922 } 1923 1924 if (!tipc_link_validate_msg(l, hdr)) { 1925 trace_tipc_skb_dump(skb, false, "PROTO invalid (2)!"); 1926 trace_tipc_link_dump(l, TIPC_DUMP_NONE, "PROTO invalid (2)!"); 1927 return false; 1928 } 1929 1930 /* Check and update node accesibility if applicable */ 1931 if (state == SELF_UP_PEER_COMING) { 1932 if (!tipc_link_is_up(l)) 1933 return true; 1934 if (!msg_peer_link_is_up(hdr)) 1935 return true; 1936 tipc_node_fsm_evt(n, PEER_ESTABL_CONTACT_EVT); 1937 } 1938 1939 if (state == SELF_DOWN_PEER_LEAVING) { 1940 if (msg_peer_node_is_up(hdr)) 1941 return false; 1942 tipc_node_fsm_evt(n, PEER_LOST_CONTACT_EVT); 1943 return true; 1944 } 1945 1946 if (state == SELF_LEAVING_PEER_DOWN) 1947 return false; 1948 1949 /* Ignore duplicate packets */ 1950 if ((usr != LINK_PROTOCOL) && less(oseqno, rcv_nxt)) 1951 return true; 1952 1953 /* Initiate or update failover mode if applicable */ 1954 if ((usr == TUNNEL_PROTOCOL) && (mtyp == FAILOVER_MSG)) { 1955 syncpt = oseqno + exp_pkts - 1; 1956 if (pl && !tipc_link_is_reset(pl)) { 1957 __tipc_node_link_down(n, &pb_id, xmitq, &maddr); 1958 trace_tipc_node_link_down(n, true, 1959 "node link down <- failover!"); 1960 tipc_skb_queue_splice_tail_init(tipc_link_inputq(pl), 1961 tipc_link_inputq(l)); 1962 } 1963 1964 /* If parallel link was already down, and this happened before 1965 * the tunnel link came up, node failover was never started. 1966 * Ensure that a FAILOVER_MSG is sent to get peer out of 1967 * NODE_FAILINGOVER state, also this node must accept 1968 * TUNNEL_MSGs from peer. 1969 */ 1970 if (n->state != NODE_FAILINGOVER) 1971 tipc_node_link_failover(n, pl, l, xmitq); 1972 1973 /* If pkts arrive out of order, use lowest calculated syncpt */ 1974 if (less(syncpt, n->sync_point)) 1975 n->sync_point = syncpt; 1976 } 1977 1978 /* Open parallel link when tunnel link reaches synch point */ 1979 if ((n->state == NODE_FAILINGOVER) && tipc_link_is_up(l)) { 1980 if (!more(rcv_nxt, n->sync_point)) 1981 return true; 1982 tipc_node_fsm_evt(n, NODE_FAILOVER_END_EVT); 1983 if (pl) 1984 tipc_link_fsm_evt(pl, LINK_FAILOVER_END_EVT); 1985 return true; 1986 } 1987 1988 /* No synching needed if only one link */ 1989 if (!pl || !tipc_link_is_up(pl)) 1990 return true; 1991 1992 /* Initiate synch mode if applicable */ 1993 if ((usr == TUNNEL_PROTOCOL) && (mtyp == SYNCH_MSG) && (oseqno == 1)) { 1994 if (n->capabilities & TIPC_TUNNEL_ENHANCED) 1995 syncpt = msg_syncpt(hdr); 1996 else 1997 syncpt = msg_seqno(msg_inner_hdr(hdr)) + exp_pkts - 1; 1998 if (!tipc_link_is_up(l)) 1999 __tipc_node_link_up(n, bearer_id, xmitq); 2000 if (n->state == SELF_UP_PEER_UP) { 2001 n->sync_point = syncpt; 2002 tipc_link_fsm_evt(l, LINK_SYNCH_BEGIN_EVT); 2003 tipc_node_fsm_evt(n, NODE_SYNCH_BEGIN_EVT); 2004 } 2005 } 2006 2007 /* Open tunnel link when parallel link reaches synch point */ 2008 if (n->state == NODE_SYNCHING) { 2009 if (tipc_link_is_synching(l)) { 2010 tnl = l; 2011 } else { 2012 tnl = pl; 2013 pl = l; 2014 } 2015 inputq_len = skb_queue_len(tipc_link_inputq(pl)); 2016 dlv_nxt = tipc_link_rcv_nxt(pl) - inputq_len; 2017 if (more(dlv_nxt, n->sync_point)) { 2018 tipc_link_fsm_evt(tnl, LINK_SYNCH_END_EVT); 2019 tipc_node_fsm_evt(n, NODE_SYNCH_END_EVT); 2020 return true; 2021 } 2022 if (l == pl) 2023 return true; 2024 if ((usr == TUNNEL_PROTOCOL) && (mtyp == SYNCH_MSG)) 2025 return true; 2026 if (usr == LINK_PROTOCOL) 2027 return true; 2028 return false; 2029 } 2030 return true; 2031 } 2032 2033 /** 2034 * tipc_rcv - process TIPC packets/messages arriving from off-node 2035 * @net: the applicable net namespace 2036 * @skb: TIPC packet 2037 * @b: pointer to bearer message arrived on 2038 * 2039 * Invoked with no locks held. Bearer pointer must point to a valid bearer 2040 * structure (i.e. cannot be NULL), but bearer can be inactive. 2041 */ 2042 void tipc_rcv(struct net *net, struct sk_buff *skb, struct tipc_bearer *b) 2043 { 2044 struct sk_buff_head xmitq; 2045 struct tipc_link_entry *le; 2046 struct tipc_msg *hdr; 2047 struct tipc_node *n; 2048 int bearer_id = b->identity; 2049 u32 self = tipc_own_addr(net); 2050 int usr, rc = 0; 2051 u16 bc_ack; 2052 #ifdef CONFIG_TIPC_CRYPTO 2053 struct tipc_ehdr *ehdr; 2054 2055 /* Check if message must be decrypted first */ 2056 if (TIPC_SKB_CB(skb)->decrypted || !tipc_ehdr_validate(skb)) 2057 goto rcv; 2058 2059 ehdr = (struct tipc_ehdr *)skb->data; 2060 if (likely(ehdr->user != LINK_CONFIG)) { 2061 n = tipc_node_find(net, ntohl(ehdr->addr)); 2062 if (unlikely(!n)) 2063 goto discard; 2064 } else { 2065 n = tipc_node_find_by_id(net, ehdr->id); 2066 } 2067 tipc_crypto_rcv(net, (n) ? n->crypto_rx : NULL, &skb, b); 2068 if (!skb) 2069 return; 2070 2071 rcv: 2072 #endif 2073 /* Ensure message is well-formed before touching the header */ 2074 if (unlikely(!tipc_msg_validate(&skb))) 2075 goto discard; 2076 __skb_queue_head_init(&xmitq); 2077 hdr = buf_msg(skb); 2078 usr = msg_user(hdr); 2079 bc_ack = msg_bcast_ack(hdr); 2080 2081 /* Handle arrival of discovery or broadcast packet */ 2082 if (unlikely(msg_non_seq(hdr))) { 2083 if (unlikely(usr == LINK_CONFIG)) 2084 return tipc_disc_rcv(net, skb, b); 2085 else 2086 return tipc_node_bc_rcv(net, skb, bearer_id); 2087 } 2088 2089 /* Discard unicast link messages destined for another node */ 2090 if (unlikely(!msg_short(hdr) && (msg_destnode(hdr) != self))) 2091 goto discard; 2092 2093 /* Locate neighboring node that sent packet */ 2094 n = tipc_node_find(net, msg_prevnode(hdr)); 2095 if (unlikely(!n)) 2096 goto discard; 2097 le = &n->links[bearer_id]; 2098 2099 /* Ensure broadcast reception is in synch with peer's send state */ 2100 if (unlikely(usr == LINK_PROTOCOL)) { 2101 if (unlikely(skb_linearize(skb))) { 2102 tipc_node_put(n); 2103 goto discard; 2104 } 2105 hdr = buf_msg(skb); 2106 tipc_node_bc_sync_rcv(n, hdr, bearer_id, &xmitq); 2107 } else if (unlikely(tipc_link_acked(n->bc_entry.link) != bc_ack)) { 2108 tipc_bcast_ack_rcv(net, n->bc_entry.link, hdr); 2109 } 2110 2111 /* Receive packet directly if conditions permit */ 2112 tipc_node_read_lock(n); 2113 if (likely((n->state == SELF_UP_PEER_UP) && (usr != TUNNEL_PROTOCOL))) { 2114 spin_lock_bh(&le->lock); 2115 if (le->link) { 2116 rc = tipc_link_rcv(le->link, skb, &xmitq); 2117 skb = NULL; 2118 } 2119 spin_unlock_bh(&le->lock); 2120 } 2121 tipc_node_read_unlock(n); 2122 2123 /* Check/update node state before receiving */ 2124 if (unlikely(skb)) { 2125 if (unlikely(skb_linearize(skb))) 2126 goto out_node_put; 2127 tipc_node_write_lock(n); 2128 if (tipc_node_check_state(n, skb, bearer_id, &xmitq)) { 2129 if (le->link) { 2130 rc = tipc_link_rcv(le->link, skb, &xmitq); 2131 skb = NULL; 2132 } 2133 } 2134 tipc_node_write_unlock(n); 2135 } 2136 2137 if (unlikely(rc & TIPC_LINK_UP_EVT)) 2138 tipc_node_link_up(n, bearer_id, &xmitq); 2139 2140 if (unlikely(rc & TIPC_LINK_DOWN_EVT)) 2141 tipc_node_link_down(n, bearer_id, false); 2142 2143 if (unlikely(!skb_queue_empty(&n->bc_entry.namedq))) 2144 tipc_named_rcv(net, &n->bc_entry.namedq, 2145 &n->bc_entry.named_rcv_nxt, 2146 &n->bc_entry.named_open); 2147 2148 if (unlikely(!skb_queue_empty(&n->bc_entry.inputq1))) 2149 tipc_node_mcast_rcv(n); 2150 2151 if (!skb_queue_empty(&le->inputq)) 2152 tipc_sk_rcv(net, &le->inputq); 2153 2154 if (!skb_queue_empty(&xmitq)) 2155 tipc_bearer_xmit(net, bearer_id, &xmitq, &le->maddr, n); 2156 2157 out_node_put: 2158 tipc_node_put(n); 2159 discard: 2160 kfree_skb(skb); 2161 } 2162 2163 void tipc_node_apply_property(struct net *net, struct tipc_bearer *b, 2164 int prop) 2165 { 2166 struct tipc_net *tn = tipc_net(net); 2167 int bearer_id = b->identity; 2168 struct sk_buff_head xmitq; 2169 struct tipc_link_entry *e; 2170 struct tipc_node *n; 2171 2172 __skb_queue_head_init(&xmitq); 2173 2174 rcu_read_lock(); 2175 2176 list_for_each_entry_rcu(n, &tn->node_list, list) { 2177 tipc_node_write_lock(n); 2178 e = &n->links[bearer_id]; 2179 if (e->link) { 2180 if (prop == TIPC_NLA_PROP_TOL) 2181 tipc_link_set_tolerance(e->link, b->tolerance, 2182 &xmitq); 2183 else if (prop == TIPC_NLA_PROP_MTU) 2184 tipc_link_set_mtu(e->link, b->mtu); 2185 } 2186 tipc_node_write_unlock(n); 2187 tipc_bearer_xmit(net, bearer_id, &xmitq, &e->maddr, NULL); 2188 } 2189 2190 rcu_read_unlock(); 2191 } 2192 2193 int tipc_nl_peer_rm(struct sk_buff *skb, struct genl_info *info) 2194 { 2195 struct net *net = sock_net(skb->sk); 2196 struct tipc_net *tn = net_generic(net, tipc_net_id); 2197 struct nlattr *attrs[TIPC_NLA_NET_MAX + 1]; 2198 struct tipc_node *peer, *temp_node; 2199 u32 addr; 2200 int err; 2201 2202 /* We identify the peer by its net */ 2203 if (!info->attrs[TIPC_NLA_NET]) 2204 return -EINVAL; 2205 2206 err = nla_parse_nested_deprecated(attrs, TIPC_NLA_NET_MAX, 2207 info->attrs[TIPC_NLA_NET], 2208 tipc_nl_net_policy, info->extack); 2209 if (err) 2210 return err; 2211 2212 if (!attrs[TIPC_NLA_NET_ADDR]) 2213 return -EINVAL; 2214 2215 addr = nla_get_u32(attrs[TIPC_NLA_NET_ADDR]); 2216 2217 if (in_own_node(net, addr)) 2218 return -ENOTSUPP; 2219 2220 spin_lock_bh(&tn->node_list_lock); 2221 peer = tipc_node_find(net, addr); 2222 if (!peer) { 2223 spin_unlock_bh(&tn->node_list_lock); 2224 return -ENXIO; 2225 } 2226 2227 tipc_node_write_lock(peer); 2228 if (peer->state != SELF_DOWN_PEER_DOWN && 2229 peer->state != SELF_DOWN_PEER_LEAVING) { 2230 tipc_node_write_unlock(peer); 2231 err = -EBUSY; 2232 goto err_out; 2233 } 2234 2235 tipc_node_clear_links(peer); 2236 tipc_node_write_unlock(peer); 2237 tipc_node_delete(peer); 2238 2239 /* Calculate cluster capabilities */ 2240 tn->capabilities = TIPC_NODE_CAPABILITIES; 2241 list_for_each_entry_rcu(temp_node, &tn->node_list, list) { 2242 tn->capabilities &= temp_node->capabilities; 2243 } 2244 tipc_bcast_toggle_rcast(net, (tn->capabilities & TIPC_BCAST_RCAST)); 2245 err = 0; 2246 err_out: 2247 tipc_node_put(peer); 2248 spin_unlock_bh(&tn->node_list_lock); 2249 2250 return err; 2251 } 2252 2253 int tipc_nl_node_dump(struct sk_buff *skb, struct netlink_callback *cb) 2254 { 2255 int err; 2256 struct net *net = sock_net(skb->sk); 2257 struct tipc_net *tn = net_generic(net, tipc_net_id); 2258 int done = cb->args[0]; 2259 int last_addr = cb->args[1]; 2260 struct tipc_node *node; 2261 struct tipc_nl_msg msg; 2262 2263 if (done) 2264 return 0; 2265 2266 msg.skb = skb; 2267 msg.portid = NETLINK_CB(cb->skb).portid; 2268 msg.seq = cb->nlh->nlmsg_seq; 2269 2270 rcu_read_lock(); 2271 if (last_addr) { 2272 node = tipc_node_find(net, last_addr); 2273 if (!node) { 2274 rcu_read_unlock(); 2275 /* We never set seq or call nl_dump_check_consistent() 2276 * this means that setting prev_seq here will cause the 2277 * consistence check to fail in the netlink callback 2278 * handler. Resulting in the NLMSG_DONE message having 2279 * the NLM_F_DUMP_INTR flag set if the node state 2280 * changed while we released the lock. 2281 */ 2282 cb->prev_seq = 1; 2283 return -EPIPE; 2284 } 2285 tipc_node_put(node); 2286 } 2287 2288 list_for_each_entry_rcu(node, &tn->node_list, list) { 2289 if (node->preliminary) 2290 continue; 2291 if (last_addr) { 2292 if (node->addr == last_addr) 2293 last_addr = 0; 2294 else 2295 continue; 2296 } 2297 2298 tipc_node_read_lock(node); 2299 err = __tipc_nl_add_node(&msg, node); 2300 if (err) { 2301 last_addr = node->addr; 2302 tipc_node_read_unlock(node); 2303 goto out; 2304 } 2305 2306 tipc_node_read_unlock(node); 2307 } 2308 done = 1; 2309 out: 2310 cb->args[0] = done; 2311 cb->args[1] = last_addr; 2312 rcu_read_unlock(); 2313 2314 return skb->len; 2315 } 2316 2317 /* tipc_node_find_by_name - locate owner node of link by link's name 2318 * @net: the applicable net namespace 2319 * @name: pointer to link name string 2320 * @bearer_id: pointer to index in 'node->links' array where the link was found. 2321 * 2322 * Returns pointer to node owning the link, or 0 if no matching link is found. 2323 */ 2324 static struct tipc_node *tipc_node_find_by_name(struct net *net, 2325 const char *link_name, 2326 unsigned int *bearer_id) 2327 { 2328 struct tipc_net *tn = net_generic(net, tipc_net_id); 2329 struct tipc_link *l; 2330 struct tipc_node *n; 2331 struct tipc_node *found_node = NULL; 2332 int i; 2333 2334 *bearer_id = 0; 2335 rcu_read_lock(); 2336 list_for_each_entry_rcu(n, &tn->node_list, list) { 2337 tipc_node_read_lock(n); 2338 for (i = 0; i < MAX_BEARERS; i++) { 2339 l = n->links[i].link; 2340 if (l && !strcmp(tipc_link_name(l), link_name)) { 2341 *bearer_id = i; 2342 found_node = n; 2343 break; 2344 } 2345 } 2346 tipc_node_read_unlock(n); 2347 if (found_node) 2348 break; 2349 } 2350 rcu_read_unlock(); 2351 2352 return found_node; 2353 } 2354 2355 int tipc_nl_node_set_link(struct sk_buff *skb, struct genl_info *info) 2356 { 2357 int err; 2358 int res = 0; 2359 int bearer_id; 2360 char *name; 2361 struct tipc_link *link; 2362 struct tipc_node *node; 2363 struct sk_buff_head xmitq; 2364 struct nlattr *attrs[TIPC_NLA_LINK_MAX + 1]; 2365 struct net *net = sock_net(skb->sk); 2366 2367 __skb_queue_head_init(&xmitq); 2368 2369 if (!info->attrs[TIPC_NLA_LINK]) 2370 return -EINVAL; 2371 2372 err = nla_parse_nested_deprecated(attrs, TIPC_NLA_LINK_MAX, 2373 info->attrs[TIPC_NLA_LINK], 2374 tipc_nl_link_policy, info->extack); 2375 if (err) 2376 return err; 2377 2378 if (!attrs[TIPC_NLA_LINK_NAME]) 2379 return -EINVAL; 2380 2381 name = nla_data(attrs[TIPC_NLA_LINK_NAME]); 2382 2383 if (strcmp(name, tipc_bclink_name) == 0) 2384 return tipc_nl_bc_link_set(net, attrs); 2385 2386 node = tipc_node_find_by_name(net, name, &bearer_id); 2387 if (!node) 2388 return -EINVAL; 2389 2390 tipc_node_read_lock(node); 2391 2392 link = node->links[bearer_id].link; 2393 if (!link) { 2394 res = -EINVAL; 2395 goto out; 2396 } 2397 2398 if (attrs[TIPC_NLA_LINK_PROP]) { 2399 struct nlattr *props[TIPC_NLA_PROP_MAX + 1]; 2400 2401 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_LINK_PROP], props); 2402 if (err) { 2403 res = err; 2404 goto out; 2405 } 2406 2407 if (props[TIPC_NLA_PROP_TOL]) { 2408 u32 tol; 2409 2410 tol = nla_get_u32(props[TIPC_NLA_PROP_TOL]); 2411 tipc_link_set_tolerance(link, tol, &xmitq); 2412 } 2413 if (props[TIPC_NLA_PROP_PRIO]) { 2414 u32 prio; 2415 2416 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]); 2417 tipc_link_set_prio(link, prio, &xmitq); 2418 } 2419 if (props[TIPC_NLA_PROP_WIN]) { 2420 u32 max_win; 2421 2422 max_win = nla_get_u32(props[TIPC_NLA_PROP_WIN]); 2423 tipc_link_set_queue_limits(link, 2424 tipc_link_min_win(link), 2425 max_win); 2426 } 2427 } 2428 2429 out: 2430 tipc_node_read_unlock(node); 2431 tipc_bearer_xmit(net, bearer_id, &xmitq, &node->links[bearer_id].maddr, 2432 NULL); 2433 return res; 2434 } 2435 2436 int tipc_nl_node_get_link(struct sk_buff *skb, struct genl_info *info) 2437 { 2438 struct net *net = genl_info_net(info); 2439 struct nlattr *attrs[TIPC_NLA_LINK_MAX + 1]; 2440 struct tipc_nl_msg msg; 2441 char *name; 2442 int err; 2443 2444 msg.portid = info->snd_portid; 2445 msg.seq = info->snd_seq; 2446 2447 if (!info->attrs[TIPC_NLA_LINK]) 2448 return -EINVAL; 2449 2450 err = nla_parse_nested_deprecated(attrs, TIPC_NLA_LINK_MAX, 2451 info->attrs[TIPC_NLA_LINK], 2452 tipc_nl_link_policy, info->extack); 2453 if (err) 2454 return err; 2455 2456 if (!attrs[TIPC_NLA_LINK_NAME]) 2457 return -EINVAL; 2458 2459 name = nla_data(attrs[TIPC_NLA_LINK_NAME]); 2460 2461 msg.skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL); 2462 if (!msg.skb) 2463 return -ENOMEM; 2464 2465 if (strcmp(name, tipc_bclink_name) == 0) { 2466 err = tipc_nl_add_bc_link(net, &msg, tipc_net(net)->bcl); 2467 if (err) 2468 goto err_free; 2469 } else { 2470 int bearer_id; 2471 struct tipc_node *node; 2472 struct tipc_link *link; 2473 2474 node = tipc_node_find_by_name(net, name, &bearer_id); 2475 if (!node) { 2476 err = -EINVAL; 2477 goto err_free; 2478 } 2479 2480 tipc_node_read_lock(node); 2481 link = node->links[bearer_id].link; 2482 if (!link) { 2483 tipc_node_read_unlock(node); 2484 err = -EINVAL; 2485 goto err_free; 2486 } 2487 2488 err = __tipc_nl_add_link(net, &msg, link, 0); 2489 tipc_node_read_unlock(node); 2490 if (err) 2491 goto err_free; 2492 } 2493 2494 return genlmsg_reply(msg.skb, info); 2495 2496 err_free: 2497 nlmsg_free(msg.skb); 2498 return err; 2499 } 2500 2501 int tipc_nl_node_reset_link_stats(struct sk_buff *skb, struct genl_info *info) 2502 { 2503 int err; 2504 char *link_name; 2505 unsigned int bearer_id; 2506 struct tipc_link *link; 2507 struct tipc_node *node; 2508 struct nlattr *attrs[TIPC_NLA_LINK_MAX + 1]; 2509 struct net *net = sock_net(skb->sk); 2510 struct tipc_net *tn = tipc_net(net); 2511 struct tipc_link_entry *le; 2512 2513 if (!info->attrs[TIPC_NLA_LINK]) 2514 return -EINVAL; 2515 2516 err = nla_parse_nested_deprecated(attrs, TIPC_NLA_LINK_MAX, 2517 info->attrs[TIPC_NLA_LINK], 2518 tipc_nl_link_policy, info->extack); 2519 if (err) 2520 return err; 2521 2522 if (!attrs[TIPC_NLA_LINK_NAME]) 2523 return -EINVAL; 2524 2525 link_name = nla_data(attrs[TIPC_NLA_LINK_NAME]); 2526 2527 err = -EINVAL; 2528 if (!strcmp(link_name, tipc_bclink_name)) { 2529 err = tipc_bclink_reset_stats(net, tipc_bc_sndlink(net)); 2530 if (err) 2531 return err; 2532 return 0; 2533 } else if (strstr(link_name, tipc_bclink_name)) { 2534 rcu_read_lock(); 2535 list_for_each_entry_rcu(node, &tn->node_list, list) { 2536 tipc_node_read_lock(node); 2537 link = node->bc_entry.link; 2538 if (link && !strcmp(link_name, tipc_link_name(link))) { 2539 err = tipc_bclink_reset_stats(net, link); 2540 tipc_node_read_unlock(node); 2541 break; 2542 } 2543 tipc_node_read_unlock(node); 2544 } 2545 rcu_read_unlock(); 2546 return err; 2547 } 2548 2549 node = tipc_node_find_by_name(net, link_name, &bearer_id); 2550 if (!node) 2551 return -EINVAL; 2552 2553 le = &node->links[bearer_id]; 2554 tipc_node_read_lock(node); 2555 spin_lock_bh(&le->lock); 2556 link = node->links[bearer_id].link; 2557 if (!link) { 2558 spin_unlock_bh(&le->lock); 2559 tipc_node_read_unlock(node); 2560 return -EINVAL; 2561 } 2562 tipc_link_reset_stats(link); 2563 spin_unlock_bh(&le->lock); 2564 tipc_node_read_unlock(node); 2565 return 0; 2566 } 2567 2568 /* Caller should hold node lock */ 2569 static int __tipc_nl_add_node_links(struct net *net, struct tipc_nl_msg *msg, 2570 struct tipc_node *node, u32 *prev_link, 2571 bool bc_link) 2572 { 2573 u32 i; 2574 int err; 2575 2576 for (i = *prev_link; i < MAX_BEARERS; i++) { 2577 *prev_link = i; 2578 2579 if (!node->links[i].link) 2580 continue; 2581 2582 err = __tipc_nl_add_link(net, msg, 2583 node->links[i].link, NLM_F_MULTI); 2584 if (err) 2585 return err; 2586 } 2587 2588 if (bc_link) { 2589 *prev_link = i; 2590 err = tipc_nl_add_bc_link(net, msg, node->bc_entry.link); 2591 if (err) 2592 return err; 2593 } 2594 2595 *prev_link = 0; 2596 2597 return 0; 2598 } 2599 2600 int tipc_nl_node_dump_link(struct sk_buff *skb, struct netlink_callback *cb) 2601 { 2602 struct net *net = sock_net(skb->sk); 2603 struct nlattr **attrs = genl_dumpit_info(cb)->attrs; 2604 struct nlattr *link[TIPC_NLA_LINK_MAX + 1]; 2605 struct tipc_net *tn = net_generic(net, tipc_net_id); 2606 struct tipc_node *node; 2607 struct tipc_nl_msg msg; 2608 u32 prev_node = cb->args[0]; 2609 u32 prev_link = cb->args[1]; 2610 int done = cb->args[2]; 2611 bool bc_link = cb->args[3]; 2612 int err; 2613 2614 if (done) 2615 return 0; 2616 2617 if (!prev_node) { 2618 /* Check if broadcast-receiver links dumping is needed */ 2619 if (attrs && attrs[TIPC_NLA_LINK]) { 2620 err = nla_parse_nested_deprecated(link, 2621 TIPC_NLA_LINK_MAX, 2622 attrs[TIPC_NLA_LINK], 2623 tipc_nl_link_policy, 2624 NULL); 2625 if (unlikely(err)) 2626 return err; 2627 if (unlikely(!link[TIPC_NLA_LINK_BROADCAST])) 2628 return -EINVAL; 2629 bc_link = true; 2630 } 2631 } 2632 2633 msg.skb = skb; 2634 msg.portid = NETLINK_CB(cb->skb).portid; 2635 msg.seq = cb->nlh->nlmsg_seq; 2636 2637 rcu_read_lock(); 2638 if (prev_node) { 2639 node = tipc_node_find(net, prev_node); 2640 if (!node) { 2641 /* We never set seq or call nl_dump_check_consistent() 2642 * this means that setting prev_seq here will cause the 2643 * consistence check to fail in the netlink callback 2644 * handler. Resulting in the last NLMSG_DONE message 2645 * having the NLM_F_DUMP_INTR flag set. 2646 */ 2647 cb->prev_seq = 1; 2648 goto out; 2649 } 2650 tipc_node_put(node); 2651 2652 list_for_each_entry_continue_rcu(node, &tn->node_list, 2653 list) { 2654 tipc_node_read_lock(node); 2655 err = __tipc_nl_add_node_links(net, &msg, node, 2656 &prev_link, bc_link); 2657 tipc_node_read_unlock(node); 2658 if (err) 2659 goto out; 2660 2661 prev_node = node->addr; 2662 } 2663 } else { 2664 err = tipc_nl_add_bc_link(net, &msg, tn->bcl); 2665 if (err) 2666 goto out; 2667 2668 list_for_each_entry_rcu(node, &tn->node_list, list) { 2669 tipc_node_read_lock(node); 2670 err = __tipc_nl_add_node_links(net, &msg, node, 2671 &prev_link, bc_link); 2672 tipc_node_read_unlock(node); 2673 if (err) 2674 goto out; 2675 2676 prev_node = node->addr; 2677 } 2678 } 2679 done = 1; 2680 out: 2681 rcu_read_unlock(); 2682 2683 cb->args[0] = prev_node; 2684 cb->args[1] = prev_link; 2685 cb->args[2] = done; 2686 cb->args[3] = bc_link; 2687 2688 return skb->len; 2689 } 2690 2691 int tipc_nl_node_set_monitor(struct sk_buff *skb, struct genl_info *info) 2692 { 2693 struct nlattr *attrs[TIPC_NLA_MON_MAX + 1]; 2694 struct net *net = sock_net(skb->sk); 2695 int err; 2696 2697 if (!info->attrs[TIPC_NLA_MON]) 2698 return -EINVAL; 2699 2700 err = nla_parse_nested_deprecated(attrs, TIPC_NLA_MON_MAX, 2701 info->attrs[TIPC_NLA_MON], 2702 tipc_nl_monitor_policy, 2703 info->extack); 2704 if (err) 2705 return err; 2706 2707 if (attrs[TIPC_NLA_MON_ACTIVATION_THRESHOLD]) { 2708 u32 val; 2709 2710 val = nla_get_u32(attrs[TIPC_NLA_MON_ACTIVATION_THRESHOLD]); 2711 err = tipc_nl_monitor_set_threshold(net, val); 2712 if (err) 2713 return err; 2714 } 2715 2716 return 0; 2717 } 2718 2719 static int __tipc_nl_add_monitor_prop(struct net *net, struct tipc_nl_msg *msg) 2720 { 2721 struct nlattr *attrs; 2722 void *hdr; 2723 u32 val; 2724 2725 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family, 2726 0, TIPC_NL_MON_GET); 2727 if (!hdr) 2728 return -EMSGSIZE; 2729 2730 attrs = nla_nest_start_noflag(msg->skb, TIPC_NLA_MON); 2731 if (!attrs) 2732 goto msg_full; 2733 2734 val = tipc_nl_monitor_get_threshold(net); 2735 2736 if (nla_put_u32(msg->skb, TIPC_NLA_MON_ACTIVATION_THRESHOLD, val)) 2737 goto attr_msg_full; 2738 2739 nla_nest_end(msg->skb, attrs); 2740 genlmsg_end(msg->skb, hdr); 2741 2742 return 0; 2743 2744 attr_msg_full: 2745 nla_nest_cancel(msg->skb, attrs); 2746 msg_full: 2747 genlmsg_cancel(msg->skb, hdr); 2748 2749 return -EMSGSIZE; 2750 } 2751 2752 int tipc_nl_node_get_monitor(struct sk_buff *skb, struct genl_info *info) 2753 { 2754 struct net *net = sock_net(skb->sk); 2755 struct tipc_nl_msg msg; 2756 int err; 2757 2758 msg.skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL); 2759 if (!msg.skb) 2760 return -ENOMEM; 2761 msg.portid = info->snd_portid; 2762 msg.seq = info->snd_seq; 2763 2764 err = __tipc_nl_add_monitor_prop(net, &msg); 2765 if (err) { 2766 nlmsg_free(msg.skb); 2767 return err; 2768 } 2769 2770 return genlmsg_reply(msg.skb, info); 2771 } 2772 2773 int tipc_nl_node_dump_monitor(struct sk_buff *skb, struct netlink_callback *cb) 2774 { 2775 struct net *net = sock_net(skb->sk); 2776 u32 prev_bearer = cb->args[0]; 2777 struct tipc_nl_msg msg; 2778 int bearer_id; 2779 int err; 2780 2781 if (prev_bearer == MAX_BEARERS) 2782 return 0; 2783 2784 msg.skb = skb; 2785 msg.portid = NETLINK_CB(cb->skb).portid; 2786 msg.seq = cb->nlh->nlmsg_seq; 2787 2788 rtnl_lock(); 2789 for (bearer_id = prev_bearer; bearer_id < MAX_BEARERS; bearer_id++) { 2790 err = __tipc_nl_add_monitor(net, &msg, bearer_id); 2791 if (err) 2792 break; 2793 } 2794 rtnl_unlock(); 2795 cb->args[0] = bearer_id; 2796 2797 return skb->len; 2798 } 2799 2800 int tipc_nl_node_dump_monitor_peer(struct sk_buff *skb, 2801 struct netlink_callback *cb) 2802 { 2803 struct net *net = sock_net(skb->sk); 2804 u32 prev_node = cb->args[1]; 2805 u32 bearer_id = cb->args[2]; 2806 int done = cb->args[0]; 2807 struct tipc_nl_msg msg; 2808 int err; 2809 2810 if (!prev_node) { 2811 struct nlattr **attrs = genl_dumpit_info(cb)->attrs; 2812 struct nlattr *mon[TIPC_NLA_MON_MAX + 1]; 2813 2814 if (!attrs[TIPC_NLA_MON]) 2815 return -EINVAL; 2816 2817 err = nla_parse_nested_deprecated(mon, TIPC_NLA_MON_MAX, 2818 attrs[TIPC_NLA_MON], 2819 tipc_nl_monitor_policy, 2820 NULL); 2821 if (err) 2822 return err; 2823 2824 if (!mon[TIPC_NLA_MON_REF]) 2825 return -EINVAL; 2826 2827 bearer_id = nla_get_u32(mon[TIPC_NLA_MON_REF]); 2828 2829 if (bearer_id >= MAX_BEARERS) 2830 return -EINVAL; 2831 } 2832 2833 if (done) 2834 return 0; 2835 2836 msg.skb = skb; 2837 msg.portid = NETLINK_CB(cb->skb).portid; 2838 msg.seq = cb->nlh->nlmsg_seq; 2839 2840 rtnl_lock(); 2841 err = tipc_nl_add_monitor_peer(net, &msg, bearer_id, &prev_node); 2842 if (!err) 2843 done = 1; 2844 2845 rtnl_unlock(); 2846 cb->args[0] = done; 2847 cb->args[1] = prev_node; 2848 cb->args[2] = bearer_id; 2849 2850 return skb->len; 2851 } 2852 2853 #ifdef CONFIG_TIPC_CRYPTO 2854 static int tipc_nl_retrieve_key(struct nlattr **attrs, 2855 struct tipc_aead_key **key) 2856 { 2857 struct nlattr *attr = attrs[TIPC_NLA_NODE_KEY]; 2858 2859 if (!attr) 2860 return -ENODATA; 2861 2862 *key = (struct tipc_aead_key *)nla_data(attr); 2863 if (nla_len(attr) < tipc_aead_key_size(*key)) 2864 return -EINVAL; 2865 2866 return 0; 2867 } 2868 2869 static int tipc_nl_retrieve_nodeid(struct nlattr **attrs, u8 **node_id) 2870 { 2871 struct nlattr *attr = attrs[TIPC_NLA_NODE_ID]; 2872 2873 if (!attr) 2874 return -ENODATA; 2875 2876 if (nla_len(attr) < TIPC_NODEID_LEN) 2877 return -EINVAL; 2878 2879 *node_id = (u8 *)nla_data(attr); 2880 return 0; 2881 } 2882 2883 static int tipc_nl_retrieve_rekeying(struct nlattr **attrs, u32 *intv) 2884 { 2885 struct nlattr *attr = attrs[TIPC_NLA_NODE_REKEYING]; 2886 2887 if (!attr) 2888 return -ENODATA; 2889 2890 *intv = nla_get_u32(attr); 2891 return 0; 2892 } 2893 2894 static int __tipc_nl_node_set_key(struct sk_buff *skb, struct genl_info *info) 2895 { 2896 struct nlattr *attrs[TIPC_NLA_NODE_MAX + 1]; 2897 struct net *net = sock_net(skb->sk); 2898 struct tipc_crypto *tx = tipc_net(net)->crypto_tx, *c = tx; 2899 struct tipc_node *n = NULL; 2900 struct tipc_aead_key *ukey; 2901 bool rekeying = true, master_key = false; 2902 u8 *id, *own_id, mode; 2903 u32 intv = 0; 2904 int rc = 0; 2905 2906 if (!info->attrs[TIPC_NLA_NODE]) 2907 return -EINVAL; 2908 2909 rc = nla_parse_nested(attrs, TIPC_NLA_NODE_MAX, 2910 info->attrs[TIPC_NLA_NODE], 2911 tipc_nl_node_policy, info->extack); 2912 if (rc) 2913 return rc; 2914 2915 own_id = tipc_own_id(net); 2916 if (!own_id) { 2917 GENL_SET_ERR_MSG(info, "not found own node identity (set id?)"); 2918 return -EPERM; 2919 } 2920 2921 rc = tipc_nl_retrieve_rekeying(attrs, &intv); 2922 if (rc == -ENODATA) 2923 rekeying = false; 2924 2925 rc = tipc_nl_retrieve_key(attrs, &ukey); 2926 if (rc == -ENODATA && rekeying) 2927 goto rekeying; 2928 else if (rc) 2929 return rc; 2930 2931 rc = tipc_aead_key_validate(ukey, info); 2932 if (rc) 2933 return rc; 2934 2935 rc = tipc_nl_retrieve_nodeid(attrs, &id); 2936 switch (rc) { 2937 case -ENODATA: 2938 mode = CLUSTER_KEY; 2939 master_key = !!(attrs[TIPC_NLA_NODE_KEY_MASTER]); 2940 break; 2941 case 0: 2942 mode = PER_NODE_KEY; 2943 if (memcmp(id, own_id, NODE_ID_LEN)) { 2944 n = tipc_node_find_by_id(net, id) ?: 2945 tipc_node_create(net, 0, id, 0xffffu, 0, true); 2946 if (unlikely(!n)) 2947 return -ENOMEM; 2948 c = n->crypto_rx; 2949 } 2950 break; 2951 default: 2952 return rc; 2953 } 2954 2955 /* Initiate the TX/RX key */ 2956 rc = tipc_crypto_key_init(c, ukey, mode, master_key); 2957 if (n) 2958 tipc_node_put(n); 2959 2960 if (unlikely(rc < 0)) { 2961 GENL_SET_ERR_MSG(info, "unable to initiate or attach new key"); 2962 return rc; 2963 } else if (c == tx) { 2964 /* Distribute TX key but not master one */ 2965 if (!master_key && tipc_crypto_key_distr(tx, rc, NULL)) 2966 GENL_SET_ERR_MSG(info, "failed to replicate new key"); 2967 rekeying: 2968 /* Schedule TX rekeying if needed */ 2969 tipc_crypto_rekeying_sched(tx, rekeying, intv); 2970 } 2971 2972 return 0; 2973 } 2974 2975 int tipc_nl_node_set_key(struct sk_buff *skb, struct genl_info *info) 2976 { 2977 int err; 2978 2979 rtnl_lock(); 2980 err = __tipc_nl_node_set_key(skb, info); 2981 rtnl_unlock(); 2982 2983 return err; 2984 } 2985 2986 static int __tipc_nl_node_flush_key(struct sk_buff *skb, 2987 struct genl_info *info) 2988 { 2989 struct net *net = sock_net(skb->sk); 2990 struct tipc_net *tn = tipc_net(net); 2991 struct tipc_node *n; 2992 2993 tipc_crypto_key_flush(tn->crypto_tx); 2994 rcu_read_lock(); 2995 list_for_each_entry_rcu(n, &tn->node_list, list) 2996 tipc_crypto_key_flush(n->crypto_rx); 2997 rcu_read_unlock(); 2998 2999 return 0; 3000 } 3001 3002 int tipc_nl_node_flush_key(struct sk_buff *skb, struct genl_info *info) 3003 { 3004 int err; 3005 3006 rtnl_lock(); 3007 err = __tipc_nl_node_flush_key(skb, info); 3008 rtnl_unlock(); 3009 3010 return err; 3011 } 3012 #endif 3013 3014 /** 3015 * tipc_node_dump - dump TIPC node data 3016 * @n: tipc node to be dumped 3017 * @more: dump more? 3018 * - false: dump only tipc node data 3019 * - true: dump node link data as well 3020 * @buf: returned buffer of dump data in format 3021 */ 3022 int tipc_node_dump(struct tipc_node *n, bool more, char *buf) 3023 { 3024 int i = 0; 3025 size_t sz = (more) ? NODE_LMAX : NODE_LMIN; 3026 3027 if (!n) { 3028 i += scnprintf(buf, sz, "node data: (null)\n"); 3029 return i; 3030 } 3031 3032 i += scnprintf(buf, sz, "node data: %x", n->addr); 3033 i += scnprintf(buf + i, sz - i, " %x", n->state); 3034 i += scnprintf(buf + i, sz - i, " %d", n->active_links[0]); 3035 i += scnprintf(buf + i, sz - i, " %d", n->active_links[1]); 3036 i += scnprintf(buf + i, sz - i, " %x", n->action_flags); 3037 i += scnprintf(buf + i, sz - i, " %u", n->failover_sent); 3038 i += scnprintf(buf + i, sz - i, " %u", n->sync_point); 3039 i += scnprintf(buf + i, sz - i, " %d", n->link_cnt); 3040 i += scnprintf(buf + i, sz - i, " %u", n->working_links); 3041 i += scnprintf(buf + i, sz - i, " %x", n->capabilities); 3042 i += scnprintf(buf + i, sz - i, " %lu\n", n->keepalive_intv); 3043 3044 if (!more) 3045 return i; 3046 3047 i += scnprintf(buf + i, sz - i, "link_entry[0]:\n"); 3048 i += scnprintf(buf + i, sz - i, " mtu: %u\n", n->links[0].mtu); 3049 i += scnprintf(buf + i, sz - i, " media: "); 3050 i += tipc_media_addr_printf(buf + i, sz - i, &n->links[0].maddr); 3051 i += scnprintf(buf + i, sz - i, "\n"); 3052 i += tipc_link_dump(n->links[0].link, TIPC_DUMP_NONE, buf + i); 3053 i += scnprintf(buf + i, sz - i, " inputq: "); 3054 i += tipc_list_dump(&n->links[0].inputq, false, buf + i); 3055 3056 i += scnprintf(buf + i, sz - i, "link_entry[1]:\n"); 3057 i += scnprintf(buf + i, sz - i, " mtu: %u\n", n->links[1].mtu); 3058 i += scnprintf(buf + i, sz - i, " media: "); 3059 i += tipc_media_addr_printf(buf + i, sz - i, &n->links[1].maddr); 3060 i += scnprintf(buf + i, sz - i, "\n"); 3061 i += tipc_link_dump(n->links[1].link, TIPC_DUMP_NONE, buf + i); 3062 i += scnprintf(buf + i, sz - i, " inputq: "); 3063 i += tipc_list_dump(&n->links[1].inputq, false, buf + i); 3064 3065 i += scnprintf(buf + i, sz - i, "bclink:\n "); 3066 i += tipc_link_dump(n->bc_entry.link, TIPC_DUMP_NONE, buf + i); 3067 3068 return i; 3069 } 3070 3071 void tipc_node_pre_cleanup_net(struct net *exit_net) 3072 { 3073 struct tipc_node *n; 3074 struct tipc_net *tn; 3075 struct net *tmp; 3076 3077 rcu_read_lock(); 3078 for_each_net_rcu(tmp) { 3079 if (tmp == exit_net) 3080 continue; 3081 tn = tipc_net(tmp); 3082 if (!tn) 3083 continue; 3084 spin_lock_bh(&tn->node_list_lock); 3085 list_for_each_entry_rcu(n, &tn->node_list, list) { 3086 if (!n->peer_net) 3087 continue; 3088 if (n->peer_net != exit_net) 3089 continue; 3090 tipc_node_write_lock(n); 3091 n->peer_net = NULL; 3092 n->peer_hash_mix = 0; 3093 tipc_node_write_unlock_fast(n); 3094 break; 3095 } 3096 spin_unlock_bh(&tn->node_list_lock); 3097 } 3098 rcu_read_unlock(); 3099 } 3100