]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/tipc/node.c
hlist: drop the node parameter from iterators
[mirror_ubuntu-bionic-kernel.git] / net / tipc / node.c
CommitLineData
b97bf3fd
PL
1/*
2 * net/tipc/node.c: TIPC node management routines
c4307285 3 *
c64f7a6a 4 * Copyright (c) 2000-2006, 2012 Ericsson AB
2d627b92 5 * Copyright (c) 2005-2006, 2010-2011, Wind River Systems
b97bf3fd
PL
6 * All rights reserved.
7 *
9ea1fd3c 8 * Redistribution and use in source and binary forms, with or without
b97bf3fd
PL
9 * modification, are permitted provided that the following conditions are met:
10 *
9ea1fd3c
PL
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.
b97bf3fd 19 *
9ea1fd3c
PL
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
b97bf3fd
PL
34 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
38#include "config.h"
39#include "node.h"
b97bf3fd 40#include "name_distr.h"
b97bf3fd 41
a635b46b
AS
42#define NODE_HTABLE_SIZE 512
43
6c00055a
DM
44static void node_lost_contact(struct tipc_node *n_ptr);
45static void node_established_contact(struct tipc_node *n_ptr);
b97bf3fd 46
2ecb0924
AS
47static DEFINE_SPINLOCK(node_create_lock);
48
672d99e1
AS
49static struct hlist_head node_htable[NODE_HTABLE_SIZE];
50LIST_HEAD(tipc_node_list);
51static u32 tipc_num_nodes;
34e46258
AS
52
53static atomic_t tipc_num_links = ATOMIC_INIT(0);
b97bf3fd 54
a635b46b
AS
55/*
56 * A trivial power-of-two bitmask technique is used for speed, since this
57 * operation is done for every incoming TIPC packet. The number of hash table
58 * entries has been chosen so that no hash chain exceeds 8 nodes and will
59 * usually be much smaller (typically only a single node).
60 */
872f24db 61static unsigned int tipc_hashfn(u32 addr)
a635b46b
AS
62{
63 return addr & (NODE_HTABLE_SIZE - 1);
64}
65
1ec2bb08 66/*
672d99e1
AS
67 * tipc_node_find - locate specified node object, if it exists
68 */
672d99e1
AS
69struct tipc_node *tipc_node_find(u32 addr)
70{
71 struct tipc_node *node;
672d99e1 72
336ebf5b 73 if (unlikely(!in_own_cluster_exact(addr)))
672d99e1
AS
74 return NULL;
75
b67bfe0d 76 hlist_for_each_entry(node, &node_htable[tipc_hashfn(addr)], hash) {
672d99e1
AS
77 if (node->addr == addr)
78 return node;
79 }
80 return NULL;
81}
82
2ecb0924
AS
83/**
84 * tipc_node_create - create neighboring node
85 *
86 * Currently, this routine is called by neighbor discovery code, which holds
87 * net_lock for reading only. We must take node_create_lock to ensure a node
88 * isn't created twice if two different bearers discover the node at the same
89 * time. (It would be preferable to switch to holding net_lock in write mode,
90 * but this is a non-trivial change.)
91 */
6c00055a 92struct tipc_node *tipc_node_create(u32 addr)
b97bf3fd 93{
672d99e1 94 struct tipc_node *n_ptr, *temp_node;
b97bf3fd 95
2ecb0924
AS
96 spin_lock_bh(&node_create_lock);
97
5af54792
AS
98 n_ptr = tipc_node_find(addr);
99 if (n_ptr) {
100 spin_unlock_bh(&node_create_lock);
101 return n_ptr;
2ecb0924
AS
102 }
103
5af54792 104 n_ptr = kzalloc(sizeof(*n_ptr), GFP_ATOMIC);
a10bd924 105 if (!n_ptr) {
2ecb0924 106 spin_unlock_bh(&node_create_lock);
2cf8aa19 107 pr_warn("Node creation failed, no memory\n");
a10bd924
AS
108 return NULL;
109 }
110
a10bd924 111 n_ptr->addr = addr;
51a8e4de 112 spin_lock_init(&n_ptr->lock);
672d99e1
AS
113 INIT_HLIST_NODE(&n_ptr->hash);
114 INIT_LIST_HEAD(&n_ptr->list);
a10bd924 115 INIT_LIST_HEAD(&n_ptr->nsub);
8f92df6a 116
672d99e1
AS
117 hlist_add_head(&n_ptr->hash, &node_htable[tipc_hashfn(addr)]);
118
119 list_for_each_entry(temp_node, &tipc_node_list, list) {
120 if (n_ptr->addr < temp_node->addr)
121 break;
122 }
123 list_add_tail(&n_ptr->list, &temp_node->list);
b4b56102 124 n_ptr->block_setup = WAIT_PEER_DOWN;
fc0eea69 125 n_ptr->signature = INVALID_NODE_SIG;
672d99e1
AS
126
127 tipc_num_nodes++;
a10bd924 128
2ecb0924 129 spin_unlock_bh(&node_create_lock);
b97bf3fd
PL
130 return n_ptr;
131}
132
6c00055a 133void tipc_node_delete(struct tipc_node *n_ptr)
b97bf3fd 134{
672d99e1
AS
135 list_del(&n_ptr->list);
136 hlist_del(&n_ptr->hash);
b97bf3fd 137 kfree(n_ptr);
8f92df6a 138
672d99e1 139 tipc_num_nodes--;
b97bf3fd
PL
140}
141
b97bf3fd 142/**
4323add6 143 * tipc_node_link_up - handle addition of link
c4307285 144 *
b97bf3fd
PL
145 * Link becomes active (alone or shared) or standby, depending on its priority.
146 */
a18c4bc3 147void tipc_node_link_up(struct tipc_node *n_ptr, struct tipc_link *l_ptr)
b97bf3fd 148{
a18c4bc3 149 struct tipc_link **active = &n_ptr->active_links[0];
b97bf3fd 150
5392d646
AS
151 n_ptr->working_links++;
152
2cf8aa19
EH
153 pr_info("Established link <%s> on network plane %c\n",
154 l_ptr->name, l_ptr->b_ptr->net_plane);
c4307285 155
b97bf3fd 156 if (!active[0]) {
b97bf3fd
PL
157 active[0] = active[1] = l_ptr;
158 node_established_contact(n_ptr);
159 return;
160 }
c4307285 161 if (l_ptr->priority < active[0]->priority) {
2cf8aa19 162 pr_info("New link <%s> becomes standby\n", l_ptr->name);
b97bf3fd
PL
163 return;
164 }
4323add6 165 tipc_link_send_duplicate(active[0], l_ptr);
c4307285 166 if (l_ptr->priority == active[0]->priority) {
b97bf3fd
PL
167 active[0] = l_ptr;
168 return;
169 }
2cf8aa19 170 pr_info("Old link <%s> becomes standby\n", active[0]->name);
a10bd924 171 if (active[1] != active[0])
2cf8aa19 172 pr_info("Old link <%s> becomes standby\n", active[1]->name);
b97bf3fd
PL
173 active[0] = active[1] = l_ptr;
174}
175
176/**
177 * node_select_active_links - select active link
178 */
6c00055a 179static void node_select_active_links(struct tipc_node *n_ptr)
b97bf3fd 180{
a18c4bc3 181 struct tipc_link **active = &n_ptr->active_links[0];
b97bf3fd
PL
182 u32 i;
183 u32 highest_prio = 0;
184
c4307285 185 active[0] = active[1] = NULL;
b97bf3fd
PL
186
187 for (i = 0; i < MAX_BEARERS; i++) {
a18c4bc3 188 struct tipc_link *l_ptr = n_ptr->links[i];
b97bf3fd 189
4323add6 190 if (!l_ptr || !tipc_link_is_up(l_ptr) ||
b97bf3fd
PL
191 (l_ptr->priority < highest_prio))
192 continue;
193
194 if (l_ptr->priority > highest_prio) {
c4307285 195 highest_prio = l_ptr->priority;
b97bf3fd
PL
196 active[0] = active[1] = l_ptr;
197 } else {
198 active[1] = l_ptr;
199 }
200 }
201}
202
203/**
4323add6 204 * tipc_node_link_down - handle loss of link
b97bf3fd 205 */
a18c4bc3 206void tipc_node_link_down(struct tipc_node *n_ptr, struct tipc_link *l_ptr)
b97bf3fd 207{
a18c4bc3 208 struct tipc_link **active;
b97bf3fd 209
5392d646
AS
210 n_ptr->working_links--;
211
4323add6 212 if (!tipc_link_is_active(l_ptr)) {
2cf8aa19
EH
213 pr_info("Lost standby link <%s> on network plane %c\n",
214 l_ptr->name, l_ptr->b_ptr->net_plane);
b97bf3fd
PL
215 return;
216 }
2cf8aa19 217 pr_info("Lost link <%s> on network plane %c\n",
b97bf3fd
PL
218 l_ptr->name, l_ptr->b_ptr->net_plane);
219
220 active = &n_ptr->active_links[0];
221 if (active[0] == l_ptr)
222 active[0] = active[1];
223 if (active[1] == l_ptr)
224 active[1] = active[0];
225 if (active[0] == l_ptr)
226 node_select_active_links(n_ptr);
c4307285 227 if (tipc_node_is_up(n_ptr))
4323add6 228 tipc_link_changeover(l_ptr);
c4307285 229 else
b97bf3fd
PL
230 node_lost_contact(n_ptr);
231}
232
8f19afb2 233int tipc_node_active_links(struct tipc_node *n_ptr)
b97bf3fd 234{
76ae0d71 235 return n_ptr->active_links[0] != NULL;
b97bf3fd
PL
236}
237
8f19afb2 238int tipc_node_redundant_links(struct tipc_node *n_ptr)
b97bf3fd 239{
a02cec21 240 return n_ptr->working_links > 1;
b97bf3fd
PL
241}
242
6c00055a 243int tipc_node_is_up(struct tipc_node *n_ptr)
b97bf3fd 244{
8f19afb2 245 return tipc_node_active_links(n_ptr);
b97bf3fd
PL
246}
247
a18c4bc3 248void tipc_node_attach_link(struct tipc_node *n_ptr, struct tipc_link *l_ptr)
b97bf3fd 249{
37b9c08a
AS
250 n_ptr->links[l_ptr->b_ptr->identity] = l_ptr;
251 atomic_inc(&tipc_num_links);
252 n_ptr->link_cnt++;
b97bf3fd
PL
253}
254
a18c4bc3 255void tipc_node_detach_link(struct tipc_node *n_ptr, struct tipc_link *l_ptr)
b97bf3fd 256{
1fc54d8f 257 n_ptr->links[l_ptr->b_ptr->identity] = NULL;
d1bcb115 258 atomic_dec(&tipc_num_links);
b97bf3fd
PL
259 n_ptr->link_cnt--;
260}
261
6c00055a 262static void node_established_contact(struct tipc_node *n_ptr)
b97bf3fd 263{
51a8e4de 264 tipc_k_signal((Handler)tipc_named_node_up, n_ptr->addr);
c64f7a6a 265 n_ptr->bclink.oos_state = 0;
818f4da5
YX
266 n_ptr->bclink.acked = tipc_bclink_get_last_sent();
267 tipc_bclink_add_node(n_ptr->addr);
b97bf3fd
PL
268}
269
b4b56102 270static void node_name_purge_complete(unsigned long node_addr)
5a68d5ee
AS
271{
272 struct tipc_node *n_ptr;
273
274 read_lock_bh(&tipc_net_lock);
275 n_ptr = tipc_node_find(node_addr);
276 if (n_ptr) {
277 tipc_node_lock(n_ptr);
b4b56102 278 n_ptr->block_setup &= ~WAIT_NAMES_GONE;
5a68d5ee
AS
279 tipc_node_unlock(n_ptr);
280 }
281 read_unlock_bh(&tipc_net_lock);
282}
283
6c00055a 284static void node_lost_contact(struct tipc_node *n_ptr)
b97bf3fd 285{
b97bf3fd
PL
286 char addr_string[16];
287 u32 i;
288
2cf8aa19
EH
289 pr_info("Lost contact with %s\n",
290 tipc_addr_string_fill(addr_string, n_ptr->addr));
c5bd4d85
AS
291
292 /* Flush broadcast link info associated with lost node */
389dd9bc 293 if (n_ptr->bclink.recv_permitted) {
c5bd4d85
AS
294 while (n_ptr->bclink.deferred_head) {
295 struct sk_buff *buf = n_ptr->bclink.deferred_head;
296 n_ptr->bclink.deferred_head = buf->next;
5f6d9123 297 kfree_skb(buf);
c5bd4d85 298 }
7a54d4a9 299 n_ptr->bclink.deferred_size = 0;
c5bd4d85
AS
300
301 if (n_ptr->bclink.defragm) {
5f6d9123 302 kfree_skb(n_ptr->bclink.defragm);
c5bd4d85
AS
303 n_ptr->bclink.defragm = NULL;
304 }
305
cd3decdf 306 tipc_bclink_remove_node(n_ptr->addr);
36559591 307 tipc_bclink_acknowledge(n_ptr, INVALID_LINK_SEQ);
b97bf3fd 308
389dd9bc 309 n_ptr->bclink.recv_permitted = false;
c5bd4d85 310 }
b97bf3fd
PL
311
312 /* Abort link changeover */
313 for (i = 0; i < MAX_BEARERS; i++) {
a18c4bc3 314 struct tipc_link *l_ptr = n_ptr->links[i];
c4307285 315 if (!l_ptr)
b97bf3fd
PL
316 continue;
317 l_ptr->reset_checkpoint = l_ptr->next_in_no;
318 l_ptr->exp_msg_count = 0;
4323add6 319 tipc_link_reset_fragments(l_ptr);
b97bf3fd
PL
320 }
321
322 /* Notify subscribers */
f1379173 323 tipc_nodesub_notify(n_ptr);
5a68d5ee 324
b4b56102 325 /* Prevent re-contact with node until cleanup is done */
b4b56102
AS
326 n_ptr->block_setup = WAIT_PEER_DOWN | WAIT_NAMES_GONE;
327 tipc_k_signal((Handler)node_name_purge_complete, n_ptr->addr);
b97bf3fd
PL
328}
329
4323add6 330struct sk_buff *tipc_node_get_nodes(const void *req_tlv_area, int req_tlv_space)
b97bf3fd
PL
331{
332 u32 domain;
333 struct sk_buff *buf;
6c00055a 334 struct tipc_node *n_ptr;
c4307285 335 struct tipc_node_info node_info;
ea13847b 336 u32 payload_size;
b97bf3fd
PL
337
338 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_NET_ADDR))
4323add6 339 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
b97bf3fd 340
3e6c8cd5 341 domain = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
4323add6
PL
342 if (!tipc_addr_domain_valid(domain))
343 return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
344 " (network address)");
b97bf3fd 345
1aad72d6 346 read_lock_bh(&tipc_net_lock);
672d99e1 347 if (!tipc_num_nodes) {
1aad72d6 348 read_unlock_bh(&tipc_net_lock);
c4307285 349 return tipc_cfg_reply_none();
1aad72d6 350 }
b97bf3fd 351
08c80e9a 352 /* For now, get space for all other nodes */
672d99e1 353 payload_size = TLV_SPACE(sizeof(node_info)) * tipc_num_nodes;
1aad72d6
AS
354 if (payload_size > 32768u) {
355 read_unlock_bh(&tipc_net_lock);
ea13847b
AS
356 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
357 " (too many nodes)");
1aad72d6 358 }
ea13847b 359 buf = tipc_cfg_reply_alloc(payload_size);
1aad72d6
AS
360 if (!buf) {
361 read_unlock_bh(&tipc_net_lock);
b97bf3fd 362 return NULL;
1aad72d6 363 }
b97bf3fd
PL
364
365 /* Add TLVs for all nodes in scope */
672d99e1
AS
366 list_for_each_entry(n_ptr, &tipc_node_list, list) {
367 if (!tipc_in_scope(domain, n_ptr->addr))
b97bf3fd 368 continue;
c4307285
YH
369 node_info.addr = htonl(n_ptr->addr);
370 node_info.up = htonl(tipc_node_is_up(n_ptr));
371 tipc_cfg_append_tlv(buf, TIPC_TLV_NODE_INFO,
4323add6 372 &node_info, sizeof(node_info));
b97bf3fd
PL
373 }
374
1aad72d6 375 read_unlock_bh(&tipc_net_lock);
b97bf3fd
PL
376 return buf;
377}
378
4323add6 379struct sk_buff *tipc_node_get_links(const void *req_tlv_area, int req_tlv_space)
b97bf3fd
PL
380{
381 u32 domain;
382 struct sk_buff *buf;
6c00055a 383 struct tipc_node *n_ptr;
c4307285 384 struct tipc_link_info link_info;
ea13847b 385 u32 payload_size;
b97bf3fd
PL
386
387 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_NET_ADDR))
4323add6 388 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
b97bf3fd 389
3e6c8cd5 390 domain = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
4323add6
PL
391 if (!tipc_addr_domain_valid(domain))
392 return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
393 " (network address)");
b97bf3fd 394
b58343f9 395 if (!tipc_own_addr)
c4307285
YH
396 return tipc_cfg_reply_none();
397
1aad72d6
AS
398 read_lock_bh(&tipc_net_lock);
399
7a54d4a9 400 /* Get space for all unicast links + broadcast link */
9df3b7eb 401 payload_size = TLV_SPACE(sizeof(link_info)) *
d1bcb115 402 (atomic_read(&tipc_num_links) + 1);
1aad72d6
AS
403 if (payload_size > 32768u) {
404 read_unlock_bh(&tipc_net_lock);
ea13847b
AS
405 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
406 " (too many links)");
1aad72d6 407 }
ea13847b 408 buf = tipc_cfg_reply_alloc(payload_size);
1aad72d6
AS
409 if (!buf) {
410 read_unlock_bh(&tipc_net_lock);
b97bf3fd 411 return NULL;
1aad72d6 412 }
b97bf3fd
PL
413
414 /* Add TLV for broadcast link */
a3796f89 415 link_info.dest = htonl(tipc_cluster_mask(tipc_own_addr));
c4307285 416 link_info.up = htonl(1);
4b704d59 417 strlcpy(link_info.str, tipc_bclink_name, TIPC_MAX_LINK_NAME);
4323add6 418 tipc_cfg_append_tlv(buf, TIPC_TLV_LINK_INFO, &link_info, sizeof(link_info));
b97bf3fd
PL
419
420 /* Add TLVs for any other links in scope */
672d99e1 421 list_for_each_entry(n_ptr, &tipc_node_list, list) {
c4307285 422 u32 i;
b97bf3fd 423
672d99e1 424 if (!tipc_in_scope(domain, n_ptr->addr))
b97bf3fd 425 continue;
1aad72d6 426 tipc_node_lock(n_ptr);
c4307285
YH
427 for (i = 0; i < MAX_BEARERS; i++) {
428 if (!n_ptr->links[i])
429 continue;
430 link_info.dest = htonl(n_ptr->addr);
431 link_info.up = htonl(tipc_link_is_up(n_ptr->links[i]));
432 strcpy(link_info.str, n_ptr->links[i]->name);
433 tipc_cfg_append_tlv(buf, TIPC_TLV_LINK_INFO,
4323add6 434 &link_info, sizeof(link_info));
c4307285 435 }
1aad72d6 436 tipc_node_unlock(n_ptr);
b97bf3fd
PL
437 }
438
1aad72d6 439 read_unlock_bh(&tipc_net_lock);
b97bf3fd
PL
440 return buf;
441}