name_distr.c 10.4 KB
Newer Older
P
Per Liden 已提交
1 2
/*
 * net/tipc/name_distr.c: TIPC name distribution code
3
 *
4
 * Copyright (c) 2000-2006, 2014, Ericsson AB
5
 * Copyright (c) 2005, 2010-2011, Wind River Systems
P
Per Liden 已提交
6 7
 * All rights reserved.
 *
P
Per Liden 已提交
8
 * Redistribution and use in source and binary forms, with or without
P
Per Liden 已提交
9 10
 * modification, are permitted provided that the following conditions are met:
 *
P
Per Liden 已提交
11 12 13 14 15 16 17 18
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. Neither the names of the copyright holders nor the names of its
 *    contributors may be used to endorse or promote products derived from
 *    this software without specific prior written permission.
P
Per Liden 已提交
19
 *
P
Per Liden 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
P
Per Liden 已提交
34 35 36 37 38 39 40
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include "core.h"
#include "link.h"
#include "name_distr.h"

41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
int sysctl_tipc_named_timeout __read_mostly = 2000;

/**
 * struct tipc_dist_queue - queue holding deferred name table updates
 */
static struct list_head tipc_dist_queue = LIST_HEAD_INIT(tipc_dist_queue);

struct distr_queue_item {
	struct distr_item i;
	u32 dtype;
	u32 node;
	unsigned long expires;
	struct list_head next;
};

P
Per Liden 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
/**
 * publ_to_item - add publication info to a publication message
 */
static void publ_to_item(struct distr_item *i, struct publication *p)
{
	i->type = htonl(p->type);
	i->lower = htonl(p->lower);
	i->upper = htonl(p->upper);
	i->ref = htonl(p->ref);
	i->key = htonl(p->key);
}

/**
 * named_prepare_buf - allocate & initialize a publication message
 */
71 72
static struct sk_buff *named_prepare_buf(struct net *net, u32 type, u32 size,
					 u32 dest)
P
Per Liden 已提交
73
{
74
	struct tipc_net *tn = net_generic(net, tipc_net_id);
75
	struct sk_buff *buf = tipc_buf_acquire(INT_H_SIZE + size);
P
Per Liden 已提交
76 77 78 79
	struct tipc_msg *msg;

	if (buf != NULL) {
		msg = buf_msg(buf);
80 81
		tipc_msg_init(tn->own_addr, msg, NAME_DISTRIBUTOR, type,
			      INT_H_SIZE, dest);
82
		msg_set_size(msg, INT_H_SIZE + size);
P
Per Liden 已提交
83 84 85 86 87
	}
	return buf;
}

/**
88
 * tipc_named_publish - tell other nodes about a new publication by this node
P
Per Liden 已提交
89
 */
90
struct sk_buff *tipc_named_publish(struct net *net, struct publication *publ)
P
Per Liden 已提交
91
{
92
	struct tipc_net *tn = net_generic(net, tipc_net_id);
P
Per Liden 已提交
93 94 95
	struct sk_buff *buf;
	struct distr_item *item;

96
	list_add_tail_rcu(&publ->local_list,
97
			  &tn->nametbl->publ_list[publ->scope]);
P
Per Liden 已提交
98

99
	if (publ->scope == TIPC_NODE_SCOPE)
100
		return NULL;
101

102
	buf = named_prepare_buf(net, PUBLICATION, ITEM_SIZE, 0);
P
Per Liden 已提交
103
	if (!buf) {
104
		pr_warn("Publication distribution failure\n");
105
		return NULL;
P
Per Liden 已提交
106 107 108 109
	}

	item = (struct distr_item *)msg_data(buf_msg(buf));
	publ_to_item(item, publ);
110
	return buf;
P
Per Liden 已提交
111 112 113
}

/**
114
 * tipc_named_withdraw - tell other nodes about a withdrawn publication by this node
P
Per Liden 已提交
115
 */
116
struct sk_buff *tipc_named_withdraw(struct net *net, struct publication *publ)
P
Per Liden 已提交
117 118 119 120 121 122
{
	struct sk_buff *buf;
	struct distr_item *item;

	list_del(&publ->local_list);

123
	if (publ->scope == TIPC_NODE_SCOPE)
124
		return NULL;
125

126
	buf = named_prepare_buf(net, WITHDRAWAL, ITEM_SIZE, 0);
P
Per Liden 已提交
127
	if (!buf) {
128
		pr_warn("Withdrawal distribution failure\n");
129
		return NULL;
P
Per Liden 已提交
130 131 132 133
	}

	item = (struct distr_item *)msg_data(buf_msg(buf));
	publ_to_item(item, publ);
134
	return buf;
P
Per Liden 已提交
135 136
}

137
/**
138
 * named_distribute - prepare name info for bulk distribution to another node
139
 * @list: list of messages (buffers) to be returned from this function
140 141
 * @dnode: node to be updated
 * @pls: linked list of publication items to be packed into buffer chain
142
 */
143 144
static void named_distribute(struct net *net, struct sk_buff_head *list,
			     u32 dnode, struct list_head *pls)
145 146
{
	struct publication *publ;
147
	struct sk_buff *skb = NULL;
148
	struct distr_item *item = NULL;
149 150
	uint msg_dsz = (tipc_node_get_mtu(net, dnode, 0) / ITEM_SIZE) *
			ITEM_SIZE;
151
	uint msg_rem = msg_dsz;
152

153
	list_for_each_entry(publ, pls, local_list) {
154
		/* Prepare next buffer: */
155
		if (!skb) {
156 157
			skb = named_prepare_buf(net, PUBLICATION, msg_rem,
						dnode);
158
			if (!skb) {
159
				pr_warn("Bulk publication failure\n");
160 161
				return;
			}
162
			item = (struct distr_item *)msg_data(buf_msg(skb));
163
		}
164 165

		/* Pack publication into message: */
166 167
		publ_to_item(item, publ);
		item++;
168 169 170 171
		msg_rem -= ITEM_SIZE;

		/* Append full buffer to list: */
		if (!msg_rem) {
172 173
			__skb_queue_tail(list, skb);
			skb = NULL;
174
			msg_rem = msg_dsz;
175 176
		}
	}
177 178 179 180 181
	if (skb) {
		msg_set_size(buf_msg(skb), INT_H_SIZE + (msg_dsz - msg_rem));
		skb_trim(skb, INT_H_SIZE + (msg_dsz - msg_rem));
		__skb_queue_tail(list, skb);
	}
182 183
}

P
Per Liden 已提交
184
/**
185
 * tipc_named_node_up - tell specified node about all publications by this node
P
Per Liden 已提交
186
 */
187
void tipc_named_node_up(struct net *net, u32 dnode)
P
Per Liden 已提交
188
{
189
	struct tipc_net *tn = net_generic(net, tipc_net_id);
190 191 192
	struct sk_buff_head head;

	__skb_queue_head_init(&head);
193

194
	rcu_read_lock();
195
	named_distribute(net, &head, dnode,
196
			 &tn->nametbl->publ_list[TIPC_CLUSTER_SCOPE]);
197
	named_distribute(net, &head, dnode,
198
			 &tn->nametbl->publ_list[TIPC_ZONE_SCOPE]);
199
	rcu_read_unlock();
200

201
	tipc_node_xmit(net, &head, dnode, 0);
P
Per Liden 已提交
202 203 204
}

/**
205
 * tipc_publ_purge - remove publication associated with a failed node
206 207
 *
 * Invoked for each publication issued by a newly failed node.
P
Per Liden 已提交
208 209
 * Removes publication structure from name table & deletes it.
 */
210
static void tipc_publ_purge(struct net *net, struct publication *publ, u32 addr)
P
Per Liden 已提交
211
{
212
	struct tipc_net *tn = net_generic(net, tipc_net_id);
P
Per Liden 已提交
213
	struct publication *p;
214

215 216
	spin_lock_bh(&tn->nametbl_lock);
	p = tipc_nametbl_remove_publ(net, publ->type, publ->lower,
217
				     publ->node, publ->ref, publ->key);
218
	if (p)
219
		tipc_node_unsubscribe(net, &p->nodesub_list, addr);
220
	spin_unlock_bh(&tn->nametbl_lock);
221

222
	if (p != publ) {
223 224 225 226
		pr_err("Unable to remove publication from failed node\n"
		       " (type=%u, lower=%u, node=0x%x, ref=%u, key=%u)\n",
		       publ->type, publ->lower, publ->node, publ->ref,
		       publ->key);
227 228
	}

229
	kfree_rcu(p, rcu);
P
Per Liden 已提交
230 231
}

232
void tipc_publ_notify(struct net *net, struct list_head *nsub_list, u32 addr)
233 234 235 236
{
	struct publication *publ, *tmp;

	list_for_each_entry_safe(publ, tmp, nsub_list, nodesub_list)
237
		tipc_publ_purge(net, publ, addr);
238 239
}

240 241 242 243 244 245 246
/**
 * tipc_update_nametbl - try to process a nametable update and notify
 *			 subscribers
 *
 * tipc_nametbl_lock must be held.
 * Returns the publication item if successful, otherwise NULL.
 */
247 248
static bool tipc_update_nametbl(struct net *net, struct distr_item *i,
				u32 node, u32 dtype)
249 250 251 252
{
	struct publication *publ = NULL;

	if (dtype == PUBLICATION) {
253 254
		publ = tipc_nametbl_insert_publ(net, ntohl(i->type),
						ntohl(i->lower),
255 256 257 258
						ntohl(i->upper),
						TIPC_CLUSTER_SCOPE, node,
						ntohl(i->ref), ntohl(i->key));
		if (publ) {
259
			tipc_node_subscribe(net, &publ->nodesub_list, node);
E
Erik Hugne 已提交
260
			return true;
261 262
		}
	} else if (dtype == WITHDRAWAL) {
263 264
		publ = tipc_nametbl_remove_publ(net, ntohl(i->type),
						ntohl(i->lower),
265 266 267
						node, ntohl(i->ref),
						ntohl(i->key));
		if (publ) {
268
			tipc_node_unsubscribe(net, &publ->nodesub_list, node);
269
			kfree_rcu(publ, rcu);
E
Erik Hugne 已提交
270
			return true;
271 272 273 274
		}
	} else {
		pr_warn("Unrecognized name table message received\n");
	}
E
Erik Hugne 已提交
275
	return false;
276 277
}

278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
/**
 * tipc_named_add_backlog - add a failed name table update to the backlog
 *
 */
static void tipc_named_add_backlog(struct distr_item *i, u32 type, u32 node)
{
	struct distr_queue_item *e;
	unsigned long now = get_jiffies_64();

	e = kzalloc(sizeof(*e), GFP_ATOMIC);
	if (!e)
		return;
	e->dtype = type;
	e->node = node;
	e->expires = now + msecs_to_jiffies(sysctl_tipc_named_timeout);
	memcpy(e, i, sizeof(*i));
	list_add_tail(&e->next, &tipc_dist_queue);
}

/**
 * tipc_named_process_backlog - try to process any pending name table updates
 * from the network.
 */
301
void tipc_named_process_backlog(struct net *net)
302 303 304 305 306 307 308
{
	struct distr_queue_item *e, *tmp;
	char addr[16];
	unsigned long now = get_jiffies_64();

	list_for_each_entry_safe(e, tmp, &tipc_dist_queue, next) {
		if (time_after(e->expires, now)) {
309
			if (!tipc_update_nametbl(net, &e->i, e->node, e->dtype))
310 311 312 313 314 315 316 317 318 319 320 321 322 323
				continue;
		} else {
			tipc_addr_string_fill(addr, e->node);
			pr_warn_ratelimited("Dropping name table update (%d) of {%u, %u, %u} from %s key=%u\n",
					    e->dtype, ntohl(e->i.type),
					    ntohl(e->i.lower),
					    ntohl(e->i.upper),
					    addr, ntohl(e->i.key));
		}
		list_del(&e->next);
		kfree(e);
	}
}

P
Per Liden 已提交
324
/**
325
 * tipc_named_rcv - process name table update messages sent by another node
P
Per Liden 已提交
326
 */
327
void tipc_named_rcv(struct net *net, struct sk_buff_head *inputq)
P
Per Liden 已提交
328
{
329
	struct tipc_net *tn = net_generic(net, tipc_net_id);
330 331 332 333 334 335
	struct tipc_msg *msg;
	struct distr_item *item;
	uint count;
	u32 node;
	struct sk_buff *skb;
	int mtype;
P
Per Liden 已提交
336

337
	spin_lock_bh(&tn->nametbl_lock);
338
	for (skb = skb_dequeue(inputq); skb; skb = skb_dequeue(inputq)) {
339
		skb_linearize(skb);
340 341 342 343 344 345 346 347 348 349 350 351
		msg = buf_msg(skb);
		mtype = msg_type(msg);
		item = (struct distr_item *)msg_data(msg);
		count = msg_data_sz(msg) / ITEM_SIZE;
		node = msg_orignode(msg);
		while (count--) {
			if (!tipc_update_nametbl(net, item, node, mtype))
				tipc_named_add_backlog(item, mtype, node);
			item++;
		}
		kfree_skb(skb);
		tipc_named_process_backlog(net);
P
Per Liden 已提交
352
	}
353
	spin_unlock_bh(&tn->nametbl_lock);
P
Per Liden 已提交
354 355 356
}

/**
357
 * tipc_named_reinit - re-initialize local publications
358
 *
359
 * This routine is called whenever TIPC networking is enabled.
360 361
 * All name table entries published by this node are updated to reflect
 * the node's new network address.
P
Per Liden 已提交
362
 */
363
void tipc_named_reinit(struct net *net)
P
Per Liden 已提交
364
{
365
	struct tipc_net *tn = net_generic(net, tipc_net_id);
P
Per Liden 已提交
366
	struct publication *publ;
367
	int scope;
P
Per Liden 已提交
368

369
	spin_lock_bh(&tn->nametbl_lock);
370

371
	for (scope = TIPC_ZONE_SCOPE; scope <= TIPC_NODE_SCOPE; scope++)
372
		list_for_each_entry_rcu(publ, &tn->nametbl->publ_list[scope],
373
					local_list)
374
			publ->node = tn->own_addr;
375

376
	spin_unlock_bh(&tn->nametbl_lock);
P
Per Liden 已提交
377
}