blob: 8ce730984aa1f0d429b2325d58862e1ef7799d4d [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/name_distr.c: TIPC name distribution code
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Per Liden593a5f22006-01-11 19:14:19 +01004 * Copyright (c) 2000-2006, Ericsson AB
Allan Stephens431697e2011-02-23 13:51:15 -05005 * Copyright (c) 2005, 2010-2011, 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"
Per Lidenb97bf3f2006-01-02 19:04:38 +010038#include "link.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039#include "name_distr.h"
40
Per Lidenb97bf3f2006-01-02 19:04:38 +010041/**
Allan Stephens3f8375f2012-04-17 17:57:52 -040042 * struct publ_list - list of publications made by this node
43 * @list: circular list of publications
44 * @list_size: number of entries in list
Per Lidenb97bf3f2006-01-02 19:04:38 +010045 */
Allan Stephens3f8375f2012-04-17 17:57:52 -040046struct publ_list {
47 struct list_head list;
48 u32 size;
49};
Per Lidenb97bf3f2006-01-02 19:04:38 +010050
Allan Stephensa9098042012-04-17 17:57:52 -040051static struct publ_list publ_zone = {
52 .list = LIST_HEAD_INIT(publ_zone.list),
53 .size = 0,
54};
55
Allan Stephens3f8375f2012-04-17 17:57:52 -040056static struct publ_list publ_cluster = {
57 .list = LIST_HEAD_INIT(publ_cluster.list),
58 .size = 0,
59};
Per Lidenb97bf3f2006-01-02 19:04:38 +010060
Allan Stephensa9098042012-04-17 17:57:52 -040061static struct publ_list publ_node = {
62 .list = LIST_HEAD_INIT(publ_node.list),
63 .size = 0,
64};
65
66static struct publ_list *publ_lists[] = {
67 NULL,
68 &publ_zone, /* publ_lists[TIPC_ZONE_SCOPE] */
69 &publ_cluster, /* publ_lists[TIPC_CLUSTER_SCOPE] */
70 &publ_node /* publ_lists[TIPC_NODE_SCOPE] */
71};
72
73
Per Lidenb97bf3f2006-01-02 19:04:38 +010074/**
75 * publ_to_item - add publication info to a publication message
76 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010077static void publ_to_item(struct distr_item *i, struct publication *p)
78{
79 i->type = htonl(p->type);
80 i->lower = htonl(p->lower);
81 i->upper = htonl(p->upper);
82 i->ref = htonl(p->ref);
83 i->key = htonl(p->key);
Per Lidenb97bf3f2006-01-02 19:04:38 +010084}
85
86/**
87 * named_prepare_buf - allocate & initialize a publication message
88 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010089static struct sk_buff *named_prepare_buf(u32 type, u32 size, u32 dest)
90{
Allan Stephens741d9eb2011-05-31 15:03:18 -040091 struct sk_buff *buf = tipc_buf_acquire(INT_H_SIZE + size);
Per Lidenb97bf3f2006-01-02 19:04:38 +010092 struct tipc_msg *msg;
93
94 if (buf != NULL) {
95 msg = buf_msg(buf);
Allan Stephens741d9eb2011-05-31 15:03:18 -040096 tipc_msg_init(msg, NAME_DISTRIBUTOR, type, INT_H_SIZE, dest);
97 msg_set_size(msg, INT_H_SIZE + size);
Per Lidenb97bf3f2006-01-02 19:04:38 +010098 }
99 return buf;
100}
101
Ying Xueeab8c0452014-04-28 18:00:10 +0800102void named_cluster_distribute(struct sk_buff *buf)
Allan Stephens8f92df62010-12-31 18:59:19 +0000103{
104 struct sk_buff *buf_copy;
105 struct tipc_node *n_ptr;
Ying Xue78dfb782014-03-27 12:54:32 +0800106 struct tipc_link *l_ptr;
Allan Stephens8f92df62010-12-31 18:59:19 +0000107
Ying Xue6c7a7622014-03-27 12:54:37 +0800108 rcu_read_lock();
109 list_for_each_entry_rcu(n_ptr, &tipc_node_list, list) {
Ying Xue5356f3d2014-05-05 08:56:09 +0800110 tipc_node_lock(n_ptr);
Ying Xue78dfb782014-03-27 12:54:32 +0800111 l_ptr = n_ptr->active_links[n_ptr->addr & 1];
112 if (l_ptr) {
Allan Stephens8f92df62010-12-31 18:59:19 +0000113 buf_copy = skb_copy(buf, GFP_ATOMIC);
Ying Xue78dfb782014-03-27 12:54:32 +0800114 if (!buf_copy) {
Ying Xue5356f3d2014-05-05 08:56:09 +0800115 tipc_node_unlock(n_ptr);
Allan Stephens8f92df62010-12-31 18:59:19 +0000116 break;
Ying Xue78dfb782014-03-27 12:54:32 +0800117 }
Allan Stephens8f92df62010-12-31 18:59:19 +0000118 msg_set_destnode(buf_msg(buf_copy), n_ptr->addr);
Ying Xue78dfb782014-03-27 12:54:32 +0800119 __tipc_link_xmit(l_ptr, buf_copy);
Allan Stephens8f92df62010-12-31 18:59:19 +0000120 }
Ying Xue5356f3d2014-05-05 08:56:09 +0800121 tipc_node_unlock(n_ptr);
Allan Stephens8f92df62010-12-31 18:59:19 +0000122 }
Ying Xue6c7a7622014-03-27 12:54:37 +0800123 rcu_read_unlock();
Allan Stephens8f92df62010-12-31 18:59:19 +0000124
Allan Stephens5f6d9122011-11-04 13:24:29 -0400125 kfree_skb(buf);
Allan Stephens8f92df62010-12-31 18:59:19 +0000126}
127
Per Lidenb97bf3f2006-01-02 19:04:38 +0100128/**
Per Liden4323add2006-01-18 00:38:21 +0100129 * tipc_named_publish - tell other nodes about a new publication by this node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100130 */
Ying Xueeab8c0452014-04-28 18:00:10 +0800131struct sk_buff *tipc_named_publish(struct publication *publ)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100132{
133 struct sk_buff *buf;
134 struct distr_item *item;
135
Allan Stephensa9098042012-04-17 17:57:52 -0400136 list_add_tail(&publ->local_list, &publ_lists[publ->scope]->list);
137 publ_lists[publ->scope]->size++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100138
Allan Stephens1110b8d2012-04-17 17:57:52 -0400139 if (publ->scope == TIPC_NODE_SCOPE)
Ying Xueeab8c0452014-04-28 18:00:10 +0800140 return NULL;
Allan Stephens1110b8d2012-04-17 17:57:52 -0400141
Per Lidenb97bf3f2006-01-02 19:04:38 +0100142 buf = named_prepare_buf(PUBLICATION, ITEM_SIZE, 0);
143 if (!buf) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400144 pr_warn("Publication distribution failure\n");
Ying Xueeab8c0452014-04-28 18:00:10 +0800145 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100146 }
147
148 item = (struct distr_item *)msg_data(buf_msg(buf));
149 publ_to_item(item, publ);
Ying Xueeab8c0452014-04-28 18:00:10 +0800150 return buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100151}
152
153/**
Per Liden4323add2006-01-18 00:38:21 +0100154 * tipc_named_withdraw - tell other nodes about a withdrawn publication by this node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100155 */
Ying Xueeab8c0452014-04-28 18:00:10 +0800156struct sk_buff *tipc_named_withdraw(struct publication *publ)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100157{
158 struct sk_buff *buf;
159 struct distr_item *item;
160
161 list_del(&publ->local_list);
Allan Stephensa9098042012-04-17 17:57:52 -0400162 publ_lists[publ->scope]->size--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100163
Allan Stephens1110b8d2012-04-17 17:57:52 -0400164 if (publ->scope == TIPC_NODE_SCOPE)
Ying Xueeab8c0452014-04-28 18:00:10 +0800165 return NULL;
Allan Stephens1110b8d2012-04-17 17:57:52 -0400166
Per Lidenb97bf3f2006-01-02 19:04:38 +0100167 buf = named_prepare_buf(WITHDRAWAL, ITEM_SIZE, 0);
168 if (!buf) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400169 pr_warn("Withdrawal distribution failure\n");
Ying Xueeab8c0452014-04-28 18:00:10 +0800170 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100171 }
172
173 item = (struct distr_item *)msg_data(buf_msg(buf));
174 publ_to_item(item, publ);
Ying Xueeab8c0452014-04-28 18:00:10 +0800175 return buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100176}
177
Allan Stephense11aa052012-04-17 17:57:52 -0400178/*
179 * named_distribute - prepare name info for bulk distribution to another node
180 */
181static void named_distribute(struct list_head *message_list, u32 node,
182 struct publ_list *pls, u32 max_item_buf)
183{
184 struct publication *publ;
185 struct sk_buff *buf = NULL;
186 struct distr_item *item = NULL;
187 u32 left = 0;
188 u32 rest = pls->size * ITEM_SIZE;
189
190 list_for_each_entry(publ, &pls->list, local_list) {
191 if (!buf) {
192 left = (rest <= max_item_buf) ? rest : max_item_buf;
193 rest -= left;
194 buf = named_prepare_buf(PUBLICATION, left, node);
195 if (!buf) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400196 pr_warn("Bulk publication failure\n");
Allan Stephense11aa052012-04-17 17:57:52 -0400197 return;
198 }
199 item = (struct distr_item *)msg_data(buf_msg(buf));
200 }
201 publ_to_item(item, publ);
202 item++;
203 left -= ITEM_SIZE;
204 if (!left) {
205 list_add_tail((struct list_head *)buf, message_list);
206 buf = NULL;
207 }
208 }
209}
210
Per Lidenb97bf3f2006-01-02 19:04:38 +0100211/**
Per Liden4323add2006-01-18 00:38:21 +0100212 * tipc_named_node_up - tell specified node about all publications by this node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100213 */
Ying Xueca0c4272014-05-05 08:56:14 +0800214void tipc_named_node_up(u32 max_item_buf, u32 node)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100215{
Ying Xueca0c4272014-05-05 08:56:14 +0800216 LIST_HEAD(message_list);
Allan Stephens9aa88c22011-05-31 13:38:02 -0400217
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900218 read_lock_bh(&tipc_nametbl_lock);
Allan Stephense11aa052012-04-17 17:57:52 -0400219 named_distribute(&message_list, node, &publ_cluster, max_item_buf);
Allan Stephensa9098042012-04-17 17:57:52 -0400220 named_distribute(&message_list, node, &publ_zone, max_item_buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900221 read_unlock_bh(&tipc_nametbl_lock);
Allan Stephens9aa88c22011-05-31 13:38:02 -0400222
Ying Xue247f0f32014-02-18 16:06:46 +0800223 tipc_link_names_xmit(&message_list, node);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100224}
225
226/**
Allan Stephensf1379172011-02-23 14:13:41 -0500227 * named_purge_publ - remove publication associated with a failed node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900228 *
229 * Invoked for each publication issued by a newly failed node.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100230 * Removes publication structure from name table & deletes it.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100231 */
Allan Stephensf1379172011-02-23 14:13:41 -0500232static void named_purge_publ(struct publication *publ)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100233{
234 struct publication *p;
Allan Stephensf1310722006-06-25 23:51:37 -0700235
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900236 write_lock_bh(&tipc_nametbl_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900237 p = tipc_nametbl_remove_publ(publ->type, publ->lower,
Per Liden4323add2006-01-18 00:38:21 +0100238 publ->node, publ->ref, publ->key);
Allan Stephens431697e2011-02-23 13:51:15 -0500239 if (p)
240 tipc_nodesub_unsubscribe(&p->subscr);
Per Liden4323add2006-01-18 00:38:21 +0100241 write_unlock_bh(&tipc_nametbl_lock);
Allan Stephensf1310722006-06-25 23:51:37 -0700242
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900243 if (p != publ) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400244 pr_err("Unable to remove publication from failed node\n"
245 " (type=%u, lower=%u, node=0x%x, ref=%u, key=%u)\n",
246 publ->type, publ->lower, publ->node, publ->ref,
247 publ->key);
Allan Stephensf1310722006-06-25 23:51:37 -0700248 }
249
Allan Stephense83504f2010-12-31 18:59:30 +0000250 kfree(p);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100251}
252
253/**
Ying Xue247f0f32014-02-18 16:06:46 +0800254 * tipc_named_rcv - process name table update message sent by another node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100255 */
Ying Xue247f0f32014-02-18 16:06:46 +0800256void tipc_named_rcv(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100257{
258 struct publication *publ;
259 struct tipc_msg *msg = buf_msg(buf);
260 struct distr_item *item = (struct distr_item *)msg_data(msg);
261 u32 count = msg_data_sz(msg) / ITEM_SIZE;
262
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900263 write_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100264 while (count--) {
265 if (msg_type(msg) == PUBLICATION) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900266 publ = tipc_nametbl_insert_publ(ntohl(item->type),
Per Liden4323add2006-01-18 00:38:21 +0100267 ntohl(item->lower),
268 ntohl(item->upper),
269 TIPC_CLUSTER_SCOPE,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900270 msg_orignode(msg),
Per Liden4323add2006-01-18 00:38:21 +0100271 ntohl(item->ref),
272 ntohl(item->key));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100273 if (publ) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900274 tipc_nodesub_subscribe(&publ->subscr,
275 msg_orignode(msg),
Per Liden4323add2006-01-18 00:38:21 +0100276 publ,
Allan Stephensf1379172011-02-23 14:13:41 -0500277 (net_ev_handler)
278 named_purge_publ);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100279 }
280 } else if (msg_type(msg) == WITHDRAWAL) {
Per Liden4323add2006-01-18 00:38:21 +0100281 publ = tipc_nametbl_remove_publ(ntohl(item->type),
282 ntohl(item->lower),
283 msg_orignode(msg),
284 ntohl(item->ref),
285 ntohl(item->key));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100286
287 if (publ) {
Per Liden4323add2006-01-18 00:38:21 +0100288 tipc_nodesub_unsubscribe(&publ->subscr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900289 kfree(publ);
Allan Stephensf1310722006-06-25 23:51:37 -0700290 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400291 pr_err("Unable to remove publication by node 0x%x\n"
292 " (type=%u, lower=%u, ref=%u, key=%u)\n",
293 msg_orignode(msg), ntohl(item->type),
294 ntohl(item->lower), ntohl(item->ref),
295 ntohl(item->key));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100296 }
297 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400298 pr_warn("Unrecognized name table message received\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100299 }
300 item++;
301 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900302 write_unlock_bh(&tipc_nametbl_lock);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400303 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100304}
305
306/**
Allan Stephens1110b8d2012-04-17 17:57:52 -0400307 * tipc_named_reinit - re-initialize local publications
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900308 *
Allan Stephens945af1c2011-10-14 14:42:25 -0400309 * This routine is called whenever TIPC networking is enabled.
Allan Stephens1110b8d2012-04-17 17:57:52 -0400310 * All name table entries published by this node are updated to reflect
311 * the node's new network address.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100312 */
Per Liden4323add2006-01-18 00:38:21 +0100313void tipc_named_reinit(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100314{
315 struct publication *publ;
Allan Stephensa9098042012-04-17 17:57:52 -0400316 int scope;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100317
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900318 write_lock_bh(&tipc_nametbl_lock);
Allan Stephens945af1c2011-10-14 14:42:25 -0400319
Allan Stephens1110b8d2012-04-17 17:57:52 -0400320 for (scope = TIPC_ZONE_SCOPE; scope <= TIPC_NODE_SCOPE; scope++)
Allan Stephensa9098042012-04-17 17:57:52 -0400321 list_for_each_entry(publ, &publ_lists[scope]->list, local_list)
322 publ->node = tipc_own_addr;
Allan Stephens945af1c2011-10-14 14:42:25 -0400323
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900324 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100325}