blob: d40df588263eda0e74d8bdda4aa9b01a1a56c048 [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 *
Erik Hugnea5325ae2014-08-28 09:08:47 +02004 * Copyright (c) 2000-2006, 2014, 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
Erik Hugnea5325ae2014-08-28 09:08:47 +020041int 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
Per Lidenb97bf3f2006-01-02 19:04:38 +010056/**
57 * publ_to_item - add publication info to a publication message
58 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010059static 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);
Per Lidenb97bf3f2006-01-02 19:04:38 +010066}
67
68/**
69 * named_prepare_buf - allocate & initialize a publication message
70 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010071static struct sk_buff *named_prepare_buf(u32 type, u32 size, u32 dest)
72{
Allan Stephens741d9eb2011-05-31 15:03:18 -040073 struct sk_buff *buf = tipc_buf_acquire(INT_H_SIZE + size);
Per Lidenb97bf3f2006-01-02 19:04:38 +010074 struct tipc_msg *msg;
75
76 if (buf != NULL) {
77 msg = buf_msg(buf);
Allan Stephens741d9eb2011-05-31 15:03:18 -040078 tipc_msg_init(msg, NAME_DISTRIBUTOR, type, INT_H_SIZE, dest);
79 msg_set_size(msg, INT_H_SIZE + size);
Per Lidenb97bf3f2006-01-02 19:04:38 +010080 }
81 return buf;
82}
83
Ying Xuef2f98002015-01-09 15:27:05 +080084void named_cluster_distribute(struct net *net, struct sk_buff *skb)
Allan Stephens8f92df62010-12-31 18:59:19 +000085{
Ying Xuef2f98002015-01-09 15:27:05 +080086 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xuea6ca1092014-11-26 11:41:55 +080087 struct sk_buff *oskb;
Jon Paul Maloydbdf6d22014-07-16 20:40:58 -040088 struct tipc_node *node;
89 u32 dnode;
Allan Stephens8f92df62010-12-31 18:59:19 +000090
Ying Xue6c7a7622014-03-27 12:54:37 +080091 rcu_read_lock();
Ying Xuef2f98002015-01-09 15:27:05 +080092 list_for_each_entry_rcu(node, &tn->node_list, list) {
Jon Paul Maloydbdf6d22014-07-16 20:40:58 -040093 dnode = node->addr;
94 if (in_own_node(dnode))
95 continue;
96 if (!tipc_node_active_links(node))
97 continue;
Ying Xuea6ca1092014-11-26 11:41:55 +080098 oskb = skb_copy(skb, GFP_ATOMIC);
99 if (!oskb)
Jon Paul Maloydbdf6d22014-07-16 20:40:58 -0400100 break;
Ying Xuea6ca1092014-11-26 11:41:55 +0800101 msg_set_destnode(buf_msg(oskb), dnode);
Ying Xuef2f98002015-01-09 15:27:05 +0800102 tipc_link_xmit_skb(net, oskb, dnode, dnode);
Allan Stephens8f92df62010-12-31 18:59:19 +0000103 }
Ying Xue6c7a7622014-03-27 12:54:37 +0800104 rcu_read_unlock();
Allan Stephens8f92df62010-12-31 18:59:19 +0000105
Ying Xuea6ca1092014-11-26 11:41:55 +0800106 kfree_skb(skb);
Allan Stephens8f92df62010-12-31 18:59:19 +0000107}
108
Per Lidenb97bf3f2006-01-02 19:04:38 +0100109/**
Per Liden4323add2006-01-18 00:38:21 +0100110 * tipc_named_publish - tell other nodes about a new publication by this node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100111 */
Ying Xueeab8c0452014-04-28 18:00:10 +0800112struct sk_buff *tipc_named_publish(struct publication *publ)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100113{
114 struct sk_buff *buf;
115 struct distr_item *item;
116
Ying Xue97ede292014-12-02 15:00:30 +0800117 list_add_tail_rcu(&publ->local_list,
118 &tipc_nametbl->publ_list[publ->scope]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100119
Allan Stephens1110b8d2012-04-17 17:57:52 -0400120 if (publ->scope == TIPC_NODE_SCOPE)
Ying Xueeab8c0452014-04-28 18:00:10 +0800121 return NULL;
Allan Stephens1110b8d2012-04-17 17:57:52 -0400122
Per Lidenb97bf3f2006-01-02 19:04:38 +0100123 buf = named_prepare_buf(PUBLICATION, ITEM_SIZE, 0);
124 if (!buf) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400125 pr_warn("Publication distribution failure\n");
Ying Xueeab8c0452014-04-28 18:00:10 +0800126 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127 }
128
129 item = (struct distr_item *)msg_data(buf_msg(buf));
130 publ_to_item(item, publ);
Ying Xueeab8c0452014-04-28 18:00:10 +0800131 return buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100132}
133
134/**
Per Liden4323add2006-01-18 00:38:21 +0100135 * tipc_named_withdraw - tell other nodes about a withdrawn publication by this node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100136 */
Ying Xueeab8c0452014-04-28 18:00:10 +0800137struct sk_buff *tipc_named_withdraw(struct publication *publ)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100138{
139 struct sk_buff *buf;
140 struct distr_item *item;
141
142 list_del(&publ->local_list);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100143
Allan Stephens1110b8d2012-04-17 17:57:52 -0400144 if (publ->scope == TIPC_NODE_SCOPE)
Ying Xueeab8c0452014-04-28 18:00:10 +0800145 return NULL;
Allan Stephens1110b8d2012-04-17 17:57:52 -0400146
Per Lidenb97bf3f2006-01-02 19:04:38 +0100147 buf = named_prepare_buf(WITHDRAWAL, ITEM_SIZE, 0);
148 if (!buf) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400149 pr_warn("Withdrawal distribution failure\n");
Ying Xueeab8c0452014-04-28 18:00:10 +0800150 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100151 }
152
153 item = (struct distr_item *)msg_data(buf_msg(buf));
154 publ_to_item(item, publ);
Ying Xueeab8c0452014-04-28 18:00:10 +0800155 return buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100156}
157
Jon Paul Maloydbdf6d22014-07-16 20:40:58 -0400158/**
Allan Stephense11aa052012-04-17 17:57:52 -0400159 * named_distribute - prepare name info for bulk distribution to another node
Ying Xuea6ca1092014-11-26 11:41:55 +0800160 * @list: list of messages (buffers) to be returned from this function
Jon Paul Maloydbdf6d22014-07-16 20:40:58 -0400161 * @dnode: node to be updated
162 * @pls: linked list of publication items to be packed into buffer chain
Allan Stephense11aa052012-04-17 17:57:52 -0400163 */
Ying Xuef2f98002015-01-09 15:27:05 +0800164static void named_distribute(struct net *net, struct sk_buff_head *list,
165 u32 dnode, struct list_head *pls)
Allan Stephense11aa052012-04-17 17:57:52 -0400166{
167 struct publication *publ;
Ying Xuea6ca1092014-11-26 11:41:55 +0800168 struct sk_buff *skb = NULL;
Allan Stephense11aa052012-04-17 17:57:52 -0400169 struct distr_item *item = NULL;
Ying Xuef2f98002015-01-09 15:27:05 +0800170 uint msg_dsz = (tipc_node_get_mtu(net, dnode, 0) / ITEM_SIZE) *
171 ITEM_SIZE;
Ying Xue1b61e702014-12-02 15:00:23 +0800172 uint msg_rem = msg_dsz;
Allan Stephense11aa052012-04-17 17:57:52 -0400173
Ying Xue993bfe52014-12-02 15:00:24 +0800174 list_for_each_entry(publ, pls, local_list) {
Jon Paul Maloydbdf6d22014-07-16 20:40:58 -0400175 /* Prepare next buffer: */
Ying Xuea6ca1092014-11-26 11:41:55 +0800176 if (!skb) {
Ying Xuea6ca1092014-11-26 11:41:55 +0800177 skb = named_prepare_buf(PUBLICATION, msg_rem, dnode);
178 if (!skb) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400179 pr_warn("Bulk publication failure\n");
Allan Stephense11aa052012-04-17 17:57:52 -0400180 return;
181 }
Ying Xuea6ca1092014-11-26 11:41:55 +0800182 item = (struct distr_item *)msg_data(buf_msg(skb));
Allan Stephense11aa052012-04-17 17:57:52 -0400183 }
Jon Paul Maloydbdf6d22014-07-16 20:40:58 -0400184
185 /* Pack publication into message: */
Allan Stephense11aa052012-04-17 17:57:52 -0400186 publ_to_item(item, publ);
187 item++;
Jon Paul Maloydbdf6d22014-07-16 20:40:58 -0400188 msg_rem -= ITEM_SIZE;
189
190 /* Append full buffer to list: */
191 if (!msg_rem) {
Ying Xuea6ca1092014-11-26 11:41:55 +0800192 __skb_queue_tail(list, skb);
193 skb = NULL;
Ying Xue1b61e702014-12-02 15:00:23 +0800194 msg_rem = msg_dsz;
Allan Stephense11aa052012-04-17 17:57:52 -0400195 }
196 }
Ying Xue1b61e702014-12-02 15:00:23 +0800197 if (skb) {
198 msg_set_size(buf_msg(skb), INT_H_SIZE + (msg_dsz - msg_rem));
199 skb_trim(skb, INT_H_SIZE + (msg_dsz - msg_rem));
200 __skb_queue_tail(list, skb);
201 }
Allan Stephense11aa052012-04-17 17:57:52 -0400202}
203
Per Lidenb97bf3f2006-01-02 19:04:38 +0100204/**
Per Liden4323add2006-01-18 00:38:21 +0100205 * tipc_named_node_up - tell specified node about all publications by this node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100206 */
Ying Xuef2f98002015-01-09 15:27:05 +0800207void tipc_named_node_up(struct net *net, u32 dnode)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100208{
Ying Xuea6ca1092014-11-26 11:41:55 +0800209 struct sk_buff_head head;
210
211 __skb_queue_head_init(&head);
Allan Stephens9aa88c22011-05-31 13:38:02 -0400212
Ying Xue97ede292014-12-02 15:00:30 +0800213 rcu_read_lock();
Ying Xuef2f98002015-01-09 15:27:05 +0800214 named_distribute(net, &head, dnode,
Ying Xue993bfe52014-12-02 15:00:24 +0800215 &tipc_nametbl->publ_list[TIPC_CLUSTER_SCOPE]);
Ying Xuef2f98002015-01-09 15:27:05 +0800216 named_distribute(net, &head, dnode,
Ying Xue993bfe52014-12-02 15:00:24 +0800217 &tipc_nametbl->publ_list[TIPC_ZONE_SCOPE]);
Ying Xue97ede292014-12-02 15:00:30 +0800218 rcu_read_unlock();
Allan Stephens9aa88c22011-05-31 13:38:02 -0400219
Ying Xuef2f98002015-01-09 15:27:05 +0800220 tipc_link_xmit(net, &head, dnode, dnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100221}
222
Ying Xuef2f98002015-01-09 15:27:05 +0800223static void tipc_publ_subscribe(struct net *net, struct publication *publ,
224 u32 addr)
Ying Xuea8f48af2014-11-26 11:41:45 +0800225{
226 struct tipc_node *node;
227
228 if (in_own_node(addr))
229 return;
230
Ying Xuef2f98002015-01-09 15:27:05 +0800231 node = tipc_node_find(net, addr);
Ying Xuea8f48af2014-11-26 11:41:45 +0800232 if (!node) {
233 pr_warn("Node subscription rejected, unknown node 0x%x\n",
234 addr);
235 return;
236 }
237
238 tipc_node_lock(node);
239 list_add_tail(&publ->nodesub_list, &node->publ_list);
240 tipc_node_unlock(node);
241}
242
Ying Xuef2f98002015-01-09 15:27:05 +0800243static void tipc_publ_unsubscribe(struct net *net, struct publication *publ,
244 u32 addr)
Ying Xuea8f48af2014-11-26 11:41:45 +0800245{
246 struct tipc_node *node;
247
Ying Xuef2f98002015-01-09 15:27:05 +0800248 node = tipc_node_find(net, addr);
Ying Xuea8f48af2014-11-26 11:41:45 +0800249 if (!node)
250 return;
251
252 tipc_node_lock(node);
253 list_del_init(&publ->nodesub_list);
254 tipc_node_unlock(node);
255}
256
Per Lidenb97bf3f2006-01-02 19:04:38 +0100257/**
Ying Xuea8f48af2014-11-26 11:41:45 +0800258 * tipc_publ_purge - remove publication associated with a failed node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900259 *
260 * Invoked for each publication issued by a newly failed node.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100261 * Removes publication structure from name table & deletes it.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100262 */
Ying Xuef2f98002015-01-09 15:27:05 +0800263static void tipc_publ_purge(struct net *net, struct publication *publ, u32 addr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100264{
265 struct publication *p;
Allan Stephensf1310722006-06-25 23:51:37 -0700266
Ying Xue97ede292014-12-02 15:00:30 +0800267 spin_lock_bh(&tipc_nametbl_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900268 p = tipc_nametbl_remove_publ(publ->type, publ->lower,
Per Liden4323add2006-01-18 00:38:21 +0100269 publ->node, publ->ref, publ->key);
Allan Stephens431697e2011-02-23 13:51:15 -0500270 if (p)
Ying Xuef2f98002015-01-09 15:27:05 +0800271 tipc_publ_unsubscribe(net, p, addr);
Ying Xue97ede292014-12-02 15:00:30 +0800272 spin_unlock_bh(&tipc_nametbl_lock);
Allan Stephensf1310722006-06-25 23:51:37 -0700273
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900274 if (p != publ) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400275 pr_err("Unable to remove publication from failed node\n"
276 " (type=%u, lower=%u, node=0x%x, ref=%u, key=%u)\n",
277 publ->type, publ->lower, publ->node, publ->ref,
278 publ->key);
Allan Stephensf1310722006-06-25 23:51:37 -0700279 }
280
Ying Xue97ede292014-12-02 15:00:30 +0800281 kfree_rcu(p, rcu);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100282}
283
Ying Xuef2f98002015-01-09 15:27:05 +0800284void tipc_publ_notify(struct net *net, struct list_head *nsub_list, u32 addr)
Ying Xuea8f48af2014-11-26 11:41:45 +0800285{
286 struct publication *publ, *tmp;
287
288 list_for_each_entry_safe(publ, tmp, nsub_list, nodesub_list)
Ying Xuef2f98002015-01-09 15:27:05 +0800289 tipc_publ_purge(net, publ, addr);
Ying Xuea8f48af2014-11-26 11:41:45 +0800290}
291
Per Lidenb97bf3f2006-01-02 19:04:38 +0100292/**
Erik Hugnef4ad8a42014-08-28 09:08:46 +0200293 * tipc_update_nametbl - try to process a nametable update and notify
294 * subscribers
295 *
296 * tipc_nametbl_lock must be held.
297 * Returns the publication item if successful, otherwise NULL.
298 */
Ying Xuef2f98002015-01-09 15:27:05 +0800299static bool tipc_update_nametbl(struct net *net, struct distr_item *i,
300 u32 node, u32 dtype)
Erik Hugnef4ad8a42014-08-28 09:08:46 +0200301{
302 struct publication *publ = NULL;
303
304 if (dtype == PUBLICATION) {
305 publ = tipc_nametbl_insert_publ(ntohl(i->type), ntohl(i->lower),
306 ntohl(i->upper),
307 TIPC_CLUSTER_SCOPE, node,
308 ntohl(i->ref), ntohl(i->key));
309 if (publ) {
Ying Xuef2f98002015-01-09 15:27:05 +0800310 tipc_publ_subscribe(net, publ, node);
Erik Hugne0fc4dff2014-09-10 14:02:50 +0200311 return true;
Erik Hugnef4ad8a42014-08-28 09:08:46 +0200312 }
313 } else if (dtype == WITHDRAWAL) {
314 publ = tipc_nametbl_remove_publ(ntohl(i->type), ntohl(i->lower),
315 node, ntohl(i->ref),
316 ntohl(i->key));
317 if (publ) {
Ying Xuef2f98002015-01-09 15:27:05 +0800318 tipc_publ_unsubscribe(net, publ, node);
Ying Xue97ede292014-12-02 15:00:30 +0800319 kfree_rcu(publ, rcu);
Erik Hugne0fc4dff2014-09-10 14:02:50 +0200320 return true;
Erik Hugnef4ad8a42014-08-28 09:08:46 +0200321 }
322 } else {
323 pr_warn("Unrecognized name table message received\n");
324 }
Erik Hugne0fc4dff2014-09-10 14:02:50 +0200325 return false;
Erik Hugnef4ad8a42014-08-28 09:08:46 +0200326}
327
328/**
Erik Hugnea5325ae2014-08-28 09:08:47 +0200329 * tipc_named_add_backlog - add a failed name table update to the backlog
330 *
331 */
332static void tipc_named_add_backlog(struct distr_item *i, u32 type, u32 node)
333{
334 struct distr_queue_item *e;
335 unsigned long now = get_jiffies_64();
336
337 e = kzalloc(sizeof(*e), GFP_ATOMIC);
338 if (!e)
339 return;
340 e->dtype = type;
341 e->node = node;
342 e->expires = now + msecs_to_jiffies(sysctl_tipc_named_timeout);
343 memcpy(e, i, sizeof(*i));
344 list_add_tail(&e->next, &tipc_dist_queue);
345}
346
347/**
348 * tipc_named_process_backlog - try to process any pending name table updates
349 * from the network.
350 */
Ying Xuef2f98002015-01-09 15:27:05 +0800351void tipc_named_process_backlog(struct net *net)
Erik Hugnea5325ae2014-08-28 09:08:47 +0200352{
353 struct distr_queue_item *e, *tmp;
354 char addr[16];
355 unsigned long now = get_jiffies_64();
356
357 list_for_each_entry_safe(e, tmp, &tipc_dist_queue, next) {
358 if (time_after(e->expires, now)) {
Ying Xuef2f98002015-01-09 15:27:05 +0800359 if (!tipc_update_nametbl(net, &e->i, e->node, e->dtype))
Erik Hugnea5325ae2014-08-28 09:08:47 +0200360 continue;
361 } else {
362 tipc_addr_string_fill(addr, e->node);
363 pr_warn_ratelimited("Dropping name table update (%d) of {%u, %u, %u} from %s key=%u\n",
364 e->dtype, ntohl(e->i.type),
365 ntohl(e->i.lower),
366 ntohl(e->i.upper),
367 addr, ntohl(e->i.key));
368 }
369 list_del(&e->next);
370 kfree(e);
371 }
372}
373
374/**
Ying Xue247f0f32014-02-18 16:06:46 +0800375 * tipc_named_rcv - process name table update message sent by another node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100376 */
Ying Xuef2f98002015-01-09 15:27:05 +0800377void tipc_named_rcv(struct net *net, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100378{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100379 struct tipc_msg *msg = buf_msg(buf);
380 struct distr_item *item = (struct distr_item *)msg_data(msg);
381 u32 count = msg_data_sz(msg) / ITEM_SIZE;
Erik Hugnea5325ae2014-08-28 09:08:47 +0200382 u32 node = msg_orignode(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100383
Ying Xue97ede292014-12-02 15:00:30 +0800384 spin_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100385 while (count--) {
Ying Xuef2f98002015-01-09 15:27:05 +0800386 if (!tipc_update_nametbl(net, item, node, msg_type(msg)))
Erik Hugnea5325ae2014-08-28 09:08:47 +0200387 tipc_named_add_backlog(item, msg_type(msg), node);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100388 item++;
389 }
Ying Xuef2f98002015-01-09 15:27:05 +0800390 tipc_named_process_backlog(net);
Ying Xue97ede292014-12-02 15:00:30 +0800391 spin_unlock_bh(&tipc_nametbl_lock);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400392 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100393}
394
395/**
Allan Stephens1110b8d2012-04-17 17:57:52 -0400396 * tipc_named_reinit - re-initialize local publications
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900397 *
Allan Stephens945af1c2011-10-14 14:42:25 -0400398 * This routine is called whenever TIPC networking is enabled.
Allan Stephens1110b8d2012-04-17 17:57:52 -0400399 * All name table entries published by this node are updated to reflect
400 * the node's new network address.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100401 */
Per Liden4323add2006-01-18 00:38:21 +0100402void tipc_named_reinit(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100403{
404 struct publication *publ;
Allan Stephensa9098042012-04-17 17:57:52 -0400405 int scope;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100406
Ying Xue97ede292014-12-02 15:00:30 +0800407 spin_lock_bh(&tipc_nametbl_lock);
Allan Stephens945af1c2011-10-14 14:42:25 -0400408
Allan Stephens1110b8d2012-04-17 17:57:52 -0400409 for (scope = TIPC_ZONE_SCOPE; scope <= TIPC_NODE_SCOPE; scope++)
Ying Xue97ede292014-12-02 15:00:30 +0800410 list_for_each_entry_rcu(publ, &tipc_nametbl->publ_list[scope],
411 local_list)
Allan Stephensa9098042012-04-17 17:57:52 -0400412 publ->node = tipc_own_addr;
Allan Stephens945af1c2011-10-14 14:42:25 -0400413
Ying Xue97ede292014-12-02 15:00:30 +0800414 spin_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100415}