blob: 4de58dece9b2caca3265cde49f5dff198ebb8991 [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
Allan Stephensf7fb9d22012-04-26 17:53:03 -0400189/*
190 * nameseq_delete_empty - deletes a name sequence structure if now unused
191 */
192static void nameseq_delete_empty(struct name_seq *seq)
193{
194 if (!seq->first_free && list_empty(&seq->subscriptions)) {
195 hlist_del_init(&seq->ns_list);
196 kfree(seq->sseqs);
197 kfree(seq);
198 }
199}
200
201/*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100202 * nameseq_find_subseq - find sub-sequence (if any) matching a name instance
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900203 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100204 * Very time-critical, so binary searches through sub-sequence array.
205 */
206
Sam Ravnborg05790c62006-03-20 22:37:04 -0800207static struct sub_seq *nameseq_find_subseq(struct name_seq *nseq,
208 u32 instance)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100209{
210 struct sub_seq *sseqs = nseq->sseqs;
211 int low = 0;
212 int high = nseq->first_free - 1;
213 int mid;
214
215 while (low <= high) {
216 mid = (low + high) / 2;
217 if (instance < sseqs[mid].lower)
218 high = mid - 1;
219 else if (instance > sseqs[mid].upper)
220 low = mid + 1;
221 else
222 return &sseqs[mid];
223 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800224 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100225}
226
227/**
228 * nameseq_locate_subseq - determine position of name instance in sub-sequence
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900229 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100230 * Returns index in sub-sequence array of the entry that contains the specified
231 * instance value; if no entry contains that value, returns the position
232 * where a new entry for it would be inserted in the array.
233 *
234 * Note: Similar to binary search code for locating a sub-sequence.
235 */
236
237static u32 nameseq_locate_subseq(struct name_seq *nseq, u32 instance)
238{
239 struct sub_seq *sseqs = nseq->sseqs;
240 int low = 0;
241 int high = nseq->first_free - 1;
242 int mid;
243
244 while (low <= high) {
245 mid = (low + high) / 2;
246 if (instance < sseqs[mid].lower)
247 high = mid - 1;
248 else if (instance > sseqs[mid].upper)
249 low = mid + 1;
250 else
251 return mid;
252 }
253 return low;
254}
255
256/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900257 * tipc_nameseq_insert_publ -
Per Lidenb97bf3f2006-01-02 19:04:38 +0100258 */
259
Adrian Bunk988f0882006-03-20 22:37:52 -0800260static struct publication *tipc_nameseq_insert_publ(struct name_seq *nseq,
261 u32 type, u32 lower, u32 upper,
262 u32 scope, u32 node, u32 port, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100263{
Paul Gortmakerfead3902011-12-29 20:43:44 -0500264 struct tipc_subscription *s;
265 struct tipc_subscription *st;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100266 struct publication *publ;
267 struct sub_seq *sseq;
Allan Stephensb52124a2011-05-30 09:44:38 -0400268 struct name_info *info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100269 int created_subseq = 0;
270
Per Lidenb97bf3f2006-01-02 19:04:38 +0100271 sseq = nameseq_find_subseq(nseq, lower);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100272 if (sseq) {
273
274 /* Lower end overlaps existing entry => need an exact match */
275
276 if ((sseq->lower != lower) || (sseq->upper != upper)) {
Allan Stephensf1310722006-06-25 23:51:37 -0700277 warn("Cannot publish {%u,%u,%u}, overlap error\n",
278 type, lower, upper);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800279 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100280 }
Allan Stephensb52124a2011-05-30 09:44:38 -0400281
282 info = sseq->info;
Allan Stephensf80c24d2011-11-03 11:12:01 -0400283
284 /* Check if an identical publication already exists */
285 list_for_each_entry(publ, &info->zone_list, zone_list) {
286 if ((publ->ref == port) && (publ->key == key) &&
287 (!publ->node || (publ->node == node)))
288 return NULL;
289 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100290 } else {
291 u32 inspos;
292 struct sub_seq *freesseq;
293
294 /* Find where lower end should be inserted */
295
296 inspos = nameseq_locate_subseq(nseq, lower);
297
298 /* Fail if upper end overlaps into an existing entry */
299
300 if ((inspos < nseq->first_free) &&
301 (upper >= nseq->sseqs[inspos].lower)) {
Allan Stephensf1310722006-06-25 23:51:37 -0700302 warn("Cannot publish {%u,%u,%u}, overlap error\n",
303 type, lower, upper);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800304 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100305 }
306
307 /* Ensure there is space for new sub-sequence */
308
309 if (nseq->first_free == nseq->alloc) {
Allan Stephens9ab230f2006-06-25 23:37:24 -0700310 struct sub_seq *sseqs = tipc_subseq_alloc(nseq->alloc * 2);
311
312 if (!sseqs) {
Allan Stephensf1310722006-06-25 23:51:37 -0700313 warn("Cannot publish {%u,%u,%u}, no memory\n",
314 type, lower, upper);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800315 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100316 }
Allan Stephens9ab230f2006-06-25 23:37:24 -0700317 memcpy(sseqs, nseq->sseqs,
318 nseq->alloc * sizeof(struct sub_seq));
319 kfree(nseq->sseqs);
320 nseq->sseqs = sseqs;
321 nseq->alloc *= 2;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100322 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100323
Allan Stephensb52124a2011-05-30 09:44:38 -0400324 info = kzalloc(sizeof(*info), GFP_ATOMIC);
325 if (!info) {
326 warn("Cannot publish {%u,%u,%u}, no memory\n",
327 type, lower, upper);
328 return NULL;
329 }
330
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400331 INIT_LIST_HEAD(&info->node_list);
332 INIT_LIST_HEAD(&info->cluster_list);
333 INIT_LIST_HEAD(&info->zone_list);
334
Per Lidenb97bf3f2006-01-02 19:04:38 +0100335 /* Insert new sub-sequence */
336
Per Lidenb97bf3f2006-01-02 19:04:38 +0100337 sseq = &nseq->sseqs[inspos];
338 freesseq = &nseq->sseqs[nseq->first_free];
Allan Stephens0e659672010-12-31 18:59:32 +0000339 memmove(sseq + 1, sseq, (freesseq - sseq) * sizeof(*sseq));
340 memset(sseq, 0, sizeof(*sseq));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100341 nseq->first_free++;
342 sseq->lower = lower;
343 sseq->upper = upper;
Allan Stephensb52124a2011-05-30 09:44:38 -0400344 sseq->info = info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100345 created_subseq = 1;
346 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100347
348 /* Insert a publication: */
349
350 publ = publ_create(type, lower, upper, scope, node, port, key);
351 if (!publ)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800352 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100353
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400354 list_add(&publ->zone_list, &info->zone_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400355 info->zone_list_size++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100356
Allan Stephensd4f5c122012-04-17 18:16:34 -0400357 if (in_own_cluster(node)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400358 list_add(&publ->cluster_list, &info->cluster_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400359 info->cluster_list_size++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100360 }
361
Allan Stephensd4f5c122012-04-17 18:16:34 -0400362 if (in_own_node(node)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400363 list_add(&publ->node_list, &info->node_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400364 info->node_list_size++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100365 }
366
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900367 /*
368 * Any subscriptions waiting for notification?
Per Lidenb97bf3f2006-01-02 19:04:38 +0100369 */
370 list_for_each_entry_safe(s, st, &nseq->subscriptions, nameseq_list) {
Per Liden4323add2006-01-18 00:38:21 +0100371 tipc_subscr_report_overlap(s,
372 publ->lower,
373 publ->upper,
374 TIPC_PUBLISHED,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900375 publ->ref,
Per Liden4323add2006-01-18 00:38:21 +0100376 publ->node,
377 created_subseq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100378 }
379 return publ;
380}
381
382/**
Per Liden4323add2006-01-18 00:38:21 +0100383 * tipc_nameseq_remove_publ -
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900384 *
Allan Stephensf1310722006-06-25 23:51:37 -0700385 * NOTE: There may be cases where TIPC is asked to remove a publication
386 * that is not in the name table. For example, if another node issues a
387 * publication for a name sequence that overlaps an existing name sequence
388 * the publication will not be recorded, which means the publication won't
389 * be found when the name sequence is later withdrawn by that node.
390 * A failed withdraw request simply returns a failure indication and lets the
391 * caller issue any error or warning messages associated with such a problem.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100392 */
393
Adrian Bunk988f0882006-03-20 22:37:52 -0800394static struct publication *tipc_nameseq_remove_publ(struct name_seq *nseq, u32 inst,
395 u32 node, u32 ref, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100396{
397 struct publication *publ;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100398 struct sub_seq *sseq = nameseq_find_subseq(nseq, inst);
Allan Stephensb52124a2011-05-30 09:44:38 -0400399 struct name_info *info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100400 struct sub_seq *free;
Paul Gortmakerfead3902011-12-29 20:43:44 -0500401 struct tipc_subscription *s, *st;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100402 int removed_subseq = 0;
403
Allan Stephensf1310722006-06-25 23:51:37 -0700404 if (!sseq)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800405 return NULL;
Allan Stephensf1310722006-06-25 23:51:37 -0700406
Allan Stephensb52124a2011-05-30 09:44:38 -0400407 info = sseq->info;
408
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400409 /* Locate publication, if it exists */
410
411 list_for_each_entry(publ, &info->zone_list, zone_list) {
412 if ((publ->key == key) && (publ->ref == ref) &&
413 (!publ->node || (publ->node == node)))
414 goto found;
415 }
416 return NULL;
417
418found:
Allan Stephensf1310722006-06-25 23:51:37 -0700419 /* Remove publication from zone scope list */
420
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400421 list_del(&publ->zone_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400422 info->zone_list_size--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100423
Allan Stephensf1310722006-06-25 23:51:37 -0700424 /* Remove publication from cluster scope list, if present */
425
Allan Stephensd4f5c122012-04-17 18:16:34 -0400426 if (in_own_cluster(node)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400427 list_del(&publ->cluster_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400428 info->cluster_list_size--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100429 }
Allan Stephensf1310722006-06-25 23:51:37 -0700430
431 /* Remove publication from node scope list, if present */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100432
Allan Stephensd4f5c122012-04-17 18:16:34 -0400433 if (in_own_node(node)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400434 list_del(&publ->node_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400435 info->node_list_size--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100436 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100437
Allan Stephensf1310722006-06-25 23:51:37 -0700438 /* Contract subseq list if no more publications for that subseq */
439
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400440 if (list_empty(&info->zone_list)) {
Allan Stephensb52124a2011-05-30 09:44:38 -0400441 kfree(info);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100442 free = &nseq->sseqs[nseq->first_free--];
Allan Stephens0e659672010-12-31 18:59:32 +0000443 memmove(sseq, sseq + 1, (free - (sseq + 1)) * sizeof(*sseq));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100444 removed_subseq = 1;
445 }
446
Allan Stephensf1310722006-06-25 23:51:37 -0700447 /* Notify any waiting subscriptions */
448
Per Lidenb97bf3f2006-01-02 19:04:38 +0100449 list_for_each_entry_safe(s, st, &nseq->subscriptions, nameseq_list) {
Per Liden4323add2006-01-18 00:38:21 +0100450 tipc_subscr_report_overlap(s,
451 publ->lower,
452 publ->upper,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900453 TIPC_WITHDRAWN,
454 publ->ref,
Per Liden4323add2006-01-18 00:38:21 +0100455 publ->node,
456 removed_subseq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100457 }
Allan Stephensf1310722006-06-25 23:51:37 -0700458
Per Lidenb97bf3f2006-01-02 19:04:38 +0100459 return publ;
460}
461
462/**
Per Liden4323add2006-01-18 00:38:21 +0100463 * tipc_nameseq_subscribe: attach a subscription, and issue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100464 * the prescribed number of events if there is any sub-
465 * sequence overlapping with the requested sequence
466 */
467
Paul Gortmakerfead3902011-12-29 20:43:44 -0500468static void tipc_nameseq_subscribe(struct name_seq *nseq,
469 struct tipc_subscription *s)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100470{
471 struct sub_seq *sseq = nseq->sseqs;
472
473 list_add(&s->nameseq_list, &nseq->subscriptions);
474
475 if (!sseq)
476 return;
477
478 while (sseq != &nseq->sseqs[nseq->first_free]) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400479 if (tipc_subscr_overlap(s, sseq->lower, sseq->upper)) {
480 struct publication *crs;
481 struct name_info *info = sseq->info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100482 int must_report = 1;
483
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400484 list_for_each_entry(crs, &info->zone_list, zone_list) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900485 tipc_subscr_report_overlap(s,
486 sseq->lower,
Per Liden4323add2006-01-18 00:38:21 +0100487 sseq->upper,
488 TIPC_PUBLISHED,
489 crs->ref,
490 crs->node,
491 must_report);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100492 must_report = 0;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400493 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100494 }
495 sseq++;
496 }
497}
498
499static struct name_seq *nametbl_find_seq(u32 type)
500{
501 struct hlist_head *seq_head;
502 struct hlist_node *seq_node;
503 struct name_seq *ns;
504
Per Lidenb97bf3f2006-01-02 19:04:38 +0100505 seq_head = &table.types[hash(type)];
506 hlist_for_each_entry(ns, seq_node, seq_head, ns_list) {
Allan Stephensb29f1422010-12-31 18:59:25 +0000507 if (ns->type == type)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100508 return ns;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100509 }
510
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800511 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100512};
513
Per Liden4323add2006-01-18 00:38:21 +0100514struct publication *tipc_nametbl_insert_publ(u32 type, u32 lower, u32 upper,
515 u32 scope, u32 node, u32 port, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100516{
517 struct name_seq *seq = nametbl_find_seq(type);
518
Allan Stephens8f177892012-04-26 17:57:17 -0400519 if ((scope < TIPC_ZONE_SCOPE) || (scope > TIPC_NODE_SCOPE) ||
520 (lower > upper)) {
521 dbg("Failed to publish illegal {%u,%u,%u} with scope %u\n",
522 type, lower, upper, scope);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800523 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100524 }
525
Allan Stephensb29f1422010-12-31 18:59:25 +0000526 if (!seq)
Per Liden4323add2006-01-18 00:38:21 +0100527 seq = tipc_nameseq_create(type, &table.types[hash(type)]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100528 if (!seq)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800529 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100530
Per Liden4323add2006-01-18 00:38:21 +0100531 return tipc_nameseq_insert_publ(seq, type, lower, upper,
532 scope, node, port, key);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100533}
534
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900535struct publication *tipc_nametbl_remove_publ(u32 type, u32 lower,
Per Liden4323add2006-01-18 00:38:21 +0100536 u32 node, u32 ref, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100537{
538 struct publication *publ;
539 struct name_seq *seq = nametbl_find_seq(type);
540
541 if (!seq)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800542 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100543
Per Liden4323add2006-01-18 00:38:21 +0100544 publ = tipc_nameseq_remove_publ(seq, lower, node, ref, key);
Allan Stephensf7fb9d22012-04-26 17:53:03 -0400545 nameseq_delete_empty(seq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100546 return publ;
547}
548
549/*
Allan Stephensbc9f8142011-11-07 17:00:54 -0500550 * tipc_nametbl_translate - perform name translation
Per Lidenb97bf3f2006-01-02 19:04:38 +0100551 *
Allan Stephensbc9f8142011-11-07 17:00:54 -0500552 * On entry, 'destnode' is the search domain used during translation.
553 *
554 * On exit:
555 * - if name translation is deferred to another node/cluster/zone,
556 * leaves 'destnode' unchanged (will be non-zero) and returns 0
557 * - if name translation is attempted and succeeds, sets 'destnode'
558 * to publishing node and returns port reference (will be non-zero)
559 * - if name translation is attempted and fails, sets 'destnode' to 0
560 * and returns 0
Per Lidenb97bf3f2006-01-02 19:04:38 +0100561 */
562
Per Liden4323add2006-01-18 00:38:21 +0100563u32 tipc_nametbl_translate(u32 type, u32 instance, u32 *destnode)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100564{
565 struct sub_seq *sseq;
Allan Stephensb52124a2011-05-30 09:44:38 -0400566 struct name_info *info;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400567 struct publication *publ;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100568 struct name_seq *seq;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400569 u32 ref = 0;
Allan Stephensbc9f8142011-11-07 17:00:54 -0500570 u32 node = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100571
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000572 if (!tipc_in_scope(*destnode, tipc_own_addr))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100573 return 0;
574
Per Liden4323add2006-01-18 00:38:21 +0100575 read_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100576 seq = nametbl_find_seq(type);
577 if (unlikely(!seq))
578 goto not_found;
579 sseq = nameseq_find_subseq(seq, instance);
580 if (unlikely(!sseq))
581 goto not_found;
582 spin_lock_bh(&seq->lock);
Allan Stephensb52124a2011-05-30 09:44:38 -0400583 info = sseq->info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100584
585 /* Closest-First Algorithm: */
586 if (likely(!*destnode)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400587 if (!list_empty(&info->node_list)) {
588 publ = list_first_entry(&info->node_list,
589 struct publication,
590 node_list);
591 list_move_tail(&publ->node_list,
592 &info->node_list);
593 } else if (!list_empty(&info->cluster_list)) {
594 publ = list_first_entry(&info->cluster_list,
595 struct publication,
596 cluster_list);
597 list_move_tail(&publ->cluster_list,
598 &info->cluster_list);
Allan Stephens8af46382011-05-30 11:27:50 -0400599 } else {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400600 publ = list_first_entry(&info->zone_list,
601 struct publication,
602 zone_list);
603 list_move_tail(&publ->zone_list,
604 &info->zone_list);
Allan Stephens8af46382011-05-30 11:27:50 -0400605 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100606 }
607
608 /* Round-Robin Algorithm: */
609 else if (*destnode == tipc_own_addr) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400610 if (list_empty(&info->node_list))
611 goto no_match;
612 publ = list_first_entry(&info->node_list, struct publication,
613 node_list);
614 list_move_tail(&publ->node_list, &info->node_list);
Allan Stephens336ebf52012-04-17 18:02:01 -0400615 } else if (in_own_cluster_exact(*destnode)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400616 if (list_empty(&info->cluster_list))
617 goto no_match;
618 publ = list_first_entry(&info->cluster_list, struct publication,
619 cluster_list);
620 list_move_tail(&publ->cluster_list, &info->cluster_list);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100621 } else {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400622 publ = list_first_entry(&info->zone_list, struct publication,
623 zone_list);
624 list_move_tail(&publ->zone_list, &info->zone_list);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100625 }
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400626
627 ref = publ->ref;
Allan Stephensbc9f8142011-11-07 17:00:54 -0500628 node = publ->node;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400629no_match:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100630 spin_unlock_bh(&seq->lock);
631not_found:
Per Liden4323add2006-01-18 00:38:21 +0100632 read_unlock_bh(&tipc_nametbl_lock);
Allan Stephensbc9f8142011-11-07 17:00:54 -0500633 *destnode = node;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400634 return ref;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100635}
636
637/**
Per Liden4323add2006-01-18 00:38:21 +0100638 * tipc_nametbl_mc_translate - find multicast destinations
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900639 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100640 * Creates list of all local ports that overlap the given multicast address;
641 * also determines if any off-node ports overlap.
642 *
643 * Note: Publications with a scope narrower than 'limit' are ignored.
644 * (i.e. local node-scope publications mustn't receive messages arriving
645 * from another node, even if the multcast link brought it here)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900646 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100647 * Returns non-zero if any off-node ports overlap
648 */
649
Per Liden4323add2006-01-18 00:38:21 +0100650int tipc_nametbl_mc_translate(u32 type, u32 lower, u32 upper, u32 limit,
Paul Gortmaker45843102011-12-29 20:33:30 -0500651 struct tipc_port_list *dports)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100652{
653 struct name_seq *seq;
654 struct sub_seq *sseq;
655 struct sub_seq *sseq_stop;
Allan Stephensb52124a2011-05-30 09:44:38 -0400656 struct name_info *info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100657 int res = 0;
658
Per Liden4323add2006-01-18 00:38:21 +0100659 read_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100660 seq = nametbl_find_seq(type);
661 if (!seq)
662 goto exit;
663
664 spin_lock_bh(&seq->lock);
665
666 sseq = seq->sseqs + nameseq_locate_subseq(seq, lower);
667 sseq_stop = seq->sseqs + seq->first_free;
668 for (; sseq != sseq_stop; sseq++) {
669 struct publication *publ;
670
671 if (sseq->lower > upper)
672 break;
Allan Stephens968edbe2008-07-14 22:45:33 -0700673
Allan Stephensb52124a2011-05-30 09:44:38 -0400674 info = sseq->info;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400675 list_for_each_entry(publ, &info->node_list, node_list) {
676 if (publ->scope <= limit)
677 tipc_port_list_add(dports, publ->ref);
Allan Stephens968edbe2008-07-14 22:45:33 -0700678 }
679
Allan Stephensb52124a2011-05-30 09:44:38 -0400680 if (info->cluster_list_size != info->node_list_size)
Allan Stephens968edbe2008-07-14 22:45:33 -0700681 res = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100682 }
683
684 spin_unlock_bh(&seq->lock);
685exit:
Per Liden4323add2006-01-18 00:38:21 +0100686 read_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100687 return res;
688}
689
Allan Stephensc422f1b2011-11-02 15:49:40 -0400690/*
Per Liden4323add2006-01-18 00:38:21 +0100691 * tipc_nametbl_publish - add name publication to network name tables
Per Lidenb97bf3f2006-01-02 19:04:38 +0100692 */
693
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900694struct publication *tipc_nametbl_publish(u32 type, u32 lower, u32 upper,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100695 u32 scope, u32 port_ref, u32 key)
696{
697 struct publication *publ;
698
699 if (table.local_publ_count >= tipc_max_publications) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900700 warn("Publication failed, local publication limit reached (%u)\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100701 tipc_max_publications);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800702 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100703 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100704
Per Liden4323add2006-01-18 00:38:21 +0100705 write_lock_bh(&tipc_nametbl_lock);
Per Liden4323add2006-01-18 00:38:21 +0100706 publ = tipc_nametbl_insert_publ(type, lower, upper, scope,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100707 tipc_own_addr, port_ref, key);
Allan Stephensfd6eced2011-11-09 14:22:52 -0500708 if (likely(publ)) {
709 table.local_publ_count++;
Per Liden4323add2006-01-18 00:38:21 +0100710 tipc_named_publish(publ);
Allan Stephensfd6eced2011-11-09 14:22:52 -0500711 }
Per Liden4323add2006-01-18 00:38:21 +0100712 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100713 return publ;
714}
715
716/**
Per Liden4323add2006-01-18 00:38:21 +0100717 * tipc_nametbl_withdraw - withdraw name publication from network name tables
Per Lidenb97bf3f2006-01-02 19:04:38 +0100718 */
719
Per Liden4323add2006-01-18 00:38:21 +0100720int tipc_nametbl_withdraw(u32 type, u32 lower, u32 ref, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100721{
722 struct publication *publ;
723
Per Liden4323add2006-01-18 00:38:21 +0100724 write_lock_bh(&tipc_nametbl_lock);
725 publ = tipc_nametbl_remove_publ(type, lower, tipc_own_addr, ref, key);
Allan Stephensf1310722006-06-25 23:51:37 -0700726 if (likely(publ)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100727 table.local_publ_count--;
Allan Stephens1110b8d2012-04-17 17:57:52 -0400728 tipc_named_withdraw(publ);
Per Liden4323add2006-01-18 00:38:21 +0100729 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100730 list_del_init(&publ->pport_list);
731 kfree(publ);
732 return 1;
733 }
Per Liden4323add2006-01-18 00:38:21 +0100734 write_unlock_bh(&tipc_nametbl_lock);
Allan Stephensf1310722006-06-25 23:51:37 -0700735 err("Unable to remove local publication\n"
736 "(type=%u, lower=%u, ref=%u, key=%u)\n",
737 type, lower, ref, key);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100738 return 0;
739}
740
741/**
Per Liden4323add2006-01-18 00:38:21 +0100742 * tipc_nametbl_subscribe - add a subscription object to the name table
Per Lidenb97bf3f2006-01-02 19:04:38 +0100743 */
744
Paul Gortmakerfead3902011-12-29 20:43:44 -0500745void tipc_nametbl_subscribe(struct tipc_subscription *s)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100746{
747 u32 type = s->seq.type;
748 struct name_seq *seq;
749
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900750 write_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100751 seq = nametbl_find_seq(type);
Allan Stephensa0168922010-12-31 18:59:35 +0000752 if (!seq)
Per Liden4323add2006-01-18 00:38:21 +0100753 seq = tipc_nameseq_create(type, &table.types[hash(type)]);
Allan Stephens0e659672010-12-31 18:59:32 +0000754 if (seq) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900755 spin_lock_bh(&seq->lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900756 tipc_nameseq_subscribe(seq, s);
757 spin_unlock_bh(&seq->lock);
758 } else {
Allan Stephensf1310722006-06-25 23:51:37 -0700759 warn("Failed to create subscription for {%u,%u,%u}\n",
760 s->seq.type, s->seq.lower, s->seq.upper);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900761 }
762 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100763}
764
765/**
Per Liden4323add2006-01-18 00:38:21 +0100766 * tipc_nametbl_unsubscribe - remove a subscription object from name table
Per Lidenb97bf3f2006-01-02 19:04:38 +0100767 */
768
Paul Gortmakerfead3902011-12-29 20:43:44 -0500769void tipc_nametbl_unsubscribe(struct tipc_subscription *s)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100770{
771 struct name_seq *seq;
772
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900773 write_lock_bh(&tipc_nametbl_lock);
774 seq = nametbl_find_seq(s->seq.type);
Allan Stephens0e659672010-12-31 18:59:32 +0000775 if (seq != NULL) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900776 spin_lock_bh(&seq->lock);
777 list_del_init(&s->nameseq_list);
778 spin_unlock_bh(&seq->lock);
Allan Stephensf7fb9d22012-04-26 17:53:03 -0400779 nameseq_delete_empty(seq);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900780 }
781 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100782}
783
784
785/**
786 * subseq_list: print specified sub-sequence contents into the given buffer
787 */
788
789static void subseq_list(struct sub_seq *sseq, struct print_buf *buf, u32 depth,
790 u32 index)
791{
792 char portIdStr[27];
Allan Stephensc2de5812010-08-17 11:00:14 +0000793 const char *scope_str[] = {"", " zone", " cluster", " node"};
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400794 struct publication *publ;
795 struct name_info *info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100796
797 tipc_printf(buf, "%-10u %-10u ", sseq->lower, sseq->upper);
798
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400799 if (depth == 2) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100800 tipc_printf(buf, "\n");
801 return;
802 }
803
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400804 info = sseq->info;
805
806 list_for_each_entry(publ, &info->zone_list, zone_list) {
Allan Stephens0e659672010-12-31 18:59:32 +0000807 sprintf(portIdStr, "<%u.%u.%u:%u>",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100808 tipc_zone(publ->node), tipc_cluster(publ->node),
809 tipc_node(publ->node), publ->ref);
810 tipc_printf(buf, "%-26s ", portIdStr);
811 if (depth > 3) {
Allan Stephensc2de5812010-08-17 11:00:14 +0000812 tipc_printf(buf, "%-10u %s", publ->key,
813 scope_str[publ->scope]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100814 }
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400815 if (!list_is_last(&publ->zone_list, &info->zone_list))
816 tipc_printf(buf, "\n%33s", " ");
817 };
Per Lidenb97bf3f2006-01-02 19:04:38 +0100818
819 tipc_printf(buf, "\n");
820}
821
822/**
823 * nameseq_list: print specified name sequence contents into the given buffer
824 */
825
826static void nameseq_list(struct name_seq *seq, struct print_buf *buf, u32 depth,
827 u32 type, u32 lowbound, u32 upbound, u32 index)
828{
829 struct sub_seq *sseq;
830 char typearea[11];
831
Allan Stephens0f15d362008-06-04 17:37:59 -0700832 if (seq->first_free == 0)
833 return;
834
Per Lidenb97bf3f2006-01-02 19:04:38 +0100835 sprintf(typearea, "%-10u", seq->type);
836
837 if (depth == 1) {
838 tipc_printf(buf, "%s\n", typearea);
839 return;
840 }
841
842 for (sseq = seq->sseqs; sseq != &seq->sseqs[seq->first_free]; sseq++) {
843 if ((lowbound <= sseq->upper) && (upbound >= sseq->lower)) {
844 tipc_printf(buf, "%s ", typearea);
Allan Stephens307fdf52008-06-04 17:38:22 -0700845 spin_lock_bh(&seq->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100846 subseq_list(sseq, buf, depth, index);
Allan Stephens307fdf52008-06-04 17:38:22 -0700847 spin_unlock_bh(&seq->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100848 sprintf(typearea, "%10s", " ");
849 }
850 }
851}
852
853/**
854 * nametbl_header - print name table header into the given buffer
855 */
856
857static void nametbl_header(struct print_buf *buf, u32 depth)
858{
Allan Stephensc2de5812010-08-17 11:00:14 +0000859 const char *header[] = {
860 "Type ",
861 "Lower Upper ",
862 "Port Identity ",
863 "Publication Scope"
864 };
Per Lidenb97bf3f2006-01-02 19:04:38 +0100865
Allan Stephensc2de5812010-08-17 11:00:14 +0000866 int i;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100867
Allan Stephensc2de5812010-08-17 11:00:14 +0000868 if (depth > 4)
869 depth = 4;
870 for (i = 0; i < depth; i++)
871 tipc_printf(buf, header[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100872 tipc_printf(buf, "\n");
873}
874
875/**
876 * nametbl_list - print specified name table contents into the given buffer
877 */
878
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900879static void nametbl_list(struct print_buf *buf, u32 depth_info,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100880 u32 type, u32 lowbound, u32 upbound)
881{
882 struct hlist_head *seq_head;
883 struct hlist_node *seq_node;
884 struct name_seq *seq;
885 int all_types;
886 u32 depth;
887 u32 i;
888
889 all_types = (depth_info & TIPC_NTQ_ALLTYPES);
890 depth = (depth_info & ~TIPC_NTQ_ALLTYPES);
891
892 if (depth == 0)
893 return;
894
895 if (all_types) {
896 /* display all entries in name table to specified depth */
897 nametbl_header(buf, depth);
898 lowbound = 0;
899 upbound = ~0;
900 for (i = 0; i < tipc_nametbl_size; i++) {
901 seq_head = &table.types[i];
902 hlist_for_each_entry(seq, seq_node, seq_head, ns_list) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900903 nameseq_list(seq, buf, depth, seq->type,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100904 lowbound, upbound, i);
905 }
906 }
907 } else {
908 /* display only the sequence that matches the specified type */
909 if (upbound < lowbound) {
910 tipc_printf(buf, "invalid name sequence specified\n");
911 return;
912 }
913 nametbl_header(buf, depth);
914 i = hash(type);
915 seq_head = &table.types[i];
916 hlist_for_each_entry(seq, seq_node, seq_head, ns_list) {
917 if (seq->type == type) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900918 nameseq_list(seq, buf, depth, type,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100919 lowbound, upbound, i);
920 break;
921 }
922 }
923 }
924}
925
Per Lidenb97bf3f2006-01-02 19:04:38 +0100926#define MAX_NAME_TBL_QUERY 32768
927
Per Liden4323add2006-01-18 00:38:21 +0100928struct sk_buff *tipc_nametbl_get(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100929{
930 struct sk_buff *buf;
931 struct tipc_name_table_query *argv;
932 struct tlv_desc *rep_tlv;
933 struct print_buf b;
934 int str_len;
935
936 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_NAME_TBL_QUERY))
Per Liden4323add2006-01-18 00:38:21 +0100937 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100938
Per Liden4323add2006-01-18 00:38:21 +0100939 buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_NAME_TBL_QUERY));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100940 if (!buf)
941 return NULL;
942
943 rep_tlv = (struct tlv_desc *)buf->data;
Per Liden4323add2006-01-18 00:38:21 +0100944 tipc_printbuf_init(&b, TLV_DATA(rep_tlv), MAX_NAME_TBL_QUERY);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100945 argv = (struct tipc_name_table_query *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +0100946 read_lock_bh(&tipc_nametbl_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900947 nametbl_list(&b, ntohl(argv->depth), ntohl(argv->type),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100948 ntohl(argv->lowbound), ntohl(argv->upbound));
Per Liden4323add2006-01-18 00:38:21 +0100949 read_unlock_bh(&tipc_nametbl_lock);
950 str_len = tipc_printbuf_validate(&b);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100951
952 skb_put(buf, TLV_SPACE(str_len));
953 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
954
955 return buf;
956}
957
Per Liden4323add2006-01-18 00:38:21 +0100958int tipc_nametbl_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100959{
Allan Stephens4e3e6dc2008-05-12 15:41:53 -0700960 table.types = kcalloc(tipc_nametbl_size, sizeof(struct hlist_head),
961 GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100962 if (!table.types)
963 return -ENOMEM;
964
Per Lidenb97bf3f2006-01-02 19:04:38 +0100965 table.local_publ_count = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100966 return 0;
967}
968
Per Liden4323add2006-01-18 00:38:21 +0100969void tipc_nametbl_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100970{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100971 u32 i;
972
973 if (!table.types)
974 return;
975
Allan Stephensf1310722006-06-25 23:51:37 -0700976 /* Verify name table is empty, then release it */
977
Per Liden4323add2006-01-18 00:38:21 +0100978 write_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100979 for (i = 0; i < tipc_nametbl_size; i++) {
Allan Stephensf1310722006-06-25 23:51:37 -0700980 if (!hlist_empty(&table.types[i]))
981 err("tipc_nametbl_stop(): hash chain %u is non-null\n", i);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100982 }
983 kfree(table.types);
984 table.types = NULL;
Per Liden4323add2006-01-18 00:38:21 +0100985 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100986}
Allan Stephensf1310722006-06-25 23:51:37 -0700987