blob: 8ffbdb33b2cbfa6d1dbc1246a5f1fa784bce432e [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/node.c: TIPC node management routines
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Per Liden593a5f22006-01-11 19:14:19 +01004 * Copyright (c) 2000-2006, Ericsson AB
Allan Stephensea138472006-06-29 12:33:20 -07005 * Copyright (c) 2005-2006, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 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.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * 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
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
38#include "config.h"
39#include "node.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "port.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010041#include "name_distr.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010042
David S. Miller6c000552008-09-02 23:38:32 -070043static void node_lost_contact(struct tipc_node *n_ptr);
44static void node_established_contact(struct tipc_node *n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +010045
stephen hemminger31e3c3f2010-10-13 13:20:35 +000046/* sorted list of nodes within cluster */
47static struct tipc_node *tipc_nodes = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +010048
Allan Stephens2ecb0922008-05-21 14:53:00 -070049static DEFINE_SPINLOCK(node_create_lock);
50
Per Lidenb97bf3f2006-01-02 19:04:38 +010051u32 tipc_own_tag = 0;
52
Allan Stephens2ecb0922008-05-21 14:53:00 -070053/**
54 * tipc_node_create - create neighboring node
55 *
56 * Currently, this routine is called by neighbor discovery code, which holds
57 * net_lock for reading only. We must take node_create_lock to ensure a node
58 * isn't created twice if two different bearers discover the node at the same
59 * time. (It would be preferable to switch to holding net_lock in write mode,
60 * but this is a non-trivial change.)
61 */
62
David S. Miller6c000552008-09-02 23:38:32 -070063struct tipc_node *tipc_node_create(u32 addr)
Per Lidenb97bf3f2006-01-02 19:04:38 +010064{
65 struct cluster *c_ptr;
David S. Miller6c000552008-09-02 23:38:32 -070066 struct tipc_node *n_ptr;
67 struct tipc_node **curr_node;
Per Lidenb97bf3f2006-01-02 19:04:38 +010068
Allan Stephens2ecb0922008-05-21 14:53:00 -070069 spin_lock_bh(&node_create_lock);
70
71 for (n_ptr = tipc_nodes; n_ptr; n_ptr = n_ptr->next) {
72 if (addr < n_ptr->addr)
73 break;
74 if (addr == n_ptr->addr) {
75 spin_unlock_bh(&node_create_lock);
76 return n_ptr;
77 }
78 }
79
Arnaldo Carvalho de Melo2710b572006-11-21 01:22:12 -020080 n_ptr = kzalloc(sizeof(*n_ptr),GFP_ATOMIC);
Allan Stephensa10bd922006-06-25 23:52:17 -070081 if (!n_ptr) {
Allan Stephens2ecb0922008-05-21 14:53:00 -070082 spin_unlock_bh(&node_create_lock);
Allan Stephensa10bd922006-06-25 23:52:17 -070083 warn("Node creation failed, no memory\n");
84 return NULL;
85 }
Per Lidenb97bf3f2006-01-02 19:04:38 +010086
Allan Stephensa10bd922006-06-25 23:52:17 -070087 c_ptr = tipc_cltr_find(addr);
88 if (!c_ptr) {
89 c_ptr = tipc_cltr_create(addr);
90 }
91 if (!c_ptr) {
Allan Stephens2ecb0922008-05-21 14:53:00 -070092 spin_unlock_bh(&node_create_lock);
Allan Stephensa10bd922006-06-25 23:52:17 -070093 kfree(n_ptr);
94 return NULL;
95 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090096
Allan Stephensa10bd922006-06-25 23:52:17 -070097 n_ptr->addr = addr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090098 spin_lock_init(&n_ptr->lock);
Allan Stephensa10bd922006-06-25 23:52:17 -070099 INIT_LIST_HEAD(&n_ptr->nsub);
100 n_ptr->owner = c_ptr;
101 tipc_cltr_attach_node(c_ptr, n_ptr);
102 n_ptr->last_router = -1;
103
104 /* Insert node into ordered list */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900105 for (curr_node = &tipc_nodes; *curr_node;
Allan Stephensa10bd922006-06-25 23:52:17 -0700106 curr_node = &(*curr_node)->next) {
107 if (addr < (*curr_node)->addr) {
108 n_ptr->next = *curr_node;
109 break;
110 }
111 }
112 (*curr_node) = n_ptr;
Allan Stephens2ecb0922008-05-21 14:53:00 -0700113 spin_unlock_bh(&node_create_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100114 return n_ptr;
115}
116
David S. Miller6c000552008-09-02 23:38:32 -0700117void tipc_node_delete(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100118{
119 if (!n_ptr)
120 return;
121
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122 dbg("node %x deleted\n", n_ptr->addr);
123 kfree(n_ptr);
124}
125
126
127/**
Per Liden4323add2006-01-18 00:38:21 +0100128 * tipc_node_link_up - handle addition of link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900129 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100130 * Link becomes active (alone or shared) or standby, depending on its priority.
131 */
132
David S. Miller6c000552008-09-02 23:38:32 -0700133void tipc_node_link_up(struct tipc_node *n_ptr, struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100134{
135 struct link **active = &n_ptr->active_links[0];
136
Allan Stephens5392d642006-06-25 23:52:50 -0700137 n_ptr->working_links++;
138
Per Lidenb97bf3f2006-01-02 19:04:38 +0100139 info("Established link <%s> on network plane %c\n",
140 l_ptr->name, l_ptr->b_ptr->net_plane);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900141
Per Lidenb97bf3f2006-01-02 19:04:38 +0100142 if (!active[0]) {
143 dbg(" link %x into %x/%x\n", l_ptr, &active[0], &active[1]);
144 active[0] = active[1] = l_ptr;
145 node_established_contact(n_ptr);
146 return;
147 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900148 if (l_ptr->priority < active[0]->priority) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700149 info("New link <%s> becomes standby\n", l_ptr->name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100150 return;
151 }
Per Liden4323add2006-01-18 00:38:21 +0100152 tipc_link_send_duplicate(active[0], l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900153 if (l_ptr->priority == active[0]->priority) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100154 active[0] = l_ptr;
155 return;
156 }
Allan Stephensa10bd922006-06-25 23:52:17 -0700157 info("Old link <%s> becomes standby\n", active[0]->name);
158 if (active[1] != active[0])
159 info("Old link <%s> becomes standby\n", active[1]->name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100160 active[0] = active[1] = l_ptr;
161}
162
163/**
164 * node_select_active_links - select active link
165 */
166
David S. Miller6c000552008-09-02 23:38:32 -0700167static void node_select_active_links(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100168{
169 struct link **active = &n_ptr->active_links[0];
170 u32 i;
171 u32 highest_prio = 0;
172
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900173 active[0] = active[1] = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100174
175 for (i = 0; i < MAX_BEARERS; i++) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900176 struct link *l_ptr = n_ptr->links[i];
Per Lidenb97bf3f2006-01-02 19:04:38 +0100177
Per Liden4323add2006-01-18 00:38:21 +0100178 if (!l_ptr || !tipc_link_is_up(l_ptr) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +0100179 (l_ptr->priority < highest_prio))
180 continue;
181
182 if (l_ptr->priority > highest_prio) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900183 highest_prio = l_ptr->priority;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100184 active[0] = active[1] = l_ptr;
185 } else {
186 active[1] = l_ptr;
187 }
188 }
189}
190
191/**
Per Liden4323add2006-01-18 00:38:21 +0100192 * tipc_node_link_down - handle loss of link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100193 */
194
David S. Miller6c000552008-09-02 23:38:32 -0700195void tipc_node_link_down(struct tipc_node *n_ptr, struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100196{
197 struct link **active;
198
Allan Stephens5392d642006-06-25 23:52:50 -0700199 n_ptr->working_links--;
200
Per Liden4323add2006-01-18 00:38:21 +0100201 if (!tipc_link_is_active(l_ptr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100202 info("Lost standby link <%s> on network plane %c\n",
203 l_ptr->name, l_ptr->b_ptr->net_plane);
204 return;
205 }
206 info("Lost link <%s> on network plane %c\n",
207 l_ptr->name, l_ptr->b_ptr->net_plane);
208
209 active = &n_ptr->active_links[0];
210 if (active[0] == l_ptr)
211 active[0] = active[1];
212 if (active[1] == l_ptr)
213 active[1] = active[0];
214 if (active[0] == l_ptr)
215 node_select_active_links(n_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900216 if (tipc_node_is_up(n_ptr))
Per Liden4323add2006-01-18 00:38:21 +0100217 tipc_link_changeover(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900218 else
Per Lidenb97bf3f2006-01-02 19:04:38 +0100219 node_lost_contact(n_ptr);
220}
221
David S. Miller6c000552008-09-02 23:38:32 -0700222int tipc_node_has_active_links(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100223{
Allan Stephens76ae0d72010-08-17 11:00:12 +0000224 return n_ptr->active_links[0] != NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100225}
226
David S. Miller6c000552008-09-02 23:38:32 -0700227int tipc_node_has_redundant_links(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100228{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000229 return n_ptr->working_links > 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100230}
231
David S. Miller6c000552008-09-02 23:38:32 -0700232static int tipc_node_has_active_routes(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100233{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000234 return n_ptr && (n_ptr->last_router >= 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100235}
236
David S. Miller6c000552008-09-02 23:38:32 -0700237int tipc_node_is_up(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100238{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000239 return tipc_node_has_active_links(n_ptr) || tipc_node_has_active_routes(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100240}
241
David S. Miller6c000552008-09-02 23:38:32 -0700242struct tipc_node *tipc_node_attach_link(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100243{
David S. Miller6c000552008-09-02 23:38:32 -0700244 struct tipc_node *n_ptr = tipc_node_find(l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100245
246 if (!n_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100247 n_ptr = tipc_node_create(l_ptr->addr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900248 if (n_ptr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100249 u32 bearer_id = l_ptr->b_ptr->identity;
250 char addr_string[16];
251
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900252 if (n_ptr->link_cnt >= 2) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900253 err("Attempt to create third link to %s\n",
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000254 tipc_addr_string_fill(addr_string, n_ptr->addr));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900255 return NULL;
256 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100257
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900258 if (!n_ptr->links[bearer_id]) {
259 n_ptr->links[bearer_id] = l_ptr;
Allan Stephens51f98a82010-12-31 18:59:16 +0000260 tipc_net.links++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900261 n_ptr->link_cnt++;
262 return n_ptr;
263 }
Frans Popa570f092010-03-24 07:57:29 +0000264 err("Attempt to establish second link on <%s> to %s\n",
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900265 l_ptr->b_ptr->publ.name,
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000266 tipc_addr_string_fill(addr_string, l_ptr->addr));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900267 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800268 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100269}
270
David S. Miller6c000552008-09-02 23:38:32 -0700271void tipc_node_detach_link(struct tipc_node *n_ptr, struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100272{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800273 n_ptr->links[l_ptr->b_ptr->identity] = NULL;
Allan Stephens51f98a82010-12-31 18:59:16 +0000274 tipc_net.links--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100275 n_ptr->link_cnt--;
276}
277
278/*
279 * Routing table management - five cases to handle:
280 *
281 * 1: A link towards a zone/cluster external node comes up.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900282 * => Send a multicast message updating routing tables of all
283 * system nodes within own cluster that the new destination
284 * can be reached via this node.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100285 * (node.establishedContact()=>cluster.multicastNewRoute())
286 *
287 * 2: A link towards a slave node comes up.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900288 * => Send a multicast message updating routing tables of all
289 * system nodes within own cluster that the new destination
290 * can be reached via this node.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100291 * (node.establishedContact()=>cluster.multicastNewRoute())
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900292 * => Send a message to the slave node about existence
Per Lidenb97bf3f2006-01-02 19:04:38 +0100293 * of all system nodes within cluster:
294 * (node.establishedContact()=>cluster.sendLocalRoutes())
295 *
296 * 3: A new cluster local system node becomes available.
297 * => Send message(s) to this particular node containing
298 * information about all cluster external and slave
299 * nodes which can be reached via this node.
300 * (node.establishedContact()==>network.sendExternalRoutes())
301 * (node.establishedContact()==>network.sendSlaveRoutes())
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900302 * => Send messages to all directly connected slave nodes
Per Lidenb97bf3f2006-01-02 19:04:38 +0100303 * containing information about the existence of the new node
304 * (node.establishedContact()=>cluster.multicastNewRoute())
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900305 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100306 * 4: The link towards a zone/cluster external node or slave
307 * node goes down.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900308 * => Send a multcast message updating routing tables of all
Per Lidenb97bf3f2006-01-02 19:04:38 +0100309 * nodes within cluster that the new destination can not any
310 * longer be reached via this node.
311 * (node.lostAllLinks()=>cluster.bcastLostRoute())
312 *
313 * 5: A cluster local system node becomes unavailable.
314 * => Remove all references to this node from the local
315 * routing tables. Note: This is a completely node
316 * local operation.
317 * (node.lostAllLinks()=>network.removeAsRouter())
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900318 * => Send messages to all directly connected slave nodes
Per Lidenb97bf3f2006-01-02 19:04:38 +0100319 * containing information about loss of the node
320 * (node.establishedContact()=>cluster.multicastLostRoute())
321 *
322 */
323
David S. Miller6c000552008-09-02 23:38:32 -0700324static void node_established_contact(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100325{
326 struct cluster *c_ptr;
327
328 dbg("node_established_contact:-> %x\n", n_ptr->addr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900329 if (!tipc_node_has_active_routes(n_ptr) && in_own_cluster(n_ptr->addr)) {
Per Liden4323add2006-01-18 00:38:21 +0100330 tipc_k_signal((Handler)tipc_named_node_up, n_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100331 }
332
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900333 /* Syncronize broadcast acks */
334 n_ptr->bclink.acked = tipc_bclink_get_last_sent();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100335
Per Lidenb97bf3f2006-01-02 19:04:38 +0100336 if (!in_own_cluster(n_ptr->addr)) {
337 /* Usage case 1 (see above) */
Per Liden4323add2006-01-18 00:38:21 +0100338 c_ptr = tipc_cltr_find(tipc_own_addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100339 if (!c_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100340 c_ptr = tipc_cltr_create(tipc_own_addr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900341 if (c_ptr)
342 tipc_cltr_bcast_new_route(c_ptr, n_ptr->addr, 1,
Per Liden4323add2006-01-18 00:38:21 +0100343 tipc_max_nodes);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100344 return;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900345 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100346
347 c_ptr = n_ptr->owner;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100348 if (n_ptr->bclink.supported) {
Per Liden4323add2006-01-18 00:38:21 +0100349 tipc_nmap_add(&tipc_cltr_bcast_nodes, n_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100350 if (n_ptr->addr < tipc_own_addr)
351 tipc_own_tag++;
352 }
353
354 /* Case 3 (see above) */
Per Liden4323add2006-01-18 00:38:21 +0100355 tipc_net_send_external_routes(n_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100356}
357
Allan Stephens5a68d5e2010-08-17 11:00:16 +0000358static void node_cleanup_finished(unsigned long node_addr)
359{
360 struct tipc_node *n_ptr;
361
362 read_lock_bh(&tipc_net_lock);
363 n_ptr = tipc_node_find(node_addr);
364 if (n_ptr) {
365 tipc_node_lock(n_ptr);
366 n_ptr->cleanup_required = 0;
367 tipc_node_unlock(n_ptr);
368 }
369 read_unlock_bh(&tipc_net_lock);
370}
371
David S. Miller6c000552008-09-02 23:38:32 -0700372static void node_lost_contact(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100373{
374 struct cluster *c_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700375 struct tipc_node_subscr *ns, *tns;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100376 char addr_string[16];
377 u32 i;
378
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900379 /* Clean up broadcast reception remains */
380 n_ptr->bclink.gap_after = n_ptr->bclink.gap_to = 0;
381 while (n_ptr->bclink.deferred_head) {
382 struct sk_buff* buf = n_ptr->bclink.deferred_head;
383 n_ptr->bclink.deferred_head = buf->next;
384 buf_discard(buf);
385 }
386 if (n_ptr->bclink.defragm) {
387 buf_discard(n_ptr->bclink.defragm);
388 n_ptr->bclink.defragm = NULL;
389 }
390 if (in_own_cluster(n_ptr->addr) && n_ptr->bclink.supported) {
391 tipc_bclink_acknowledge(n_ptr, mod(n_ptr->bclink.acked + 10000));
392 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100393
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900394 /* Update routing tables */
Allan Stephens08c80e92010-12-31 18:59:17 +0000395 if (!in_own_cluster(n_ptr->addr)) {
396 /* Case 4 (see above) */
397 c_ptr = tipc_cltr_find(tipc_own_addr);
398 tipc_cltr_bcast_lost_route(c_ptr, n_ptr->addr, 1,
399 tipc_max_nodes);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100400 } else {
Allan Stephens08c80e92010-12-31 18:59:17 +0000401 /* Case 5 (see above) */
402 c_ptr = tipc_cltr_find(n_ptr->addr);
403 if (n_ptr->bclink.supported) {
404 tipc_nmap_remove(&tipc_cltr_bcast_nodes, n_ptr->addr);
405 if (n_ptr->addr < tipc_own_addr)
406 tipc_own_tag--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100407 }
Allan Stephens08c80e92010-12-31 18:59:17 +0000408 tipc_net_remove_as_router(n_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100409 }
Per Liden4323add2006-01-18 00:38:21 +0100410 if (tipc_node_has_active_routes(n_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100411 return;
412
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900413 info("Lost contact with %s\n",
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000414 tipc_addr_string_fill(addr_string, n_ptr->addr));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100415
416 /* Abort link changeover */
417 for (i = 0; i < MAX_BEARERS; i++) {
418 struct link *l_ptr = n_ptr->links[i];
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900419 if (!l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100420 continue;
421 l_ptr->reset_checkpoint = l_ptr->next_in_no;
422 l_ptr->exp_msg_count = 0;
Per Liden4323add2006-01-18 00:38:21 +0100423 tipc_link_reset_fragments(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100424 }
425
426 /* Notify subscribers */
427 list_for_each_entry_safe(ns, tns, &n_ptr->nsub, nodesub_list) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900428 ns->node = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100429 list_del_init(&ns->nodesub_list);
Per Liden4323add2006-01-18 00:38:21 +0100430 tipc_k_signal((Handler)ns->handle_node_down,
431 (unsigned long)ns->usr_handle);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100432 }
Allan Stephens5a68d5e2010-08-17 11:00:16 +0000433
434 /* Prevent re-contact with node until all cleanup is done */
435
436 n_ptr->cleanup_required = 1;
437 tipc_k_signal((Handler)node_cleanup_finished, n_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100438}
439
440/**
Per Liden4323add2006-01-18 00:38:21 +0100441 * tipc_node_select_next_hop - find the next-hop node for a message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900442 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100443 * Called by when cluster local lookup has failed.
444 */
445
David S. Miller6c000552008-09-02 23:38:32 -0700446struct tipc_node *tipc_node_select_next_hop(u32 addr, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100447{
David S. Miller6c000552008-09-02 23:38:32 -0700448 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100449 u32 router_addr;
450
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900451 if (!tipc_addr_domain_valid(addr))
452 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100453
454 /* Look for direct link to destination processsor */
Per Liden4323add2006-01-18 00:38:21 +0100455 n_ptr = tipc_node_find(addr);
456 if (n_ptr && tipc_node_has_active_links(n_ptr))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900457 return n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100458
459 /* Cluster local system nodes *must* have direct links */
Allan Stephens08c80e92010-12-31 18:59:17 +0000460 if (in_own_cluster(addr))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800461 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100462
463 /* Look for cluster local router with direct link to node */
Per Liden4323add2006-01-18 00:38:21 +0100464 router_addr = tipc_node_select_router(n_ptr, selector);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900465 if (router_addr)
466 return tipc_node_select(router_addr, selector);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100467
Per Lidenb97bf3f2006-01-02 19:04:38 +0100468 /* Inter zone/cluster -- find any direct link to remote cluster */
469 addr = tipc_addr(tipc_zone(addr), tipc_cluster(addr), 0);
Per Liden4323add2006-01-18 00:38:21 +0100470 n_ptr = tipc_net_select_remote_node(addr, selector);
471 if (n_ptr && tipc_node_has_active_links(n_ptr))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900472 return n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100473
474 /* Last resort -- look for any router to anywhere in remote zone */
Per Liden4323add2006-01-18 00:38:21 +0100475 router_addr = tipc_net_select_router(addr, selector);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900476 if (router_addr)
477 return tipc_node_select(router_addr, selector);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100478
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900479 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100480}
481
482/**
Per Liden4323add2006-01-18 00:38:21 +0100483 * tipc_node_select_router - select router to reach specified node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900484 *
485 * Uses a deterministic and fair algorithm for selecting router node.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100486 */
487
David S. Miller6c000552008-09-02 23:38:32 -0700488u32 tipc_node_select_router(struct tipc_node *n_ptr, u32 ref)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100489{
490 u32 ulim;
491 u32 mask;
492 u32 start;
493 u32 r;
494
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900495 if (!n_ptr)
496 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100497
498 if (n_ptr->last_router < 0)
499 return 0;
500 ulim = ((n_ptr->last_router + 1) * 32) - 1;
501
502 /* Start entry must be random */
503 mask = tipc_max_nodes;
504 while (mask > ulim)
505 mask >>= 1;
506 start = ref & mask;
507 r = start;
508
509 /* Lookup upwards with wrap-around */
510 do {
511 if (((n_ptr->routers[r / 32]) >> (r % 32)) & 1)
512 break;
513 } while (++r <= ulim);
514 if (r > ulim) {
515 r = 1;
516 do {
517 if (((n_ptr->routers[r / 32]) >> (r % 32)) & 1)
518 break;
519 } while (++r < start);
520 assert(r != start);
521 }
522 assert(r && (r <= ulim));
523 return tipc_addr(own_zone(), own_cluster(), r);
524}
525
David S. Miller6c000552008-09-02 23:38:32 -0700526void tipc_node_add_router(struct tipc_node *n_ptr, u32 router)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100527{
528 u32 r_num = tipc_node(router);
529
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900530 n_ptr->routers[r_num / 32] =
Per Lidenb97bf3f2006-01-02 19:04:38 +0100531 ((1 << (r_num % 32)) | n_ptr->routers[r_num / 32]);
532 n_ptr->last_router = tipc_max_nodes / 32;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900533 while ((--n_ptr->last_router >= 0) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100534 !n_ptr->routers[n_ptr->last_router]);
535}
536
David S. Miller6c000552008-09-02 23:38:32 -0700537void tipc_node_remove_router(struct tipc_node *n_ptr, u32 router)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100538{
539 u32 r_num = tipc_node(router);
540
541 if (n_ptr->last_router < 0)
542 return; /* No routes */
543
544 n_ptr->routers[r_num / 32] =
545 ((~(1 << (r_num % 32))) & (n_ptr->routers[r_num / 32]));
546 n_ptr->last_router = tipc_max_nodes / 32;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900547 while ((--n_ptr->last_router >= 0) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100548 !n_ptr->routers[n_ptr->last_router]);
549
Per Liden4323add2006-01-18 00:38:21 +0100550 if (!tipc_node_is_up(n_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100551 node_lost_contact(n_ptr);
552}
553
Per Liden4323add2006-01-18 00:38:21 +0100554struct sk_buff *tipc_node_get_nodes(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100555{
556 u32 domain;
557 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -0700558 struct tipc_node *n_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900559 struct tipc_node_info node_info;
Allan Stephensea138472006-06-29 12:33:20 -0700560 u32 payload_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100561
562 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_NET_ADDR))
Per Liden4323add2006-01-18 00:38:21 +0100563 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100564
Al Viro3e6c8cd2006-11-08 00:19:09 -0800565 domain = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
Per Liden4323add2006-01-18 00:38:21 +0100566 if (!tipc_addr_domain_valid(domain))
567 return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
568 " (network address)");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100569
Allan Stephens1aad72d2008-07-14 22:44:58 -0700570 read_lock_bh(&tipc_net_lock);
571 if (!tipc_nodes) {
572 read_unlock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900573 return tipc_cfg_reply_none();
Allan Stephens1aad72d2008-07-14 22:44:58 -0700574 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100575
Allan Stephens08c80e92010-12-31 18:59:17 +0000576 /* For now, get space for all other nodes */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100577
Allan Stephensea138472006-06-29 12:33:20 -0700578 payload_size = TLV_SPACE(sizeof(node_info)) * (tipc_max_nodes - 1);
Allan Stephens1aad72d2008-07-14 22:44:58 -0700579 if (payload_size > 32768u) {
580 read_unlock_bh(&tipc_net_lock);
Allan Stephensea138472006-06-29 12:33:20 -0700581 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
582 " (too many nodes)");
Allan Stephens1aad72d2008-07-14 22:44:58 -0700583 }
Allan Stephensea138472006-06-29 12:33:20 -0700584 buf = tipc_cfg_reply_alloc(payload_size);
Allan Stephens1aad72d2008-07-14 22:44:58 -0700585 if (!buf) {
586 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100587 return NULL;
Allan Stephens1aad72d2008-07-14 22:44:58 -0700588 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100589
590 /* Add TLVs for all nodes in scope */
591
Per Liden4323add2006-01-18 00:38:21 +0100592 for (n_ptr = tipc_nodes; n_ptr; n_ptr = n_ptr->next) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000593 if (!tipc_in_scope(domain, n_ptr->addr))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100594 continue;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900595 node_info.addr = htonl(n_ptr->addr);
596 node_info.up = htonl(tipc_node_is_up(n_ptr));
597 tipc_cfg_append_tlv(buf, TIPC_TLV_NODE_INFO,
Per Liden4323add2006-01-18 00:38:21 +0100598 &node_info, sizeof(node_info));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100599 }
600
Allan Stephens1aad72d2008-07-14 22:44:58 -0700601 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100602 return buf;
603}
604
Per Liden4323add2006-01-18 00:38:21 +0100605struct sk_buff *tipc_node_get_links(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100606{
607 u32 domain;
608 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -0700609 struct tipc_node *n_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900610 struct tipc_link_info link_info;
Allan Stephensea138472006-06-29 12:33:20 -0700611 u32 payload_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100612
613 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_NET_ADDR))
Per Liden4323add2006-01-18 00:38:21 +0100614 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100615
Al Viro3e6c8cd2006-11-08 00:19:09 -0800616 domain = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
Per Liden4323add2006-01-18 00:38:21 +0100617 if (!tipc_addr_domain_valid(domain))
618 return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
619 " (network address)");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100620
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900621 if (tipc_mode != TIPC_NET_MODE)
622 return tipc_cfg_reply_none();
623
Allan Stephens1aad72d2008-07-14 22:44:58 -0700624 read_lock_bh(&tipc_net_lock);
625
Allan Stephensea138472006-06-29 12:33:20 -0700626 /* Get space for all unicast links + multicast link */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100627
Allan Stephens51f98a82010-12-31 18:59:16 +0000628 payload_size = TLV_SPACE(sizeof(link_info)) * (tipc_net.links + 1);
Allan Stephens1aad72d2008-07-14 22:44:58 -0700629 if (payload_size > 32768u) {
630 read_unlock_bh(&tipc_net_lock);
Allan Stephensea138472006-06-29 12:33:20 -0700631 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
632 " (too many links)");
Allan Stephens1aad72d2008-07-14 22:44:58 -0700633 }
Allan Stephensea138472006-06-29 12:33:20 -0700634 buf = tipc_cfg_reply_alloc(payload_size);
Allan Stephens1aad72d2008-07-14 22:44:58 -0700635 if (!buf) {
636 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100637 return NULL;
Allan Stephens1aad72d2008-07-14 22:44:58 -0700638 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100639
640 /* Add TLV for broadcast link */
641
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900642 link_info.dest = htonl(tipc_own_addr & 0xfffff00);
643 link_info.up = htonl(1);
Stephen Hemminger4b704d52009-03-18 19:11:29 -0700644 strlcpy(link_info.str, tipc_bclink_name, TIPC_MAX_LINK_NAME);
Per Liden4323add2006-01-18 00:38:21 +0100645 tipc_cfg_append_tlv(buf, TIPC_TLV_LINK_INFO, &link_info, sizeof(link_info));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100646
647 /* Add TLVs for any other links in scope */
648
Per Liden4323add2006-01-18 00:38:21 +0100649 for (n_ptr = tipc_nodes; n_ptr; n_ptr = n_ptr->next) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900650 u32 i;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100651
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000652 if (!tipc_in_scope(domain, n_ptr->addr))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100653 continue;
Allan Stephens1aad72d2008-07-14 22:44:58 -0700654 tipc_node_lock(n_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900655 for (i = 0; i < MAX_BEARERS; i++) {
656 if (!n_ptr->links[i])
657 continue;
658 link_info.dest = htonl(n_ptr->addr);
659 link_info.up = htonl(tipc_link_is_up(n_ptr->links[i]));
660 strcpy(link_info.str, n_ptr->links[i]->name);
661 tipc_cfg_append_tlv(buf, TIPC_TLV_LINK_INFO,
Per Liden4323add2006-01-18 00:38:21 +0100662 &link_info, sizeof(link_info));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900663 }
Allan Stephens1aad72d2008-07-14 22:44:58 -0700664 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100665 }
666
Allan Stephens1aad72d2008-07-14 22:44:58 -0700667 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100668 return buf;
669}