blob: 205ed4a4e186aed857739d5967d84df1f89a5051 [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 Stephens968edbe2008-07-14 22:45:33 -07005 * Copyright (c) 2004-2008, 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/**
47 * struct sub_seq - container for all published instances of a name sequence
48 * @lower: name sequence lower bound
49 * @upper: name sequence upper bound
Allan Stephens968edbe2008-07-14 22:45:33 -070050 * @node_list: circular list of publications made by own node
51 * @cluster_list: circular list of publications made by own cluster
52 * @zone_list: circular list of publications made by own zone
53 * @node_list_size: number of entries in "node_list"
54 * @cluster_list_size: number of entries in "cluster_list"
55 * @zone_list_size: number of entries in "zone_list"
56 *
57 * Note: The zone list always contains at least one entry, since all
58 * publications of the associated name sequence belong to it.
59 * (The cluster and node lists may be empty.)
Per Lidenb97bf3f2006-01-02 19:04:38 +010060 */
61
62struct sub_seq {
63 u32 lower;
64 u32 upper;
65 struct publication *node_list;
66 struct publication *cluster_list;
67 struct publication *zone_list;
Allan Stephens968edbe2008-07-14 22:45:33 -070068 u32 node_list_size;
69 u32 cluster_list_size;
70 u32 zone_list_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +010071};
72
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090073/**
Per Lidenb97bf3f2006-01-02 19:04:38 +010074 * struct name_seq - container for all published instances of a name type
75 * @type: 32 bit 'type' value for name sequence
76 * @sseq: pointer to dynamically-sized array of sub-sequences of this 'type';
77 * sub-sequences are sorted in ascending order
78 * @alloc: number of sub-sequences currently in array
Allan Stephensf1310722006-06-25 23:51:37 -070079 * @first_free: array index of first unused sub-sequence entry
Per Lidenb97bf3f2006-01-02 19:04:38 +010080 * @ns_list: links to adjacent name sequences in hash chain
81 * @subscriptions: list of subscriptions for this 'type'
Allan Stephens307fdf52008-06-04 17:38:22 -070082 * @lock: spinlock controlling access to publication lists of all sub-sequences
Per Lidenb97bf3f2006-01-02 19:04:38 +010083 */
84
85struct name_seq {
86 u32 type;
87 struct sub_seq *sseqs;
88 u32 alloc;
89 u32 first_free;
90 struct hlist_node ns_list;
91 struct list_head subscriptions;
92 spinlock_t lock;
93};
94
95/**
96 * struct name_table - table containing all existing port name publications
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090097 * @types: pointer to fixed-sized array of name sequence lists,
Per Lidenb97bf3f2006-01-02 19:04:38 +010098 * accessed via hashing on 'type'; name sequence lists are *not* sorted
99 * @local_publ_count: number of publications issued by this node
100 */
101
102struct name_table {
103 struct hlist_head *types;
104 u32 local_publ_count;
105};
106
Allan Stephense3ec9c72010-12-31 18:59:34 +0000107static struct name_table table;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100108static atomic_t rsv_publ_ok = ATOMIC_INIT(0);
Ingo Molnar34af9462006-06-27 02:53:55 -0700109DEFINE_RWLOCK(tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100110
111
Sam Ravnborg05790c62006-03-20 22:37:04 -0800112static int hash(int x)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100113{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000114 return x & (tipc_nametbl_size - 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100115}
116
117/**
118 * publ_create - create a publication structure
119 */
120
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900121static struct publication *publ_create(u32 type, u32 lower, u32 upper,
122 u32 scope, u32 node, u32 port_ref,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100123 u32 key)
124{
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700125 struct publication *publ = kzalloc(sizeof(*publ), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100126 if (publ == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700127 warn("Publication creation failure, no memory\n");
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800128 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100129 }
130
Per Lidenb97bf3f2006-01-02 19:04:38 +0100131 publ->type = type;
132 publ->lower = lower;
133 publ->upper = upper;
134 publ->scope = scope;
135 publ->node = node;
136 publ->ref = port_ref;
137 publ->key = key;
138 INIT_LIST_HEAD(&publ->local_list);
139 INIT_LIST_HEAD(&publ->pport_list);
140 INIT_LIST_HEAD(&publ->subscr.nodesub_list);
141 return publ;
142}
143
144/**
Per Liden4323add2006-01-18 00:38:21 +0100145 * tipc_subseq_alloc - allocate a specified number of sub-sequence structures
Per Lidenb97bf3f2006-01-02 19:04:38 +0100146 */
147
Adrian Bunk988f0882006-03-20 22:37:52 -0800148static struct sub_seq *tipc_subseq_alloc(u32 cnt)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100149{
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700150 struct sub_seq *sseq = kcalloc(cnt, sizeof(struct sub_seq), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100151 return sseq;
152}
153
154/**
Per Liden4323add2006-01-18 00:38:21 +0100155 * tipc_nameseq_create - create a name sequence structure for the specified 'type'
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900156 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100157 * Allocates a single sub-sequence structure and sets it to all 0's.
158 */
159
Adrian Bunk988f0882006-03-20 22:37:52 -0800160static struct name_seq *tipc_nameseq_create(u32 type, struct hlist_head *seq_head)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100161{
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700162 struct name_seq *nseq = kzalloc(sizeof(*nseq), GFP_ATOMIC);
Per Liden4323add2006-01-18 00:38:21 +0100163 struct sub_seq *sseq = tipc_subseq_alloc(1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100164
165 if (!nseq || !sseq) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700166 warn("Name sequence creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100167 kfree(nseq);
168 kfree(sseq);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800169 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100170 }
171
Ingo Molnar34af9462006-06-27 02:53:55 -0700172 spin_lock_init(&nseq->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100173 nseq->type = type;
174 nseq->sseqs = sseq;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100175 nseq->alloc = 1;
176 INIT_HLIST_NODE(&nseq->ns_list);
177 INIT_LIST_HEAD(&nseq->subscriptions);
178 hlist_add_head(&nseq->ns_list, seq_head);
179 return nseq;
180}
181
182/**
183 * nameseq_find_subseq - find sub-sequence (if any) matching a name instance
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900184 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100185 * Very time-critical, so binary searches through sub-sequence array.
186 */
187
Sam Ravnborg05790c62006-03-20 22:37:04 -0800188static struct sub_seq *nameseq_find_subseq(struct name_seq *nseq,
189 u32 instance)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100190{
191 struct sub_seq *sseqs = nseq->sseqs;
192 int low = 0;
193 int high = nseq->first_free - 1;
194 int mid;
195
196 while (low <= high) {
197 mid = (low + high) / 2;
198 if (instance < sseqs[mid].lower)
199 high = mid - 1;
200 else if (instance > sseqs[mid].upper)
201 low = mid + 1;
202 else
203 return &sseqs[mid];
204 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800205 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100206}
207
208/**
209 * nameseq_locate_subseq - determine position of name instance in sub-sequence
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900210 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100211 * Returns index in sub-sequence array of the entry that contains the specified
212 * instance value; if no entry contains that value, returns the position
213 * where a new entry for it would be inserted in the array.
214 *
215 * Note: Similar to binary search code for locating a sub-sequence.
216 */
217
218static u32 nameseq_locate_subseq(struct name_seq *nseq, u32 instance)
219{
220 struct sub_seq *sseqs = nseq->sseqs;
221 int low = 0;
222 int high = nseq->first_free - 1;
223 int mid;
224
225 while (low <= high) {
226 mid = (low + high) / 2;
227 if (instance < sseqs[mid].lower)
228 high = mid - 1;
229 else if (instance > sseqs[mid].upper)
230 low = mid + 1;
231 else
232 return mid;
233 }
234 return low;
235}
236
237/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900238 * tipc_nameseq_insert_publ -
Per Lidenb97bf3f2006-01-02 19:04:38 +0100239 */
240
Adrian Bunk988f0882006-03-20 22:37:52 -0800241static struct publication *tipc_nameseq_insert_publ(struct name_seq *nseq,
242 u32 type, u32 lower, u32 upper,
243 u32 scope, u32 node, u32 port, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100244{
245 struct subscription *s;
246 struct subscription *st;
247 struct publication *publ;
248 struct sub_seq *sseq;
249 int created_subseq = 0;
250
Per Lidenb97bf3f2006-01-02 19:04:38 +0100251 sseq = nameseq_find_subseq(nseq, lower);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100252 if (sseq) {
253
254 /* Lower end overlaps existing entry => need an exact match */
255
256 if ((sseq->lower != lower) || (sseq->upper != upper)) {
Allan Stephensf1310722006-06-25 23:51:37 -0700257 warn("Cannot publish {%u,%u,%u}, overlap error\n",
258 type, lower, upper);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800259 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100260 }
261 } else {
262 u32 inspos;
263 struct sub_seq *freesseq;
264
265 /* Find where lower end should be inserted */
266
267 inspos = nameseq_locate_subseq(nseq, lower);
268
269 /* Fail if upper end overlaps into an existing entry */
270
271 if ((inspos < nseq->first_free) &&
272 (upper >= nseq->sseqs[inspos].lower)) {
Allan Stephensf1310722006-06-25 23:51:37 -0700273 warn("Cannot publish {%u,%u,%u}, overlap error\n",
274 type, lower, upper);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800275 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100276 }
277
278 /* Ensure there is space for new sub-sequence */
279
280 if (nseq->first_free == nseq->alloc) {
Allan Stephens9ab230f2006-06-25 23:37:24 -0700281 struct sub_seq *sseqs = tipc_subseq_alloc(nseq->alloc * 2);
282
283 if (!sseqs) {
Allan Stephensf1310722006-06-25 23:51:37 -0700284 warn("Cannot publish {%u,%u,%u}, no memory\n",
285 type, lower, upper);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800286 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100287 }
Allan Stephens9ab230f2006-06-25 23:37:24 -0700288 memcpy(sseqs, nseq->sseqs,
289 nseq->alloc * sizeof(struct sub_seq));
290 kfree(nseq->sseqs);
291 nseq->sseqs = sseqs;
292 nseq->alloc *= 2;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100293 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100294
295 /* Insert new sub-sequence */
296
Per Lidenb97bf3f2006-01-02 19:04:38 +0100297 sseq = &nseq->sseqs[inspos];
298 freesseq = &nseq->sseqs[nseq->first_free];
Allan Stephens0e659672010-12-31 18:59:32 +0000299 memmove(sseq + 1, sseq, (freesseq - sseq) * sizeof(*sseq));
300 memset(sseq, 0, sizeof(*sseq));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100301 nseq->first_free++;
302 sseq->lower = lower;
303 sseq->upper = upper;
304 created_subseq = 1;
305 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100306
307 /* Insert a publication: */
308
309 publ = publ_create(type, lower, upper, scope, node, port, key);
310 if (!publ)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800311 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100312
Allan Stephens968edbe2008-07-14 22:45:33 -0700313 sseq->zone_list_size++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100314 if (!sseq->zone_list)
315 sseq->zone_list = publ->zone_list_next = publ;
316 else {
317 publ->zone_list_next = sseq->zone_list->zone_list_next;
318 sseq->zone_list->zone_list_next = publ;
319 }
320
321 if (in_own_cluster(node)) {
Allan Stephens968edbe2008-07-14 22:45:33 -0700322 sseq->cluster_list_size++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100323 if (!sseq->cluster_list)
324 sseq->cluster_list = publ->cluster_list_next = publ;
325 else {
326 publ->cluster_list_next =
327 sseq->cluster_list->cluster_list_next;
328 sseq->cluster_list->cluster_list_next = publ;
329 }
330 }
331
332 if (node == tipc_own_addr) {
Allan Stephens968edbe2008-07-14 22:45:33 -0700333 sseq->node_list_size++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100334 if (!sseq->node_list)
335 sseq->node_list = publ->node_list_next = publ;
336 else {
337 publ->node_list_next = sseq->node_list->node_list_next;
338 sseq->node_list->node_list_next = publ;
339 }
340 }
341
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900342 /*
343 * Any subscriptions waiting for notification?
Per Lidenb97bf3f2006-01-02 19:04:38 +0100344 */
345 list_for_each_entry_safe(s, st, &nseq->subscriptions, nameseq_list) {
Per Liden4323add2006-01-18 00:38:21 +0100346 tipc_subscr_report_overlap(s,
347 publ->lower,
348 publ->upper,
349 TIPC_PUBLISHED,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900350 publ->ref,
Per Liden4323add2006-01-18 00:38:21 +0100351 publ->node,
352 created_subseq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100353 }
354 return publ;
355}
356
357/**
Per Liden4323add2006-01-18 00:38:21 +0100358 * tipc_nameseq_remove_publ -
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900359 *
Allan Stephensf1310722006-06-25 23:51:37 -0700360 * NOTE: There may be cases where TIPC is asked to remove a publication
361 * that is not in the name table. For example, if another node issues a
362 * publication for a name sequence that overlaps an existing name sequence
363 * the publication will not be recorded, which means the publication won't
364 * be found when the name sequence is later withdrawn by that node.
365 * A failed withdraw request simply returns a failure indication and lets the
366 * caller issue any error or warning messages associated with such a problem.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100367 */
368
Adrian Bunk988f0882006-03-20 22:37:52 -0800369static struct publication *tipc_nameseq_remove_publ(struct name_seq *nseq, u32 inst,
370 u32 node, u32 ref, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100371{
372 struct publication *publ;
Allan Stephensf1310722006-06-25 23:51:37 -0700373 struct publication *curr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100374 struct publication *prev;
375 struct sub_seq *sseq = nameseq_find_subseq(nseq, inst);
376 struct sub_seq *free;
377 struct subscription *s, *st;
378 int removed_subseq = 0;
379
Allan Stephensf1310722006-06-25 23:51:37 -0700380 if (!sseq)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800381 return NULL;
Allan Stephensf1310722006-06-25 23:51:37 -0700382
Allan Stephensf1310722006-06-25 23:51:37 -0700383 /* Remove publication from zone scope list */
384
Per Lidenb97bf3f2006-01-02 19:04:38 +0100385 prev = sseq->zone_list;
386 publ = sseq->zone_list->zone_list_next;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900387 while ((publ->key != key) || (publ->ref != ref) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +0100388 (publ->node && (publ->node != node))) {
389 prev = publ;
390 publ = publ->zone_list_next;
Allan Stephensf1310722006-06-25 23:51:37 -0700391 if (prev == sseq->zone_list) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900392
Allan Stephensf1310722006-06-25 23:51:37 -0700393 /* Prevent endless loop if publication not found */
394
395 return NULL;
396 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100397 }
398 if (publ != sseq->zone_list)
399 prev->zone_list_next = publ->zone_list_next;
400 else if (publ->zone_list_next != publ) {
401 prev->zone_list_next = publ->zone_list_next;
402 sseq->zone_list = publ->zone_list_next;
403 } else {
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800404 sseq->zone_list = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100405 }
Allan Stephens968edbe2008-07-14 22:45:33 -0700406 sseq->zone_list_size--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100407
Allan Stephensf1310722006-06-25 23:51:37 -0700408 /* Remove publication from cluster scope list, if present */
409
Per Lidenb97bf3f2006-01-02 19:04:38 +0100410 if (in_own_cluster(node)) {
411 prev = sseq->cluster_list;
Allan Stephensf1310722006-06-25 23:51:37 -0700412 curr = sseq->cluster_list->cluster_list_next;
413 while (curr != publ) {
414 prev = curr;
415 curr = curr->cluster_list_next;
416 if (prev == sseq->cluster_list) {
417
418 /* Prevent endless loop for malformed list */
419
420 err("Unable to de-list cluster publication\n"
421 "{%u%u}, node=0x%x, ref=%u, key=%u)\n",
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900422 publ->type, publ->lower, publ->node,
Allan Stephensf1310722006-06-25 23:51:37 -0700423 publ->ref, publ->key);
424 goto end_cluster;
425 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100426 }
427 if (publ != sseq->cluster_list)
428 prev->cluster_list_next = publ->cluster_list_next;
429 else if (publ->cluster_list_next != publ) {
430 prev->cluster_list_next = publ->cluster_list_next;
431 sseq->cluster_list = publ->cluster_list_next;
432 } else {
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800433 sseq->cluster_list = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100434 }
Allan Stephens968edbe2008-07-14 22:45:33 -0700435 sseq->cluster_list_size--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100436 }
Allan Stephensf1310722006-06-25 23:51:37 -0700437end_cluster:
438
439 /* Remove publication from node scope list, if present */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100440
441 if (node == tipc_own_addr) {
442 prev = sseq->node_list;
Allan Stephensf1310722006-06-25 23:51:37 -0700443 curr = sseq->node_list->node_list_next;
444 while (curr != publ) {
445 prev = curr;
446 curr = curr->node_list_next;
447 if (prev == sseq->node_list) {
448
449 /* Prevent endless loop for malformed list */
450
451 err("Unable to de-list node publication\n"
452 "{%u%u}, node=0x%x, ref=%u, key=%u)\n",
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900453 publ->type, publ->lower, publ->node,
Allan Stephensf1310722006-06-25 23:51:37 -0700454 publ->ref, publ->key);
455 goto end_node;
456 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100457 }
458 if (publ != sseq->node_list)
459 prev->node_list_next = publ->node_list_next;
460 else if (publ->node_list_next != publ) {
461 prev->node_list_next = publ->node_list_next;
462 sseq->node_list = publ->node_list_next;
463 } else {
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800464 sseq->node_list = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100465 }
Allan Stephens968edbe2008-07-14 22:45:33 -0700466 sseq->node_list_size--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100467 }
Allan Stephensf1310722006-06-25 23:51:37 -0700468end_node:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100469
Allan Stephensf1310722006-06-25 23:51:37 -0700470 /* Contract subseq list if no more publications for that subseq */
471
472 if (!sseq->zone_list) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100473 free = &nseq->sseqs[nseq->first_free--];
Allan Stephens0e659672010-12-31 18:59:32 +0000474 memmove(sseq, sseq + 1, (free - (sseq + 1)) * sizeof(*sseq));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100475 removed_subseq = 1;
476 }
477
Allan Stephensf1310722006-06-25 23:51:37 -0700478 /* Notify any waiting subscriptions */
479
Per Lidenb97bf3f2006-01-02 19:04:38 +0100480 list_for_each_entry_safe(s, st, &nseq->subscriptions, nameseq_list) {
Per Liden4323add2006-01-18 00:38:21 +0100481 tipc_subscr_report_overlap(s,
482 publ->lower,
483 publ->upper,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900484 TIPC_WITHDRAWN,
485 publ->ref,
Per Liden4323add2006-01-18 00:38:21 +0100486 publ->node,
487 removed_subseq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100488 }
Allan Stephensf1310722006-06-25 23:51:37 -0700489
Per Lidenb97bf3f2006-01-02 19:04:38 +0100490 return publ;
491}
492
493/**
Per Liden4323add2006-01-18 00:38:21 +0100494 * tipc_nameseq_subscribe: attach a subscription, and issue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100495 * the prescribed number of events if there is any sub-
496 * sequence overlapping with the requested sequence
497 */
498
Florian Westphal248bbf32007-08-02 19:26:23 -0700499static void tipc_nameseq_subscribe(struct name_seq *nseq, struct subscription *s)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100500{
501 struct sub_seq *sseq = nseq->sseqs;
502
503 list_add(&s->nameseq_list, &nseq->subscriptions);
504
505 if (!sseq)
506 return;
507
508 while (sseq != &nseq->sseqs[nseq->first_free]) {
509 struct publication *zl = sseq->zone_list;
Allan Stephens0e659672010-12-31 18:59:32 +0000510 if (zl && tipc_subscr_overlap(s, sseq->lower, sseq->upper)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100511 struct publication *crs = zl;
512 int must_report = 1;
513
514 do {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900515 tipc_subscr_report_overlap(s,
516 sseq->lower,
Per Liden4323add2006-01-18 00:38:21 +0100517 sseq->upper,
518 TIPC_PUBLISHED,
519 crs->ref,
520 crs->node,
521 must_report);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100522 must_report = 0;
523 crs = crs->zone_list_next;
524 } while (crs != zl);
525 }
526 sseq++;
527 }
528}
529
530static struct name_seq *nametbl_find_seq(u32 type)
531{
532 struct hlist_head *seq_head;
533 struct hlist_node *seq_node;
534 struct name_seq *ns;
535
Per Lidenb97bf3f2006-01-02 19:04:38 +0100536 seq_head = &table.types[hash(type)];
537 hlist_for_each_entry(ns, seq_node, seq_head, ns_list) {
Allan Stephensb29f1422010-12-31 18:59:25 +0000538 if (ns->type == type)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100539 return ns;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100540 }
541
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800542 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100543};
544
Per Liden4323add2006-01-18 00:38:21 +0100545struct publication *tipc_nametbl_insert_publ(u32 type, u32 lower, u32 upper,
546 u32 scope, u32 node, u32 port, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100547{
548 struct name_seq *seq = nametbl_find_seq(type);
549
Per Lidenb97bf3f2006-01-02 19:04:38 +0100550 if (lower > upper) {
Allan Stephensf1310722006-06-25 23:51:37 -0700551 warn("Failed to publish illegal {%u,%u,%u}\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100552 type, lower, upper);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800553 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100554 }
555
Allan Stephensb29f1422010-12-31 18:59:25 +0000556 if (!seq)
Per Liden4323add2006-01-18 00:38:21 +0100557 seq = tipc_nameseq_create(type, &table.types[hash(type)]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100558 if (!seq)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800559 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100560
Per Liden4323add2006-01-18 00:38:21 +0100561 return tipc_nameseq_insert_publ(seq, type, lower, upper,
562 scope, node, port, key);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100563}
564
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900565struct publication *tipc_nametbl_remove_publ(u32 type, u32 lower,
Per Liden4323add2006-01-18 00:38:21 +0100566 u32 node, u32 ref, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100567{
568 struct publication *publ;
569 struct name_seq *seq = nametbl_find_seq(type);
570
571 if (!seq)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800572 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100573
Per Liden4323add2006-01-18 00:38:21 +0100574 publ = tipc_nameseq_remove_publ(seq, lower, node, ref, key);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100575
576 if (!seq->first_free && list_empty(&seq->subscriptions)) {
577 hlist_del_init(&seq->ns_list);
578 kfree(seq->sseqs);
579 kfree(seq);
580 }
581 return publ;
582}
583
584/*
Allan Stephens5d9c54c2010-09-03 08:33:39 +0000585 * tipc_nametbl_translate - translate name to port id
Per Lidenb97bf3f2006-01-02 19:04:38 +0100586 *
587 * Note: on entry 'destnode' is the search domain used during translation;
588 * on exit it passes back the node address of the matching port (if any)
589 */
590
Per Liden4323add2006-01-18 00:38:21 +0100591u32 tipc_nametbl_translate(u32 type, u32 instance, u32 *destnode)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100592{
593 struct sub_seq *sseq;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800594 struct publication *publ = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100595 struct name_seq *seq;
596 u32 ref;
597
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000598 if (!tipc_in_scope(*destnode, tipc_own_addr))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100599 return 0;
600
Per Liden4323add2006-01-18 00:38:21 +0100601 read_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100602 seq = nametbl_find_seq(type);
603 if (unlikely(!seq))
604 goto not_found;
605 sseq = nameseq_find_subseq(seq, instance);
606 if (unlikely(!sseq))
607 goto not_found;
608 spin_lock_bh(&seq->lock);
609
610 /* Closest-First Algorithm: */
611 if (likely(!*destnode)) {
612 publ = sseq->node_list;
613 if (publ) {
614 sseq->node_list = publ->node_list_next;
615found:
616 ref = publ->ref;
617 *destnode = publ->node;
618 spin_unlock_bh(&seq->lock);
Per Liden4323add2006-01-18 00:38:21 +0100619 read_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100620 return ref;
621 }
622 publ = sseq->cluster_list;
623 if (publ) {
624 sseq->cluster_list = publ->cluster_list_next;
625 goto found;
626 }
627 publ = sseq->zone_list;
628 if (publ) {
629 sseq->zone_list = publ->zone_list_next;
630 goto found;
631 }
632 }
633
634 /* Round-Robin Algorithm: */
635 else if (*destnode == tipc_own_addr) {
636 publ = sseq->node_list;
637 if (publ) {
638 sseq->node_list = publ->node_list_next;
639 goto found;
640 }
641 } else if (in_own_cluster(*destnode)) {
642 publ = sseq->cluster_list;
643 if (publ) {
644 sseq->cluster_list = publ->cluster_list_next;
645 goto found;
646 }
647 } else {
648 publ = sseq->zone_list;
649 if (publ) {
650 sseq->zone_list = publ->zone_list_next;
651 goto found;
652 }
653 }
654 spin_unlock_bh(&seq->lock);
655not_found:
Per Liden4323add2006-01-18 00:38:21 +0100656 read_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100657 return 0;
658}
659
660/**
Per Liden4323add2006-01-18 00:38:21 +0100661 * tipc_nametbl_mc_translate - find multicast destinations
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900662 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100663 * Creates list of all local ports that overlap the given multicast address;
664 * also determines if any off-node ports overlap.
665 *
666 * Note: Publications with a scope narrower than 'limit' are ignored.
667 * (i.e. local node-scope publications mustn't receive messages arriving
668 * from another node, even if the multcast link brought it here)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900669 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100670 * Returns non-zero if any off-node ports overlap
671 */
672
Per Liden4323add2006-01-18 00:38:21 +0100673int tipc_nametbl_mc_translate(u32 type, u32 lower, u32 upper, u32 limit,
674 struct port_list *dports)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100675{
676 struct name_seq *seq;
677 struct sub_seq *sseq;
678 struct sub_seq *sseq_stop;
679 int res = 0;
680
Per Liden4323add2006-01-18 00:38:21 +0100681 read_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100682 seq = nametbl_find_seq(type);
683 if (!seq)
684 goto exit;
685
686 spin_lock_bh(&seq->lock);
687
688 sseq = seq->sseqs + nameseq_locate_subseq(seq, lower);
689 sseq_stop = seq->sseqs + seq->first_free;
690 for (; sseq != sseq_stop; sseq++) {
691 struct publication *publ;
692
693 if (sseq->lower > upper)
694 break;
Allan Stephens968edbe2008-07-14 22:45:33 -0700695
696 publ = sseq->node_list;
697 if (publ) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100698 do {
Allan Stephens968edbe2008-07-14 22:45:33 -0700699 if (publ->scope <= limit)
Per Liden4323add2006-01-18 00:38:21 +0100700 tipc_port_list_add(dports, publ->ref);
Allan Stephens968edbe2008-07-14 22:45:33 -0700701 publ = publ->node_list_next;
702 } while (publ != sseq->node_list);
703 }
704
705 if (sseq->cluster_list_size != sseq->node_list_size)
706 res = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100707 }
708
709 spin_unlock_bh(&seq->lock);
710exit:
Per Liden4323add2006-01-18 00:38:21 +0100711 read_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100712 return res;
713}
714
715/**
Per Liden4323add2006-01-18 00:38:21 +0100716 * tipc_nametbl_publish_rsv - publish port name using a reserved name type
Per Lidenb97bf3f2006-01-02 19:04:38 +0100717 */
718
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900719int tipc_nametbl_publish_rsv(u32 ref, unsigned int scope,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100720 struct tipc_name_seq const *seq)
721{
722 int res;
723
724 atomic_inc(&rsv_publ_ok);
725 res = tipc_publish(ref, scope, seq);
726 atomic_dec(&rsv_publ_ok);
727 return res;
728}
729
730/**
Per Liden4323add2006-01-18 00:38:21 +0100731 * tipc_nametbl_publish - add name publication to network name tables
Per Lidenb97bf3f2006-01-02 19:04:38 +0100732 */
733
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900734struct publication *tipc_nametbl_publish(u32 type, u32 lower, u32 upper,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100735 u32 scope, u32 port_ref, u32 key)
736{
737 struct publication *publ;
738
739 if (table.local_publ_count >= tipc_max_publications) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900740 warn("Publication failed, local publication limit reached (%u)\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100741 tipc_max_publications);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800742 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100743 }
744 if ((type < TIPC_RESERVED_TYPES) && !atomic_read(&rsv_publ_ok)) {
Allan Stephensf1310722006-06-25 23:51:37 -0700745 warn("Publication failed, reserved name {%u,%u,%u}\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100746 type, lower, upper);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800747 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100748 }
749
Per Liden4323add2006-01-18 00:38:21 +0100750 write_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100751 table.local_publ_count++;
Per Liden4323add2006-01-18 00:38:21 +0100752 publ = tipc_nametbl_insert_publ(type, lower, upper, scope,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100753 tipc_own_addr, port_ref, key);
Allan Stephensa0168922010-12-31 18:59:35 +0000754 if (publ && (scope != TIPC_NODE_SCOPE))
Per Liden4323add2006-01-18 00:38:21 +0100755 tipc_named_publish(publ);
Per Liden4323add2006-01-18 00:38:21 +0100756 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100757 return publ;
758}
759
760/**
Per Liden4323add2006-01-18 00:38:21 +0100761 * tipc_nametbl_withdraw - withdraw name publication from network name tables
Per Lidenb97bf3f2006-01-02 19:04:38 +0100762 */
763
Per Liden4323add2006-01-18 00:38:21 +0100764int tipc_nametbl_withdraw(u32 type, u32 lower, u32 ref, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100765{
766 struct publication *publ;
767
Per Liden4323add2006-01-18 00:38:21 +0100768 write_lock_bh(&tipc_nametbl_lock);
769 publ = tipc_nametbl_remove_publ(type, lower, tipc_own_addr, ref, key);
Allan Stephensf1310722006-06-25 23:51:37 -0700770 if (likely(publ)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100771 table.local_publ_count--;
772 if (publ->scope != TIPC_NODE_SCOPE)
Per Liden4323add2006-01-18 00:38:21 +0100773 tipc_named_withdraw(publ);
774 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100775 list_del_init(&publ->pport_list);
776 kfree(publ);
777 return 1;
778 }
Per Liden4323add2006-01-18 00:38:21 +0100779 write_unlock_bh(&tipc_nametbl_lock);
Allan Stephensf1310722006-06-25 23:51:37 -0700780 err("Unable to remove local publication\n"
781 "(type=%u, lower=%u, ref=%u, key=%u)\n",
782 type, lower, ref, key);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100783 return 0;
784}
785
786/**
Per Liden4323add2006-01-18 00:38:21 +0100787 * tipc_nametbl_subscribe - add a subscription object to the name table
Per Lidenb97bf3f2006-01-02 19:04:38 +0100788 */
789
Allan Stephensf1310722006-06-25 23:51:37 -0700790void tipc_nametbl_subscribe(struct subscription *s)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100791{
792 u32 type = s->seq.type;
793 struct name_seq *seq;
794
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900795 write_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100796 seq = nametbl_find_seq(type);
Allan Stephensa0168922010-12-31 18:59:35 +0000797 if (!seq)
Per Liden4323add2006-01-18 00:38:21 +0100798 seq = tipc_nameseq_create(type, &table.types[hash(type)]);
Allan Stephens0e659672010-12-31 18:59:32 +0000799 if (seq) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900800 spin_lock_bh(&seq->lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900801 tipc_nameseq_subscribe(seq, s);
802 spin_unlock_bh(&seq->lock);
803 } else {
Allan Stephensf1310722006-06-25 23:51:37 -0700804 warn("Failed to create subscription for {%u,%u,%u}\n",
805 s->seq.type, s->seq.lower, s->seq.upper);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900806 }
807 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100808}
809
810/**
Per Liden4323add2006-01-18 00:38:21 +0100811 * tipc_nametbl_unsubscribe - remove a subscription object from name table
Per Lidenb97bf3f2006-01-02 19:04:38 +0100812 */
813
Allan Stephensf1310722006-06-25 23:51:37 -0700814void tipc_nametbl_unsubscribe(struct subscription *s)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100815{
816 struct name_seq *seq;
817
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900818 write_lock_bh(&tipc_nametbl_lock);
819 seq = nametbl_find_seq(s->seq.type);
Allan Stephens0e659672010-12-31 18:59:32 +0000820 if (seq != NULL) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900821 spin_lock_bh(&seq->lock);
822 list_del_init(&s->nameseq_list);
823 spin_unlock_bh(&seq->lock);
824 if ((seq->first_free == 0) && list_empty(&seq->subscriptions)) {
825 hlist_del_init(&seq->ns_list);
826 kfree(seq->sseqs);
827 kfree(seq);
828 }
829 }
830 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100831}
832
833
834/**
835 * subseq_list: print specified sub-sequence contents into the given buffer
836 */
837
838static void subseq_list(struct sub_seq *sseq, struct print_buf *buf, u32 depth,
839 u32 index)
840{
841 char portIdStr[27];
Allan Stephensc2de5812010-08-17 11:00:14 +0000842 const char *scope_str[] = {"", " zone", " cluster", " node"};
Per Lidenb97bf3f2006-01-02 19:04:38 +0100843 struct publication *publ = sseq->zone_list;
844
845 tipc_printf(buf, "%-10u %-10u ", sseq->lower, sseq->upper);
846
847 if (depth == 2 || !publ) {
848 tipc_printf(buf, "\n");
849 return;
850 }
851
852 do {
Allan Stephens0e659672010-12-31 18:59:32 +0000853 sprintf(portIdStr, "<%u.%u.%u:%u>",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100854 tipc_zone(publ->node), tipc_cluster(publ->node),
855 tipc_node(publ->node), publ->ref);
856 tipc_printf(buf, "%-26s ", portIdStr);
857 if (depth > 3) {
Allan Stephensc2de5812010-08-17 11:00:14 +0000858 tipc_printf(buf, "%-10u %s", publ->key,
859 scope_str[publ->scope]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100860 }
861
862 publ = publ->zone_list_next;
863 if (publ == sseq->zone_list)
864 break;
865
866 tipc_printf(buf, "\n%33s", " ");
867 } while (1);
868
869 tipc_printf(buf, "\n");
870}
871
872/**
873 * nameseq_list: print specified name sequence contents into the given buffer
874 */
875
876static void nameseq_list(struct name_seq *seq, struct print_buf *buf, u32 depth,
877 u32 type, u32 lowbound, u32 upbound, u32 index)
878{
879 struct sub_seq *sseq;
880 char typearea[11];
881
Allan Stephens0f15d362008-06-04 17:37:59 -0700882 if (seq->first_free == 0)
883 return;
884
Per Lidenb97bf3f2006-01-02 19:04:38 +0100885 sprintf(typearea, "%-10u", seq->type);
886
887 if (depth == 1) {
888 tipc_printf(buf, "%s\n", typearea);
889 return;
890 }
891
892 for (sseq = seq->sseqs; sseq != &seq->sseqs[seq->first_free]; sseq++) {
893 if ((lowbound <= sseq->upper) && (upbound >= sseq->lower)) {
894 tipc_printf(buf, "%s ", typearea);
Allan Stephens307fdf52008-06-04 17:38:22 -0700895 spin_lock_bh(&seq->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100896 subseq_list(sseq, buf, depth, index);
Allan Stephens307fdf52008-06-04 17:38:22 -0700897 spin_unlock_bh(&seq->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100898 sprintf(typearea, "%10s", " ");
899 }
900 }
901}
902
903/**
904 * nametbl_header - print name table header into the given buffer
905 */
906
907static void nametbl_header(struct print_buf *buf, u32 depth)
908{
Allan Stephensc2de5812010-08-17 11:00:14 +0000909 const char *header[] = {
910 "Type ",
911 "Lower Upper ",
912 "Port Identity ",
913 "Publication Scope"
914 };
Per Lidenb97bf3f2006-01-02 19:04:38 +0100915
Allan Stephensc2de5812010-08-17 11:00:14 +0000916 int i;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100917
Allan Stephensc2de5812010-08-17 11:00:14 +0000918 if (depth > 4)
919 depth = 4;
920 for (i = 0; i < depth; i++)
921 tipc_printf(buf, header[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100922 tipc_printf(buf, "\n");
923}
924
925/**
926 * nametbl_list - print specified name table contents into the given buffer
927 */
928
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900929static void nametbl_list(struct print_buf *buf, u32 depth_info,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100930 u32 type, u32 lowbound, u32 upbound)
931{
932 struct hlist_head *seq_head;
933 struct hlist_node *seq_node;
934 struct name_seq *seq;
935 int all_types;
936 u32 depth;
937 u32 i;
938
939 all_types = (depth_info & TIPC_NTQ_ALLTYPES);
940 depth = (depth_info & ~TIPC_NTQ_ALLTYPES);
941
942 if (depth == 0)
943 return;
944
945 if (all_types) {
946 /* display all entries in name table to specified depth */
947 nametbl_header(buf, depth);
948 lowbound = 0;
949 upbound = ~0;
950 for (i = 0; i < tipc_nametbl_size; i++) {
951 seq_head = &table.types[i];
952 hlist_for_each_entry(seq, seq_node, seq_head, ns_list) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900953 nameseq_list(seq, buf, depth, seq->type,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100954 lowbound, upbound, i);
955 }
956 }
957 } else {
958 /* display only the sequence that matches the specified type */
959 if (upbound < lowbound) {
960 tipc_printf(buf, "invalid name sequence specified\n");
961 return;
962 }
963 nametbl_header(buf, depth);
964 i = hash(type);
965 seq_head = &table.types[i];
966 hlist_for_each_entry(seq, seq_node, seq_head, ns_list) {
967 if (seq->type == type) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900968 nameseq_list(seq, buf, depth, type,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100969 lowbound, upbound, i);
970 break;
971 }
972 }
973 }
974}
975
Per Lidenb97bf3f2006-01-02 19:04:38 +0100976#define MAX_NAME_TBL_QUERY 32768
977
Per Liden4323add2006-01-18 00:38:21 +0100978struct sk_buff *tipc_nametbl_get(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100979{
980 struct sk_buff *buf;
981 struct tipc_name_table_query *argv;
982 struct tlv_desc *rep_tlv;
983 struct print_buf b;
984 int str_len;
985
986 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_NAME_TBL_QUERY))
Per Liden4323add2006-01-18 00:38:21 +0100987 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100988
Per Liden4323add2006-01-18 00:38:21 +0100989 buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_NAME_TBL_QUERY));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100990 if (!buf)
991 return NULL;
992
993 rep_tlv = (struct tlv_desc *)buf->data;
Per Liden4323add2006-01-18 00:38:21 +0100994 tipc_printbuf_init(&b, TLV_DATA(rep_tlv), MAX_NAME_TBL_QUERY);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100995 argv = (struct tipc_name_table_query *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +0100996 read_lock_bh(&tipc_nametbl_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900997 nametbl_list(&b, ntohl(argv->depth), ntohl(argv->type),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100998 ntohl(argv->lowbound), ntohl(argv->upbound));
Per Liden4323add2006-01-18 00:38:21 +0100999 read_unlock_bh(&tipc_nametbl_lock);
1000 str_len = tipc_printbuf_validate(&b);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001001
1002 skb_put(buf, TLV_SPACE(str_len));
1003 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
1004
1005 return buf;
1006}
1007
Per Liden4323add2006-01-18 00:38:21 +01001008int tipc_nametbl_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001009{
Allan Stephens4e3e6dc2008-05-12 15:41:53 -07001010 table.types = kcalloc(tipc_nametbl_size, sizeof(struct hlist_head),
1011 GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001012 if (!table.types)
1013 return -ENOMEM;
1014
Per Lidenb97bf3f2006-01-02 19:04:38 +01001015 table.local_publ_count = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001016 return 0;
1017}
1018
Per Liden4323add2006-01-18 00:38:21 +01001019void tipc_nametbl_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001020{
Per Lidenb97bf3f2006-01-02 19:04:38 +01001021 u32 i;
1022
1023 if (!table.types)
1024 return;
1025
Allan Stephensf1310722006-06-25 23:51:37 -07001026 /* Verify name table is empty, then release it */
1027
Per Liden4323add2006-01-18 00:38:21 +01001028 write_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001029 for (i = 0; i < tipc_nametbl_size; i++) {
Allan Stephensf1310722006-06-25 23:51:37 -07001030 if (!hlist_empty(&table.types[i]))
1031 err("tipc_nametbl_stop(): hash chain %u is non-null\n", i);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001032 }
1033 kfree(table.types);
1034 table.types = NULL;
Per Liden4323add2006-01-18 00:38:21 +01001035 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001036}
Allan Stephensf1310722006-06-25 23:51:37 -07001037