[ARM] 3692/1: ARM: coswitch irq handling to the generic implementation
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / tipc / name_table.c
bloba6926ff07bcc3e2365d0424e30b721df1e455d21
1 /*
2 * net/tipc/name_table.c: TIPC name table code
3 *
4 * Copyright (c) 2000-2006, Ericsson AB
5 * Copyright (c) 2004-2005, Wind River Systems
6 * All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
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.
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.
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
34 * POSSIBILITY OF SUCH DAMAGE.
37 #include "core.h"
38 #include "config.h"
39 #include "dbg.h"
40 #include "name_table.h"
41 #include "name_distr.h"
42 #include "addr.h"
43 #include "node_subscr.h"
44 #include "subscr.h"
45 #include "port.h"
46 #include "cluster.h"
47 #include "bcast.h"
49 static int tipc_nametbl_size = 1024; /* must be a power of 2 */
51 /**
52 * struct sub_seq - container for all published instances of a name sequence
53 * @lower: name sequence lower bound
54 * @upper: name sequence upper bound
55 * @node_list: circular list of matching publications with >= node scope
56 * @cluster_list: circular list of matching publications with >= cluster scope
57 * @zone_list: circular list of matching publications with >= zone scope
60 struct sub_seq {
61 u32 lower;
62 u32 upper;
63 struct publication *node_list;
64 struct publication *cluster_list;
65 struct publication *zone_list;
68 /**
69 * struct name_seq - container for all published instances of a name type
70 * @type: 32 bit 'type' value for name sequence
71 * @sseq: pointer to dynamically-sized array of sub-sequences of this 'type';
72 * sub-sequences are sorted in ascending order
73 * @alloc: number of sub-sequences currently in array
74 * @first_free: array index of first unused sub-sequence entry
75 * @ns_list: links to adjacent name sequences in hash chain
76 * @subscriptions: list of subscriptions for this 'type'
77 * @lock: spinlock controlling access to name sequence structure
80 struct name_seq {
81 u32 type;
82 struct sub_seq *sseqs;
83 u32 alloc;
84 u32 first_free;
85 struct hlist_node ns_list;
86 struct list_head subscriptions;
87 spinlock_t lock;
90 /**
91 * struct name_table - table containing all existing port name publications
92 * @types: pointer to fixed-sized array of name sequence lists,
93 * accessed via hashing on 'type'; name sequence lists are *not* sorted
94 * @local_publ_count: number of publications issued by this node
97 struct name_table {
98 struct hlist_head *types;
99 u32 local_publ_count;
102 static struct name_table table = { NULL } ;
103 static atomic_t rsv_publ_ok = ATOMIC_INIT(0);
104 DEFINE_RWLOCK(tipc_nametbl_lock);
107 static int hash(int x)
109 return(x & (tipc_nametbl_size - 1));
113 * publ_create - create a publication structure
116 static struct publication *publ_create(u32 type, u32 lower, u32 upper,
117 u32 scope, u32 node, u32 port_ref,
118 u32 key)
120 struct publication *publ =
121 (struct publication *)kmalloc(sizeof(*publ), GFP_ATOMIC);
122 if (publ == NULL) {
123 warn("Publication creation failure, no memory\n");
124 return NULL;
127 memset(publ, 0, sizeof(*publ));
128 publ->type = type;
129 publ->lower = lower;
130 publ->upper = upper;
131 publ->scope = scope;
132 publ->node = node;
133 publ->ref = port_ref;
134 publ->key = key;
135 INIT_LIST_HEAD(&publ->local_list);
136 INIT_LIST_HEAD(&publ->pport_list);
137 INIT_LIST_HEAD(&publ->subscr.nodesub_list);
138 return publ;
142 * tipc_subseq_alloc - allocate a specified number of sub-sequence structures
145 static struct sub_seq *tipc_subseq_alloc(u32 cnt)
147 u32 sz = cnt * sizeof(struct sub_seq);
148 struct sub_seq *sseq = (struct sub_seq *)kmalloc(sz, GFP_ATOMIC);
150 if (sseq)
151 memset(sseq, 0, sz);
152 return sseq;
156 * tipc_nameseq_create - create a name sequence structure for the specified 'type'
158 * Allocates a single sub-sequence structure and sets it to all 0's.
161 static struct name_seq *tipc_nameseq_create(u32 type, struct hlist_head *seq_head)
163 struct name_seq *nseq =
164 (struct name_seq *)kmalloc(sizeof(*nseq), GFP_ATOMIC);
165 struct sub_seq *sseq = tipc_subseq_alloc(1);
167 if (!nseq || !sseq) {
168 warn("Name sequence creation failed, no memory\n");
169 kfree(nseq);
170 kfree(sseq);
171 return NULL;
174 memset(nseq, 0, sizeof(*nseq));
175 spin_lock_init(&nseq->lock);
176 nseq->type = type;
177 nseq->sseqs = sseq;
178 dbg("tipc_nameseq_create(): nseq = %p, type %u, ssseqs %p, ff: %u\n",
179 nseq, type, nseq->sseqs, nseq->first_free);
180 nseq->alloc = 1;
181 INIT_HLIST_NODE(&nseq->ns_list);
182 INIT_LIST_HEAD(&nseq->subscriptions);
183 hlist_add_head(&nseq->ns_list, seq_head);
184 return nseq;
188 * nameseq_find_subseq - find sub-sequence (if any) matching a name instance
190 * Very time-critical, so binary searches through sub-sequence array.
193 static struct sub_seq *nameseq_find_subseq(struct name_seq *nseq,
194 u32 instance)
196 struct sub_seq *sseqs = nseq->sseqs;
197 int low = 0;
198 int high = nseq->first_free - 1;
199 int mid;
201 while (low <= high) {
202 mid = (low + high) / 2;
203 if (instance < sseqs[mid].lower)
204 high = mid - 1;
205 else if (instance > sseqs[mid].upper)
206 low = mid + 1;
207 else
208 return &sseqs[mid];
210 return NULL;
214 * nameseq_locate_subseq - determine position of name instance in sub-sequence
216 * Returns index in sub-sequence array of the entry that contains the specified
217 * instance value; if no entry contains that value, returns the position
218 * where a new entry for it would be inserted in the array.
220 * Note: Similar to binary search code for locating a sub-sequence.
223 static u32 nameseq_locate_subseq(struct name_seq *nseq, u32 instance)
225 struct sub_seq *sseqs = nseq->sseqs;
226 int low = 0;
227 int high = nseq->first_free - 1;
228 int mid;
230 while (low <= high) {
231 mid = (low + high) / 2;
232 if (instance < sseqs[mid].lower)
233 high = mid - 1;
234 else if (instance > sseqs[mid].upper)
235 low = mid + 1;
236 else
237 return mid;
239 return low;
243 * tipc_nameseq_insert_publ -
246 static struct publication *tipc_nameseq_insert_publ(struct name_seq *nseq,
247 u32 type, u32 lower, u32 upper,
248 u32 scope, u32 node, u32 port, u32 key)
250 struct subscription *s;
251 struct subscription *st;
252 struct publication *publ;
253 struct sub_seq *sseq;
254 int created_subseq = 0;
256 sseq = nameseq_find_subseq(nseq, lower);
257 dbg("nameseq_ins: for seq %p, {%u,%u}, found sseq %p\n",
258 nseq, type, lower, sseq);
259 if (sseq) {
261 /* Lower end overlaps existing entry => need an exact match */
263 if ((sseq->lower != lower) || (sseq->upper != upper)) {
264 warn("Cannot publish {%u,%u,%u}, overlap error\n",
265 type, lower, upper);
266 return NULL;
268 } else {
269 u32 inspos;
270 struct sub_seq *freesseq;
272 /* Find where lower end should be inserted */
274 inspos = nameseq_locate_subseq(nseq, lower);
276 /* Fail if upper end overlaps into an existing entry */
278 if ((inspos < nseq->first_free) &&
279 (upper >= nseq->sseqs[inspos].lower)) {
280 warn("Cannot publish {%u,%u,%u}, overlap error\n",
281 type, lower, upper);
282 return NULL;
285 /* Ensure there is space for new sub-sequence */
287 if (nseq->first_free == nseq->alloc) {
288 struct sub_seq *sseqs = tipc_subseq_alloc(nseq->alloc * 2);
290 if (!sseqs) {
291 warn("Cannot publish {%u,%u,%u}, no memory\n",
292 type, lower, upper);
293 return NULL;
295 dbg("Allocated %u more sseqs\n", nseq->alloc);
296 memcpy(sseqs, nseq->sseqs,
297 nseq->alloc * sizeof(struct sub_seq));
298 kfree(nseq->sseqs);
299 nseq->sseqs = sseqs;
300 nseq->alloc *= 2;
302 dbg("Have %u sseqs for type %u\n", nseq->alloc, type);
304 /* Insert new sub-sequence */
306 dbg("ins in pos %u, ff = %u\n", inspos, nseq->first_free);
307 sseq = &nseq->sseqs[inspos];
308 freesseq = &nseq->sseqs[nseq->first_free];
309 memmove(sseq + 1, sseq, (freesseq - sseq) * sizeof (*sseq));
310 memset(sseq, 0, sizeof (*sseq));
311 nseq->first_free++;
312 sseq->lower = lower;
313 sseq->upper = upper;
314 created_subseq = 1;
316 dbg("inserting {%u,%u,%u} from <0x%x:%u> into sseq %p(%u,%u) of seq %p\n",
317 type, lower, upper, node, port, sseq,
318 sseq->lower, sseq->upper, nseq);
320 /* Insert a publication: */
322 publ = publ_create(type, lower, upper, scope, node, port, key);
323 if (!publ)
324 return NULL;
325 dbg("inserting publ %p, node=0x%x publ->node=0x%x, subscr->node=%p\n",
326 publ, node, publ->node, publ->subscr.node);
328 if (!sseq->zone_list)
329 sseq->zone_list = publ->zone_list_next = publ;
330 else {
331 publ->zone_list_next = sseq->zone_list->zone_list_next;
332 sseq->zone_list->zone_list_next = publ;
335 if (in_own_cluster(node)) {
336 if (!sseq->cluster_list)
337 sseq->cluster_list = publ->cluster_list_next = publ;
338 else {
339 publ->cluster_list_next =
340 sseq->cluster_list->cluster_list_next;
341 sseq->cluster_list->cluster_list_next = publ;
345 if (node == tipc_own_addr) {
346 if (!sseq->node_list)
347 sseq->node_list = publ->node_list_next = publ;
348 else {
349 publ->node_list_next = sseq->node_list->node_list_next;
350 sseq->node_list->node_list_next = publ;
355 * Any subscriptions waiting for notification?
357 list_for_each_entry_safe(s, st, &nseq->subscriptions, nameseq_list) {
358 dbg("calling report_overlap()\n");
359 tipc_subscr_report_overlap(s,
360 publ->lower,
361 publ->upper,
362 TIPC_PUBLISHED,
363 publ->ref,
364 publ->node,
365 created_subseq);
367 return publ;
371 * tipc_nameseq_remove_publ -
373 * NOTE: There may be cases where TIPC is asked to remove a publication
374 * that is not in the name table. For example, if another node issues a
375 * publication for a name sequence that overlaps an existing name sequence
376 * the publication will not be recorded, which means the publication won't
377 * be found when the name sequence is later withdrawn by that node.
378 * A failed withdraw request simply returns a failure indication and lets the
379 * caller issue any error or warning messages associated with such a problem.
382 static struct publication *tipc_nameseq_remove_publ(struct name_seq *nseq, u32 inst,
383 u32 node, u32 ref, u32 key)
385 struct publication *publ;
386 struct publication *curr;
387 struct publication *prev;
388 struct sub_seq *sseq = nameseq_find_subseq(nseq, inst);
389 struct sub_seq *free;
390 struct subscription *s, *st;
391 int removed_subseq = 0;
393 if (!sseq)
394 return NULL;
396 dbg("tipc_nameseq_remove_publ: seq: %p, sseq %p, {%u,%u}, key %u\n",
397 nseq, sseq, nseq->type, inst, key);
399 /* Remove publication from zone scope list */
401 prev = sseq->zone_list;
402 publ = sseq->zone_list->zone_list_next;
403 while ((publ->key != key) || (publ->ref != ref) ||
404 (publ->node && (publ->node != node))) {
405 prev = publ;
406 publ = publ->zone_list_next;
407 if (prev == sseq->zone_list) {
409 /* Prevent endless loop if publication not found */
411 return NULL;
414 if (publ != sseq->zone_list)
415 prev->zone_list_next = publ->zone_list_next;
416 else if (publ->zone_list_next != publ) {
417 prev->zone_list_next = publ->zone_list_next;
418 sseq->zone_list = publ->zone_list_next;
419 } else {
420 sseq->zone_list = NULL;
423 /* Remove publication from cluster scope list, if present */
425 if (in_own_cluster(node)) {
426 prev = sseq->cluster_list;
427 curr = sseq->cluster_list->cluster_list_next;
428 while (curr != publ) {
429 prev = curr;
430 curr = curr->cluster_list_next;
431 if (prev == sseq->cluster_list) {
433 /* Prevent endless loop for malformed list */
435 err("Unable to de-list cluster publication\n"
436 "{%u%u}, node=0x%x, ref=%u, key=%u)\n",
437 publ->type, publ->lower, publ->node,
438 publ->ref, publ->key);
439 goto end_cluster;
442 if (publ != sseq->cluster_list)
443 prev->cluster_list_next = publ->cluster_list_next;
444 else if (publ->cluster_list_next != publ) {
445 prev->cluster_list_next = publ->cluster_list_next;
446 sseq->cluster_list = publ->cluster_list_next;
447 } else {
448 sseq->cluster_list = NULL;
451 end_cluster:
453 /* Remove publication from node scope list, if present */
455 if (node == tipc_own_addr) {
456 prev = sseq->node_list;
457 curr = sseq->node_list->node_list_next;
458 while (curr != publ) {
459 prev = curr;
460 curr = curr->node_list_next;
461 if (prev == sseq->node_list) {
463 /* Prevent endless loop for malformed list */
465 err("Unable to de-list node publication\n"
466 "{%u%u}, node=0x%x, ref=%u, key=%u)\n",
467 publ->type, publ->lower, publ->node,
468 publ->ref, publ->key);
469 goto end_node;
472 if (publ != sseq->node_list)
473 prev->node_list_next = publ->node_list_next;
474 else if (publ->node_list_next != publ) {
475 prev->node_list_next = publ->node_list_next;
476 sseq->node_list = publ->node_list_next;
477 } else {
478 sseq->node_list = NULL;
481 end_node:
483 /* Contract subseq list if no more publications for that subseq */
485 if (!sseq->zone_list) {
486 free = &nseq->sseqs[nseq->first_free--];
487 memmove(sseq, sseq + 1, (free - (sseq + 1)) * sizeof (*sseq));
488 removed_subseq = 1;
491 /* Notify any waiting subscriptions */
493 list_for_each_entry_safe(s, st, &nseq->subscriptions, nameseq_list) {
494 tipc_subscr_report_overlap(s,
495 publ->lower,
496 publ->upper,
497 TIPC_WITHDRAWN,
498 publ->ref,
499 publ->node,
500 removed_subseq);
503 return publ;
507 * tipc_nameseq_subscribe: attach a subscription, and issue
508 * the prescribed number of events if there is any sub-
509 * sequence overlapping with the requested sequence
512 void tipc_nameseq_subscribe(struct name_seq *nseq, struct subscription *s)
514 struct sub_seq *sseq = nseq->sseqs;
516 list_add(&s->nameseq_list, &nseq->subscriptions);
518 if (!sseq)
519 return;
521 while (sseq != &nseq->sseqs[nseq->first_free]) {
522 struct publication *zl = sseq->zone_list;
523 if (zl && tipc_subscr_overlap(s,sseq->lower,sseq->upper)) {
524 struct publication *crs = zl;
525 int must_report = 1;
527 do {
528 tipc_subscr_report_overlap(s,
529 sseq->lower,
530 sseq->upper,
531 TIPC_PUBLISHED,
532 crs->ref,
533 crs->node,
534 must_report);
535 must_report = 0;
536 crs = crs->zone_list_next;
537 } while (crs != zl);
539 sseq++;
543 static struct name_seq *nametbl_find_seq(u32 type)
545 struct hlist_head *seq_head;
546 struct hlist_node *seq_node;
547 struct name_seq *ns;
549 dbg("find_seq %u,(%u,0x%x) table = %p, hash[type] = %u\n",
550 type, ntohl(type), type, table.types, hash(type));
552 seq_head = &table.types[hash(type)];
553 hlist_for_each_entry(ns, seq_node, seq_head, ns_list) {
554 if (ns->type == type) {
555 dbg("found %p\n", ns);
556 return ns;
560 return NULL;
563 struct publication *tipc_nametbl_insert_publ(u32 type, u32 lower, u32 upper,
564 u32 scope, u32 node, u32 port, u32 key)
566 struct name_seq *seq = nametbl_find_seq(type);
568 dbg("tipc_nametbl_insert_publ: {%u,%u,%u} found %p\n", type, lower, upper, seq);
569 if (lower > upper) {
570 warn("Failed to publish illegal {%u,%u,%u}\n",
571 type, lower, upper);
572 return NULL;
575 dbg("Publishing {%u,%u,%u} from 0x%x\n", type, lower, upper, node);
576 if (!seq) {
577 seq = tipc_nameseq_create(type, &table.types[hash(type)]);
578 dbg("tipc_nametbl_insert_publ: created %p\n", seq);
580 if (!seq)
581 return NULL;
583 return tipc_nameseq_insert_publ(seq, type, lower, upper,
584 scope, node, port, key);
587 struct publication *tipc_nametbl_remove_publ(u32 type, u32 lower,
588 u32 node, u32 ref, u32 key)
590 struct publication *publ;
591 struct name_seq *seq = nametbl_find_seq(type);
593 if (!seq)
594 return NULL;
596 dbg("Withdrawing {%u,%u} from 0x%x\n", type, lower, node);
597 publ = tipc_nameseq_remove_publ(seq, lower, node, ref, key);
599 if (!seq->first_free && list_empty(&seq->subscriptions)) {
600 hlist_del_init(&seq->ns_list);
601 kfree(seq->sseqs);
602 kfree(seq);
604 return publ;
608 * tipc_nametbl_translate(): Translate tipc_name -> tipc_portid.
609 * Very time-critical.
611 * Note: on entry 'destnode' is the search domain used during translation;
612 * on exit it passes back the node address of the matching port (if any)
615 u32 tipc_nametbl_translate(u32 type, u32 instance, u32 *destnode)
617 struct sub_seq *sseq;
618 struct publication *publ = NULL;
619 struct name_seq *seq;
620 u32 ref;
622 if (!in_scope(*destnode, tipc_own_addr))
623 return 0;
625 read_lock_bh(&tipc_nametbl_lock);
626 seq = nametbl_find_seq(type);
627 if (unlikely(!seq))
628 goto not_found;
629 sseq = nameseq_find_subseq(seq, instance);
630 if (unlikely(!sseq))
631 goto not_found;
632 spin_lock_bh(&seq->lock);
634 /* Closest-First Algorithm: */
635 if (likely(!*destnode)) {
636 publ = sseq->node_list;
637 if (publ) {
638 sseq->node_list = publ->node_list_next;
639 found:
640 ref = publ->ref;
641 *destnode = publ->node;
642 spin_unlock_bh(&seq->lock);
643 read_unlock_bh(&tipc_nametbl_lock);
644 return ref;
646 publ = sseq->cluster_list;
647 if (publ) {
648 sseq->cluster_list = publ->cluster_list_next;
649 goto found;
651 publ = sseq->zone_list;
652 if (publ) {
653 sseq->zone_list = publ->zone_list_next;
654 goto found;
658 /* Round-Robin Algorithm: */
659 else if (*destnode == tipc_own_addr) {
660 publ = sseq->node_list;
661 if (publ) {
662 sseq->node_list = publ->node_list_next;
663 goto found;
665 } else if (in_own_cluster(*destnode)) {
666 publ = sseq->cluster_list;
667 if (publ) {
668 sseq->cluster_list = publ->cluster_list_next;
669 goto found;
671 } else {
672 publ = sseq->zone_list;
673 if (publ) {
674 sseq->zone_list = publ->zone_list_next;
675 goto found;
678 spin_unlock_bh(&seq->lock);
679 not_found:
680 *destnode = 0;
681 read_unlock_bh(&tipc_nametbl_lock);
682 return 0;
686 * tipc_nametbl_mc_translate - find multicast destinations
688 * Creates list of all local ports that overlap the given multicast address;
689 * also determines if any off-node ports overlap.
691 * Note: Publications with a scope narrower than 'limit' are ignored.
692 * (i.e. local node-scope publications mustn't receive messages arriving
693 * from another node, even if the multcast link brought it here)
695 * Returns non-zero if any off-node ports overlap
698 int tipc_nametbl_mc_translate(u32 type, u32 lower, u32 upper, u32 limit,
699 struct port_list *dports)
701 struct name_seq *seq;
702 struct sub_seq *sseq;
703 struct sub_seq *sseq_stop;
704 int res = 0;
706 read_lock_bh(&tipc_nametbl_lock);
707 seq = nametbl_find_seq(type);
708 if (!seq)
709 goto exit;
711 spin_lock_bh(&seq->lock);
713 sseq = seq->sseqs + nameseq_locate_subseq(seq, lower);
714 sseq_stop = seq->sseqs + seq->first_free;
715 for (; sseq != sseq_stop; sseq++) {
716 struct publication *publ;
718 if (sseq->lower > upper)
719 break;
720 publ = sseq->cluster_list;
721 if (publ && (publ->scope <= limit))
722 do {
723 if (publ->node == tipc_own_addr)
724 tipc_port_list_add(dports, publ->ref);
725 else
726 res = 1;
727 publ = publ->cluster_list_next;
728 } while (publ != sseq->cluster_list);
731 spin_unlock_bh(&seq->lock);
732 exit:
733 read_unlock_bh(&tipc_nametbl_lock);
734 return res;
738 * tipc_nametbl_publish_rsv - publish port name using a reserved name type
741 int tipc_nametbl_publish_rsv(u32 ref, unsigned int scope,
742 struct tipc_name_seq const *seq)
744 int res;
746 atomic_inc(&rsv_publ_ok);
747 res = tipc_publish(ref, scope, seq);
748 atomic_dec(&rsv_publ_ok);
749 return res;
753 * tipc_nametbl_publish - add name publication to network name tables
756 struct publication *tipc_nametbl_publish(u32 type, u32 lower, u32 upper,
757 u32 scope, u32 port_ref, u32 key)
759 struct publication *publ;
761 if (table.local_publ_count >= tipc_max_publications) {
762 warn("Publication failed, local publication limit reached (%u)\n",
763 tipc_max_publications);
764 return NULL;
766 if ((type < TIPC_RESERVED_TYPES) && !atomic_read(&rsv_publ_ok)) {
767 warn("Publication failed, reserved name {%u,%u,%u}\n",
768 type, lower, upper);
769 return NULL;
772 write_lock_bh(&tipc_nametbl_lock);
773 table.local_publ_count++;
774 publ = tipc_nametbl_insert_publ(type, lower, upper, scope,
775 tipc_own_addr, port_ref, key);
776 if (publ && (scope != TIPC_NODE_SCOPE)) {
777 tipc_named_publish(publ);
779 write_unlock_bh(&tipc_nametbl_lock);
780 return publ;
784 * tipc_nametbl_withdraw - withdraw name publication from network name tables
787 int tipc_nametbl_withdraw(u32 type, u32 lower, u32 ref, u32 key)
789 struct publication *publ;
791 dbg("tipc_nametbl_withdraw: {%u,%u}, key=%u\n", type, lower, key);
792 write_lock_bh(&tipc_nametbl_lock);
793 publ = tipc_nametbl_remove_publ(type, lower, tipc_own_addr, ref, key);
794 if (likely(publ)) {
795 table.local_publ_count--;
796 if (publ->scope != TIPC_NODE_SCOPE)
797 tipc_named_withdraw(publ);
798 write_unlock_bh(&tipc_nametbl_lock);
799 list_del_init(&publ->pport_list);
800 kfree(publ);
801 return 1;
803 write_unlock_bh(&tipc_nametbl_lock);
804 err("Unable to remove local publication\n"
805 "(type=%u, lower=%u, ref=%u, key=%u)\n",
806 type, lower, ref, key);
807 return 0;
811 * tipc_nametbl_subscribe - add a subscription object to the name table
814 void tipc_nametbl_subscribe(struct subscription *s)
816 u32 type = s->seq.type;
817 struct name_seq *seq;
819 write_lock_bh(&tipc_nametbl_lock);
820 seq = nametbl_find_seq(type);
821 if (!seq) {
822 seq = tipc_nameseq_create(type, &table.types[hash(type)]);
824 if (seq){
825 spin_lock_bh(&seq->lock);
826 dbg("tipc_nametbl_subscribe:found %p for {%u,%u,%u}\n",
827 seq, type, s->seq.lower, s->seq.upper);
828 tipc_nameseq_subscribe(seq, s);
829 spin_unlock_bh(&seq->lock);
830 } else {
831 warn("Failed to create subscription for {%u,%u,%u}\n",
832 s->seq.type, s->seq.lower, s->seq.upper);
834 write_unlock_bh(&tipc_nametbl_lock);
838 * tipc_nametbl_unsubscribe - remove a subscription object from name table
841 void tipc_nametbl_unsubscribe(struct subscription *s)
843 struct name_seq *seq;
845 write_lock_bh(&tipc_nametbl_lock);
846 seq = nametbl_find_seq(s->seq.type);
847 if (seq != NULL){
848 spin_lock_bh(&seq->lock);
849 list_del_init(&s->nameseq_list);
850 spin_unlock_bh(&seq->lock);
851 if ((seq->first_free == 0) && list_empty(&seq->subscriptions)) {
852 hlist_del_init(&seq->ns_list);
853 kfree(seq->sseqs);
854 kfree(seq);
857 write_unlock_bh(&tipc_nametbl_lock);
862 * subseq_list: print specified sub-sequence contents into the given buffer
865 static void subseq_list(struct sub_seq *sseq, struct print_buf *buf, u32 depth,
866 u32 index)
868 char portIdStr[27];
869 char *scopeStr;
870 struct publication *publ = sseq->zone_list;
872 tipc_printf(buf, "%-10u %-10u ", sseq->lower, sseq->upper);
874 if (depth == 2 || !publ) {
875 tipc_printf(buf, "\n");
876 return;
879 do {
880 sprintf (portIdStr, "<%u.%u.%u:%u>",
881 tipc_zone(publ->node), tipc_cluster(publ->node),
882 tipc_node(publ->node), publ->ref);
883 tipc_printf(buf, "%-26s ", portIdStr);
884 if (depth > 3) {
885 if (publ->node != tipc_own_addr)
886 scopeStr = "";
887 else if (publ->scope == TIPC_NODE_SCOPE)
888 scopeStr = "node";
889 else if (publ->scope == TIPC_CLUSTER_SCOPE)
890 scopeStr = "cluster";
891 else
892 scopeStr = "zone";
893 tipc_printf(buf, "%-10u %s", publ->key, scopeStr);
896 publ = publ->zone_list_next;
897 if (publ == sseq->zone_list)
898 break;
900 tipc_printf(buf, "\n%33s", " ");
901 } while (1);
903 tipc_printf(buf, "\n");
907 * nameseq_list: print specified name sequence contents into the given buffer
910 static void nameseq_list(struct name_seq *seq, struct print_buf *buf, u32 depth,
911 u32 type, u32 lowbound, u32 upbound, u32 index)
913 struct sub_seq *sseq;
914 char typearea[11];
916 sprintf(typearea, "%-10u", seq->type);
918 if (depth == 1) {
919 tipc_printf(buf, "%s\n", typearea);
920 return;
923 for (sseq = seq->sseqs; sseq != &seq->sseqs[seq->first_free]; sseq++) {
924 if ((lowbound <= sseq->upper) && (upbound >= sseq->lower)) {
925 tipc_printf(buf, "%s ", typearea);
926 subseq_list(sseq, buf, depth, index);
927 sprintf(typearea, "%10s", " ");
933 * nametbl_header - print name table header into the given buffer
936 static void nametbl_header(struct print_buf *buf, u32 depth)
938 tipc_printf(buf, "Type ");
940 if (depth > 1)
941 tipc_printf(buf, "Lower Upper ");
942 if (depth > 2)
943 tipc_printf(buf, "Port Identity ");
944 if (depth > 3)
945 tipc_printf(buf, "Publication");
947 tipc_printf(buf, "\n-----------");
949 if (depth > 1)
950 tipc_printf(buf, "--------------------- ");
951 if (depth > 2)
952 tipc_printf(buf, "-------------------------- ");
953 if (depth > 3)
954 tipc_printf(buf, "------------------");
956 tipc_printf(buf, "\n");
960 * nametbl_list - print specified name table contents into the given buffer
963 static void nametbl_list(struct print_buf *buf, u32 depth_info,
964 u32 type, u32 lowbound, u32 upbound)
966 struct hlist_head *seq_head;
967 struct hlist_node *seq_node;
968 struct name_seq *seq;
969 int all_types;
970 u32 depth;
971 u32 i;
973 all_types = (depth_info & TIPC_NTQ_ALLTYPES);
974 depth = (depth_info & ~TIPC_NTQ_ALLTYPES);
976 if (depth == 0)
977 return;
979 if (all_types) {
980 /* display all entries in name table to specified depth */
981 nametbl_header(buf, depth);
982 lowbound = 0;
983 upbound = ~0;
984 for (i = 0; i < tipc_nametbl_size; i++) {
985 seq_head = &table.types[i];
986 hlist_for_each_entry(seq, seq_node, seq_head, ns_list) {
987 nameseq_list(seq, buf, depth, seq->type,
988 lowbound, upbound, i);
991 } else {
992 /* display only the sequence that matches the specified type */
993 if (upbound < lowbound) {
994 tipc_printf(buf, "invalid name sequence specified\n");
995 return;
997 nametbl_header(buf, depth);
998 i = hash(type);
999 seq_head = &table.types[i];
1000 hlist_for_each_entry(seq, seq_node, seq_head, ns_list) {
1001 if (seq->type == type) {
1002 nameseq_list(seq, buf, depth, type,
1003 lowbound, upbound, i);
1004 break;
1010 #if 0
1011 void tipc_nametbl_print(struct print_buf *buf, const char *str)
1013 tipc_printf(buf, str);
1014 read_lock_bh(&tipc_nametbl_lock);
1015 nametbl_list(buf, 0, 0, 0, 0);
1016 read_unlock_bh(&tipc_nametbl_lock);
1018 #endif
1020 #define MAX_NAME_TBL_QUERY 32768
1022 struct sk_buff *tipc_nametbl_get(const void *req_tlv_area, int req_tlv_space)
1024 struct sk_buff *buf;
1025 struct tipc_name_table_query *argv;
1026 struct tlv_desc *rep_tlv;
1027 struct print_buf b;
1028 int str_len;
1030 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_NAME_TBL_QUERY))
1031 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
1033 buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_NAME_TBL_QUERY));
1034 if (!buf)
1035 return NULL;
1037 rep_tlv = (struct tlv_desc *)buf->data;
1038 tipc_printbuf_init(&b, TLV_DATA(rep_tlv), MAX_NAME_TBL_QUERY);
1039 argv = (struct tipc_name_table_query *)TLV_DATA(req_tlv_area);
1040 read_lock_bh(&tipc_nametbl_lock);
1041 nametbl_list(&b, ntohl(argv->depth), ntohl(argv->type),
1042 ntohl(argv->lowbound), ntohl(argv->upbound));
1043 read_unlock_bh(&tipc_nametbl_lock);
1044 str_len = tipc_printbuf_validate(&b);
1046 skb_put(buf, TLV_SPACE(str_len));
1047 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
1049 return buf;
1052 #if 0
1053 void tipc_nametbl_dump(void)
1055 nametbl_list(TIPC_CONS, 0, 0, 0, 0);
1057 #endif
1059 int tipc_nametbl_init(void)
1061 int array_size = sizeof(struct hlist_head) * tipc_nametbl_size;
1063 table.types = (struct hlist_head *)kmalloc(array_size, GFP_ATOMIC);
1064 if (!table.types)
1065 return -ENOMEM;
1067 write_lock_bh(&tipc_nametbl_lock);
1068 memset(table.types, 0, array_size);
1069 table.local_publ_count = 0;
1070 write_unlock_bh(&tipc_nametbl_lock);
1071 return 0;
1074 void tipc_nametbl_stop(void)
1076 u32 i;
1078 if (!table.types)
1079 return;
1081 /* Verify name table is empty, then release it */
1083 write_lock_bh(&tipc_nametbl_lock);
1084 for (i = 0; i < tipc_nametbl_size; i++) {
1085 if (!hlist_empty(&table.types[i]))
1086 err("tipc_nametbl_stop(): hash chain %u is non-null\n", i);
1088 kfree(table.types);
1089 table.types = NULL;
1090 write_unlock_bh(&tipc_nametbl_lock);