ASoC: Add Freescale SGTL5000 codec support
[deliverable/linux.git] / net / tipc / node.c
CommitLineData
b97bf3fd
PL
1/*
2 * net/tipc/node.c: TIPC node management routines
c4307285 3 *
593a5f22 4 * Copyright (c) 2000-2006, Ericsson AB
ea13847b 5 * Copyright (c) 2005-2006, 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
6c00055a
DM
42static void node_lost_contact(struct tipc_node *n_ptr);
43static void node_established_contact(struct tipc_node *n_ptr);
b97bf3fd 44
2ecb0924
AS
45static DEFINE_SPINLOCK(node_create_lock);
46
e3ec9c7d 47u32 tipc_own_tag;
b97bf3fd 48
2ecb0924
AS
49/**
50 * tipc_node_create - create neighboring node
51 *
52 * Currently, this routine is called by neighbor discovery code, which holds
53 * net_lock for reading only. We must take node_create_lock to ensure a node
54 * isn't created twice if two different bearers discover the node at the same
55 * time. (It would be preferable to switch to holding net_lock in write mode,
56 * but this is a non-trivial change.)
57 */
58
6c00055a 59struct tipc_node *tipc_node_create(u32 addr)
b97bf3fd 60{
6c00055a 61 struct tipc_node *n_ptr;
8f92df6a 62 u32 n_num;
b97bf3fd 63
2ecb0924
AS
64 spin_lock_bh(&node_create_lock);
65
5af54792
AS
66 n_ptr = tipc_node_find(addr);
67 if (n_ptr) {
68 spin_unlock_bh(&node_create_lock);
69 return n_ptr;
2ecb0924
AS
70 }
71
5af54792 72 n_ptr = kzalloc(sizeof(*n_ptr), GFP_ATOMIC);
a10bd924 73 if (!n_ptr) {
2ecb0924 74 spin_unlock_bh(&node_create_lock);
a10bd924
AS
75 warn("Node creation failed, no memory\n");
76 return NULL;
77 }
78
a10bd924 79 n_ptr->addr = addr;
51a8e4de 80 spin_lock_init(&n_ptr->lock);
a10bd924 81 INIT_LIST_HEAD(&n_ptr->nsub);
8f92df6a
AS
82
83 n_num = tipc_node(addr);
84 tipc_net.nodes[n_num] = n_ptr;
85 if (n_num > tipc_net.highest_node)
86 tipc_net.highest_node = n_num;
a10bd924 87
2ecb0924 88 spin_unlock_bh(&node_create_lock);
b97bf3fd
PL
89 return n_ptr;
90}
91
6c00055a 92void tipc_node_delete(struct tipc_node *n_ptr)
b97bf3fd 93{
8f92df6a
AS
94 u32 n_num;
95
b97bf3fd
PL
96 if (!n_ptr)
97 return;
98
8f92df6a
AS
99 n_num = tipc_node(n_ptr->addr);
100 tipc_net.nodes[n_num] = NULL;
b97bf3fd 101 kfree(n_ptr);
8f92df6a
AS
102
103 while (!tipc_net.nodes[tipc_net.highest_node])
104 if (--tipc_net.highest_node == 0)
105 break;
b97bf3fd
PL
106}
107
108
109/**
4323add6 110 * tipc_node_link_up - handle addition of link
c4307285 111 *
b97bf3fd
PL
112 * Link becomes active (alone or shared) or standby, depending on its priority.
113 */
114
6c00055a 115void tipc_node_link_up(struct tipc_node *n_ptr, struct link *l_ptr)
b97bf3fd
PL
116{
117 struct link **active = &n_ptr->active_links[0];
118
5392d646
AS
119 n_ptr->working_links++;
120
b97bf3fd
PL
121 info("Established link <%s> on network plane %c\n",
122 l_ptr->name, l_ptr->b_ptr->net_plane);
c4307285 123
b97bf3fd 124 if (!active[0]) {
b97bf3fd
PL
125 active[0] = active[1] = l_ptr;
126 node_established_contact(n_ptr);
127 return;
128 }
c4307285 129 if (l_ptr->priority < active[0]->priority) {
a10bd924 130 info("New link <%s> becomes standby\n", l_ptr->name);
b97bf3fd
PL
131 return;
132 }
4323add6 133 tipc_link_send_duplicate(active[0], l_ptr);
c4307285 134 if (l_ptr->priority == active[0]->priority) {
b97bf3fd
PL
135 active[0] = l_ptr;
136 return;
137 }
a10bd924
AS
138 info("Old link <%s> becomes standby\n", active[0]->name);
139 if (active[1] != active[0])
140 info("Old link <%s> becomes standby\n", active[1]->name);
b97bf3fd
PL
141 active[0] = active[1] = l_ptr;
142}
143
144/**
145 * node_select_active_links - select active link
146 */
147
6c00055a 148static void node_select_active_links(struct tipc_node *n_ptr)
b97bf3fd
PL
149{
150 struct link **active = &n_ptr->active_links[0];
151 u32 i;
152 u32 highest_prio = 0;
153
c4307285 154 active[0] = active[1] = NULL;
b97bf3fd
PL
155
156 for (i = 0; i < MAX_BEARERS; i++) {
c4307285 157 struct link *l_ptr = n_ptr->links[i];
b97bf3fd 158
4323add6 159 if (!l_ptr || !tipc_link_is_up(l_ptr) ||
b97bf3fd
PL
160 (l_ptr->priority < highest_prio))
161 continue;
162
163 if (l_ptr->priority > highest_prio) {
c4307285 164 highest_prio = l_ptr->priority;
b97bf3fd
PL
165 active[0] = active[1] = l_ptr;
166 } else {
167 active[1] = l_ptr;
168 }
169 }
170}
171
172/**
4323add6 173 * tipc_node_link_down - handle loss of link
b97bf3fd
PL
174 */
175
6c00055a 176void tipc_node_link_down(struct tipc_node *n_ptr, struct link *l_ptr)
b97bf3fd
PL
177{
178 struct link **active;
179
5392d646
AS
180 n_ptr->working_links--;
181
4323add6 182 if (!tipc_link_is_active(l_ptr)) {
b97bf3fd
PL
183 info("Lost standby link <%s> on network plane %c\n",
184 l_ptr->name, l_ptr->b_ptr->net_plane);
185 return;
186 }
187 info("Lost link <%s> on network plane %c\n",
188 l_ptr->name, l_ptr->b_ptr->net_plane);
189
190 active = &n_ptr->active_links[0];
191 if (active[0] == l_ptr)
192 active[0] = active[1];
193 if (active[1] == l_ptr)
194 active[1] = active[0];
195 if (active[0] == l_ptr)
196 node_select_active_links(n_ptr);
c4307285 197 if (tipc_node_is_up(n_ptr))
4323add6 198 tipc_link_changeover(l_ptr);
c4307285 199 else
b97bf3fd
PL
200 node_lost_contact(n_ptr);
201}
202
6c00055a 203int tipc_node_has_active_links(struct tipc_node *n_ptr)
b97bf3fd 204{
76ae0d71 205 return n_ptr->active_links[0] != NULL;
b97bf3fd
PL
206}
207
6c00055a 208int tipc_node_has_redundant_links(struct tipc_node *n_ptr)
b97bf3fd 209{
a02cec21 210 return n_ptr->working_links > 1;
b97bf3fd
PL
211}
212
6c00055a 213int tipc_node_is_up(struct tipc_node *n_ptr)
b97bf3fd 214{
51a8e4de 215 return tipc_node_has_active_links(n_ptr);
b97bf3fd
PL
216}
217
6c00055a 218struct tipc_node *tipc_node_attach_link(struct link *l_ptr)
b97bf3fd 219{
6c00055a 220 struct tipc_node *n_ptr = tipc_node_find(l_ptr->addr);
b97bf3fd
PL
221
222 if (!n_ptr)
4323add6 223 n_ptr = tipc_node_create(l_ptr->addr);
c4307285 224 if (n_ptr) {
b97bf3fd
PL
225 u32 bearer_id = l_ptr->b_ptr->identity;
226 char addr_string[16];
227
c4307285 228 if (n_ptr->link_cnt >= 2) {
c4307285 229 err("Attempt to create third link to %s\n",
c68ca7b7 230 tipc_addr_string_fill(addr_string, n_ptr->addr));
c4307285
YH
231 return NULL;
232 }
233
234 if (!n_ptr->links[bearer_id]) {
235 n_ptr->links[bearer_id] = l_ptr;
51f98a8d 236 tipc_net.links++;
c4307285
YH
237 n_ptr->link_cnt++;
238 return n_ptr;
239 }
a570f095 240 err("Attempt to establish second link on <%s> to %s\n",
c4307285 241 l_ptr->b_ptr->publ.name,
c68ca7b7 242 tipc_addr_string_fill(addr_string, l_ptr->addr));
c4307285 243 }
1fc54d8f 244 return NULL;
b97bf3fd
PL
245}
246
6c00055a 247void tipc_node_detach_link(struct tipc_node *n_ptr, struct link *l_ptr)
b97bf3fd 248{
1fc54d8f 249 n_ptr->links[l_ptr->b_ptr->identity] = NULL;
51f98a8d 250 tipc_net.links--;
b97bf3fd
PL
251 n_ptr->link_cnt--;
252}
253
254/*
255 * Routing table management - five cases to handle:
256 *
257 * 1: A link towards a zone/cluster external node comes up.
c4307285
YH
258 * => Send a multicast message updating routing tables of all
259 * system nodes within own cluster that the new destination
260 * can be reached via this node.
b97bf3fd
PL
261 * (node.establishedContact()=>cluster.multicastNewRoute())
262 *
263 * 2: A link towards a slave node comes up.
c4307285
YH
264 * => Send a multicast message updating routing tables of all
265 * system nodes within own cluster that the new destination
266 * can be reached via this node.
b97bf3fd 267 * (node.establishedContact()=>cluster.multicastNewRoute())
c4307285 268 * => Send a message to the slave node about existence
b97bf3fd
PL
269 * of all system nodes within cluster:
270 * (node.establishedContact()=>cluster.sendLocalRoutes())
271 *
272 * 3: A new cluster local system node becomes available.
273 * => Send message(s) to this particular node containing
274 * information about all cluster external and slave
275 * nodes which can be reached via this node.
276 * (node.establishedContact()==>network.sendExternalRoutes())
277 * (node.establishedContact()==>network.sendSlaveRoutes())
c4307285 278 * => Send messages to all directly connected slave nodes
b97bf3fd
PL
279 * containing information about the existence of the new node
280 * (node.establishedContact()=>cluster.multicastNewRoute())
c4307285 281 *
b97bf3fd
PL
282 * 4: The link towards a zone/cluster external node or slave
283 * node goes down.
c4307285 284 * => Send a multcast message updating routing tables of all
b97bf3fd
PL
285 * nodes within cluster that the new destination can not any
286 * longer be reached via this node.
287 * (node.lostAllLinks()=>cluster.bcastLostRoute())
288 *
289 * 5: A cluster local system node becomes unavailable.
290 * => Remove all references to this node from the local
291 * routing tables. Note: This is a completely node
292 * local operation.
293 * (node.lostAllLinks()=>network.removeAsRouter())
c4307285 294 * => Send messages to all directly connected slave nodes
b97bf3fd
PL
295 * containing information about loss of the node
296 * (node.establishedContact()=>cluster.multicastLostRoute())
297 *
298 */
299
6c00055a 300static void node_established_contact(struct tipc_node *n_ptr)
b97bf3fd 301{
51a8e4de 302 tipc_k_signal((Handler)tipc_named_node_up, n_ptr->addr);
b97bf3fd 303
c4307285
YH
304 /* Syncronize broadcast acks */
305 n_ptr->bclink.acked = tipc_bclink_get_last_sent();
b97bf3fd 306
b97bf3fd 307 if (n_ptr->bclink.supported) {
8f92df6a 308 tipc_nmap_add(&tipc_bcast_nmap, n_ptr->addr);
b97bf3fd
PL
309 if (n_ptr->addr < tipc_own_addr)
310 tipc_own_tag++;
311 }
b97bf3fd
PL
312}
313
5a68d5ee
AS
314static void node_cleanup_finished(unsigned long node_addr)
315{
316 struct tipc_node *n_ptr;
317
318 read_lock_bh(&tipc_net_lock);
319 n_ptr = tipc_node_find(node_addr);
320 if (n_ptr) {
321 tipc_node_lock(n_ptr);
322 n_ptr->cleanup_required = 0;
323 tipc_node_unlock(n_ptr);
324 }
325 read_unlock_bh(&tipc_net_lock);
326}
327
6c00055a 328static void node_lost_contact(struct tipc_node *n_ptr)
b97bf3fd 329{
6c00055a 330 struct tipc_node_subscr *ns, *tns;
b97bf3fd
PL
331 char addr_string[16];
332 u32 i;
333
c4307285
YH
334 /* Clean up broadcast reception remains */
335 n_ptr->bclink.gap_after = n_ptr->bclink.gap_to = 0;
336 while (n_ptr->bclink.deferred_head) {
0e65967e 337 struct sk_buff *buf = n_ptr->bclink.deferred_head;
c4307285
YH
338 n_ptr->bclink.deferred_head = buf->next;
339 buf_discard(buf);
340 }
341 if (n_ptr->bclink.defragm) {
342 buf_discard(n_ptr->bclink.defragm);
343 n_ptr->bclink.defragm = NULL;
344 }
c4307285 345
51a8e4de 346 if (n_ptr->bclink.supported) {
8f92df6a
AS
347 tipc_bclink_acknowledge(n_ptr,
348 mod(n_ptr->bclink.acked + 10000));
349 tipc_nmap_remove(&tipc_bcast_nmap, n_ptr->addr);
51a8e4de
AS
350 if (n_ptr->addr < tipc_own_addr)
351 tipc_own_tag--;
b97bf3fd 352 }
b97bf3fd 353
c4307285 354 info("Lost contact with %s\n",
c68ca7b7 355 tipc_addr_string_fill(addr_string, n_ptr->addr));
b97bf3fd
PL
356
357 /* Abort link changeover */
358 for (i = 0; i < MAX_BEARERS; i++) {
359 struct link *l_ptr = n_ptr->links[i];
c4307285 360 if (!l_ptr)
b97bf3fd
PL
361 continue;
362 l_ptr->reset_checkpoint = l_ptr->next_in_no;
363 l_ptr->exp_msg_count = 0;
4323add6 364 tipc_link_reset_fragments(l_ptr);
b97bf3fd
PL
365 }
366
367 /* Notify subscribers */
368 list_for_each_entry_safe(ns, tns, &n_ptr->nsub, nodesub_list) {
c4307285 369 ns->node = NULL;
b97bf3fd 370 list_del_init(&ns->nodesub_list);
4323add6
PL
371 tipc_k_signal((Handler)ns->handle_node_down,
372 (unsigned long)ns->usr_handle);
b97bf3fd 373 }
5a68d5ee
AS
374
375 /* Prevent re-contact with node until all cleanup is done */
376
377 n_ptr->cleanup_required = 1;
378 tipc_k_signal((Handler)node_cleanup_finished, n_ptr->addr);
b97bf3fd
PL
379}
380
4323add6 381struct sk_buff *tipc_node_get_nodes(const void *req_tlv_area, int req_tlv_space)
b97bf3fd
PL
382{
383 u32 domain;
384 struct sk_buff *buf;
6c00055a 385 struct tipc_node *n_ptr;
c4307285 386 struct tipc_node_info node_info;
ea13847b 387 u32 payload_size;
5af54792 388 u32 n_num;
b97bf3fd
PL
389
390 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_NET_ADDR))
4323add6 391 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
b97bf3fd 392
3e6c8cd5 393 domain = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
4323add6
PL
394 if (!tipc_addr_domain_valid(domain))
395 return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
396 " (network address)");
b97bf3fd 397
1aad72d6 398 read_lock_bh(&tipc_net_lock);
5af54792 399 if (!tipc_net.nodes) {
1aad72d6 400 read_unlock_bh(&tipc_net_lock);
c4307285 401 return tipc_cfg_reply_none();
1aad72d6 402 }
b97bf3fd 403
08c80e9a 404 /* For now, get space for all other nodes */
b97bf3fd 405
5af54792
AS
406 payload_size = TLV_SPACE(sizeof(node_info)) *
407 (tipc_net.highest_node - 1);
1aad72d6
AS
408 if (payload_size > 32768u) {
409 read_unlock_bh(&tipc_net_lock);
ea13847b
AS
410 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
411 " (too many nodes)");
1aad72d6 412 }
ea13847b 413 buf = tipc_cfg_reply_alloc(payload_size);
1aad72d6
AS
414 if (!buf) {
415 read_unlock_bh(&tipc_net_lock);
b97bf3fd 416 return NULL;
1aad72d6 417 }
b97bf3fd
PL
418
419 /* Add TLVs for all nodes in scope */
420
5af54792
AS
421 for (n_num = 1; n_num <= tipc_net.highest_node; n_num++) {
422 n_ptr = tipc_net.nodes[n_num];
423 if (!n_ptr || !tipc_in_scope(domain, n_ptr->addr))
b97bf3fd 424 continue;
c4307285
YH
425 node_info.addr = htonl(n_ptr->addr);
426 node_info.up = htonl(tipc_node_is_up(n_ptr));
427 tipc_cfg_append_tlv(buf, TIPC_TLV_NODE_INFO,
4323add6 428 &node_info, sizeof(node_info));
b97bf3fd
PL
429 }
430
1aad72d6 431 read_unlock_bh(&tipc_net_lock);
b97bf3fd
PL
432 return buf;
433}
434
4323add6 435struct sk_buff *tipc_node_get_links(const void *req_tlv_area, int req_tlv_space)
b97bf3fd
PL
436{
437 u32 domain;
438 struct sk_buff *buf;
6c00055a 439 struct tipc_node *n_ptr;
c4307285 440 struct tipc_link_info link_info;
ea13847b 441 u32 payload_size;
5af54792 442 u32 n_num;
b97bf3fd
PL
443
444 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_NET_ADDR))
4323add6 445 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
b97bf3fd 446
3e6c8cd5 447 domain = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
4323add6
PL
448 if (!tipc_addr_domain_valid(domain))
449 return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
450 " (network address)");
b97bf3fd 451
c4307285
YH
452 if (tipc_mode != TIPC_NET_MODE)
453 return tipc_cfg_reply_none();
454
1aad72d6
AS
455 read_lock_bh(&tipc_net_lock);
456
ea13847b
AS
457 /* Get space for all unicast links + multicast link */
458
51f98a8d 459 payload_size = TLV_SPACE(sizeof(link_info)) * (tipc_net.links + 1);
1aad72d6
AS
460 if (payload_size > 32768u) {
461 read_unlock_bh(&tipc_net_lock);
ea13847b
AS
462 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
463 " (too many links)");
1aad72d6 464 }
ea13847b 465 buf = tipc_cfg_reply_alloc(payload_size);
1aad72d6
AS
466 if (!buf) {
467 read_unlock_bh(&tipc_net_lock);
b97bf3fd 468 return NULL;
1aad72d6 469 }
b97bf3fd
PL
470
471 /* Add TLV for broadcast link */
472
c4307285
YH
473 link_info.dest = htonl(tipc_own_addr & 0xfffff00);
474 link_info.up = htonl(1);
4b704d59 475 strlcpy(link_info.str, tipc_bclink_name, TIPC_MAX_LINK_NAME);
4323add6 476 tipc_cfg_append_tlv(buf, TIPC_TLV_LINK_INFO, &link_info, sizeof(link_info));
b97bf3fd
PL
477
478 /* Add TLVs for any other links in scope */
479
5af54792 480 for (n_num = 1; n_num <= tipc_net.highest_node; n_num++) {
c4307285 481 u32 i;
b97bf3fd 482
5af54792
AS
483 n_ptr = tipc_net.nodes[n_num];
484 if (!n_ptr || !tipc_in_scope(domain, n_ptr->addr))
b97bf3fd 485 continue;
1aad72d6 486 tipc_node_lock(n_ptr);
c4307285
YH
487 for (i = 0; i < MAX_BEARERS; i++) {
488 if (!n_ptr->links[i])
489 continue;
490 link_info.dest = htonl(n_ptr->addr);
491 link_info.up = htonl(tipc_link_is_up(n_ptr->links[i]));
492 strcpy(link_info.str, n_ptr->links[i]->name);
493 tipc_cfg_append_tlv(buf, TIPC_TLV_LINK_INFO,
4323add6 494 &link_info, sizeof(link_info));
c4307285 495 }
1aad72d6 496 tipc_node_unlock(n_ptr);
b97bf3fd
PL
497 }
498
1aad72d6 499 read_unlock_bh(&tipc_net_lock);
b97bf3fd
PL
500 return buf;
501}
This page took 0.521072 seconds and 5 git commands to generate.