blob: 58e189bf5c96115c4b4cca20741d372374dd0906 [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{
David S. Miller6c000552008-09-02 23:38:32 -070065 struct tipc_node *n_ptr;
66 struct tipc_node **curr_node;
Allan Stephens8f92df62010-12-31 18:59:19 +000067 u32 n_num;
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 n_ptr->addr = addr;
Allan Stephens51a8e4d2010-12-31 18:59:18 +000088 spin_lock_init(&n_ptr->lock);
Allan Stephensa10bd922006-06-25 23:52:17 -070089 INIT_LIST_HEAD(&n_ptr->nsub);
Allan Stephens8f92df62010-12-31 18:59:19 +000090
91 n_num = tipc_node(addr);
92 tipc_net.nodes[n_num] = n_ptr;
93 if (n_num > tipc_net.highest_node)
94 tipc_net.highest_node = n_num;
Allan Stephensa10bd922006-06-25 23:52:17 -070095
96 /* Insert node into ordered list */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090097 for (curr_node = &tipc_nodes; *curr_node;
Allan Stephensa10bd922006-06-25 23:52:17 -070098 curr_node = &(*curr_node)->next) {
99 if (addr < (*curr_node)->addr) {
100 n_ptr->next = *curr_node;
101 break;
102 }
103 }
104 (*curr_node) = n_ptr;
Allan Stephens2ecb0922008-05-21 14:53:00 -0700105 spin_unlock_bh(&node_create_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100106 return n_ptr;
107}
108
David S. Miller6c000552008-09-02 23:38:32 -0700109void tipc_node_delete(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100110{
Allan Stephens8f92df62010-12-31 18:59:19 +0000111 u32 n_num;
112
Per Lidenb97bf3f2006-01-02 19:04:38 +0100113 if (!n_ptr)
114 return;
115
Per Lidenb97bf3f2006-01-02 19:04:38 +0100116 dbg("node %x deleted\n", n_ptr->addr);
Allan Stephens8f92df62010-12-31 18:59:19 +0000117 n_num = tipc_node(n_ptr->addr);
118 tipc_net.nodes[n_num] = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100119 kfree(n_ptr);
Allan Stephens8f92df62010-12-31 18:59:19 +0000120
121 while (!tipc_net.nodes[tipc_net.highest_node])
122 if (--tipc_net.highest_node == 0)
123 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100124}
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 -0700232int tipc_node_is_up(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100233{
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000234 return tipc_node_has_active_links(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100235}
236
David S. Miller6c000552008-09-02 23:38:32 -0700237struct tipc_node *tipc_node_attach_link(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100238{
David S. Miller6c000552008-09-02 23:38:32 -0700239 struct tipc_node *n_ptr = tipc_node_find(l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100240
241 if (!n_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100242 n_ptr = tipc_node_create(l_ptr->addr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900243 if (n_ptr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100244 u32 bearer_id = l_ptr->b_ptr->identity;
245 char addr_string[16];
246
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900247 if (n_ptr->link_cnt >= 2) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900248 err("Attempt to create third link to %s\n",
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000249 tipc_addr_string_fill(addr_string, n_ptr->addr));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900250 return NULL;
251 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100252
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900253 if (!n_ptr->links[bearer_id]) {
254 n_ptr->links[bearer_id] = l_ptr;
Allan Stephens51f98a82010-12-31 18:59:16 +0000255 tipc_net.links++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900256 n_ptr->link_cnt++;
257 return n_ptr;
258 }
Frans Popa570f092010-03-24 07:57:29 +0000259 err("Attempt to establish second link on <%s> to %s\n",
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900260 l_ptr->b_ptr->publ.name,
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000261 tipc_addr_string_fill(addr_string, l_ptr->addr));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900262 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800263 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100264}
265
David S. Miller6c000552008-09-02 23:38:32 -0700266void tipc_node_detach_link(struct tipc_node *n_ptr, struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100267{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800268 n_ptr->links[l_ptr->b_ptr->identity] = NULL;
Allan Stephens51f98a82010-12-31 18:59:16 +0000269 tipc_net.links--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100270 n_ptr->link_cnt--;
271}
272
273/*
274 * Routing table management - five cases to handle:
275 *
276 * 1: A link towards a zone/cluster external node comes up.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900277 * => Send a multicast message updating routing tables of all
278 * system nodes within own cluster that the new destination
279 * can be reached via this node.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100280 * (node.establishedContact()=>cluster.multicastNewRoute())
281 *
282 * 2: A link towards a slave node comes up.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900283 * => Send a multicast message updating routing tables of all
284 * system nodes within own cluster that the new destination
285 * can be reached via this node.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100286 * (node.establishedContact()=>cluster.multicastNewRoute())
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900287 * => Send a message to the slave node about existence
Per Lidenb97bf3f2006-01-02 19:04:38 +0100288 * of all system nodes within cluster:
289 * (node.establishedContact()=>cluster.sendLocalRoutes())
290 *
291 * 3: A new cluster local system node becomes available.
292 * => Send message(s) to this particular node containing
293 * information about all cluster external and slave
294 * nodes which can be reached via this node.
295 * (node.establishedContact()==>network.sendExternalRoutes())
296 * (node.establishedContact()==>network.sendSlaveRoutes())
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900297 * => Send messages to all directly connected slave nodes
Per Lidenb97bf3f2006-01-02 19:04:38 +0100298 * containing information about the existence of the new node
299 * (node.establishedContact()=>cluster.multicastNewRoute())
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900300 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100301 * 4: The link towards a zone/cluster external node or slave
302 * node goes down.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900303 * => Send a multcast message updating routing tables of all
Per Lidenb97bf3f2006-01-02 19:04:38 +0100304 * nodes within cluster that the new destination can not any
305 * longer be reached via this node.
306 * (node.lostAllLinks()=>cluster.bcastLostRoute())
307 *
308 * 5: A cluster local system node becomes unavailable.
309 * => Remove all references to this node from the local
310 * routing tables. Note: This is a completely node
311 * local operation.
312 * (node.lostAllLinks()=>network.removeAsRouter())
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900313 * => Send messages to all directly connected slave nodes
Per Lidenb97bf3f2006-01-02 19:04:38 +0100314 * containing information about loss of the node
315 * (node.establishedContact()=>cluster.multicastLostRoute())
316 *
317 */
318
David S. Miller6c000552008-09-02 23:38:32 -0700319static void node_established_contact(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100320{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100321 dbg("node_established_contact:-> %x\n", n_ptr->addr);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000322 tipc_k_signal((Handler)tipc_named_node_up, n_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100323
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900324 /* Syncronize broadcast acks */
325 n_ptr->bclink.acked = tipc_bclink_get_last_sent();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100326
Per Lidenb97bf3f2006-01-02 19:04:38 +0100327 if (n_ptr->bclink.supported) {
Allan Stephens8f92df62010-12-31 18:59:19 +0000328 tipc_nmap_add(&tipc_bcast_nmap, n_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100329 if (n_ptr->addr < tipc_own_addr)
330 tipc_own_tag++;
331 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100332}
333
Allan Stephens5a68d5e2010-08-17 11:00:16 +0000334static void node_cleanup_finished(unsigned long node_addr)
335{
336 struct tipc_node *n_ptr;
337
338 read_lock_bh(&tipc_net_lock);
339 n_ptr = tipc_node_find(node_addr);
340 if (n_ptr) {
341 tipc_node_lock(n_ptr);
342 n_ptr->cleanup_required = 0;
343 tipc_node_unlock(n_ptr);
344 }
345 read_unlock_bh(&tipc_net_lock);
346}
347
David S. Miller6c000552008-09-02 23:38:32 -0700348static void node_lost_contact(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100349{
David S. Miller6c000552008-09-02 23:38:32 -0700350 struct tipc_node_subscr *ns, *tns;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100351 char addr_string[16];
352 u32 i;
353
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900354 /* Clean up broadcast reception remains */
355 n_ptr->bclink.gap_after = n_ptr->bclink.gap_to = 0;
356 while (n_ptr->bclink.deferred_head) {
357 struct sk_buff* buf = n_ptr->bclink.deferred_head;
358 n_ptr->bclink.deferred_head = buf->next;
359 buf_discard(buf);
360 }
361 if (n_ptr->bclink.defragm) {
362 buf_discard(n_ptr->bclink.defragm);
363 n_ptr->bclink.defragm = NULL;
364 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100365
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000366 if (n_ptr->bclink.supported) {
Allan Stephens8f92df62010-12-31 18:59:19 +0000367 tipc_bclink_acknowledge(n_ptr,
368 mod(n_ptr->bclink.acked + 10000));
369 tipc_nmap_remove(&tipc_bcast_nmap, n_ptr->addr);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000370 if (n_ptr->addr < tipc_own_addr)
371 tipc_own_tag--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100372 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100373
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900374 info("Lost contact with %s\n",
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000375 tipc_addr_string_fill(addr_string, n_ptr->addr));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100376
377 /* Abort link changeover */
378 for (i = 0; i < MAX_BEARERS; i++) {
379 struct link *l_ptr = n_ptr->links[i];
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900380 if (!l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100381 continue;
382 l_ptr->reset_checkpoint = l_ptr->next_in_no;
383 l_ptr->exp_msg_count = 0;
Per Liden4323add2006-01-18 00:38:21 +0100384 tipc_link_reset_fragments(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100385 }
386
387 /* Notify subscribers */
388 list_for_each_entry_safe(ns, tns, &n_ptr->nsub, nodesub_list) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900389 ns->node = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100390 list_del_init(&ns->nodesub_list);
Per Liden4323add2006-01-18 00:38:21 +0100391 tipc_k_signal((Handler)ns->handle_node_down,
392 (unsigned long)ns->usr_handle);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100393 }
Allan Stephens5a68d5e2010-08-17 11:00:16 +0000394
395 /* Prevent re-contact with node until all cleanup is done */
396
397 n_ptr->cleanup_required = 1;
398 tipc_k_signal((Handler)node_cleanup_finished, n_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100399}
400
Per Liden4323add2006-01-18 00:38:21 +0100401struct sk_buff *tipc_node_get_nodes(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100402{
403 u32 domain;
404 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -0700405 struct tipc_node *n_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900406 struct tipc_node_info node_info;
Allan Stephensea138472006-06-29 12:33:20 -0700407 u32 payload_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100408
409 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_NET_ADDR))
Per Liden4323add2006-01-18 00:38:21 +0100410 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100411
Al Viro3e6c8cd2006-11-08 00:19:09 -0800412 domain = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
Per Liden4323add2006-01-18 00:38:21 +0100413 if (!tipc_addr_domain_valid(domain))
414 return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
415 " (network address)");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100416
Allan Stephens1aad72d2008-07-14 22:44:58 -0700417 read_lock_bh(&tipc_net_lock);
418 if (!tipc_nodes) {
419 read_unlock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900420 return tipc_cfg_reply_none();
Allan Stephens1aad72d2008-07-14 22:44:58 -0700421 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100422
Allan Stephens08c80e92010-12-31 18:59:17 +0000423 /* For now, get space for all other nodes */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100424
Allan Stephensea138472006-06-29 12:33:20 -0700425 payload_size = TLV_SPACE(sizeof(node_info)) * (tipc_max_nodes - 1);
Allan Stephens1aad72d2008-07-14 22:44:58 -0700426 if (payload_size > 32768u) {
427 read_unlock_bh(&tipc_net_lock);
Allan Stephensea138472006-06-29 12:33:20 -0700428 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
429 " (too many nodes)");
Allan Stephens1aad72d2008-07-14 22:44:58 -0700430 }
Allan Stephensea138472006-06-29 12:33:20 -0700431 buf = tipc_cfg_reply_alloc(payload_size);
Allan Stephens1aad72d2008-07-14 22:44:58 -0700432 if (!buf) {
433 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100434 return NULL;
Allan Stephens1aad72d2008-07-14 22:44:58 -0700435 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100436
437 /* Add TLVs for all nodes in scope */
438
Per Liden4323add2006-01-18 00:38:21 +0100439 for (n_ptr = tipc_nodes; n_ptr; n_ptr = n_ptr->next) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000440 if (!tipc_in_scope(domain, n_ptr->addr))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100441 continue;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900442 node_info.addr = htonl(n_ptr->addr);
443 node_info.up = htonl(tipc_node_is_up(n_ptr));
444 tipc_cfg_append_tlv(buf, TIPC_TLV_NODE_INFO,
Per Liden4323add2006-01-18 00:38:21 +0100445 &node_info, sizeof(node_info));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100446 }
447
Allan Stephens1aad72d2008-07-14 22:44:58 -0700448 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100449 return buf;
450}
451
Per Liden4323add2006-01-18 00:38:21 +0100452struct sk_buff *tipc_node_get_links(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100453{
454 u32 domain;
455 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -0700456 struct tipc_node *n_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900457 struct tipc_link_info link_info;
Allan Stephensea138472006-06-29 12:33:20 -0700458 u32 payload_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100459
460 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_NET_ADDR))
Per Liden4323add2006-01-18 00:38:21 +0100461 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100462
Al Viro3e6c8cd2006-11-08 00:19:09 -0800463 domain = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
Per Liden4323add2006-01-18 00:38:21 +0100464 if (!tipc_addr_domain_valid(domain))
465 return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
466 " (network address)");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100467
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900468 if (tipc_mode != TIPC_NET_MODE)
469 return tipc_cfg_reply_none();
470
Allan Stephens1aad72d2008-07-14 22:44:58 -0700471 read_lock_bh(&tipc_net_lock);
472
Allan Stephensea138472006-06-29 12:33:20 -0700473 /* Get space for all unicast links + multicast link */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100474
Allan Stephens51f98a82010-12-31 18:59:16 +0000475 payload_size = TLV_SPACE(sizeof(link_info)) * (tipc_net.links + 1);
Allan Stephens1aad72d2008-07-14 22:44:58 -0700476 if (payload_size > 32768u) {
477 read_unlock_bh(&tipc_net_lock);
Allan Stephensea138472006-06-29 12:33:20 -0700478 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
479 " (too many links)");
Allan Stephens1aad72d2008-07-14 22:44:58 -0700480 }
Allan Stephensea138472006-06-29 12:33:20 -0700481 buf = tipc_cfg_reply_alloc(payload_size);
Allan Stephens1aad72d2008-07-14 22:44:58 -0700482 if (!buf) {
483 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100484 return NULL;
Allan Stephens1aad72d2008-07-14 22:44:58 -0700485 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100486
487 /* Add TLV for broadcast link */
488
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900489 link_info.dest = htonl(tipc_own_addr & 0xfffff00);
490 link_info.up = htonl(1);
Stephen Hemminger4b704d52009-03-18 19:11:29 -0700491 strlcpy(link_info.str, tipc_bclink_name, TIPC_MAX_LINK_NAME);
Per Liden4323add2006-01-18 00:38:21 +0100492 tipc_cfg_append_tlv(buf, TIPC_TLV_LINK_INFO, &link_info, sizeof(link_info));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100493
494 /* Add TLVs for any other links in scope */
495
Per Liden4323add2006-01-18 00:38:21 +0100496 for (n_ptr = tipc_nodes; n_ptr; n_ptr = n_ptr->next) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900497 u32 i;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100498
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000499 if (!tipc_in_scope(domain, n_ptr->addr))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100500 continue;
Allan Stephens1aad72d2008-07-14 22:44:58 -0700501 tipc_node_lock(n_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900502 for (i = 0; i < MAX_BEARERS; i++) {
503 if (!n_ptr->links[i])
504 continue;
505 link_info.dest = htonl(n_ptr->addr);
506 link_info.up = htonl(tipc_link_is_up(n_ptr->links[i]));
507 strcpy(link_info.str, n_ptr->links[i]->name);
508 tipc_cfg_append_tlv(buf, TIPC_TLV_LINK_INFO,
Per Liden4323add2006-01-18 00:38:21 +0100509 &link_info, sizeof(link_info));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900510 }
Allan Stephens1aad72d2008-07-14 22:44:58 -0700511 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100512 }
513
Allan Stephens1aad72d2008-07-14 22:44:58 -0700514 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100515 return buf;
516}