tipc: name tipc name table support net namespace
[linux-2.6-block.git] / net / tipc / name_distr.c
CommitLineData
b97bf3fd
PL
1/*
2 * net/tipc/name_distr.c: TIPC name distribution code
c4307285 3 *
a5325ae5 4 * Copyright (c) 2000-2006, 2014, Ericsson AB
431697eb 5 * Copyright (c) 2005, 2010-2011, Wind River Systems
b97bf3fd
PL
6 * All rights reserved.
7 *
9ea1fd3c 8 * Redistribution and use in source and binary forms, with or without
b97bf3fd
PL
9 * modification, are permitted provided that the following conditions are met:
10 *
9ea1fd3c
PL
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
b97bf3fd 19 *
9ea1fd3c
PL
20 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
b97bf3fd
PL
34 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
b97bf3fd 38#include "link.h"
b97bf3fd
PL
39#include "name_distr.h"
40
a5325ae5
EH
41int sysctl_tipc_named_timeout __read_mostly = 2000;
42
43/**
44 * struct tipc_dist_queue - queue holding deferred name table updates
45 */
46static struct list_head tipc_dist_queue = LIST_HEAD_INIT(tipc_dist_queue);
47
48struct distr_queue_item {
49 struct distr_item i;
50 u32 dtype;
51 u32 node;
52 unsigned long expires;
53 struct list_head next;
54};
55
b97bf3fd
PL
56/**
57 * publ_to_item - add publication info to a publication message
58 */
b97bf3fd
PL
59static void publ_to_item(struct distr_item *i, struct publication *p)
60{
61 i->type = htonl(p->type);
62 i->lower = htonl(p->lower);
63 i->upper = htonl(p->upper);
64 i->ref = htonl(p->ref);
65 i->key = htonl(p->key);
b97bf3fd
PL
66}
67
68/**
69 * named_prepare_buf - allocate & initialize a publication message
70 */
b97bf3fd
PL
71static struct sk_buff *named_prepare_buf(u32 type, u32 size, u32 dest)
72{
741d9eb7 73 struct sk_buff *buf = tipc_buf_acquire(INT_H_SIZE + size);
b97bf3fd
PL
74 struct tipc_msg *msg;
75
76 if (buf != NULL) {
77 msg = buf_msg(buf);
741d9eb7
AS
78 tipc_msg_init(msg, NAME_DISTRIBUTOR, type, INT_H_SIZE, dest);
79 msg_set_size(msg, INT_H_SIZE + size);
b97bf3fd
PL
80 }
81 return buf;
82}
83
f2f9800d 84void named_cluster_distribute(struct net *net, struct sk_buff *skb)
8f92df6a 85{
f2f9800d 86 struct tipc_net *tn = net_generic(net, tipc_net_id);
a6ca1094 87 struct sk_buff *oskb;
dbdf6d24
JPM
88 struct tipc_node *node;
89 u32 dnode;
8f92df6a 90
6c7a762e 91 rcu_read_lock();
f2f9800d 92 list_for_each_entry_rcu(node, &tn->node_list, list) {
dbdf6d24
JPM
93 dnode = node->addr;
94 if (in_own_node(dnode))
95 continue;
96 if (!tipc_node_active_links(node))
97 continue;
a6ca1094
YX
98 oskb = skb_copy(skb, GFP_ATOMIC);
99 if (!oskb)
dbdf6d24 100 break;
a6ca1094 101 msg_set_destnode(buf_msg(oskb), dnode);
f2f9800d 102 tipc_link_xmit_skb(net, oskb, dnode, dnode);
8f92df6a 103 }
6c7a762e 104 rcu_read_unlock();
8f92df6a 105
a6ca1094 106 kfree_skb(skb);
8f92df6a
AS
107}
108
b97bf3fd 109/**
4323add6 110 * tipc_named_publish - tell other nodes about a new publication by this node
b97bf3fd 111 */
4ac1c8d0 112struct sk_buff *tipc_named_publish(struct net *net, struct publication *publ)
b97bf3fd 113{
4ac1c8d0 114 struct tipc_net *tn = net_generic(net, tipc_net_id);
b97bf3fd
PL
115 struct sk_buff *buf;
116 struct distr_item *item;
117
97ede29e 118 list_add_tail_rcu(&publ->local_list,
4ac1c8d0 119 &tn->nametbl->publ_list[publ->scope]);
b97bf3fd 120
1110b8d3 121 if (publ->scope == TIPC_NODE_SCOPE)
eab8c045 122 return NULL;
1110b8d3 123
b97bf3fd
PL
124 buf = named_prepare_buf(PUBLICATION, ITEM_SIZE, 0);
125 if (!buf) {
2cf8aa19 126 pr_warn("Publication distribution failure\n");
eab8c045 127 return NULL;
b97bf3fd
PL
128 }
129
130 item = (struct distr_item *)msg_data(buf_msg(buf));
131 publ_to_item(item, publ);
eab8c045 132 return buf;
b97bf3fd
PL
133}
134
135/**
4323add6 136 * tipc_named_withdraw - tell other nodes about a withdrawn publication by this node
b97bf3fd 137 */
eab8c045 138struct sk_buff *tipc_named_withdraw(struct publication *publ)
b97bf3fd
PL
139{
140 struct sk_buff *buf;
141 struct distr_item *item;
142
143 list_del(&publ->local_list);
b97bf3fd 144
1110b8d3 145 if (publ->scope == TIPC_NODE_SCOPE)
eab8c045 146 return NULL;
1110b8d3 147
b97bf3fd
PL
148 buf = named_prepare_buf(WITHDRAWAL, ITEM_SIZE, 0);
149 if (!buf) {
2cf8aa19 150 pr_warn("Withdrawal distribution failure\n");
eab8c045 151 return NULL;
b97bf3fd
PL
152 }
153
154 item = (struct distr_item *)msg_data(buf_msg(buf));
155 publ_to_item(item, publ);
eab8c045 156 return buf;
b97bf3fd
PL
157}
158
dbdf6d24 159/**
e11aa059 160 * named_distribute - prepare name info for bulk distribution to another node
a6ca1094 161 * @list: list of messages (buffers) to be returned from this function
dbdf6d24
JPM
162 * @dnode: node to be updated
163 * @pls: linked list of publication items to be packed into buffer chain
e11aa059 164 */
f2f9800d
YX
165static void named_distribute(struct net *net, struct sk_buff_head *list,
166 u32 dnode, struct list_head *pls)
e11aa059
AS
167{
168 struct publication *publ;
a6ca1094 169 struct sk_buff *skb = NULL;
e11aa059 170 struct distr_item *item = NULL;
f2f9800d
YX
171 uint msg_dsz = (tipc_node_get_mtu(net, dnode, 0) / ITEM_SIZE) *
172 ITEM_SIZE;
1b61e70a 173 uint msg_rem = msg_dsz;
e11aa059 174
993bfe5d 175 list_for_each_entry(publ, pls, local_list) {
dbdf6d24 176 /* Prepare next buffer: */
a6ca1094 177 if (!skb) {
a6ca1094
YX
178 skb = named_prepare_buf(PUBLICATION, msg_rem, dnode);
179 if (!skb) {
2cf8aa19 180 pr_warn("Bulk publication failure\n");
e11aa059
AS
181 return;
182 }
a6ca1094 183 item = (struct distr_item *)msg_data(buf_msg(skb));
e11aa059 184 }
dbdf6d24
JPM
185
186 /* Pack publication into message: */
e11aa059
AS
187 publ_to_item(item, publ);
188 item++;
dbdf6d24
JPM
189 msg_rem -= ITEM_SIZE;
190
191 /* Append full buffer to list: */
192 if (!msg_rem) {
a6ca1094
YX
193 __skb_queue_tail(list, skb);
194 skb = NULL;
1b61e70a 195 msg_rem = msg_dsz;
e11aa059
AS
196 }
197 }
1b61e70a
YX
198 if (skb) {
199 msg_set_size(buf_msg(skb), INT_H_SIZE + (msg_dsz - msg_rem));
200 skb_trim(skb, INT_H_SIZE + (msg_dsz - msg_rem));
201 __skb_queue_tail(list, skb);
202 }
e11aa059
AS
203}
204
b97bf3fd 205/**
4323add6 206 * tipc_named_node_up - tell specified node about all publications by this node
b97bf3fd 207 */
f2f9800d 208void tipc_named_node_up(struct net *net, u32 dnode)
b97bf3fd 209{
4ac1c8d0 210 struct tipc_net *tn = net_generic(net, tipc_net_id);
a6ca1094
YX
211 struct sk_buff_head head;
212
213 __skb_queue_head_init(&head);
9aa88c2a 214
97ede29e 215 rcu_read_lock();
f2f9800d 216 named_distribute(net, &head, dnode,
4ac1c8d0 217 &tn->nametbl->publ_list[TIPC_CLUSTER_SCOPE]);
f2f9800d 218 named_distribute(net, &head, dnode,
4ac1c8d0 219 &tn->nametbl->publ_list[TIPC_ZONE_SCOPE]);
97ede29e 220 rcu_read_unlock();
9aa88c2a 221
f2f9800d 222 tipc_link_xmit(net, &head, dnode, dnode);
b97bf3fd
PL
223}
224
f2f9800d
YX
225static void tipc_publ_subscribe(struct net *net, struct publication *publ,
226 u32 addr)
a8f48af5
YX
227{
228 struct tipc_node *node;
229
230 if (in_own_node(addr))
231 return;
232
f2f9800d 233 node = tipc_node_find(net, addr);
a8f48af5
YX
234 if (!node) {
235 pr_warn("Node subscription rejected, unknown node 0x%x\n",
236 addr);
237 return;
238 }
239
240 tipc_node_lock(node);
241 list_add_tail(&publ->nodesub_list, &node->publ_list);
242 tipc_node_unlock(node);
243}
244
f2f9800d
YX
245static void tipc_publ_unsubscribe(struct net *net, struct publication *publ,
246 u32 addr)
a8f48af5
YX
247{
248 struct tipc_node *node;
249
f2f9800d 250 node = tipc_node_find(net, addr);
a8f48af5
YX
251 if (!node)
252 return;
253
254 tipc_node_lock(node);
255 list_del_init(&publ->nodesub_list);
256 tipc_node_unlock(node);
257}
258
b97bf3fd 259/**
a8f48af5 260 * tipc_publ_purge - remove publication associated with a failed node
c4307285
YH
261 *
262 * Invoked for each publication issued by a newly failed node.
b97bf3fd 263 * Removes publication structure from name table & deletes it.
b97bf3fd 264 */
f2f9800d 265static void tipc_publ_purge(struct net *net, struct publication *publ, u32 addr)
b97bf3fd 266{
4ac1c8d0 267 struct tipc_net *tn = net_generic(net, tipc_net_id);
b97bf3fd 268 struct publication *p;
f131072c 269
4ac1c8d0
YX
270 spin_lock_bh(&tn->nametbl_lock);
271 p = tipc_nametbl_remove_publ(net, publ->type, publ->lower,
4323add6 272 publ->node, publ->ref, publ->key);
431697eb 273 if (p)
f2f9800d 274 tipc_publ_unsubscribe(net, p, addr);
4ac1c8d0 275 spin_unlock_bh(&tn->nametbl_lock);
f131072c 276
c4307285 277 if (p != publ) {
2cf8aa19
EH
278 pr_err("Unable to remove publication from failed node\n"
279 " (type=%u, lower=%u, node=0x%x, ref=%u, key=%u)\n",
280 publ->type, publ->lower, publ->node, publ->ref,
281 publ->key);
f131072c
AS
282 }
283
97ede29e 284 kfree_rcu(p, rcu);
b97bf3fd
PL
285}
286
f2f9800d 287void tipc_publ_notify(struct net *net, struct list_head *nsub_list, u32 addr)
a8f48af5
YX
288{
289 struct publication *publ, *tmp;
290
291 list_for_each_entry_safe(publ, tmp, nsub_list, nodesub_list)
f2f9800d 292 tipc_publ_purge(net, publ, addr);
a8f48af5
YX
293}
294
f4ad8a4b
EH
295/**
296 * tipc_update_nametbl - try to process a nametable update and notify
297 * subscribers
298 *
299 * tipc_nametbl_lock must be held.
300 * Returns the publication item if successful, otherwise NULL.
301 */
f2f9800d
YX
302static bool tipc_update_nametbl(struct net *net, struct distr_item *i,
303 u32 node, u32 dtype)
f4ad8a4b
EH
304{
305 struct publication *publ = NULL;
306
307 if (dtype == PUBLICATION) {
4ac1c8d0
YX
308 publ = tipc_nametbl_insert_publ(net, ntohl(i->type),
309 ntohl(i->lower),
f4ad8a4b
EH
310 ntohl(i->upper),
311 TIPC_CLUSTER_SCOPE, node,
312 ntohl(i->ref), ntohl(i->key));
313 if (publ) {
f2f9800d 314 tipc_publ_subscribe(net, publ, node);
0fc4dffa 315 return true;
f4ad8a4b
EH
316 }
317 } else if (dtype == WITHDRAWAL) {
4ac1c8d0
YX
318 publ = tipc_nametbl_remove_publ(net, ntohl(i->type),
319 ntohl(i->lower),
f4ad8a4b
EH
320 node, ntohl(i->ref),
321 ntohl(i->key));
322 if (publ) {
f2f9800d 323 tipc_publ_unsubscribe(net, publ, node);
97ede29e 324 kfree_rcu(publ, rcu);
0fc4dffa 325 return true;
f4ad8a4b
EH
326 }
327 } else {
328 pr_warn("Unrecognized name table message received\n");
329 }
0fc4dffa 330 return false;
f4ad8a4b
EH
331}
332
a5325ae5
EH
333/**
334 * tipc_named_add_backlog - add a failed name table update to the backlog
335 *
336 */
337static void tipc_named_add_backlog(struct distr_item *i, u32 type, u32 node)
338{
339 struct distr_queue_item *e;
340 unsigned long now = get_jiffies_64();
341
342 e = kzalloc(sizeof(*e), GFP_ATOMIC);
343 if (!e)
344 return;
345 e->dtype = type;
346 e->node = node;
347 e->expires = now + msecs_to_jiffies(sysctl_tipc_named_timeout);
348 memcpy(e, i, sizeof(*i));
349 list_add_tail(&e->next, &tipc_dist_queue);
350}
351
352/**
353 * tipc_named_process_backlog - try to process any pending name table updates
354 * from the network.
355 */
f2f9800d 356void tipc_named_process_backlog(struct net *net)
a5325ae5
EH
357{
358 struct distr_queue_item *e, *tmp;
359 char addr[16];
360 unsigned long now = get_jiffies_64();
361
362 list_for_each_entry_safe(e, tmp, &tipc_dist_queue, next) {
363 if (time_after(e->expires, now)) {
f2f9800d 364 if (!tipc_update_nametbl(net, &e->i, e->node, e->dtype))
a5325ae5
EH
365 continue;
366 } else {
367 tipc_addr_string_fill(addr, e->node);
368 pr_warn_ratelimited("Dropping name table update (%d) of {%u, %u, %u} from %s key=%u\n",
369 e->dtype, ntohl(e->i.type),
370 ntohl(e->i.lower),
371 ntohl(e->i.upper),
372 addr, ntohl(e->i.key));
373 }
374 list_del(&e->next);
375 kfree(e);
376 }
377}
378
b97bf3fd 379/**
247f0f3c 380 * tipc_named_rcv - process name table update message sent by another node
b97bf3fd 381 */
f2f9800d 382void tipc_named_rcv(struct net *net, struct sk_buff *buf)
b97bf3fd 383{
4ac1c8d0 384 struct tipc_net *tn = net_generic(net, tipc_net_id);
b97bf3fd
PL
385 struct tipc_msg *msg = buf_msg(buf);
386 struct distr_item *item = (struct distr_item *)msg_data(msg);
387 u32 count = msg_data_sz(msg) / ITEM_SIZE;
a5325ae5 388 u32 node = msg_orignode(msg);
b97bf3fd 389
4ac1c8d0 390 spin_lock_bh(&tn->nametbl_lock);
b97bf3fd 391 while (count--) {
f2f9800d 392 if (!tipc_update_nametbl(net, item, node, msg_type(msg)))
a5325ae5 393 tipc_named_add_backlog(item, msg_type(msg), node);
b97bf3fd
PL
394 item++;
395 }
f2f9800d 396 tipc_named_process_backlog(net);
4ac1c8d0 397 spin_unlock_bh(&tn->nametbl_lock);
5f6d9123 398 kfree_skb(buf);
b97bf3fd
PL
399}
400
401/**
1110b8d3 402 * tipc_named_reinit - re-initialize local publications
c4307285 403 *
945af1c3 404 * This routine is called whenever TIPC networking is enabled.
1110b8d3
AS
405 * All name table entries published by this node are updated to reflect
406 * the node's new network address.
b97bf3fd 407 */
4ac1c8d0 408void tipc_named_reinit(struct net *net)
b97bf3fd 409{
4ac1c8d0 410 struct tipc_net *tn = net_generic(net, tipc_net_id);
b97bf3fd 411 struct publication *publ;
a909804f 412 int scope;
b97bf3fd 413
4ac1c8d0 414 spin_lock_bh(&tn->nametbl_lock);
945af1c3 415
1110b8d3 416 for (scope = TIPC_ZONE_SCOPE; scope <= TIPC_NODE_SCOPE; scope++)
4ac1c8d0 417 list_for_each_entry_rcu(publ, &tn->nametbl->publ_list[scope],
97ede29e 418 local_list)
a909804f 419 publ->node = tipc_own_addr;
945af1c3 420
4ac1c8d0 421 spin_unlock_bh(&tn->nametbl_lock);
b97bf3fd 422}