blob: 1196f050e334b8ecfd531afdf27e47a3bda5e950 [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/name_table.c: TIPC name table code
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Per Liden593a5f22006-01-11 19:14:19 +01004 * Copyright (c) 2000-2006, Ericsson AB
Allan Stephensf6f0a4d2011-05-30 10:48:48 -04005 * Copyright (c) 2004-2008, 2010-2011, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 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.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * 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
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
38#include "config.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039#include "name_table.h"
40#include "name_distr.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010041#include "subscr.h"
42#include "port.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010043
Adrian Bunk988f0882006-03-20 22:37:52 -080044static int tipc_nametbl_size = 1024; /* must be a power of 2 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010045
46/**
Allan Stephensb52124a2011-05-30 09:44:38 -040047 * struct name_info - name sequence publication info
Allan Stephens968edbe2008-07-14 22:45:33 -070048 * @node_list: circular list of publications made by own node
49 * @cluster_list: circular list of publications made by own cluster
50 * @zone_list: circular list of publications made by own zone
51 * @node_list_size: number of entries in "node_list"
52 * @cluster_list_size: number of entries in "cluster_list"
53 * @zone_list_size: number of entries in "zone_list"
54 *
55 * Note: The zone list always contains at least one entry, since all
56 * publications of the associated name sequence belong to it.
57 * (The cluster and node lists may be empty.)
Per Lidenb97bf3f2006-01-02 19:04:38 +010058 */
59
Allan Stephensb52124a2011-05-30 09:44:38 -040060struct name_info {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -040061 struct list_head node_list;
62 struct list_head cluster_list;
63 struct list_head zone_list;
Allan Stephens968edbe2008-07-14 22:45:33 -070064 u32 node_list_size;
65 u32 cluster_list_size;
66 u32 zone_list_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +010067};
68
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090069/**
Allan Stephensb52124a2011-05-30 09:44:38 -040070 * struct sub_seq - container for all published instances of a name sequence
71 * @lower: name sequence lower bound
72 * @upper: name sequence upper bound
73 * @info: pointer to name sequence publication info
74 */
75
76struct sub_seq {
77 u32 lower;
78 u32 upper;
79 struct name_info *info;
80};
81
82/**
Per Lidenb97bf3f2006-01-02 19:04:38 +010083 * struct name_seq - container for all published instances of a name type
84 * @type: 32 bit 'type' value for name sequence
85 * @sseq: pointer to dynamically-sized array of sub-sequences of this 'type';
86 * sub-sequences are sorted in ascending order
87 * @alloc: number of sub-sequences currently in array
Allan Stephensf1310722006-06-25 23:51:37 -070088 * @first_free: array index of first unused sub-sequence entry
Per Lidenb97bf3f2006-01-02 19:04:38 +010089 * @ns_list: links to adjacent name sequences in hash chain
90 * @subscriptions: list of subscriptions for this 'type'
Allan Stephens307fdf52008-06-04 17:38:22 -070091 * @lock: spinlock controlling access to publication lists of all sub-sequences
Per Lidenb97bf3f2006-01-02 19:04:38 +010092 */
93
94struct name_seq {
95 u32 type;
96 struct sub_seq *sseqs;
97 u32 alloc;
98 u32 first_free;
99 struct hlist_node ns_list;
100 struct list_head subscriptions;
101 spinlock_t lock;
102};
103
104/**
105 * struct name_table - table containing all existing port name publications
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900106 * @types: pointer to fixed-sized array of name sequence lists,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100107 * accessed via hashing on 'type'; name sequence lists are *not* sorted
108 * @local_publ_count: number of publications issued by this node
109 */
110
111struct name_table {
112 struct hlist_head *types;
113 u32 local_publ_count;
114};
115
Allan Stephense3ec9c72010-12-31 18:59:34 +0000116static struct name_table table;
Ingo Molnar34af9462006-06-27 02:53:55 -0700117DEFINE_RWLOCK(tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100118
Sam Ravnborg05790c62006-03-20 22:37:04 -0800119static int hash(int x)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100120{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000121 return x & (tipc_nametbl_size - 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122}
123
124/**
125 * publ_create - create a publication structure
126 */
127
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900128static struct publication *publ_create(u32 type, u32 lower, u32 upper,
129 u32 scope, u32 node, u32 port_ref,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100130 u32 key)
131{
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700132 struct publication *publ = kzalloc(sizeof(*publ), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100133 if (publ == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700134 warn("Publication creation failure, no memory\n");
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800135 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100136 }
137
Per Lidenb97bf3f2006-01-02 19:04:38 +0100138 publ->type = type;
139 publ->lower = lower;
140 publ->upper = upper;
141 publ->scope = scope;
142 publ->node = node;
143 publ->ref = port_ref;
144 publ->key = key;
145 INIT_LIST_HEAD(&publ->local_list);
146 INIT_LIST_HEAD(&publ->pport_list);
147 INIT_LIST_HEAD(&publ->subscr.nodesub_list);
148 return publ;
149}
150
151/**
Per Liden4323add2006-01-18 00:38:21 +0100152 * tipc_subseq_alloc - allocate a specified number of sub-sequence structures
Per Lidenb97bf3f2006-01-02 19:04:38 +0100153 */
154
Adrian Bunk988f0882006-03-20 22:37:52 -0800155static struct sub_seq *tipc_subseq_alloc(u32 cnt)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100156{
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700157 struct sub_seq *sseq = kcalloc(cnt, sizeof(struct sub_seq), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100158 return sseq;
159}
160
161/**
Per Liden4323add2006-01-18 00:38:21 +0100162 * tipc_nameseq_create - create a name sequence structure for the specified 'type'
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900163 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100164 * Allocates a single sub-sequence structure and sets it to all 0's.
165 */
166
Adrian Bunk988f0882006-03-20 22:37:52 -0800167static struct name_seq *tipc_nameseq_create(u32 type, struct hlist_head *seq_head)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100168{
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700169 struct name_seq *nseq = kzalloc(sizeof(*nseq), GFP_ATOMIC);
Per Liden4323add2006-01-18 00:38:21 +0100170 struct sub_seq *sseq = tipc_subseq_alloc(1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100171
172 if (!nseq || !sseq) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700173 warn("Name sequence creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100174 kfree(nseq);
175 kfree(sseq);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800176 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100177 }
178
Ingo Molnar34af9462006-06-27 02:53:55 -0700179 spin_lock_init(&nseq->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100180 nseq->type = type;
181 nseq->sseqs = sseq;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100182 nseq->alloc = 1;
183 INIT_HLIST_NODE(&nseq->ns_list);
184 INIT_LIST_HEAD(&nseq->subscriptions);
185 hlist_add_head(&nseq->ns_list, seq_head);
186 return nseq;
187}
188
189/**
190 * nameseq_find_subseq - find sub-sequence (if any) matching a name instance
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900191 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100192 * Very time-critical, so binary searches through sub-sequence array.
193 */
194
Sam Ravnborg05790c62006-03-20 22:37:04 -0800195static struct sub_seq *nameseq_find_subseq(struct name_seq *nseq,
196 u32 instance)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100197{
198 struct sub_seq *sseqs = nseq->sseqs;
199 int low = 0;
200 int high = nseq->first_free - 1;
201 int mid;
202
203 while (low <= high) {
204 mid = (low + high) / 2;
205 if (instance < sseqs[mid].lower)
206 high = mid - 1;
207 else if (instance > sseqs[mid].upper)
208 low = mid + 1;
209 else
210 return &sseqs[mid];
211 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800212 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100213}
214
215/**
216 * nameseq_locate_subseq - determine position of name instance in sub-sequence
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900217 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100218 * Returns index in sub-sequence array of the entry that contains the specified
219 * instance value; if no entry contains that value, returns the position
220 * where a new entry for it would be inserted in the array.
221 *
222 * Note: Similar to binary search code for locating a sub-sequence.
223 */
224
225static u32 nameseq_locate_subseq(struct name_seq *nseq, u32 instance)
226{
227 struct sub_seq *sseqs = nseq->sseqs;
228 int low = 0;
229 int high = nseq->first_free - 1;
230 int mid;
231
232 while (low <= high) {
233 mid = (low + high) / 2;
234 if (instance < sseqs[mid].lower)
235 high = mid - 1;
236 else if (instance > sseqs[mid].upper)
237 low = mid + 1;
238 else
239 return mid;
240 }
241 return low;
242}
243
244/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900245 * tipc_nameseq_insert_publ -
Per Lidenb97bf3f2006-01-02 19:04:38 +0100246 */
247
Adrian Bunk988f0882006-03-20 22:37:52 -0800248static 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)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100251{
Paul Gortmakerfead3902011-12-29 20:43:44 -0500252 struct tipc_subscription *s;
253 struct tipc_subscription *st;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100254 struct publication *publ;
255 struct sub_seq *sseq;
Allan Stephensb52124a2011-05-30 09:44:38 -0400256 struct name_info *info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100257 int created_subseq = 0;
258
Per Lidenb97bf3f2006-01-02 19:04:38 +0100259 sseq = nameseq_find_subseq(nseq, lower);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100260 if (sseq) {
261
262 /* Lower end overlaps existing entry => need an exact match */
263
264 if ((sseq->lower != lower) || (sseq->upper != upper)) {
Allan Stephensf1310722006-06-25 23:51:37 -0700265 warn("Cannot publish {%u,%u,%u}, overlap error\n",
266 type, lower, upper);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800267 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100268 }
Allan Stephensb52124a2011-05-30 09:44:38 -0400269
270 info = sseq->info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100271 } else {
272 u32 inspos;
273 struct sub_seq *freesseq;
274
275 /* Find where lower end should be inserted */
276
277 inspos = nameseq_locate_subseq(nseq, lower);
278
279 /* Fail if upper end overlaps into an existing entry */
280
281 if ((inspos < nseq->first_free) &&
282 (upper >= nseq->sseqs[inspos].lower)) {
Allan Stephensf1310722006-06-25 23:51:37 -0700283 warn("Cannot publish {%u,%u,%u}, overlap error\n",
284 type, lower, upper);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800285 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100286 }
287
288 /* Ensure there is space for new sub-sequence */
289
290 if (nseq->first_free == nseq->alloc) {
Allan Stephens9ab230f2006-06-25 23:37:24 -0700291 struct sub_seq *sseqs = tipc_subseq_alloc(nseq->alloc * 2);
292
293 if (!sseqs) {
Allan Stephensf1310722006-06-25 23:51:37 -0700294 warn("Cannot publish {%u,%u,%u}, no memory\n",
295 type, lower, upper);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800296 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100297 }
Allan Stephens9ab230f2006-06-25 23:37:24 -0700298 memcpy(sseqs, nseq->sseqs,
299 nseq->alloc * sizeof(struct sub_seq));
300 kfree(nseq->sseqs);
301 nseq->sseqs = sseqs;
302 nseq->alloc *= 2;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100303 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100304
Allan Stephensb52124a2011-05-30 09:44:38 -0400305 info = kzalloc(sizeof(*info), GFP_ATOMIC);
306 if (!info) {
307 warn("Cannot publish {%u,%u,%u}, no memory\n",
308 type, lower, upper);
309 return NULL;
310 }
311
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400312 INIT_LIST_HEAD(&info->node_list);
313 INIT_LIST_HEAD(&info->cluster_list);
314 INIT_LIST_HEAD(&info->zone_list);
315
Per Lidenb97bf3f2006-01-02 19:04:38 +0100316 /* Insert new sub-sequence */
317
Per Lidenb97bf3f2006-01-02 19:04:38 +0100318 sseq = &nseq->sseqs[inspos];
319 freesseq = &nseq->sseqs[nseq->first_free];
Allan Stephens0e659672010-12-31 18:59:32 +0000320 memmove(sseq + 1, sseq, (freesseq - sseq) * sizeof(*sseq));
321 memset(sseq, 0, sizeof(*sseq));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100322 nseq->first_free++;
323 sseq->lower = lower;
324 sseq->upper = upper;
Allan Stephensb52124a2011-05-30 09:44:38 -0400325 sseq->info = info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100326 created_subseq = 1;
327 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100328
329 /* Insert a publication: */
330
331 publ = publ_create(type, lower, upper, scope, node, port, key);
332 if (!publ)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800333 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100334
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400335 list_add(&publ->zone_list, &info->zone_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400336 info->zone_list_size++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100337
338 if (in_own_cluster(node)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400339 list_add(&publ->cluster_list, &info->cluster_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400340 info->cluster_list_size++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100341 }
342
343 if (node == tipc_own_addr) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400344 list_add(&publ->node_list, &info->node_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400345 info->node_list_size++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100346 }
347
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900348 /*
349 * Any subscriptions waiting for notification?
Per Lidenb97bf3f2006-01-02 19:04:38 +0100350 */
351 list_for_each_entry_safe(s, st, &nseq->subscriptions, nameseq_list) {
Per Liden4323add2006-01-18 00:38:21 +0100352 tipc_subscr_report_overlap(s,
353 publ->lower,
354 publ->upper,
355 TIPC_PUBLISHED,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900356 publ->ref,
Per Liden4323add2006-01-18 00:38:21 +0100357 publ->node,
358 created_subseq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100359 }
360 return publ;
361}
362
363/**
Per Liden4323add2006-01-18 00:38:21 +0100364 * tipc_nameseq_remove_publ -
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900365 *
Allan Stephensf1310722006-06-25 23:51:37 -0700366 * NOTE: There may be cases where TIPC is asked to remove a publication
367 * that is not in the name table. For example, if another node issues a
368 * publication for a name sequence that overlaps an existing name sequence
369 * the publication will not be recorded, which means the publication won't
370 * be found when the name sequence is later withdrawn by that node.
371 * A failed withdraw request simply returns a failure indication and lets the
372 * caller issue any error or warning messages associated with such a problem.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100373 */
374
Adrian Bunk988f0882006-03-20 22:37:52 -0800375static struct publication *tipc_nameseq_remove_publ(struct name_seq *nseq, u32 inst,
376 u32 node, u32 ref, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100377{
378 struct publication *publ;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100379 struct sub_seq *sseq = nameseq_find_subseq(nseq, inst);
Allan Stephensb52124a2011-05-30 09:44:38 -0400380 struct name_info *info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100381 struct sub_seq *free;
Paul Gortmakerfead3902011-12-29 20:43:44 -0500382 struct tipc_subscription *s, *st;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100383 int removed_subseq = 0;
384
Allan Stephensf1310722006-06-25 23:51:37 -0700385 if (!sseq)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800386 return NULL;
Allan Stephensf1310722006-06-25 23:51:37 -0700387
Allan Stephensb52124a2011-05-30 09:44:38 -0400388 info = sseq->info;
389
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400390 /* Locate publication, if it exists */
391
392 list_for_each_entry(publ, &info->zone_list, zone_list) {
393 if ((publ->key == key) && (publ->ref == ref) &&
394 (!publ->node || (publ->node == node)))
395 goto found;
396 }
397 return NULL;
398
399found:
Allan Stephensf1310722006-06-25 23:51:37 -0700400 /* Remove publication from zone scope list */
401
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400402 list_del(&publ->zone_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400403 info->zone_list_size--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100404
Allan Stephensf1310722006-06-25 23:51:37 -0700405 /* Remove publication from cluster scope list, if present */
406
Per Lidenb97bf3f2006-01-02 19:04:38 +0100407 if (in_own_cluster(node)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400408 list_del(&publ->cluster_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400409 info->cluster_list_size--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100410 }
Allan Stephensf1310722006-06-25 23:51:37 -0700411
412 /* Remove publication from node scope list, if present */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100413
414 if (node == tipc_own_addr) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400415 list_del(&publ->node_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400416 info->node_list_size--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100417 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100418
Allan Stephensf1310722006-06-25 23:51:37 -0700419 /* Contract subseq list if no more publications for that subseq */
420
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400421 if (list_empty(&info->zone_list)) {
Allan Stephensb52124a2011-05-30 09:44:38 -0400422 kfree(info);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100423 free = &nseq->sseqs[nseq->first_free--];
Allan Stephens0e659672010-12-31 18:59:32 +0000424 memmove(sseq, sseq + 1, (free - (sseq + 1)) * sizeof(*sseq));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100425 removed_subseq = 1;
426 }
427
Allan Stephensf1310722006-06-25 23:51:37 -0700428 /* Notify any waiting subscriptions */
429
Per Lidenb97bf3f2006-01-02 19:04:38 +0100430 list_for_each_entry_safe(s, st, &nseq->subscriptions, nameseq_list) {
Per Liden4323add2006-01-18 00:38:21 +0100431 tipc_subscr_report_overlap(s,
432 publ->lower,
433 publ->upper,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900434 TIPC_WITHDRAWN,
435 publ->ref,
Per Liden4323add2006-01-18 00:38:21 +0100436 publ->node,
437 removed_subseq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100438 }
Allan Stephensf1310722006-06-25 23:51:37 -0700439
Per Lidenb97bf3f2006-01-02 19:04:38 +0100440 return publ;
441}
442
443/**
Per Liden4323add2006-01-18 00:38:21 +0100444 * tipc_nameseq_subscribe: attach a subscription, and issue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100445 * the prescribed number of events if there is any sub-
446 * sequence overlapping with the requested sequence
447 */
448
Paul Gortmakerfead3902011-12-29 20:43:44 -0500449static void tipc_nameseq_subscribe(struct name_seq *nseq,
450 struct tipc_subscription *s)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100451{
452 struct sub_seq *sseq = nseq->sseqs;
453
454 list_add(&s->nameseq_list, &nseq->subscriptions);
455
456 if (!sseq)
457 return;
458
459 while (sseq != &nseq->sseqs[nseq->first_free]) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400460 if (tipc_subscr_overlap(s, sseq->lower, sseq->upper)) {
461 struct publication *crs;
462 struct name_info *info = sseq->info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100463 int must_report = 1;
464
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400465 list_for_each_entry(crs, &info->zone_list, zone_list) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900466 tipc_subscr_report_overlap(s,
467 sseq->lower,
Per Liden4323add2006-01-18 00:38:21 +0100468 sseq->upper,
469 TIPC_PUBLISHED,
470 crs->ref,
471 crs->node,
472 must_report);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100473 must_report = 0;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400474 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100475 }
476 sseq++;
477 }
478}
479
480static struct name_seq *nametbl_find_seq(u32 type)
481{
482 struct hlist_head *seq_head;
483 struct hlist_node *seq_node;
484 struct name_seq *ns;
485
Per Lidenb97bf3f2006-01-02 19:04:38 +0100486 seq_head = &table.types[hash(type)];
487 hlist_for_each_entry(ns, seq_node, seq_head, ns_list) {
Allan Stephensb29f1422010-12-31 18:59:25 +0000488 if (ns->type == type)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100489 return ns;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100490 }
491
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800492 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100493};
494
Per Liden4323add2006-01-18 00:38:21 +0100495struct publication *tipc_nametbl_insert_publ(u32 type, u32 lower, u32 upper,
496 u32 scope, u32 node, u32 port, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100497{
498 struct name_seq *seq = nametbl_find_seq(type);
499
Per Lidenb97bf3f2006-01-02 19:04:38 +0100500 if (lower > upper) {
Allan Stephensf1310722006-06-25 23:51:37 -0700501 warn("Failed to publish illegal {%u,%u,%u}\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100502 type, lower, upper);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800503 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100504 }
505
Allan Stephensb29f1422010-12-31 18:59:25 +0000506 if (!seq)
Per Liden4323add2006-01-18 00:38:21 +0100507 seq = tipc_nameseq_create(type, &table.types[hash(type)]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100508 if (!seq)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800509 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100510
Per Liden4323add2006-01-18 00:38:21 +0100511 return tipc_nameseq_insert_publ(seq, type, lower, upper,
512 scope, node, port, key);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100513}
514
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900515struct publication *tipc_nametbl_remove_publ(u32 type, u32 lower,
Per Liden4323add2006-01-18 00:38:21 +0100516 u32 node, u32 ref, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100517{
518 struct publication *publ;
519 struct name_seq *seq = nametbl_find_seq(type);
520
521 if (!seq)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800522 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100523
Per Liden4323add2006-01-18 00:38:21 +0100524 publ = tipc_nameseq_remove_publ(seq, lower, node, ref, key);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100525
526 if (!seq->first_free && list_empty(&seq->subscriptions)) {
527 hlist_del_init(&seq->ns_list);
528 kfree(seq->sseqs);
529 kfree(seq);
530 }
531 return publ;
532}
533
534/*
Allan Stephens5d9c54c2010-09-03 08:33:39 +0000535 * tipc_nametbl_translate - translate name to port id
Per Lidenb97bf3f2006-01-02 19:04:38 +0100536 *
537 * Note: on entry 'destnode' is the search domain used during translation;
538 * on exit it passes back the node address of the matching port (if any)
539 */
540
Per Liden4323add2006-01-18 00:38:21 +0100541u32 tipc_nametbl_translate(u32 type, u32 instance, u32 *destnode)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100542{
543 struct sub_seq *sseq;
Allan Stephensb52124a2011-05-30 09:44:38 -0400544 struct name_info *info;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400545 struct publication *publ;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100546 struct name_seq *seq;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400547 u32 ref = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100548
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000549 if (!tipc_in_scope(*destnode, tipc_own_addr))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100550 return 0;
551
Per Liden4323add2006-01-18 00:38:21 +0100552 read_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100553 seq = nametbl_find_seq(type);
554 if (unlikely(!seq))
555 goto not_found;
556 sseq = nameseq_find_subseq(seq, instance);
557 if (unlikely(!sseq))
558 goto not_found;
559 spin_lock_bh(&seq->lock);
Allan Stephensb52124a2011-05-30 09:44:38 -0400560 info = sseq->info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100561
562 /* Closest-First Algorithm: */
563 if (likely(!*destnode)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400564 if (!list_empty(&info->node_list)) {
565 publ = list_first_entry(&info->node_list,
566 struct publication,
567 node_list);
568 list_move_tail(&publ->node_list,
569 &info->node_list);
570 } else if (!list_empty(&info->cluster_list)) {
571 publ = list_first_entry(&info->cluster_list,
572 struct publication,
573 cluster_list);
574 list_move_tail(&publ->cluster_list,
575 &info->cluster_list);
Allan Stephens8af46382011-05-30 11:27:50 -0400576 } else {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400577 publ = list_first_entry(&info->zone_list,
578 struct publication,
579 zone_list);
580 list_move_tail(&publ->zone_list,
581 &info->zone_list);
Allan Stephens8af46382011-05-30 11:27:50 -0400582 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100583 }
584
585 /* Round-Robin Algorithm: */
586 else if (*destnode == tipc_own_addr) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400587 if (list_empty(&info->node_list))
588 goto no_match;
589 publ = list_first_entry(&info->node_list, struct publication,
590 node_list);
591 list_move_tail(&publ->node_list, &info->node_list);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100592 } else if (in_own_cluster(*destnode)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400593 if (list_empty(&info->cluster_list))
594 goto no_match;
595 publ = list_first_entry(&info->cluster_list, struct publication,
596 cluster_list);
597 list_move_tail(&publ->cluster_list, &info->cluster_list);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100598 } else {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400599 publ = list_first_entry(&info->zone_list, struct publication,
600 zone_list);
601 list_move_tail(&publ->zone_list, &info->zone_list);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100602 }
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400603
604 ref = publ->ref;
605 *destnode = publ->node;
606no_match:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100607 spin_unlock_bh(&seq->lock);
608not_found:
Per Liden4323add2006-01-18 00:38:21 +0100609 read_unlock_bh(&tipc_nametbl_lock);
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400610 return ref;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100611}
612
613/**
Per Liden4323add2006-01-18 00:38:21 +0100614 * tipc_nametbl_mc_translate - find multicast destinations
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900615 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100616 * Creates list of all local ports that overlap the given multicast address;
617 * also determines if any off-node ports overlap.
618 *
619 * Note: Publications with a scope narrower than 'limit' are ignored.
620 * (i.e. local node-scope publications mustn't receive messages arriving
621 * from another node, even if the multcast link brought it here)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900622 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100623 * Returns non-zero if any off-node ports overlap
624 */
625
Per Liden4323add2006-01-18 00:38:21 +0100626int tipc_nametbl_mc_translate(u32 type, u32 lower, u32 upper, u32 limit,
Paul Gortmaker45843102011-12-29 20:33:30 -0500627 struct tipc_port_list *dports)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100628{
629 struct name_seq *seq;
630 struct sub_seq *sseq;
631 struct sub_seq *sseq_stop;
Allan Stephensb52124a2011-05-30 09:44:38 -0400632 struct name_info *info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100633 int res = 0;
634
Per Liden4323add2006-01-18 00:38:21 +0100635 read_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100636 seq = nametbl_find_seq(type);
637 if (!seq)
638 goto exit;
639
640 spin_lock_bh(&seq->lock);
641
642 sseq = seq->sseqs + nameseq_locate_subseq(seq, lower);
643 sseq_stop = seq->sseqs + seq->first_free;
644 for (; sseq != sseq_stop; sseq++) {
645 struct publication *publ;
646
647 if (sseq->lower > upper)
648 break;
Allan Stephens968edbe2008-07-14 22:45:33 -0700649
Allan Stephensb52124a2011-05-30 09:44:38 -0400650 info = sseq->info;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400651 list_for_each_entry(publ, &info->node_list, node_list) {
652 if (publ->scope <= limit)
653 tipc_port_list_add(dports, publ->ref);
Allan Stephens968edbe2008-07-14 22:45:33 -0700654 }
655
Allan Stephensb52124a2011-05-30 09:44:38 -0400656 if (info->cluster_list_size != info->node_list_size)
Allan Stephens968edbe2008-07-14 22:45:33 -0700657 res = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100658 }
659
660 spin_unlock_bh(&seq->lock);
661exit:
Per Liden4323add2006-01-18 00:38:21 +0100662 read_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100663 return res;
664}
665
Allan Stephensc422f1b2011-11-02 15:49:40 -0400666/*
Per Liden4323add2006-01-18 00:38:21 +0100667 * tipc_nametbl_publish - add name publication to network name tables
Per Lidenb97bf3f2006-01-02 19:04:38 +0100668 */
669
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900670struct publication *tipc_nametbl_publish(u32 type, u32 lower, u32 upper,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100671 u32 scope, u32 port_ref, u32 key)
672{
673 struct publication *publ;
674
675 if (table.local_publ_count >= tipc_max_publications) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900676 warn("Publication failed, local publication limit reached (%u)\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100677 tipc_max_publications);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800678 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100679 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100680
Per Liden4323add2006-01-18 00:38:21 +0100681 write_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100682 table.local_publ_count++;
Per Liden4323add2006-01-18 00:38:21 +0100683 publ = tipc_nametbl_insert_publ(type, lower, upper, scope,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100684 tipc_own_addr, port_ref, key);
Allan Stephensa0168922010-12-31 18:59:35 +0000685 if (publ && (scope != TIPC_NODE_SCOPE))
Per Liden4323add2006-01-18 00:38:21 +0100686 tipc_named_publish(publ);
Per Liden4323add2006-01-18 00:38:21 +0100687 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100688 return publ;
689}
690
691/**
Per Liden4323add2006-01-18 00:38:21 +0100692 * tipc_nametbl_withdraw - withdraw name publication from network name tables
Per Lidenb97bf3f2006-01-02 19:04:38 +0100693 */
694
Per Liden4323add2006-01-18 00:38:21 +0100695int tipc_nametbl_withdraw(u32 type, u32 lower, u32 ref, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100696{
697 struct publication *publ;
698
Per Liden4323add2006-01-18 00:38:21 +0100699 write_lock_bh(&tipc_nametbl_lock);
700 publ = tipc_nametbl_remove_publ(type, lower, tipc_own_addr, ref, key);
Allan Stephensf1310722006-06-25 23:51:37 -0700701 if (likely(publ)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100702 table.local_publ_count--;
703 if (publ->scope != TIPC_NODE_SCOPE)
Per Liden4323add2006-01-18 00:38:21 +0100704 tipc_named_withdraw(publ);
705 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100706 list_del_init(&publ->pport_list);
707 kfree(publ);
708 return 1;
709 }
Per Liden4323add2006-01-18 00:38:21 +0100710 write_unlock_bh(&tipc_nametbl_lock);
Allan Stephensf1310722006-06-25 23:51:37 -0700711 err("Unable to remove local publication\n"
712 "(type=%u, lower=%u, ref=%u, key=%u)\n",
713 type, lower, ref, key);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100714 return 0;
715}
716
717/**
Per Liden4323add2006-01-18 00:38:21 +0100718 * tipc_nametbl_subscribe - add a subscription object to the name table
Per Lidenb97bf3f2006-01-02 19:04:38 +0100719 */
720
Paul Gortmakerfead3902011-12-29 20:43:44 -0500721void tipc_nametbl_subscribe(struct tipc_subscription *s)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100722{
723 u32 type = s->seq.type;
724 struct name_seq *seq;
725
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900726 write_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100727 seq = nametbl_find_seq(type);
Allan Stephensa0168922010-12-31 18:59:35 +0000728 if (!seq)
Per Liden4323add2006-01-18 00:38:21 +0100729 seq = tipc_nameseq_create(type, &table.types[hash(type)]);
Allan Stephens0e659672010-12-31 18:59:32 +0000730 if (seq) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900731 spin_lock_bh(&seq->lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900732 tipc_nameseq_subscribe(seq, s);
733 spin_unlock_bh(&seq->lock);
734 } else {
Allan Stephensf1310722006-06-25 23:51:37 -0700735 warn("Failed to create subscription for {%u,%u,%u}\n",
736 s->seq.type, s->seq.lower, s->seq.upper);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900737 }
738 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100739}
740
741/**
Per Liden4323add2006-01-18 00:38:21 +0100742 * tipc_nametbl_unsubscribe - remove a subscription object from name table
Per Lidenb97bf3f2006-01-02 19:04:38 +0100743 */
744
Paul Gortmakerfead3902011-12-29 20:43:44 -0500745void tipc_nametbl_unsubscribe(struct tipc_subscription *s)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100746{
747 struct name_seq *seq;
748
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900749 write_lock_bh(&tipc_nametbl_lock);
750 seq = nametbl_find_seq(s->seq.type);
Allan Stephens0e659672010-12-31 18:59:32 +0000751 if (seq != NULL) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900752 spin_lock_bh(&seq->lock);
753 list_del_init(&s->nameseq_list);
754 spin_unlock_bh(&seq->lock);
755 if ((seq->first_free == 0) && list_empty(&seq->subscriptions)) {
756 hlist_del_init(&seq->ns_list);
757 kfree(seq->sseqs);
758 kfree(seq);
759 }
760 }
761 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100762}
763
764
765/**
766 * subseq_list: print specified sub-sequence contents into the given buffer
767 */
768
769static void subseq_list(struct sub_seq *sseq, struct print_buf *buf, u32 depth,
770 u32 index)
771{
772 char portIdStr[27];
Allan Stephensc2de5812010-08-17 11:00:14 +0000773 const char *scope_str[] = {"", " zone", " cluster", " node"};
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400774 struct publication *publ;
775 struct name_info *info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100776
777 tipc_printf(buf, "%-10u %-10u ", sseq->lower, sseq->upper);
778
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400779 if (depth == 2) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100780 tipc_printf(buf, "\n");
781 return;
782 }
783
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400784 info = sseq->info;
785
786 list_for_each_entry(publ, &info->zone_list, zone_list) {
Allan Stephens0e659672010-12-31 18:59:32 +0000787 sprintf(portIdStr, "<%u.%u.%u:%u>",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100788 tipc_zone(publ->node), tipc_cluster(publ->node),
789 tipc_node(publ->node), publ->ref);
790 tipc_printf(buf, "%-26s ", portIdStr);
791 if (depth > 3) {
Allan Stephensc2de5812010-08-17 11:00:14 +0000792 tipc_printf(buf, "%-10u %s", publ->key,
793 scope_str[publ->scope]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100794 }
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400795 if (!list_is_last(&publ->zone_list, &info->zone_list))
796 tipc_printf(buf, "\n%33s", " ");
797 };
Per Lidenb97bf3f2006-01-02 19:04:38 +0100798
799 tipc_printf(buf, "\n");
800}
801
802/**
803 * nameseq_list: print specified name sequence contents into the given buffer
804 */
805
806static void nameseq_list(struct name_seq *seq, struct print_buf *buf, u32 depth,
807 u32 type, u32 lowbound, u32 upbound, u32 index)
808{
809 struct sub_seq *sseq;
810 char typearea[11];
811
Allan Stephens0f15d362008-06-04 17:37:59 -0700812 if (seq->first_free == 0)
813 return;
814
Per Lidenb97bf3f2006-01-02 19:04:38 +0100815 sprintf(typearea, "%-10u", seq->type);
816
817 if (depth == 1) {
818 tipc_printf(buf, "%s\n", typearea);
819 return;
820 }
821
822 for (sseq = seq->sseqs; sseq != &seq->sseqs[seq->first_free]; sseq++) {
823 if ((lowbound <= sseq->upper) && (upbound >= sseq->lower)) {
824 tipc_printf(buf, "%s ", typearea);
Allan Stephens307fdf52008-06-04 17:38:22 -0700825 spin_lock_bh(&seq->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100826 subseq_list(sseq, buf, depth, index);
Allan Stephens307fdf52008-06-04 17:38:22 -0700827 spin_unlock_bh(&seq->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100828 sprintf(typearea, "%10s", " ");
829 }
830 }
831}
832
833/**
834 * nametbl_header - print name table header into the given buffer
835 */
836
837static void nametbl_header(struct print_buf *buf, u32 depth)
838{
Allan Stephensc2de5812010-08-17 11:00:14 +0000839 const char *header[] = {
840 "Type ",
841 "Lower Upper ",
842 "Port Identity ",
843 "Publication Scope"
844 };
Per Lidenb97bf3f2006-01-02 19:04:38 +0100845
Allan Stephensc2de5812010-08-17 11:00:14 +0000846 int i;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100847
Allan Stephensc2de5812010-08-17 11:00:14 +0000848 if (depth > 4)
849 depth = 4;
850 for (i = 0; i < depth; i++)
851 tipc_printf(buf, header[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100852 tipc_printf(buf, "\n");
853}
854
855/**
856 * nametbl_list - print specified name table contents into the given buffer
857 */
858
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900859static void nametbl_list(struct print_buf *buf, u32 depth_info,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100860 u32 type, u32 lowbound, u32 upbound)
861{
862 struct hlist_head *seq_head;
863 struct hlist_node *seq_node;
864 struct name_seq *seq;
865 int all_types;
866 u32 depth;
867 u32 i;
868
869 all_types = (depth_info & TIPC_NTQ_ALLTYPES);
870 depth = (depth_info & ~TIPC_NTQ_ALLTYPES);
871
872 if (depth == 0)
873 return;
874
875 if (all_types) {
876 /* display all entries in name table to specified depth */
877 nametbl_header(buf, depth);
878 lowbound = 0;
879 upbound = ~0;
880 for (i = 0; i < tipc_nametbl_size; i++) {
881 seq_head = &table.types[i];
882 hlist_for_each_entry(seq, seq_node, seq_head, ns_list) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900883 nameseq_list(seq, buf, depth, seq->type,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100884 lowbound, upbound, i);
885 }
886 }
887 } else {
888 /* display only the sequence that matches the specified type */
889 if (upbound < lowbound) {
890 tipc_printf(buf, "invalid name sequence specified\n");
891 return;
892 }
893 nametbl_header(buf, depth);
894 i = hash(type);
895 seq_head = &table.types[i];
896 hlist_for_each_entry(seq, seq_node, seq_head, ns_list) {
897 if (seq->type == type) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900898 nameseq_list(seq, buf, depth, type,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100899 lowbound, upbound, i);
900 break;
901 }
902 }
903 }
904}
905
Per Lidenb97bf3f2006-01-02 19:04:38 +0100906#define MAX_NAME_TBL_QUERY 32768
907
Per Liden4323add2006-01-18 00:38:21 +0100908struct sk_buff *tipc_nametbl_get(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100909{
910 struct sk_buff *buf;
911 struct tipc_name_table_query *argv;
912 struct tlv_desc *rep_tlv;
913 struct print_buf b;
914 int str_len;
915
916 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_NAME_TBL_QUERY))
Per Liden4323add2006-01-18 00:38:21 +0100917 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100918
Per Liden4323add2006-01-18 00:38:21 +0100919 buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_NAME_TBL_QUERY));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100920 if (!buf)
921 return NULL;
922
923 rep_tlv = (struct tlv_desc *)buf->data;
Per Liden4323add2006-01-18 00:38:21 +0100924 tipc_printbuf_init(&b, TLV_DATA(rep_tlv), MAX_NAME_TBL_QUERY);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100925 argv = (struct tipc_name_table_query *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +0100926 read_lock_bh(&tipc_nametbl_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900927 nametbl_list(&b, ntohl(argv->depth), ntohl(argv->type),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100928 ntohl(argv->lowbound), ntohl(argv->upbound));
Per Liden4323add2006-01-18 00:38:21 +0100929 read_unlock_bh(&tipc_nametbl_lock);
930 str_len = tipc_printbuf_validate(&b);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100931
932 skb_put(buf, TLV_SPACE(str_len));
933 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
934
935 return buf;
936}
937
Per Liden4323add2006-01-18 00:38:21 +0100938int tipc_nametbl_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100939{
Allan Stephens4e3e6dc2008-05-12 15:41:53 -0700940 table.types = kcalloc(tipc_nametbl_size, sizeof(struct hlist_head),
941 GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100942 if (!table.types)
943 return -ENOMEM;
944
Per Lidenb97bf3f2006-01-02 19:04:38 +0100945 table.local_publ_count = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100946 return 0;
947}
948
Per Liden4323add2006-01-18 00:38:21 +0100949void tipc_nametbl_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100950{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100951 u32 i;
952
953 if (!table.types)
954 return;
955
Allan Stephensf1310722006-06-25 23:51:37 -0700956 /* Verify name table is empty, then release it */
957
Per Liden4323add2006-01-18 00:38:21 +0100958 write_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100959 for (i = 0; i < tipc_nametbl_size; i++) {
Allan Stephensf1310722006-06-25 23:51:37 -0700960 if (!hlist_empty(&table.types[i]))
961 err("tipc_nametbl_stop(): hash chain %u is non-null\n", i);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100962 }
963 kfree(table.types);
964 table.types = NULL;
Per Liden4323add2006-01-18 00:38:21 +0100965 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100966}
Allan Stephensf1310722006-06-25 23:51:37 -0700967