]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - net/tipc/node.c
tipc: Prevent null pointer error when removing a node subscription
[mirror_ubuntu-zesty-kernel.git] / net / tipc / node.c
1 /*
2 * net/tipc/node.c: TIPC node management routines
3 *
4 * Copyright (c) 2000-2006, Ericsson AB
5 * Copyright (c) 2005-2006, 2010-2011, Wind River Systems
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
10 *
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37 #include "core.h"
38 #include "config.h"
39 #include "node.h"
40 #include "name_distr.h"
41
42 static void node_lost_contact(struct tipc_node *n_ptr);
43 static void node_established_contact(struct tipc_node *n_ptr);
44
45 static DEFINE_SPINLOCK(node_create_lock);
46
47 u32 tipc_own_tag;
48
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
59 struct tipc_node *tipc_node_create(u32 addr)
60 {
61 struct tipc_node *n_ptr;
62 u32 n_num;
63
64 spin_lock_bh(&node_create_lock);
65
66 n_ptr = tipc_node_find(addr);
67 if (n_ptr) {
68 spin_unlock_bh(&node_create_lock);
69 return n_ptr;
70 }
71
72 n_ptr = kzalloc(sizeof(*n_ptr), GFP_ATOMIC);
73 if (!n_ptr) {
74 spin_unlock_bh(&node_create_lock);
75 warn("Node creation failed, no memory\n");
76 return NULL;
77 }
78
79 n_ptr->addr = addr;
80 spin_lock_init(&n_ptr->lock);
81 INIT_LIST_HEAD(&n_ptr->nsub);
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;
87
88 spin_unlock_bh(&node_create_lock);
89 return n_ptr;
90 }
91
92 void tipc_node_delete(struct tipc_node *n_ptr)
93 {
94 u32 n_num;
95
96 if (!n_ptr)
97 return;
98
99 n_num = tipc_node(n_ptr->addr);
100 tipc_net.nodes[n_num] = NULL;
101 kfree(n_ptr);
102
103 while (!tipc_net.nodes[tipc_net.highest_node])
104 if (--tipc_net.highest_node == 0)
105 break;
106 }
107
108
109 /**
110 * tipc_node_link_up - handle addition of link
111 *
112 * Link becomes active (alone or shared) or standby, depending on its priority.
113 */
114
115 void tipc_node_link_up(struct tipc_node *n_ptr, struct link *l_ptr)
116 {
117 struct link **active = &n_ptr->active_links[0];
118
119 n_ptr->working_links++;
120
121 info("Established link <%s> on network plane %c\n",
122 l_ptr->name, l_ptr->b_ptr->net_plane);
123
124 if (!active[0]) {
125 active[0] = active[1] = l_ptr;
126 node_established_contact(n_ptr);
127 return;
128 }
129 if (l_ptr->priority < active[0]->priority) {
130 info("New link <%s> becomes standby\n", l_ptr->name);
131 return;
132 }
133 tipc_link_send_duplicate(active[0], l_ptr);
134 if (l_ptr->priority == active[0]->priority) {
135 active[0] = l_ptr;
136 return;
137 }
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);
141 active[0] = active[1] = l_ptr;
142 }
143
144 /**
145 * node_select_active_links - select active link
146 */
147
148 static void node_select_active_links(struct tipc_node *n_ptr)
149 {
150 struct link **active = &n_ptr->active_links[0];
151 u32 i;
152 u32 highest_prio = 0;
153
154 active[0] = active[1] = NULL;
155
156 for (i = 0; i < MAX_BEARERS; i++) {
157 struct link *l_ptr = n_ptr->links[i];
158
159 if (!l_ptr || !tipc_link_is_up(l_ptr) ||
160 (l_ptr->priority < highest_prio))
161 continue;
162
163 if (l_ptr->priority > highest_prio) {
164 highest_prio = l_ptr->priority;
165 active[0] = active[1] = l_ptr;
166 } else {
167 active[1] = l_ptr;
168 }
169 }
170 }
171
172 /**
173 * tipc_node_link_down - handle loss of link
174 */
175
176 void tipc_node_link_down(struct tipc_node *n_ptr, struct link *l_ptr)
177 {
178 struct link **active;
179
180 n_ptr->working_links--;
181
182 if (!tipc_link_is_active(l_ptr)) {
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);
197 if (tipc_node_is_up(n_ptr))
198 tipc_link_changeover(l_ptr);
199 else
200 node_lost_contact(n_ptr);
201 }
202
203 int tipc_node_has_active_links(struct tipc_node *n_ptr)
204 {
205 return n_ptr->active_links[0] != NULL;
206 }
207
208 int tipc_node_has_redundant_links(struct tipc_node *n_ptr)
209 {
210 return n_ptr->working_links > 1;
211 }
212
213 int tipc_node_is_up(struct tipc_node *n_ptr)
214 {
215 return tipc_node_has_active_links(n_ptr);
216 }
217
218 struct tipc_node *tipc_node_attach_link(struct link *l_ptr)
219 {
220 struct tipc_node *n_ptr = tipc_node_find(l_ptr->addr);
221
222 if (!n_ptr)
223 n_ptr = tipc_node_create(l_ptr->addr);
224 if (n_ptr) {
225 u32 bearer_id = l_ptr->b_ptr->identity;
226 char addr_string[16];
227
228 if (n_ptr->link_cnt >= 2) {
229 err("Attempt to create third link to %s\n",
230 tipc_addr_string_fill(addr_string, n_ptr->addr));
231 return NULL;
232 }
233
234 if (!n_ptr->links[bearer_id]) {
235 n_ptr->links[bearer_id] = l_ptr;
236 tipc_net.links++;
237 n_ptr->link_cnt++;
238 return n_ptr;
239 }
240 err("Attempt to establish second link on <%s> to %s\n",
241 l_ptr->b_ptr->name,
242 tipc_addr_string_fill(addr_string, l_ptr->addr));
243 }
244 return NULL;
245 }
246
247 void tipc_node_detach_link(struct tipc_node *n_ptr, struct link *l_ptr)
248 {
249 n_ptr->links[l_ptr->b_ptr->identity] = NULL;
250 tipc_net.links--;
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.
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.
261 * (node.establishedContact()=>cluster.multicastNewRoute())
262 *
263 * 2: A link towards a slave node comes up.
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.
267 * (node.establishedContact()=>cluster.multicastNewRoute())
268 * => Send a message to the slave node about existence
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())
278 * => Send messages to all directly connected slave nodes
279 * containing information about the existence of the new node
280 * (node.establishedContact()=>cluster.multicastNewRoute())
281 *
282 * 4: The link towards a zone/cluster external node or slave
283 * node goes down.
284 * => Send a multcast message updating routing tables of all
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())
294 * => Send messages to all directly connected slave nodes
295 * containing information about loss of the node
296 * (node.establishedContact()=>cluster.multicastLostRoute())
297 *
298 */
299
300 static void node_established_contact(struct tipc_node *n_ptr)
301 {
302 tipc_k_signal((Handler)tipc_named_node_up, n_ptr->addr);
303
304 /* Syncronize broadcast acks */
305 n_ptr->bclink.acked = tipc_bclink_get_last_sent();
306
307 if (n_ptr->bclink.supported) {
308 tipc_nmap_add(&tipc_bcast_nmap, n_ptr->addr);
309 if (n_ptr->addr < tipc_own_addr)
310 tipc_own_tag++;
311 }
312 }
313
314 static 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
328 static void node_lost_contact(struct tipc_node *n_ptr)
329 {
330 struct tipc_node_subscr *ns;
331 char addr_string[16];
332 u32 i;
333
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) {
337 struct sk_buff *buf = n_ptr->bclink.deferred_head;
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 }
345
346 if (n_ptr->bclink.supported) {
347 tipc_bclink_acknowledge(n_ptr,
348 mod(n_ptr->bclink.acked + 10000));
349 tipc_nmap_remove(&tipc_bcast_nmap, n_ptr->addr);
350 if (n_ptr->addr < tipc_own_addr)
351 tipc_own_tag--;
352 }
353
354 info("Lost contact with %s\n",
355 tipc_addr_string_fill(addr_string, n_ptr->addr));
356
357 /* Abort link changeover */
358 for (i = 0; i < MAX_BEARERS; i++) {
359 struct link *l_ptr = n_ptr->links[i];
360 if (!l_ptr)
361 continue;
362 l_ptr->reset_checkpoint = l_ptr->next_in_no;
363 l_ptr->exp_msg_count = 0;
364 tipc_link_reset_fragments(l_ptr);
365 }
366
367 /* Notify subscribers */
368 list_for_each_entry(ns, &n_ptr->nsub, nodesub_list) {
369 if (ns->handle_node_down) {
370 tipc_k_signal((Handler)ns->handle_node_down,
371 (unsigned long)ns->usr_handle);
372 ns->handle_node_down = NULL;
373 }
374 }
375
376 /* Prevent re-contact with node until all cleanup is done */
377
378 n_ptr->cleanup_required = 1;
379 tipc_k_signal((Handler)node_cleanup_finished, n_ptr->addr);
380 }
381
382 struct sk_buff *tipc_node_get_nodes(const void *req_tlv_area, int req_tlv_space)
383 {
384 u32 domain;
385 struct sk_buff *buf;
386 struct tipc_node *n_ptr;
387 struct tipc_node_info node_info;
388 u32 payload_size;
389 u32 n_num;
390
391 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_NET_ADDR))
392 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
393
394 domain = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
395 if (!tipc_addr_domain_valid(domain))
396 return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
397 " (network address)");
398
399 read_lock_bh(&tipc_net_lock);
400 if (!tipc_net.nodes) {
401 read_unlock_bh(&tipc_net_lock);
402 return tipc_cfg_reply_none();
403 }
404
405 /* For now, get space for all other nodes */
406
407 payload_size = TLV_SPACE(sizeof(node_info)) *
408 (tipc_net.highest_node - 1);
409 if (payload_size > 32768u) {
410 read_unlock_bh(&tipc_net_lock);
411 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
412 " (too many nodes)");
413 }
414 buf = tipc_cfg_reply_alloc(payload_size);
415 if (!buf) {
416 read_unlock_bh(&tipc_net_lock);
417 return NULL;
418 }
419
420 /* Add TLVs for all nodes in scope */
421
422 for (n_num = 1; n_num <= tipc_net.highest_node; n_num++) {
423 n_ptr = tipc_net.nodes[n_num];
424 if (!n_ptr || !tipc_in_scope(domain, n_ptr->addr))
425 continue;
426 node_info.addr = htonl(n_ptr->addr);
427 node_info.up = htonl(tipc_node_is_up(n_ptr));
428 tipc_cfg_append_tlv(buf, TIPC_TLV_NODE_INFO,
429 &node_info, sizeof(node_info));
430 }
431
432 read_unlock_bh(&tipc_net_lock);
433 return buf;
434 }
435
436 struct sk_buff *tipc_node_get_links(const void *req_tlv_area, int req_tlv_space)
437 {
438 u32 domain;
439 struct sk_buff *buf;
440 struct tipc_node *n_ptr;
441 struct tipc_link_info link_info;
442 u32 payload_size;
443 u32 n_num;
444
445 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_NET_ADDR))
446 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
447
448 domain = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
449 if (!tipc_addr_domain_valid(domain))
450 return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
451 " (network address)");
452
453 if (tipc_mode != TIPC_NET_MODE)
454 return tipc_cfg_reply_none();
455
456 read_lock_bh(&tipc_net_lock);
457
458 /* Get space for all unicast links + multicast link */
459
460 payload_size = TLV_SPACE(sizeof(link_info)) * (tipc_net.links + 1);
461 if (payload_size > 32768u) {
462 read_unlock_bh(&tipc_net_lock);
463 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
464 " (too many links)");
465 }
466 buf = tipc_cfg_reply_alloc(payload_size);
467 if (!buf) {
468 read_unlock_bh(&tipc_net_lock);
469 return NULL;
470 }
471
472 /* Add TLV for broadcast link */
473
474 link_info.dest = htonl(tipc_cluster_mask(tipc_own_addr));
475 link_info.up = htonl(1);
476 strlcpy(link_info.str, tipc_bclink_name, TIPC_MAX_LINK_NAME);
477 tipc_cfg_append_tlv(buf, TIPC_TLV_LINK_INFO, &link_info, sizeof(link_info));
478
479 /* Add TLVs for any other links in scope */
480
481 for (n_num = 1; n_num <= tipc_net.highest_node; n_num++) {
482 u32 i;
483
484 n_ptr = tipc_net.nodes[n_num];
485 if (!n_ptr || !tipc_in_scope(domain, n_ptr->addr))
486 continue;
487 tipc_node_lock(n_ptr);
488 for (i = 0; i < MAX_BEARERS; i++) {
489 if (!n_ptr->links[i])
490 continue;
491 link_info.dest = htonl(n_ptr->addr);
492 link_info.up = htonl(tipc_link_is_up(n_ptr->links[i]));
493 strcpy(link_info.str, n_ptr->links[i]->name);
494 tipc_cfg_append_tlv(buf, TIPC_TLV_LINK_INFO,
495 &link_info, sizeof(link_info));
496 }
497 tipc_node_unlock(n_ptr);
498 }
499
500 read_unlock_bh(&tipc_net_lock);
501 return buf;
502 }