Merge branch 'for-davem' into for-next
[deliverable/linux.git] / net / tipc / name_table.c
CommitLineData
b97bf3fd
PL
1/*
2 * net/tipc/name_table.c: TIPC name table code
c4307285 3 *
3c724acd 4 * Copyright (c) 2000-2006, 2014-2015, Ericsson AB
993bfe5d 5 * Copyright (c) 2004-2008, 2010-2014, 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
4ac1c8d0 37#include <net/sock.h>
b97bf3fd 38#include "core.h"
22ae7cff 39#include "netlink.h"
b97bf3fd
PL
40#include "name_table.h"
41#include "name_distr.h"
b97bf3fd 42#include "subscr.h"
1da46568 43#include "bcast.h"
22ae7cff
RA
44#include "addr.h"
45#include <net/genetlink.h>
b97bf3fd 46
f046e7d9 47#define TIPC_NAMETBL_SIZE 1024 /* must be a power of 2 */
b97bf3fd 48
1593123a
RA
49static const struct nla_policy
50tipc_nl_name_table_policy[TIPC_NLA_NAME_TABLE_MAX + 1] = {
51 [TIPC_NLA_NAME_TABLE_UNSPEC] = { .type = NLA_UNSPEC },
52 [TIPC_NLA_NAME_TABLE_PUBL] = { .type = NLA_NESTED }
53};
54
b97bf3fd 55/**
b52124a5 56 * struct name_info - name sequence publication info
968edbe1
AS
57 * @node_list: circular list of publications made by own node
58 * @cluster_list: circular list of publications made by own cluster
59 * @zone_list: circular list of publications made by own zone
60 * @node_list_size: number of entries in "node_list"
61 * @cluster_list_size: number of entries in "cluster_list"
62 * @zone_list_size: number of entries in "zone_list"
63 *
64 * Note: The zone list always contains at least one entry, since all
65 * publications of the associated name sequence belong to it.
66 * (The cluster and node lists may be empty.)
b97bf3fd 67 */
b52124a5 68struct name_info {
f6f0a4d2
AS
69 struct list_head node_list;
70 struct list_head cluster_list;
71 struct list_head zone_list;
968edbe1
AS
72 u32 node_list_size;
73 u32 cluster_list_size;
74 u32 zone_list_size;
b97bf3fd
PL
75};
76
b52124a5
AS
77/**
78 * struct sub_seq - container for all published instances of a name sequence
79 * @lower: name sequence lower bound
80 * @upper: name sequence upper bound
81 * @info: pointer to name sequence publication info
82 */
b52124a5
AS
83struct sub_seq {
84 u32 lower;
85 u32 upper;
86 struct name_info *info;
87};
88
c4307285 89/**
b97bf3fd
PL
90 * struct name_seq - container for all published instances of a name type
91 * @type: 32 bit 'type' value for name sequence
92 * @sseq: pointer to dynamically-sized array of sub-sequences of this 'type';
93 * sub-sequences are sorted in ascending order
94 * @alloc: number of sub-sequences currently in array
f131072c 95 * @first_free: array index of first unused sub-sequence entry
b97bf3fd
PL
96 * @ns_list: links to adjacent name sequences in hash chain
97 * @subscriptions: list of subscriptions for this 'type'
307fdf5e 98 * @lock: spinlock controlling access to publication lists of all sub-sequences
97ede29e 99 * @rcu: RCU callback head used for deferred freeing
b97bf3fd 100 */
b97bf3fd
PL
101struct name_seq {
102 u32 type;
103 struct sub_seq *sseqs;
104 u32 alloc;
105 u32 first_free;
106 struct hlist_node ns_list;
107 struct list_head subscriptions;
108 spinlock_t lock;
97ede29e 109 struct rcu_head rcu;
b97bf3fd
PL
110};
111
05790c64 112static int hash(int x)
b97bf3fd 113{
f046e7d9 114 return x & (TIPC_NAMETBL_SIZE - 1);
b97bf3fd
PL
115}
116
117/**
118 * publ_create - create a publication structure
119 */
c4307285
YH
120static struct publication *publ_create(u32 type, u32 lower, u32 upper,
121 u32 scope, u32 node, u32 port_ref,
b97bf3fd
PL
122 u32 key)
123{
0da974f4 124 struct publication *publ = kzalloc(sizeof(*publ), GFP_ATOMIC);
b97bf3fd 125 if (publ == NULL) {
2cf8aa19 126 pr_warn("Publication creation failure, no memory\n");
1fc54d8f 127 return NULL;
b97bf3fd
PL
128 }
129
b97bf3fd
PL
130 publ->type = type;
131 publ->lower = lower;
132 publ->upper = upper;
133 publ->scope = scope;
134 publ->node = node;
135 publ->ref = port_ref;
136 publ->key = key;
b97bf3fd 137 INIT_LIST_HEAD(&publ->pport_list);
b97bf3fd
PL
138 return publ;
139}
140
141/**
4323add6 142 * tipc_subseq_alloc - allocate a specified number of sub-sequence structures
b97bf3fd 143 */
988f088a 144static struct sub_seq *tipc_subseq_alloc(u32 cnt)
b97bf3fd 145{
0cee6bbe 146 return kcalloc(cnt, sizeof(struct sub_seq), GFP_ATOMIC);
b97bf3fd
PL
147}
148
149/**
4323add6 150 * tipc_nameseq_create - create a name sequence structure for the specified 'type'
c4307285 151 *
b97bf3fd
PL
152 * Allocates a single sub-sequence structure and sets it to all 0's.
153 */
988f088a 154static struct name_seq *tipc_nameseq_create(u32 type, struct hlist_head *seq_head)
b97bf3fd 155{
0da974f4 156 struct name_seq *nseq = kzalloc(sizeof(*nseq), GFP_ATOMIC);
4323add6 157 struct sub_seq *sseq = tipc_subseq_alloc(1);
b97bf3fd
PL
158
159 if (!nseq || !sseq) {
2cf8aa19 160 pr_warn("Name sequence creation failed, no memory\n");
b97bf3fd
PL
161 kfree(nseq);
162 kfree(sseq);
1fc54d8f 163 return NULL;
b97bf3fd
PL
164 }
165
34af946a 166 spin_lock_init(&nseq->lock);
b97bf3fd
PL
167 nseq->type = type;
168 nseq->sseqs = sseq;
b97bf3fd
PL
169 nseq->alloc = 1;
170 INIT_HLIST_NODE(&nseq->ns_list);
171 INIT_LIST_HEAD(&nseq->subscriptions);
97ede29e 172 hlist_add_head_rcu(&nseq->ns_list, seq_head);
b97bf3fd
PL
173 return nseq;
174}
175
2c53040f 176/**
b97bf3fd 177 * nameseq_find_subseq - find sub-sequence (if any) matching a name instance
c4307285 178 *
b97bf3fd
PL
179 * Very time-critical, so binary searches through sub-sequence array.
180 */
05790c64
SR
181static struct sub_seq *nameseq_find_subseq(struct name_seq *nseq,
182 u32 instance)
b97bf3fd
PL
183{
184 struct sub_seq *sseqs = nseq->sseqs;
185 int low = 0;
186 int high = nseq->first_free - 1;
187 int mid;
188
189 while (low <= high) {
190 mid = (low + high) / 2;
191 if (instance < sseqs[mid].lower)
192 high = mid - 1;
193 else if (instance > sseqs[mid].upper)
194 low = mid + 1;
195 else
196 return &sseqs[mid];
197 }
1fc54d8f 198 return NULL;
b97bf3fd
PL
199}
200
201/**
202 * nameseq_locate_subseq - determine position of name instance in sub-sequence
c4307285 203 *
b97bf3fd
PL
204 * Returns index in sub-sequence array of the entry that contains the specified
205 * instance value; if no entry contains that value, returns the position
206 * where a new entry for it would be inserted in the array.
207 *
208 * Note: Similar to binary search code for locating a sub-sequence.
209 */
b97bf3fd
PL
210static u32 nameseq_locate_subseq(struct name_seq *nseq, u32 instance)
211{
212 struct sub_seq *sseqs = nseq->sseqs;
213 int low = 0;
214 int high = nseq->first_free - 1;
215 int mid;
216
217 while (low <= high) {
218 mid = (low + high) / 2;
219 if (instance < sseqs[mid].lower)
220 high = mid - 1;
221 else if (instance > sseqs[mid].upper)
222 low = mid + 1;
223 else
224 return mid;
225 }
226 return low;
227}
228
229/**
617d3c7a 230 * tipc_nameseq_insert_publ
b97bf3fd 231 */
34747539
YX
232static struct publication *tipc_nameseq_insert_publ(struct net *net,
233 struct name_seq *nseq,
234 u32 type, u32 lower,
235 u32 upper, u32 scope,
236 u32 node, u32 port, u32 key)
b97bf3fd 237{
fead3909
PG
238 struct tipc_subscription *s;
239 struct tipc_subscription *st;
b97bf3fd
PL
240 struct publication *publ;
241 struct sub_seq *sseq;
b52124a5 242 struct name_info *info;
b97bf3fd
PL
243 int created_subseq = 0;
244
b97bf3fd 245 sseq = nameseq_find_subseq(nseq, lower);
b97bf3fd
PL
246 if (sseq) {
247
248 /* Lower end overlaps existing entry => need an exact match */
b97bf3fd 249 if ((sseq->lower != lower) || (sseq->upper != upper)) {
1fc54d8f 250 return NULL;
b97bf3fd 251 }
b52124a5
AS
252
253 info = sseq->info;
f80c24d9
AS
254
255 /* Check if an identical publication already exists */
256 list_for_each_entry(publ, &info->zone_list, zone_list) {
257 if ((publ->ref == port) && (publ->key == key) &&
258 (!publ->node || (publ->node == node)))
259 return NULL;
260 }
b97bf3fd
PL
261 } else {
262 u32 inspos;
263 struct sub_seq *freesseq;
264
265 /* Find where lower end should be inserted */
b97bf3fd
PL
266 inspos = nameseq_locate_subseq(nseq, lower);
267
268 /* Fail if upper end overlaps into an existing entry */
b97bf3fd
PL
269 if ((inspos < nseq->first_free) &&
270 (upper >= nseq->sseqs[inspos].lower)) {
1fc54d8f 271 return NULL;
b97bf3fd
PL
272 }
273
274 /* Ensure there is space for new sub-sequence */
b97bf3fd 275 if (nseq->first_free == nseq->alloc) {
9ab230f8
AS
276 struct sub_seq *sseqs = tipc_subseq_alloc(nseq->alloc * 2);
277
278 if (!sseqs) {
2cf8aa19
EH
279 pr_warn("Cannot publish {%u,%u,%u}, no memory\n",
280 type, lower, upper);
1fc54d8f 281 return NULL;
b97bf3fd 282 }
9ab230f8
AS
283 memcpy(sseqs, nseq->sseqs,
284 nseq->alloc * sizeof(struct sub_seq));
285 kfree(nseq->sseqs);
286 nseq->sseqs = sseqs;
287 nseq->alloc *= 2;
b97bf3fd 288 }
b97bf3fd 289
b52124a5
AS
290 info = kzalloc(sizeof(*info), GFP_ATOMIC);
291 if (!info) {
2cf8aa19
EH
292 pr_warn("Cannot publish {%u,%u,%u}, no memory\n",
293 type, lower, upper);
b52124a5
AS
294 return NULL;
295 }
296
f6f0a4d2
AS
297 INIT_LIST_HEAD(&info->node_list);
298 INIT_LIST_HEAD(&info->cluster_list);
299 INIT_LIST_HEAD(&info->zone_list);
300
b97bf3fd 301 /* Insert new sub-sequence */
b97bf3fd
PL
302 sseq = &nseq->sseqs[inspos];
303 freesseq = &nseq->sseqs[nseq->first_free];
0e65967e
AS
304 memmove(sseq + 1, sseq, (freesseq - sseq) * sizeof(*sseq));
305 memset(sseq, 0, sizeof(*sseq));
b97bf3fd
PL
306 nseq->first_free++;
307 sseq->lower = lower;
308 sseq->upper = upper;
b52124a5 309 sseq->info = info;
b97bf3fd
PL
310 created_subseq = 1;
311 }
b97bf3fd 312
617d3c7a 313 /* Insert a publication */
b97bf3fd
PL
314 publ = publ_create(type, lower, upper, scope, node, port, key);
315 if (!publ)
1fc54d8f 316 return NULL;
b97bf3fd 317
f6f0a4d2 318 list_add(&publ->zone_list, &info->zone_list);
b52124a5 319 info->zone_list_size++;
b97bf3fd 320
34747539 321 if (in_own_cluster(net, node)) {
f6f0a4d2 322 list_add(&publ->cluster_list, &info->cluster_list);
b52124a5 323 info->cluster_list_size++;
b97bf3fd
PL
324 }
325
34747539 326 if (in_own_node(net, node)) {
f6f0a4d2 327 list_add(&publ->node_list, &info->node_list);
b52124a5 328 info->node_list_size++;
b97bf3fd
PL
329 }
330
617d3c7a 331 /* Any subscriptions waiting for notification? */
b97bf3fd 332 list_for_each_entry_safe(s, st, &nseq->subscriptions, nameseq_list) {
4323add6
PL
333 tipc_subscr_report_overlap(s,
334 publ->lower,
335 publ->upper,
336 TIPC_PUBLISHED,
c4307285 337 publ->ref,
4323add6
PL
338 publ->node,
339 created_subseq);
b97bf3fd
PL
340 }
341 return publ;
342}
343
344/**
617d3c7a 345 * tipc_nameseq_remove_publ
c4307285 346 *
f131072c
AS
347 * NOTE: There may be cases where TIPC is asked to remove a publication
348 * that is not in the name table. For example, if another node issues a
349 * publication for a name sequence that overlaps an existing name sequence
350 * the publication will not be recorded, which means the publication won't
351 * be found when the name sequence is later withdrawn by that node.
352 * A failed withdraw request simply returns a failure indication and lets the
353 * caller issue any error or warning messages associated with such a problem.
b97bf3fd 354 */
34747539
YX
355static struct publication *tipc_nameseq_remove_publ(struct net *net,
356 struct name_seq *nseq,
357 u32 inst, u32 node,
358 u32 ref, u32 key)
b97bf3fd
PL
359{
360 struct publication *publ;
b97bf3fd 361 struct sub_seq *sseq = nameseq_find_subseq(nseq, inst);
b52124a5 362 struct name_info *info;
b97bf3fd 363 struct sub_seq *free;
fead3909 364 struct tipc_subscription *s, *st;
b97bf3fd
PL
365 int removed_subseq = 0;
366
f131072c 367 if (!sseq)
1fc54d8f 368 return NULL;
f131072c 369
b52124a5
AS
370 info = sseq->info;
371
f6f0a4d2 372 /* Locate publication, if it exists */
f6f0a4d2
AS
373 list_for_each_entry(publ, &info->zone_list, zone_list) {
374 if ((publ->key == key) && (publ->ref == ref) &&
375 (!publ->node || (publ->node == node)))
376 goto found;
377 }
378 return NULL;
c4307285 379
f6f0a4d2
AS
380found:
381 /* Remove publication from zone scope list */
f6f0a4d2 382 list_del(&publ->zone_list);
b52124a5 383 info->zone_list_size--;
b97bf3fd 384
f131072c 385 /* Remove publication from cluster scope list, if present */
34747539 386 if (in_own_cluster(net, node)) {
f6f0a4d2 387 list_del(&publ->cluster_list);
b52124a5 388 info->cluster_list_size--;
b97bf3fd 389 }
f131072c
AS
390
391 /* Remove publication from node scope list, if present */
34747539 392 if (in_own_node(net, node)) {
f6f0a4d2 393 list_del(&publ->node_list);
b52124a5 394 info->node_list_size--;
b97bf3fd 395 }
b97bf3fd 396
f131072c 397 /* Contract subseq list if no more publications for that subseq */
f6f0a4d2 398 if (list_empty(&info->zone_list)) {
b52124a5 399 kfree(info);
b97bf3fd 400 free = &nseq->sseqs[nseq->first_free--];
0e65967e 401 memmove(sseq, sseq + 1, (free - (sseq + 1)) * sizeof(*sseq));
b97bf3fd
PL
402 removed_subseq = 1;
403 }
404
f131072c 405 /* Notify any waiting subscriptions */
b97bf3fd 406 list_for_each_entry_safe(s, st, &nseq->subscriptions, nameseq_list) {
4323add6
PL
407 tipc_subscr_report_overlap(s,
408 publ->lower,
409 publ->upper,
c4307285
YH
410 TIPC_WITHDRAWN,
411 publ->ref,
4323add6
PL
412 publ->node,
413 removed_subseq);
b97bf3fd 414 }
f131072c 415
b97bf3fd
PL
416 return publ;
417}
418
419/**
2c53040f 420 * tipc_nameseq_subscribe - attach a subscription, and issue
b97bf3fd
PL
421 * the prescribed number of events if there is any sub-
422 * sequence overlapping with the requested sequence
423 */
fead3909 424static void tipc_nameseq_subscribe(struct name_seq *nseq,
ae8509c4 425 struct tipc_subscription *s)
b97bf3fd
PL
426{
427 struct sub_seq *sseq = nseq->sseqs;
428
429 list_add(&s->nameseq_list, &nseq->subscriptions);
430
431 if (!sseq)
432 return;
433
434 while (sseq != &nseq->sseqs[nseq->first_free]) {
f6f0a4d2
AS
435 if (tipc_subscr_overlap(s, sseq->lower, sseq->upper)) {
436 struct publication *crs;
437 struct name_info *info = sseq->info;
b97bf3fd
PL
438 int must_report = 1;
439
f6f0a4d2 440 list_for_each_entry(crs, &info->zone_list, zone_list) {
c4307285
YH
441 tipc_subscr_report_overlap(s,
442 sseq->lower,
4323add6
PL
443 sseq->upper,
444 TIPC_PUBLISHED,
445 crs->ref,
446 crs->node,
447 must_report);
b97bf3fd 448 must_report = 0;
f6f0a4d2 449 }
b97bf3fd
PL
450 }
451 sseq++;
452 }
453}
454
4ac1c8d0 455static struct name_seq *nametbl_find_seq(struct net *net, u32 type)
b97bf3fd 456{
4ac1c8d0 457 struct tipc_net *tn = net_generic(net, tipc_net_id);
b97bf3fd 458 struct hlist_head *seq_head;
b97bf3fd
PL
459 struct name_seq *ns;
460
4ac1c8d0 461 seq_head = &tn->nametbl->seq_hlist[hash(type)];
97ede29e 462 hlist_for_each_entry_rcu(ns, seq_head, ns_list) {
b29f1428 463 if (ns->type == type)
b97bf3fd 464 return ns;
b97bf3fd
PL
465 }
466
1fc54d8f 467 return NULL;
b97bf3fd
PL
468};
469
4ac1c8d0
YX
470struct publication *tipc_nametbl_insert_publ(struct net *net, u32 type,
471 u32 lower, u32 upper, u32 scope,
472 u32 node, u32 port, u32 key)
b97bf3fd 473{
4ac1c8d0 474 struct tipc_net *tn = net_generic(net, tipc_net_id);
fb9962f3 475 struct publication *publ;
4ac1c8d0 476 struct name_seq *seq = nametbl_find_seq(net, type);
993bfe5d 477 int index = hash(type);
b97bf3fd 478
8f177896
AS
479 if ((scope < TIPC_ZONE_SCOPE) || (scope > TIPC_NODE_SCOPE) ||
480 (lower > upper)) {
2cf8aa19
EH
481 pr_debug("Failed to publish illegal {%u,%u,%u} with scope %u\n",
482 type, lower, upper, scope);
1fc54d8f 483 return NULL;
b97bf3fd
PL
484 }
485
b29f1428 486 if (!seq)
4ac1c8d0 487 seq = tipc_nameseq_create(type, &tn->nametbl->seq_hlist[index]);
b97bf3fd 488 if (!seq)
1fc54d8f 489 return NULL;
b97bf3fd 490
fb9962f3 491 spin_lock_bh(&seq->lock);
34747539 492 publ = tipc_nameseq_insert_publ(net, seq, type, lower, upper,
4323add6 493 scope, node, port, key);
fb9962f3
YX
494 spin_unlock_bh(&seq->lock);
495 return publ;
b97bf3fd
PL
496}
497
4ac1c8d0
YX
498struct publication *tipc_nametbl_remove_publ(struct net *net, u32 type,
499 u32 lower, u32 node, u32 ref,
500 u32 key)
b97bf3fd
PL
501{
502 struct publication *publ;
4ac1c8d0 503 struct name_seq *seq = nametbl_find_seq(net, type);
b97bf3fd
PL
504
505 if (!seq)
1fc54d8f 506 return NULL;
b97bf3fd 507
fb9962f3 508 spin_lock_bh(&seq->lock);
34747539 509 publ = tipc_nameseq_remove_publ(net, seq, lower, node, ref, key);
fb9962f3 510 if (!seq->first_free && list_empty(&seq->subscriptions)) {
97ede29e 511 hlist_del_init_rcu(&seq->ns_list);
fb9962f3 512 kfree(seq->sseqs);
97ede29e
YX
513 spin_unlock_bh(&seq->lock);
514 kfree_rcu(seq, rcu);
fb9962f3
YX
515 return publ;
516 }
517 spin_unlock_bh(&seq->lock);
b97bf3fd
PL
518 return publ;
519}
520
2c53040f 521/**
bc9f8143 522 * tipc_nametbl_translate - perform name translation
b97bf3fd 523 *
bc9f8143
AS
524 * On entry, 'destnode' is the search domain used during translation.
525 *
526 * On exit:
527 * - if name translation is deferred to another node/cluster/zone,
528 * leaves 'destnode' unchanged (will be non-zero) and returns 0
529 * - if name translation is attempted and succeeds, sets 'destnode'
530 * to publishing node and returns port reference (will be non-zero)
531 * - if name translation is attempted and fails, sets 'destnode' to 0
532 * and returns 0
b97bf3fd 533 */
4ac1c8d0
YX
534u32 tipc_nametbl_translate(struct net *net, u32 type, u32 instance,
535 u32 *destnode)
b97bf3fd 536{
34747539 537 struct tipc_net *tn = net_generic(net, tipc_net_id);
b97bf3fd 538 struct sub_seq *sseq;
b52124a5 539 struct name_info *info;
f6f0a4d2 540 struct publication *publ;
b97bf3fd 541 struct name_seq *seq;
f6f0a4d2 542 u32 ref = 0;
bc9f8143 543 u32 node = 0;
b97bf3fd 544
34747539 545 if (!tipc_in_scope(*destnode, tn->own_addr))
b97bf3fd
PL
546 return 0;
547
97ede29e 548 rcu_read_lock();
4ac1c8d0 549 seq = nametbl_find_seq(net, type);
b97bf3fd
PL
550 if (unlikely(!seq))
551 goto not_found;
fb9962f3 552 spin_lock_bh(&seq->lock);
b97bf3fd
PL
553 sseq = nameseq_find_subseq(seq, instance);
554 if (unlikely(!sseq))
fb9962f3 555 goto no_match;
b52124a5 556 info = sseq->info;
b97bf3fd 557
617d3c7a 558 /* Closest-First Algorithm */
b97bf3fd 559 if (likely(!*destnode)) {
f6f0a4d2
AS
560 if (!list_empty(&info->node_list)) {
561 publ = list_first_entry(&info->node_list,
562 struct publication,
563 node_list);
564 list_move_tail(&publ->node_list,
565 &info->node_list);
566 } else if (!list_empty(&info->cluster_list)) {
567 publ = list_first_entry(&info->cluster_list,
568 struct publication,
569 cluster_list);
570 list_move_tail(&publ->cluster_list,
571 &info->cluster_list);
8af4638a 572 } else {
f6f0a4d2
AS
573 publ = list_first_entry(&info->zone_list,
574 struct publication,
575 zone_list);
576 list_move_tail(&publ->zone_list,
577 &info->zone_list);
8af4638a 578 }
b97bf3fd
PL
579 }
580
617d3c7a 581 /* Round-Robin Algorithm */
34747539 582 else if (*destnode == tn->own_addr) {
f6f0a4d2
AS
583 if (list_empty(&info->node_list))
584 goto no_match;
585 publ = list_first_entry(&info->node_list, struct publication,
586 node_list);
587 list_move_tail(&publ->node_list, &info->node_list);
34747539 588 } else if (in_own_cluster_exact(net, *destnode)) {
f6f0a4d2
AS
589 if (list_empty(&info->cluster_list))
590 goto no_match;
591 publ = list_first_entry(&info->cluster_list, struct publication,
592 cluster_list);
593 list_move_tail(&publ->cluster_list, &info->cluster_list);
b97bf3fd 594 } else {
f6f0a4d2
AS
595 publ = list_first_entry(&info->zone_list, struct publication,
596 zone_list);
597 list_move_tail(&publ->zone_list, &info->zone_list);
b97bf3fd 598 }
f6f0a4d2
AS
599
600 ref = publ->ref;
bc9f8143 601 node = publ->node;
f6f0a4d2 602no_match:
b97bf3fd
PL
603 spin_unlock_bh(&seq->lock);
604not_found:
97ede29e 605 rcu_read_unlock();
bc9f8143 606 *destnode = node;
f6f0a4d2 607 return ref;
b97bf3fd
PL
608}
609
610/**
4323add6 611 * tipc_nametbl_mc_translate - find multicast destinations
c4307285 612 *
b97bf3fd
PL
613 * Creates list of all local ports that overlap the given multicast address;
614 * also determines if any off-node ports overlap.
615 *
616 * Note: Publications with a scope narrower than 'limit' are ignored.
617 * (i.e. local node-scope publications mustn't receive messages arriving
618 * from another node, even if the multcast link brought it here)
c4307285 619 *
b97bf3fd
PL
620 * Returns non-zero if any off-node ports overlap
621 */
4ac1c8d0 622int tipc_nametbl_mc_translate(struct net *net, u32 type, u32 lower, u32 upper,
3c724acd 623 u32 limit, struct tipc_plist *dports)
b97bf3fd
PL
624{
625 struct name_seq *seq;
626 struct sub_seq *sseq;
627 struct sub_seq *sseq_stop;
b52124a5 628 struct name_info *info;
b97bf3fd
PL
629 int res = 0;
630
97ede29e 631 rcu_read_lock();
4ac1c8d0 632 seq = nametbl_find_seq(net, type);
b97bf3fd
PL
633 if (!seq)
634 goto exit;
635
636 spin_lock_bh(&seq->lock);
b97bf3fd
PL
637 sseq = seq->sseqs + nameseq_locate_subseq(seq, lower);
638 sseq_stop = seq->sseqs + seq->first_free;
639 for (; sseq != sseq_stop; sseq++) {
640 struct publication *publ;
641
642 if (sseq->lower > upper)
643 break;
968edbe1 644
b52124a5 645 info = sseq->info;
f6f0a4d2
AS
646 list_for_each_entry(publ, &info->node_list, node_list) {
647 if (publ->scope <= limit)
3c724acd 648 tipc_plist_push(dports, publ->ref);
968edbe1
AS
649 }
650
b52124a5 651 if (info->cluster_list_size != info->node_list_size)
968edbe1 652 res = 1;
b97bf3fd 653 }
b97bf3fd
PL
654 spin_unlock_bh(&seq->lock);
655exit:
97ede29e 656 rcu_read_unlock();
b97bf3fd
PL
657 return res;
658}
659
c422f1bd 660/*
4323add6 661 * tipc_nametbl_publish - add name publication to network name tables
b97bf3fd 662 */
f2f9800d
YX
663struct publication *tipc_nametbl_publish(struct net *net, u32 type, u32 lower,
664 u32 upper, u32 scope, u32 port_ref,
665 u32 key)
b97bf3fd
PL
666{
667 struct publication *publ;
eab8c045 668 struct sk_buff *buf = NULL;
4ac1c8d0 669 struct tipc_net *tn = net_generic(net, tipc_net_id);
b97bf3fd 670
4ac1c8d0
YX
671 spin_lock_bh(&tn->nametbl_lock);
672 if (tn->nametbl->local_publ_count >= TIPC_MAX_PUBLICATIONS) {
2cf8aa19 673 pr_warn("Publication failed, local publication limit reached (%u)\n",
e6a04b1d 674 TIPC_MAX_PUBLICATIONS);
4ac1c8d0 675 spin_unlock_bh(&tn->nametbl_lock);
1fc54d8f 676 return NULL;
b97bf3fd 677 }
b97bf3fd 678
4ac1c8d0 679 publ = tipc_nametbl_insert_publ(net, type, lower, upper, scope,
34747539 680 tn->own_addr, port_ref, key);
fd6eced8 681 if (likely(publ)) {
4ac1c8d0
YX
682 tn->nametbl->local_publ_count++;
683 buf = tipc_named_publish(net, publ);
a5325ae5 684 /* Any pending external events? */
f2f9800d 685 tipc_named_process_backlog(net);
fd6eced8 686 }
4ac1c8d0 687 spin_unlock_bh(&tn->nametbl_lock);
eab8c045
YX
688
689 if (buf)
f2f9800d 690 named_cluster_distribute(net, buf);
b97bf3fd
PL
691 return publ;
692}
693
694/**
4323add6 695 * tipc_nametbl_withdraw - withdraw name publication from network name tables
b97bf3fd 696 */
f2f9800d
YX
697int tipc_nametbl_withdraw(struct net *net, u32 type, u32 lower, u32 ref,
698 u32 key)
b97bf3fd
PL
699{
700 struct publication *publ;
5492390a 701 struct sk_buff *skb = NULL;
4ac1c8d0 702 struct tipc_net *tn = net_generic(net, tipc_net_id);
b97bf3fd 703
4ac1c8d0 704 spin_lock_bh(&tn->nametbl_lock);
34747539 705 publ = tipc_nametbl_remove_publ(net, type, lower, tn->own_addr,
4ac1c8d0 706 ref, key);
f131072c 707 if (likely(publ)) {
4ac1c8d0 708 tn->nametbl->local_publ_count--;
34747539 709 skb = tipc_named_withdraw(net, publ);
a5325ae5 710 /* Any pending external events? */
f2f9800d 711 tipc_named_process_backlog(net);
b97bf3fd 712 list_del_init(&publ->pport_list);
97ede29e 713 kfree_rcu(publ, rcu);
5492390a
YX
714 } else {
715 pr_err("Unable to remove local publication\n"
716 "(type=%u, lower=%u, ref=%u, key=%u)\n",
717 type, lower, ref, key);
718 }
4ac1c8d0 719 spin_unlock_bh(&tn->nametbl_lock);
eab8c045 720
5492390a 721 if (skb) {
f2f9800d 722 named_cluster_distribute(net, skb);
b97bf3fd
PL
723 return 1;
724 }
b97bf3fd
PL
725 return 0;
726}
727
728/**
4323add6 729 * tipc_nametbl_subscribe - add a subscription object to the name table
b97bf3fd 730 */
fead3909 731void tipc_nametbl_subscribe(struct tipc_subscription *s)
b97bf3fd 732{
4ac1c8d0 733 struct tipc_net *tn = net_generic(s->net, tipc_net_id);
b97bf3fd 734 u32 type = s->seq.type;
993bfe5d 735 int index = hash(type);
b97bf3fd
PL
736 struct name_seq *seq;
737
4ac1c8d0
YX
738 spin_lock_bh(&tn->nametbl_lock);
739 seq = nametbl_find_seq(s->net, type);
a016892c 740 if (!seq)
4ac1c8d0 741 seq = tipc_nameseq_create(type, &tn->nametbl->seq_hlist[index]);
0e65967e 742 if (seq) {
c4307285 743 spin_lock_bh(&seq->lock);
c4307285
YH
744 tipc_nameseq_subscribe(seq, s);
745 spin_unlock_bh(&seq->lock);
746 } else {
2cf8aa19
EH
747 pr_warn("Failed to create subscription for {%u,%u,%u}\n",
748 s->seq.type, s->seq.lower, s->seq.upper);
c4307285 749 }
4ac1c8d0 750 spin_unlock_bh(&tn->nametbl_lock);
b97bf3fd
PL
751}
752
753/**
4323add6 754 * tipc_nametbl_unsubscribe - remove a subscription object from name table
b97bf3fd 755 */
fead3909 756void tipc_nametbl_unsubscribe(struct tipc_subscription *s)
b97bf3fd 757{
4ac1c8d0 758 struct tipc_net *tn = net_generic(s->net, tipc_net_id);
b97bf3fd
PL
759 struct name_seq *seq;
760
4ac1c8d0
YX
761 spin_lock_bh(&tn->nametbl_lock);
762 seq = nametbl_find_seq(s->net, s->seq.type);
0e65967e 763 if (seq != NULL) {
c4307285
YH
764 spin_lock_bh(&seq->lock);
765 list_del_init(&s->nameseq_list);
fb9962f3 766 if (!seq->first_free && list_empty(&seq->subscriptions)) {
97ede29e 767 hlist_del_init_rcu(&seq->ns_list);
fb9962f3 768 kfree(seq->sseqs);
97ede29e
YX
769 spin_unlock_bh(&seq->lock);
770 kfree_rcu(seq, rcu);
fb9962f3
YX
771 } else {
772 spin_unlock_bh(&seq->lock);
773 }
c4307285 774 }
4ac1c8d0 775 spin_unlock_bh(&tn->nametbl_lock);
b97bf3fd
PL
776}
777
4ac1c8d0 778int tipc_nametbl_init(struct net *net)
b97bf3fd 779{
4ac1c8d0
YX
780 struct tipc_net *tn = net_generic(net, tipc_net_id);
781 struct name_table *tipc_nametbl;
993bfe5d
YX
782 int i;
783
784 tipc_nametbl = kzalloc(sizeof(*tipc_nametbl), GFP_ATOMIC);
785 if (!tipc_nametbl)
b97bf3fd
PL
786 return -ENOMEM;
787
993bfe5d
YX
788 for (i = 0; i < TIPC_NAMETBL_SIZE; i++)
789 INIT_HLIST_HEAD(&tipc_nametbl->seq_hlist[i]);
790
791 INIT_LIST_HEAD(&tipc_nametbl->publ_list[TIPC_ZONE_SCOPE]);
792 INIT_LIST_HEAD(&tipc_nametbl->publ_list[TIPC_CLUSTER_SCOPE]);
793 INIT_LIST_HEAD(&tipc_nametbl->publ_list[TIPC_NODE_SCOPE]);
4ac1c8d0
YX
794 tn->nametbl = tipc_nametbl;
795 spin_lock_init(&tn->nametbl_lock);
b97bf3fd
PL
796 return 0;
797}
798
1bb8dce5
EH
799/**
800 * tipc_purge_publications - remove all publications for a given type
801 *
802 * tipc_nametbl_lock must be held when calling this function
803 */
4ac1c8d0 804static void tipc_purge_publications(struct net *net, struct name_seq *seq)
1bb8dce5
EH
805{
806 struct publication *publ, *safe;
807 struct sub_seq *sseq;
808 struct name_info *info;
809
fb9962f3 810 spin_lock_bh(&seq->lock);
1bb8dce5
EH
811 sseq = seq->sseqs;
812 info = sseq->info;
813 list_for_each_entry_safe(publ, safe, &info->zone_list, zone_list) {
8460504b
YX
814 tipc_nameseq_remove_publ(net, seq, publ->lower, publ->node,
815 publ->ref, publ->key);
97ede29e 816 kfree_rcu(publ, rcu);
1bb8dce5 817 }
97ede29e
YX
818 hlist_del_init_rcu(&seq->ns_list);
819 kfree(seq->sseqs);
023160bc 820 spin_unlock_bh(&seq->lock);
fb9962f3 821
97ede29e 822 kfree_rcu(seq, rcu);
1bb8dce5
EH
823}
824
4ac1c8d0 825void tipc_nametbl_stop(struct net *net)
b97bf3fd 826{
b97bf3fd 827 u32 i;
1bb8dce5
EH
828 struct name_seq *seq;
829 struct hlist_head *seq_head;
4ac1c8d0
YX
830 struct tipc_net *tn = net_generic(net, tipc_net_id);
831 struct name_table *tipc_nametbl = tn->nametbl;
b97bf3fd 832
1bb8dce5
EH
833 /* Verify name table is empty and purge any lingering
834 * publications, then release the name table
835 */
4ac1c8d0 836 spin_lock_bh(&tn->nametbl_lock);
f046e7d9 837 for (i = 0; i < TIPC_NAMETBL_SIZE; i++) {
993bfe5d 838 if (hlist_empty(&tipc_nametbl->seq_hlist[i]))
f705ab95 839 continue;
993bfe5d 840 seq_head = &tipc_nametbl->seq_hlist[i];
97ede29e 841 hlist_for_each_entry_rcu(seq, seq_head, ns_list) {
4ac1c8d0 842 tipc_purge_publications(net, seq);
1bb8dce5 843 }
b97bf3fd 844 }
4ac1c8d0 845 spin_unlock_bh(&tn->nametbl_lock);
993bfe5d 846
97ede29e 847 synchronize_net();
993bfe5d
YX
848 kfree(tipc_nametbl);
849
b97bf3fd 850}
1593123a 851
d8182804
RA
852static int __tipc_nl_add_nametable_publ(struct tipc_nl_msg *msg,
853 struct name_seq *seq,
854 struct sub_seq *sseq, u32 *last_publ)
1593123a
RA
855{
856 void *hdr;
857 struct nlattr *attrs;
858 struct nlattr *publ;
859 struct publication *p;
860
861 if (*last_publ) {
862 list_for_each_entry(p, &sseq->info->zone_list, zone_list)
863 if (p->key == *last_publ)
864 break;
865 if (p->key != *last_publ)
866 return -EPIPE;
867 } else {
868 p = list_first_entry(&sseq->info->zone_list, struct publication,
869 zone_list);
870 }
871
872 list_for_each_entry_from(p, &sseq->info->zone_list, zone_list) {
873 *last_publ = p->key;
874
875 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq,
bfb3e5dd 876 &tipc_genl_family, NLM_F_MULTI,
1593123a
RA
877 TIPC_NL_NAME_TABLE_GET);
878 if (!hdr)
879 return -EMSGSIZE;
880
881 attrs = nla_nest_start(msg->skb, TIPC_NLA_NAME_TABLE);
882 if (!attrs)
883 goto msg_full;
884
885 publ = nla_nest_start(msg->skb, TIPC_NLA_NAME_TABLE_PUBL);
886 if (!publ)
887 goto attr_msg_full;
888
889 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_TYPE, seq->type))
890 goto publ_msg_full;
891 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_LOWER, sseq->lower))
892 goto publ_msg_full;
893 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_UPPER, sseq->upper))
894 goto publ_msg_full;
895 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_SCOPE, p->scope))
896 goto publ_msg_full;
897 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_NODE, p->node))
898 goto publ_msg_full;
899 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_REF, p->ref))
900 goto publ_msg_full;
901 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_KEY, p->key))
902 goto publ_msg_full;
903
904 nla_nest_end(msg->skb, publ);
905 nla_nest_end(msg->skb, attrs);
906 genlmsg_end(msg->skb, hdr);
907 }
908 *last_publ = 0;
909
910 return 0;
911
912publ_msg_full:
913 nla_nest_cancel(msg->skb, publ);
914attr_msg_full:
915 nla_nest_cancel(msg->skb, attrs);
916msg_full:
917 genlmsg_cancel(msg->skb, hdr);
918
919 return -EMSGSIZE;
920}
921
d8182804
RA
922static int __tipc_nl_subseq_list(struct tipc_nl_msg *msg, struct name_seq *seq,
923 u32 *last_lower, u32 *last_publ)
1593123a
RA
924{
925 struct sub_seq *sseq;
926 struct sub_seq *sseq_start;
927 int err;
928
929 if (*last_lower) {
930 sseq_start = nameseq_find_subseq(seq, *last_lower);
931 if (!sseq_start)
932 return -EPIPE;
933 } else {
934 sseq_start = seq->sseqs;
935 }
936
937 for (sseq = sseq_start; sseq != &seq->sseqs[seq->first_free]; sseq++) {
938 err = __tipc_nl_add_nametable_publ(msg, seq, sseq, last_publ);
939 if (err) {
940 *last_lower = sseq->lower;
941 return err;
942 }
943 }
944 *last_lower = 0;
945
946 return 0;
947}
948
4ac1c8d0
YX
949static int tipc_nl_seq_list(struct net *net, struct tipc_nl_msg *msg,
950 u32 *last_type, u32 *last_lower, u32 *last_publ)
1593123a 951{
4ac1c8d0 952 struct tipc_net *tn = net_generic(net, tipc_net_id);
1593123a 953 struct hlist_head *seq_head;
97ede29e 954 struct name_seq *seq = NULL;
1593123a
RA
955 int err;
956 int i;
957
958 if (*last_type)
959 i = hash(*last_type);
960 else
961 i = 0;
962
963 for (; i < TIPC_NAMETBL_SIZE; i++) {
4ac1c8d0 964 seq_head = &tn->nametbl->seq_hlist[i];
1593123a
RA
965
966 if (*last_type) {
4ac1c8d0 967 seq = nametbl_find_seq(net, *last_type);
1593123a
RA
968 if (!seq)
969 return -EPIPE;
970 } else {
97ede29e
YX
971 hlist_for_each_entry_rcu(seq, seq_head, ns_list)
972 break;
1593123a
RA
973 if (!seq)
974 continue;
975 }
976
97ede29e 977 hlist_for_each_entry_from_rcu(seq, ns_list) {
1593123a 978 spin_lock_bh(&seq->lock);
1593123a
RA
979 err = __tipc_nl_subseq_list(msg, seq, last_lower,
980 last_publ);
981
982 if (err) {
983 *last_type = seq->type;
984 spin_unlock_bh(&seq->lock);
985 return err;
986 }
987 spin_unlock_bh(&seq->lock);
988 }
989 *last_type = 0;
990 }
991 return 0;
992}
993
994int tipc_nl_name_table_dump(struct sk_buff *skb, struct netlink_callback *cb)
995{
996 int err;
997 int done = cb->args[3];
998 u32 last_type = cb->args[0];
999 u32 last_lower = cb->args[1];
1000 u32 last_publ = cb->args[2];
4ac1c8d0 1001 struct net *net = sock_net(skb->sk);
1593123a
RA
1002 struct tipc_nl_msg msg;
1003
1004 if (done)
1005 return 0;
1006
1007 msg.skb = skb;
1008 msg.portid = NETLINK_CB(cb->skb).portid;
1009 msg.seq = cb->nlh->nlmsg_seq;
1010
97ede29e 1011 rcu_read_lock();
4ac1c8d0 1012 err = tipc_nl_seq_list(net, &msg, &last_type, &last_lower, &last_publ);
1593123a
RA
1013 if (!err) {
1014 done = 1;
1015 } else if (err != -EMSGSIZE) {
1016 /* We never set seq or call nl_dump_check_consistent() this
1017 * means that setting prev_seq here will cause the consistence
1018 * check to fail in the netlink callback handler. Resulting in
1019 * the NLMSG_DONE message having the NLM_F_DUMP_INTR flag set if
1020 * we got an error.
1021 */
1022 cb->prev_seq = 1;
1023 }
97ede29e 1024 rcu_read_unlock();
1593123a
RA
1025
1026 cb->args[0] = last_type;
1027 cb->args[1] = last_lower;
1028 cb->args[2] = last_publ;
1029 cb->args[3] = done;
1030
1031 return skb->len;
1032}
3c724acd
JPM
1033
1034void tipc_plist_push(struct tipc_plist *pl, u32 port)
1035{
1036 struct tipc_plist *nl;
1037
1038 if (likely(!pl->port)) {
1039 pl->port = port;
1040 return;
1041 }
1042 if (pl->port == port)
1043 return;
1044 list_for_each_entry(nl, &pl->list, list) {
1045 if (nl->port == port)
1046 return;
1047 }
1048 nl = kmalloc(sizeof(*nl), GFP_ATOMIC);
1049 if (nl) {
1050 nl->port = port;
1051 list_add(&nl->list, &pl->list);
1052 }
1053}
1054
1055u32 tipc_plist_pop(struct tipc_plist *pl)
1056{
1057 struct tipc_plist *nl;
1058 u32 port = 0;
1059
1060 if (likely(list_empty(&pl->list))) {
1061 port = pl->port;
1062 pl->port = 0;
1063 return port;
1064 }
1065 nl = list_first_entry(&pl->list, typeof(*nl), list);
1066 port = nl->port;
1067 list_del(&nl->list);
1068 kfree(nl);
1069 return port;
1070}
This page took 0.850026 seconds and 5 git commands to generate.