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