2 * net/tipc/name_table.c: TIPC name table code
4 * Copyright (c) 2000-2006, Ericsson AB
5 * Copyright (c) 2004-2005, Wind River Systems
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.
40 #include "name_table.h"
41 #include "name_distr.h"
43 #include "node_subscr.h"
49 static int tipc_nametbl_size
= 1024; /* must be a power of 2 */
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
63 struct publication
*node_list
;
64 struct publication
*cluster_list
;
65 struct publication
*zone_list
;
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
82 struct sub_seq
*sseqs
;
85 struct hlist_node ns_list
;
86 struct list_head subscriptions
;
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
98 struct hlist_head
*types
;
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
,
120 struct publication
*publ
=
121 (struct publication
*)kmalloc(sizeof(*publ
), GFP_ATOMIC
);
123 warn("Publication creation failure, no memory\n");
127 memset(publ
, 0, sizeof(*publ
));
133 publ
->ref
= port_ref
;
135 INIT_LIST_HEAD(&publ
->local_list
);
136 INIT_LIST_HEAD(&publ
->pport_list
);
137 INIT_LIST_HEAD(&publ
->subscr
.nodesub_list
);
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
);
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");
174 memset(nseq
, 0, sizeof(*nseq
));
175 spin_lock_init(&nseq
->lock
);
178 dbg("tipc_nameseq_create(): nseq = %p, type %u, ssseqs %p, ff: %u\n",
179 nseq
, type
, nseq
->sseqs
, nseq
->first_free
);
181 INIT_HLIST_NODE(&nseq
->ns_list
);
182 INIT_LIST_HEAD(&nseq
->subscriptions
);
183 hlist_add_head(&nseq
->ns_list
, seq_head
);
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
,
196 struct sub_seq
*sseqs
= nseq
->sseqs
;
198 int high
= nseq
->first_free
- 1;
201 while (low
<= high
) {
202 mid
= (low
+ high
) / 2;
203 if (instance
< sseqs
[mid
].lower
)
205 else if (instance
> sseqs
[mid
].upper
)
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
;
227 int high
= nseq
->first_free
- 1;
230 while (low
<= high
) {
231 mid
= (low
+ high
) / 2;
232 if (instance
< sseqs
[mid
].lower
)
234 else if (instance
> sseqs
[mid
].upper
)
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
);
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",
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",
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);
291 warn("Cannot publish {%u,%u,%u}, no memory\n",
295 dbg("Allocated %u more sseqs\n", nseq
->alloc
);
296 memcpy(sseqs
, nseq
->sseqs
,
297 nseq
->alloc
* sizeof(struct sub_seq
));
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
));
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
);
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
;
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
;
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
;
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
,
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;
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
))) {
406 publ
= publ
->zone_list_next
;
407 if (prev
== sseq
->zone_list
) {
409 /* Prevent endless loop if publication not found */
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
;
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
) {
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
);
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
;
448 sseq
->cluster_list
= NULL
;
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
) {
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
);
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
;
478 sseq
->node_list
= NULL
;
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
));
491 /* Notify any waiting subscriptions */
493 list_for_each_entry_safe(s
, st
, &nseq
->subscriptions
, nameseq_list
) {
494 tipc_subscr_report_overlap(s
,
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
);
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
;
528 tipc_subscr_report_overlap(s
,
536 crs
= crs
->zone_list_next
;
543 static struct name_seq
*nametbl_find_seq(u32 type
)
545 struct hlist_head
*seq_head
;
546 struct hlist_node
*seq_node
;
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
);
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
);
570 warn("Failed to publish illegal {%u,%u,%u}\n",
575 dbg("Publishing {%u,%u,%u} from 0x%x\n", type
, lower
, upper
, node
);
577 seq
= tipc_nameseq_create(type
, &table
.types
[hash(type
)]);
578 dbg("tipc_nametbl_insert_publ: created %p\n", seq
);
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
);
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
);
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
;
622 if (!in_scope(*destnode
, tipc_own_addr
))
625 read_lock_bh(&tipc_nametbl_lock
);
626 seq
= nametbl_find_seq(type
);
629 sseq
= nameseq_find_subseq(seq
, instance
);
632 spin_lock_bh(&seq
->lock
);
634 /* Closest-First Algorithm: */
635 if (likely(!*destnode
)) {
636 publ
= sseq
->node_list
;
638 sseq
->node_list
= publ
->node_list_next
;
641 *destnode
= publ
->node
;
642 spin_unlock_bh(&seq
->lock
);
643 read_unlock_bh(&tipc_nametbl_lock
);
646 publ
= sseq
->cluster_list
;
648 sseq
->cluster_list
= publ
->cluster_list_next
;
651 publ
= sseq
->zone_list
;
653 sseq
->zone_list
= publ
->zone_list_next
;
658 /* Round-Robin Algorithm: */
659 else if (*destnode
== tipc_own_addr
) {
660 publ
= sseq
->node_list
;
662 sseq
->node_list
= publ
->node_list_next
;
665 } else if (in_own_cluster(*destnode
)) {
666 publ
= sseq
->cluster_list
;
668 sseq
->cluster_list
= publ
->cluster_list_next
;
672 publ
= sseq
->zone_list
;
674 sseq
->zone_list
= publ
->zone_list_next
;
678 spin_unlock_bh(&seq
->lock
);
681 read_unlock_bh(&tipc_nametbl_lock
);
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
;
706 read_lock_bh(&tipc_nametbl_lock
);
707 seq
= nametbl_find_seq(type
);
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
)
720 publ
= sseq
->cluster_list
;
721 if (publ
&& (publ
->scope
<= limit
))
723 if (publ
->node
== tipc_own_addr
)
724 tipc_port_list_add(dports
, publ
->ref
);
727 publ
= publ
->cluster_list_next
;
728 } while (publ
!= sseq
->cluster_list
);
731 spin_unlock_bh(&seq
->lock
);
733 read_unlock_bh(&tipc_nametbl_lock
);
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
)
746 atomic_inc(&rsv_publ_ok
);
747 res
= tipc_publish(ref
, scope
, seq
);
748 atomic_dec(&rsv_publ_ok
);
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
);
766 if ((type
< TIPC_RESERVED_TYPES
) && !atomic_read(&rsv_publ_ok
)) {
767 warn("Publication failed, reserved name {%u,%u,%u}\n",
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
);
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
);
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
);
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
);
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
);
822 seq
= tipc_nameseq_create(type
, &table
.types
[hash(type
)]);
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
);
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
);
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
);
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
,
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");
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
);
885 if (publ
->node
!= tipc_own_addr
)
887 else if (publ
->scope
== TIPC_NODE_SCOPE
)
889 else if (publ
->scope
== TIPC_CLUSTER_SCOPE
)
890 scopeStr
= "cluster";
893 tipc_printf(buf
, "%-10u %s", publ
->key
, scopeStr
);
896 publ
= publ
->zone_list_next
;
897 if (publ
== sseq
->zone_list
)
900 tipc_printf(buf
, "\n%33s", " ");
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
;
916 sprintf(typearea
, "%-10u", seq
->type
);
919 tipc_printf(buf
, "%s\n", typearea
);
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 ");
941 tipc_printf(buf
, "Lower Upper ");
943 tipc_printf(buf
, "Port Identity ");
945 tipc_printf(buf
, "Publication");
947 tipc_printf(buf
, "\n-----------");
950 tipc_printf(buf
, "--------------------- ");
952 tipc_printf(buf
, "-------------------------- ");
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
;
973 all_types
= (depth_info
& TIPC_NTQ_ALLTYPES
);
974 depth
= (depth_info
& ~TIPC_NTQ_ALLTYPES
);
980 /* display all entries in name table to specified depth */
981 nametbl_header(buf
, depth
);
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
);
992 /* display only the sequence that matches the specified type */
993 if (upbound
< lowbound
) {
994 tipc_printf(buf
, "invalid name sequence specified\n");
997 nametbl_header(buf
, depth
);
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
);
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
);
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
;
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
));
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
);
1053 void tipc_nametbl_dump(void)
1055 nametbl_list(TIPC_CONS
, 0, 0, 0, 0);
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
);
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
);
1074 void tipc_nametbl_stop(void)
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
);
1090 write_unlock_bh(&tipc_nametbl_lock
);