blob: 3a6a0a7c0759f01ad06b7c8d9b08a6c8d98e4ca9 [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"
Per Lidenb97bf3f2006-01-02 19:04:38 +010042
Ying Xuef046e7d2012-08-16 12:09:11 +000043#define TIPC_NAMETBL_SIZE 1024 /* must be a power of 2 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010044
45/**
Allan Stephensb52124a2011-05-30 09:44:38 -040046 * struct name_info - name sequence publication info
Allan Stephens968edbe2008-07-14 22:45:33 -070047 * @node_list: circular list of publications made by own node
48 * @cluster_list: circular list of publications made by own cluster
49 * @zone_list: circular list of publications made by own zone
50 * @node_list_size: number of entries in "node_list"
51 * @cluster_list_size: number of entries in "cluster_list"
52 * @zone_list_size: number of entries in "zone_list"
53 *
54 * Note: The zone list always contains at least one entry, since all
55 * publications of the associated name sequence belong to it.
56 * (The cluster and node lists may be empty.)
Per Lidenb97bf3f2006-01-02 19:04:38 +010057 */
Allan Stephensb52124a2011-05-30 09:44:38 -040058struct name_info {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -040059 struct list_head node_list;
60 struct list_head cluster_list;
61 struct list_head zone_list;
Allan Stephens968edbe2008-07-14 22:45:33 -070062 u32 node_list_size;
63 u32 cluster_list_size;
64 u32 zone_list_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +010065};
66
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090067/**
Allan Stephensb52124a2011-05-30 09:44:38 -040068 * struct sub_seq - container for all published instances of a name sequence
69 * @lower: name sequence lower bound
70 * @upper: name sequence upper bound
71 * @info: pointer to name sequence publication info
72 */
Allan Stephensb52124a2011-05-30 09:44:38 -040073struct sub_seq {
74 u32 lower;
75 u32 upper;
76 struct name_info *info;
77};
78
79/**
Per Lidenb97bf3f2006-01-02 19:04:38 +010080 * struct name_seq - container for all published instances of a name type
81 * @type: 32 bit 'type' value for name sequence
82 * @sseq: pointer to dynamically-sized array of sub-sequences of this 'type';
83 * sub-sequences are sorted in ascending order
84 * @alloc: number of sub-sequences currently in array
Allan Stephensf1310722006-06-25 23:51:37 -070085 * @first_free: array index of first unused sub-sequence entry
Per Lidenb97bf3f2006-01-02 19:04:38 +010086 * @ns_list: links to adjacent name sequences in hash chain
87 * @subscriptions: list of subscriptions for this 'type'
Allan Stephens307fdf52008-06-04 17:38:22 -070088 * @lock: spinlock controlling access to publication lists of all sub-sequences
Per Lidenb97bf3f2006-01-02 19:04:38 +010089 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010090struct name_seq {
91 u32 type;
92 struct sub_seq *sseqs;
93 u32 alloc;
94 u32 first_free;
95 struct hlist_node ns_list;
96 struct list_head subscriptions;
97 spinlock_t lock;
98};
99
100/**
101 * struct name_table - table containing all existing port name publications
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900102 * @types: pointer to fixed-sized array of name sequence lists,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100103 * accessed via hashing on 'type'; name sequence lists are *not* sorted
104 * @local_publ_count: number of publications issued by this node
105 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100106struct name_table {
107 struct hlist_head *types;
108 u32 local_publ_count;
109};
110
Allan Stephense3ec9c72010-12-31 18:59:34 +0000111static struct name_table table;
Ingo Molnar34af9462006-06-27 02:53:55 -0700112DEFINE_RWLOCK(tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100113
Sam Ravnborg05790c62006-03-20 22:37:04 -0800114static int hash(int x)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100115{
Ying Xuef046e7d2012-08-16 12:09:11 +0000116 return x & (TIPC_NAMETBL_SIZE - 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100117}
118
119/**
120 * publ_create - create a publication structure
121 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900122static struct publication *publ_create(u32 type, u32 lower, u32 upper,
123 u32 scope, u32 node, u32 port_ref,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100124 u32 key)
125{
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700126 struct publication *publ = kzalloc(sizeof(*publ), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127 if (publ == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400128 pr_warn("Publication creation failure, no memory\n");
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800129 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100130 }
131
Per Lidenb97bf3f2006-01-02 19:04:38 +0100132 publ->type = type;
133 publ->lower = lower;
134 publ->upper = upper;
135 publ->scope = scope;
136 publ->node = node;
137 publ->ref = port_ref;
138 publ->key = key;
139 INIT_LIST_HEAD(&publ->local_list);
140 INIT_LIST_HEAD(&publ->pport_list);
141 INIT_LIST_HEAD(&publ->subscr.nodesub_list);
142 return publ;
143}
144
145/**
Per Liden4323add2006-01-18 00:38:21 +0100146 * tipc_subseq_alloc - allocate a specified number of sub-sequence structures
Per Lidenb97bf3f2006-01-02 19:04:38 +0100147 */
Adrian Bunk988f0882006-03-20 22:37:52 -0800148static struct sub_seq *tipc_subseq_alloc(u32 cnt)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100149{
wangweidong0cee6bb2013-12-12 09:36:39 +0800150 return kcalloc(cnt, sizeof(struct sub_seq), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100151}
152
153/**
Per Liden4323add2006-01-18 00:38:21 +0100154 * tipc_nameseq_create - create a name sequence structure for the specified 'type'
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900155 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100156 * Allocates a single sub-sequence structure and sets it to all 0's.
157 */
Adrian Bunk988f0882006-03-20 22:37:52 -0800158static struct name_seq *tipc_nameseq_create(u32 type, struct hlist_head *seq_head)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100159{
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700160 struct name_seq *nseq = kzalloc(sizeof(*nseq), GFP_ATOMIC);
Per Liden4323add2006-01-18 00:38:21 +0100161 struct sub_seq *sseq = tipc_subseq_alloc(1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100162
163 if (!nseq || !sseq) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400164 pr_warn("Name sequence creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100165 kfree(nseq);
166 kfree(sseq);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800167 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100168 }
169
Ingo Molnar34af9462006-06-27 02:53:55 -0700170 spin_lock_init(&nseq->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100171 nseq->type = type;
172 nseq->sseqs = sseq;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100173 nseq->alloc = 1;
174 INIT_HLIST_NODE(&nseq->ns_list);
175 INIT_LIST_HEAD(&nseq->subscriptions);
176 hlist_add_head(&nseq->ns_list, seq_head);
177 return nseq;
178}
179
Allan Stephensf7fb9d22012-04-26 17:53:03 -0400180/*
181 * nameseq_delete_empty - deletes a name sequence structure if now unused
182 */
183static void nameseq_delete_empty(struct name_seq *seq)
184{
185 if (!seq->first_free && list_empty(&seq->subscriptions)) {
186 hlist_del_init(&seq->ns_list);
187 kfree(seq->sseqs);
188 kfree(seq);
189 }
190}
191
Ben Hutchings2c530402012-07-10 10:55:09 +0000192/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100193 * nameseq_find_subseq - find sub-sequence (if any) matching a name instance
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900194 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100195 * Very time-critical, so binary searches through sub-sequence array.
196 */
Sam Ravnborg05790c62006-03-20 22:37:04 -0800197static struct sub_seq *nameseq_find_subseq(struct name_seq *nseq,
198 u32 instance)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100199{
200 struct sub_seq *sseqs = nseq->sseqs;
201 int low = 0;
202 int high = nseq->first_free - 1;
203 int mid;
204
205 while (low <= high) {
206 mid = (low + high) / 2;
207 if (instance < sseqs[mid].lower)
208 high = mid - 1;
209 else if (instance > sseqs[mid].upper)
210 low = mid + 1;
211 else
212 return &sseqs[mid];
213 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800214 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100215}
216
217/**
218 * nameseq_locate_subseq - determine position of name instance in sub-sequence
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900219 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100220 * Returns index in sub-sequence array of the entry that contains the specified
221 * instance value; if no entry contains that value, returns the position
222 * where a new entry for it would be inserted in the array.
223 *
224 * Note: Similar to binary search code for locating a sub-sequence.
225 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100226static u32 nameseq_locate_subseq(struct name_seq *nseq, u32 instance)
227{
228 struct sub_seq *sseqs = nseq->sseqs;
229 int low = 0;
230 int high = nseq->first_free - 1;
231 int mid;
232
233 while (low <= high) {
234 mid = (low + high) / 2;
235 if (instance < sseqs[mid].lower)
236 high = mid - 1;
237 else if (instance > sseqs[mid].upper)
238 low = mid + 1;
239 else
240 return mid;
241 }
242 return low;
243}
244
245/**
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400246 * tipc_nameseq_insert_publ
Per Lidenb97bf3f2006-01-02 19:04:38 +0100247 */
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 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100263 if ((sseq->lower != lower) || (sseq->upper != upper)) {
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800264 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100265 }
Allan Stephensb52124a2011-05-30 09:44:38 -0400266
267 info = sseq->info;
Allan Stephensf80c24d2011-11-03 11:12:01 -0400268
269 /* Check if an identical publication already exists */
270 list_for_each_entry(publ, &info->zone_list, zone_list) {
271 if ((publ->ref == port) && (publ->key == key) &&
272 (!publ->node || (publ->node == node)))
273 return NULL;
274 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100275 } else {
276 u32 inspos;
277 struct sub_seq *freesseq;
278
279 /* Find where lower end should be inserted */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100280 inspos = nameseq_locate_subseq(nseq, lower);
281
282 /* Fail if upper end overlaps into an existing entry */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100283 if ((inspos < nseq->first_free) &&
284 (upper >= nseq->sseqs[inspos].lower)) {
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 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100289 if (nseq->first_free == nseq->alloc) {
Allan Stephens9ab230f2006-06-25 23:37:24 -0700290 struct sub_seq *sseqs = tipc_subseq_alloc(nseq->alloc * 2);
291
292 if (!sseqs) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400293 pr_warn("Cannot publish {%u,%u,%u}, no memory\n",
294 type, lower, upper);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800295 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100296 }
Allan Stephens9ab230f2006-06-25 23:37:24 -0700297 memcpy(sseqs, nseq->sseqs,
298 nseq->alloc * sizeof(struct sub_seq));
299 kfree(nseq->sseqs);
300 nseq->sseqs = sseqs;
301 nseq->alloc *= 2;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100302 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100303
Allan Stephensb52124a2011-05-30 09:44:38 -0400304 info = kzalloc(sizeof(*info), GFP_ATOMIC);
305 if (!info) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400306 pr_warn("Cannot publish {%u,%u,%u}, no memory\n",
307 type, lower, upper);
Allan Stephensb52124a2011-05-30 09:44:38 -0400308 return NULL;
309 }
310
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400311 INIT_LIST_HEAD(&info->node_list);
312 INIT_LIST_HEAD(&info->cluster_list);
313 INIT_LIST_HEAD(&info->zone_list);
314
Per Lidenb97bf3f2006-01-02 19:04:38 +0100315 /* Insert new sub-sequence */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100316 sseq = &nseq->sseqs[inspos];
317 freesseq = &nseq->sseqs[nseq->first_free];
Allan Stephens0e659672010-12-31 18:59:32 +0000318 memmove(sseq + 1, sseq, (freesseq - sseq) * sizeof(*sseq));
319 memset(sseq, 0, sizeof(*sseq));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100320 nseq->first_free++;
321 sseq->lower = lower;
322 sseq->upper = upper;
Allan Stephensb52124a2011-05-30 09:44:38 -0400323 sseq->info = info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100324 created_subseq = 1;
325 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100326
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400327 /* Insert a publication */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100328 publ = publ_create(type, lower, upper, scope, node, port, key);
329 if (!publ)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800330 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100331
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400332 list_add(&publ->zone_list, &info->zone_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400333 info->zone_list_size++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100334
Allan Stephensd4f5c122012-04-17 18:16:34 -0400335 if (in_own_cluster(node)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400336 list_add(&publ->cluster_list, &info->cluster_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400337 info->cluster_list_size++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100338 }
339
Allan Stephensd4f5c122012-04-17 18:16:34 -0400340 if (in_own_node(node)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400341 list_add(&publ->node_list, &info->node_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400342 info->node_list_size++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100343 }
344
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400345 /* Any subscriptions waiting for notification? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100346 list_for_each_entry_safe(s, st, &nseq->subscriptions, nameseq_list) {
Per Liden4323add2006-01-18 00:38:21 +0100347 tipc_subscr_report_overlap(s,
348 publ->lower,
349 publ->upper,
350 TIPC_PUBLISHED,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900351 publ->ref,
Per Liden4323add2006-01-18 00:38:21 +0100352 publ->node,
353 created_subseq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100354 }
355 return publ;
356}
357
358/**
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400359 * tipc_nameseq_remove_publ
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900360 *
Allan Stephensf1310722006-06-25 23:51:37 -0700361 * NOTE: There may be cases where TIPC is asked to remove a publication
362 * that is not in the name table. For example, if another node issues a
363 * publication for a name sequence that overlaps an existing name sequence
364 * the publication will not be recorded, which means the publication won't
365 * be found when the name sequence is later withdrawn by that node.
366 * A failed withdraw request simply returns a failure indication and lets the
367 * caller issue any error or warning messages associated with such a problem.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100368 */
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;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100373 struct sub_seq *sseq = nameseq_find_subseq(nseq, inst);
Allan Stephensb52124a2011-05-30 09:44:38 -0400374 struct name_info *info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100375 struct sub_seq *free;
Paul Gortmakerfead3902011-12-29 20:43:44 -0500376 struct tipc_subscription *s, *st;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100377 int removed_subseq = 0;
378
Allan Stephensf1310722006-06-25 23:51:37 -0700379 if (!sseq)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800380 return NULL;
Allan Stephensf1310722006-06-25 23:51:37 -0700381
Allan Stephensb52124a2011-05-30 09:44:38 -0400382 info = sseq->info;
383
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400384 /* Locate publication, if it exists */
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400385 list_for_each_entry(publ, &info->zone_list, zone_list) {
386 if ((publ->key == key) && (publ->ref == ref) &&
387 (!publ->node || (publ->node == node)))
388 goto found;
389 }
390 return NULL;
391
392found:
Allan Stephensf1310722006-06-25 23:51:37 -0700393 /* Remove publication from zone scope list */
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400394 list_del(&publ->zone_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400395 info->zone_list_size--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100396
Allan Stephensf1310722006-06-25 23:51:37 -0700397 /* Remove publication from cluster scope list, if present */
Allan Stephensd4f5c122012-04-17 18:16:34 -0400398 if (in_own_cluster(node)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400399 list_del(&publ->cluster_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400400 info->cluster_list_size--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100401 }
Allan Stephensf1310722006-06-25 23:51:37 -0700402
403 /* Remove publication from node scope list, if present */
Allan Stephensd4f5c122012-04-17 18:16:34 -0400404 if (in_own_node(node)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400405 list_del(&publ->node_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400406 info->node_list_size--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100407 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100408
Allan Stephensf1310722006-06-25 23:51:37 -0700409 /* Contract subseq list if no more publications for that subseq */
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400410 if (list_empty(&info->zone_list)) {
Allan Stephensb52124a2011-05-30 09:44:38 -0400411 kfree(info);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100412 free = &nseq->sseqs[nseq->first_free--];
Allan Stephens0e659672010-12-31 18:59:32 +0000413 memmove(sseq, sseq + 1, (free - (sseq + 1)) * sizeof(*sseq));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100414 removed_subseq = 1;
415 }
416
Allan Stephensf1310722006-06-25 23:51:37 -0700417 /* Notify any waiting subscriptions */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100418 list_for_each_entry_safe(s, st, &nseq->subscriptions, nameseq_list) {
Per Liden4323add2006-01-18 00:38:21 +0100419 tipc_subscr_report_overlap(s,
420 publ->lower,
421 publ->upper,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900422 TIPC_WITHDRAWN,
423 publ->ref,
Per Liden4323add2006-01-18 00:38:21 +0100424 publ->node,
425 removed_subseq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100426 }
Allan Stephensf1310722006-06-25 23:51:37 -0700427
Per Lidenb97bf3f2006-01-02 19:04:38 +0100428 return publ;
429}
430
431/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000432 * tipc_nameseq_subscribe - attach a subscription, and issue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100433 * the prescribed number of events if there is any sub-
434 * sequence overlapping with the requested sequence
435 */
Paul Gortmakerfead3902011-12-29 20:43:44 -0500436static void tipc_nameseq_subscribe(struct name_seq *nseq,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400437 struct tipc_subscription *s)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100438{
439 struct sub_seq *sseq = nseq->sseqs;
440
441 list_add(&s->nameseq_list, &nseq->subscriptions);
442
443 if (!sseq)
444 return;
445
446 while (sseq != &nseq->sseqs[nseq->first_free]) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400447 if (tipc_subscr_overlap(s, sseq->lower, sseq->upper)) {
448 struct publication *crs;
449 struct name_info *info = sseq->info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100450 int must_report = 1;
451
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400452 list_for_each_entry(crs, &info->zone_list, zone_list) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900453 tipc_subscr_report_overlap(s,
454 sseq->lower,
Per Liden4323add2006-01-18 00:38:21 +0100455 sseq->upper,
456 TIPC_PUBLISHED,
457 crs->ref,
458 crs->node,
459 must_report);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100460 must_report = 0;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400461 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100462 }
463 sseq++;
464 }
465}
466
467static struct name_seq *nametbl_find_seq(u32 type)
468{
469 struct hlist_head *seq_head;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100470 struct name_seq *ns;
471
Per Lidenb97bf3f2006-01-02 19:04:38 +0100472 seq_head = &table.types[hash(type)];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800473 hlist_for_each_entry(ns, seq_head, ns_list) {
Allan Stephensb29f1422010-12-31 18:59:25 +0000474 if (ns->type == type)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100475 return ns;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100476 }
477
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800478 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100479};
480
Per Liden4323add2006-01-18 00:38:21 +0100481struct publication *tipc_nametbl_insert_publ(u32 type, u32 lower, u32 upper,
482 u32 scope, u32 node, u32 port, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100483{
484 struct name_seq *seq = nametbl_find_seq(type);
485
Allan Stephens8f177892012-04-26 17:57:17 -0400486 if ((scope < TIPC_ZONE_SCOPE) || (scope > TIPC_NODE_SCOPE) ||
487 (lower > upper)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400488 pr_debug("Failed to publish illegal {%u,%u,%u} with scope %u\n",
489 type, lower, upper, scope);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800490 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100491 }
492
Allan Stephensb29f1422010-12-31 18:59:25 +0000493 if (!seq)
Per Liden4323add2006-01-18 00:38:21 +0100494 seq = tipc_nameseq_create(type, &table.types[hash(type)]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100495 if (!seq)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800496 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100497
Per Liden4323add2006-01-18 00:38:21 +0100498 return tipc_nameseq_insert_publ(seq, type, lower, upper,
499 scope, node, port, key);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100500}
501
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900502struct publication *tipc_nametbl_remove_publ(u32 type, u32 lower,
Per Liden4323add2006-01-18 00:38:21 +0100503 u32 node, u32 ref, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100504{
505 struct publication *publ;
506 struct name_seq *seq = nametbl_find_seq(type);
507
508 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 publ = tipc_nameseq_remove_publ(seq, lower, node, ref, key);
Allan Stephensf7fb9d22012-04-26 17:53:03 -0400512 nameseq_delete_empty(seq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100513 return publ;
514}
515
Ben Hutchings2c530402012-07-10 10:55:09 +0000516/**
Allan Stephensbc9f8142011-11-07 17:00:54 -0500517 * tipc_nametbl_translate - perform name translation
Per Lidenb97bf3f2006-01-02 19:04:38 +0100518 *
Allan Stephensbc9f8142011-11-07 17:00:54 -0500519 * On entry, 'destnode' is the search domain used during translation.
520 *
521 * On exit:
522 * - if name translation is deferred to another node/cluster/zone,
523 * leaves 'destnode' unchanged (will be non-zero) and returns 0
524 * - if name translation is attempted and succeeds, sets 'destnode'
525 * to publishing node and returns port reference (will be non-zero)
526 * - if name translation is attempted and fails, sets 'destnode' to 0
527 * and returns 0
Per Lidenb97bf3f2006-01-02 19:04:38 +0100528 */
Per Liden4323add2006-01-18 00:38:21 +0100529u32 tipc_nametbl_translate(u32 type, u32 instance, u32 *destnode)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100530{
531 struct sub_seq *sseq;
Allan Stephensb52124a2011-05-30 09:44:38 -0400532 struct name_info *info;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400533 struct publication *publ;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100534 struct name_seq *seq;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400535 u32 ref = 0;
Allan Stephensbc9f8142011-11-07 17:00:54 -0500536 u32 node = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100537
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000538 if (!tipc_in_scope(*destnode, tipc_own_addr))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100539 return 0;
540
Per Liden4323add2006-01-18 00:38:21 +0100541 read_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100542 seq = nametbl_find_seq(type);
543 if (unlikely(!seq))
544 goto not_found;
545 sseq = nameseq_find_subseq(seq, instance);
546 if (unlikely(!sseq))
547 goto not_found;
548 spin_lock_bh(&seq->lock);
Allan Stephensb52124a2011-05-30 09:44:38 -0400549 info = sseq->info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100550
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400551 /* Closest-First Algorithm */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100552 if (likely(!*destnode)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400553 if (!list_empty(&info->node_list)) {
554 publ = list_first_entry(&info->node_list,
555 struct publication,
556 node_list);
557 list_move_tail(&publ->node_list,
558 &info->node_list);
559 } else if (!list_empty(&info->cluster_list)) {
560 publ = list_first_entry(&info->cluster_list,
561 struct publication,
562 cluster_list);
563 list_move_tail(&publ->cluster_list,
564 &info->cluster_list);
Allan Stephens8af46382011-05-30 11:27:50 -0400565 } else {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400566 publ = list_first_entry(&info->zone_list,
567 struct publication,
568 zone_list);
569 list_move_tail(&publ->zone_list,
570 &info->zone_list);
Allan Stephens8af46382011-05-30 11:27:50 -0400571 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100572 }
573
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400574 /* Round-Robin Algorithm */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100575 else if (*destnode == tipc_own_addr) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400576 if (list_empty(&info->node_list))
577 goto no_match;
578 publ = list_first_entry(&info->node_list, struct publication,
579 node_list);
580 list_move_tail(&publ->node_list, &info->node_list);
Allan Stephens336ebf52012-04-17 18:02:01 -0400581 } else if (in_own_cluster_exact(*destnode)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400582 if (list_empty(&info->cluster_list))
583 goto no_match;
584 publ = list_first_entry(&info->cluster_list, struct publication,
585 cluster_list);
586 list_move_tail(&publ->cluster_list, &info->cluster_list);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100587 } else {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400588 publ = list_first_entry(&info->zone_list, struct publication,
589 zone_list);
590 list_move_tail(&publ->zone_list, &info->zone_list);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100591 }
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400592
593 ref = publ->ref;
Allan Stephensbc9f8142011-11-07 17:00:54 -0500594 node = publ->node;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400595no_match:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100596 spin_unlock_bh(&seq->lock);
597not_found:
Per Liden4323add2006-01-18 00:38:21 +0100598 read_unlock_bh(&tipc_nametbl_lock);
Allan Stephensbc9f8142011-11-07 17:00:54 -0500599 *destnode = node;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400600 return ref;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100601}
602
603/**
Per Liden4323add2006-01-18 00:38:21 +0100604 * tipc_nametbl_mc_translate - find multicast destinations
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900605 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100606 * Creates list of all local ports that overlap the given multicast address;
607 * also determines if any off-node ports overlap.
608 *
609 * Note: Publications with a scope narrower than 'limit' are ignored.
610 * (i.e. local node-scope publications mustn't receive messages arriving
611 * from another node, even if the multcast link brought it here)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900612 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100613 * Returns non-zero if any off-node ports overlap
614 */
Per Liden4323add2006-01-18 00:38:21 +0100615int tipc_nametbl_mc_translate(u32 type, u32 lower, u32 upper, u32 limit,
Paul Gortmaker45843102011-12-29 20:33:30 -0500616 struct tipc_port_list *dports)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100617{
618 struct name_seq *seq;
619 struct sub_seq *sseq;
620 struct sub_seq *sseq_stop;
Allan Stephensb52124a2011-05-30 09:44:38 -0400621 struct name_info *info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100622 int res = 0;
623
Per Liden4323add2006-01-18 00:38:21 +0100624 read_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100625 seq = nametbl_find_seq(type);
626 if (!seq)
627 goto exit;
628
629 spin_lock_bh(&seq->lock);
630
631 sseq = seq->sseqs + nameseq_locate_subseq(seq, lower);
632 sseq_stop = seq->sseqs + seq->first_free;
633 for (; sseq != sseq_stop; sseq++) {
634 struct publication *publ;
635
636 if (sseq->lower > upper)
637 break;
Allan Stephens968edbe2008-07-14 22:45:33 -0700638
Allan Stephensb52124a2011-05-30 09:44:38 -0400639 info = sseq->info;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400640 list_for_each_entry(publ, &info->node_list, node_list) {
641 if (publ->scope <= limit)
642 tipc_port_list_add(dports, publ->ref);
Allan Stephens968edbe2008-07-14 22:45:33 -0700643 }
644
Allan Stephensb52124a2011-05-30 09:44:38 -0400645 if (info->cluster_list_size != info->node_list_size)
Allan Stephens968edbe2008-07-14 22:45:33 -0700646 res = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100647 }
648
649 spin_unlock_bh(&seq->lock);
650exit:
Per Liden4323add2006-01-18 00:38:21 +0100651 read_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100652 return res;
653}
654
Allan Stephensc422f1b2011-11-02 15:49:40 -0400655/*
Per Liden4323add2006-01-18 00:38:21 +0100656 * tipc_nametbl_publish - add name publication to network name tables
Per Lidenb97bf3f2006-01-02 19:04:38 +0100657 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900658struct publication *tipc_nametbl_publish(u32 type, u32 lower, u32 upper,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400659 u32 scope, u32 port_ref, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100660{
661 struct publication *publ;
Ying Xueeab8c0452014-04-28 18:00:10 +0800662 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100663
Ying Xuee6a04b12012-08-16 12:09:14 +0000664 if (table.local_publ_count >= TIPC_MAX_PUBLICATIONS) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400665 pr_warn("Publication failed, local publication limit reached (%u)\n",
Ying Xuee6a04b12012-08-16 12:09:14 +0000666 TIPC_MAX_PUBLICATIONS);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800667 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100668 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100669
Per Liden4323add2006-01-18 00:38:21 +0100670 write_lock_bh(&tipc_nametbl_lock);
Per Liden4323add2006-01-18 00:38:21 +0100671 publ = tipc_nametbl_insert_publ(type, lower, upper, scope,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100672 tipc_own_addr, port_ref, key);
Allan Stephensfd6eced2011-11-09 14:22:52 -0500673 if (likely(publ)) {
674 table.local_publ_count++;
Ying Xueeab8c0452014-04-28 18:00:10 +0800675 buf = tipc_named_publish(publ);
Erik Hugnea5325ae2014-08-28 09:08:47 +0200676 /* Any pending external events? */
677 tipc_named_process_backlog();
Allan Stephensfd6eced2011-11-09 14:22:52 -0500678 }
Per Liden4323add2006-01-18 00:38:21 +0100679 write_unlock_bh(&tipc_nametbl_lock);
Ying Xueeab8c0452014-04-28 18:00:10 +0800680
681 if (buf)
682 named_cluster_distribute(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100683 return publ;
684}
685
686/**
Per Liden4323add2006-01-18 00:38:21 +0100687 * tipc_nametbl_withdraw - withdraw name publication from network name tables
Per Lidenb97bf3f2006-01-02 19:04:38 +0100688 */
Per Liden4323add2006-01-18 00:38:21 +0100689int tipc_nametbl_withdraw(u32 type, u32 lower, u32 ref, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100690{
691 struct publication *publ;
Ying Xueeab8c0452014-04-28 18:00:10 +0800692 struct sk_buff *buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100693
Per Liden4323add2006-01-18 00:38:21 +0100694 write_lock_bh(&tipc_nametbl_lock);
695 publ = tipc_nametbl_remove_publ(type, lower, tipc_own_addr, ref, key);
Allan Stephensf1310722006-06-25 23:51:37 -0700696 if (likely(publ)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100697 table.local_publ_count--;
Ying Xueeab8c0452014-04-28 18:00:10 +0800698 buf = tipc_named_withdraw(publ);
Erik Hugnea5325ae2014-08-28 09:08:47 +0200699 /* Any pending external events? */
700 tipc_named_process_backlog();
Per Liden4323add2006-01-18 00:38:21 +0100701 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100702 list_del_init(&publ->pport_list);
703 kfree(publ);
Ying Xueeab8c0452014-04-28 18:00:10 +0800704
705 if (buf)
706 named_cluster_distribute(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100707 return 1;
708 }
Per Liden4323add2006-01-18 00:38:21 +0100709 write_unlock_bh(&tipc_nametbl_lock);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400710 pr_err("Unable to remove local publication\n"
711 "(type=%u, lower=%u, ref=%u, key=%u)\n",
712 type, lower, ref, key);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100713 return 0;
714}
715
716/**
Per Liden4323add2006-01-18 00:38:21 +0100717 * tipc_nametbl_subscribe - add a subscription object to the name table
Per Lidenb97bf3f2006-01-02 19:04:38 +0100718 */
Paul Gortmakerfead3902011-12-29 20:43:44 -0500719void tipc_nametbl_subscribe(struct tipc_subscription *s)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100720{
721 u32 type = s->seq.type;
722 struct name_seq *seq;
723
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900724 write_lock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100725 seq = nametbl_find_seq(type);
Allan Stephensa0168922010-12-31 18:59:35 +0000726 if (!seq)
Per Liden4323add2006-01-18 00:38:21 +0100727 seq = tipc_nameseq_create(type, &table.types[hash(type)]);
Allan Stephens0e659672010-12-31 18:59:32 +0000728 if (seq) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900729 spin_lock_bh(&seq->lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900730 tipc_nameseq_subscribe(seq, s);
731 spin_unlock_bh(&seq->lock);
732 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400733 pr_warn("Failed to create subscription for {%u,%u,%u}\n",
734 s->seq.type, s->seq.lower, s->seq.upper);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900735 }
736 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100737}
738
739/**
Per Liden4323add2006-01-18 00:38:21 +0100740 * tipc_nametbl_unsubscribe - remove a subscription object from name table
Per Lidenb97bf3f2006-01-02 19:04:38 +0100741 */
Paul Gortmakerfead3902011-12-29 20:43:44 -0500742void tipc_nametbl_unsubscribe(struct tipc_subscription *s)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100743{
744 struct name_seq *seq;
745
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900746 write_lock_bh(&tipc_nametbl_lock);
747 seq = nametbl_find_seq(s->seq.type);
Allan Stephens0e659672010-12-31 18:59:32 +0000748 if (seq != NULL) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900749 spin_lock_bh(&seq->lock);
750 list_del_init(&s->nameseq_list);
751 spin_unlock_bh(&seq->lock);
Allan Stephensf7fb9d22012-04-26 17:53:03 -0400752 nameseq_delete_empty(seq);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900753 }
754 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100755}
756
757
758/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000759 * subseq_list - print specified sub-sequence contents into the given buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100760 */
Erik Hugnedc1aed32012-06-29 00:50:23 -0400761static int subseq_list(struct sub_seq *sseq, char *buf, int len, u32 depth,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400762 u32 index)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100763{
764 char portIdStr[27];
Allan Stephensc2de5812010-08-17 11:00:14 +0000765 const char *scope_str[] = {"", " zone", " cluster", " node"};
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400766 struct publication *publ;
767 struct name_info *info;
Erik Hugnedc1aed32012-06-29 00:50:23 -0400768 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100769
Erik Hugnedc1aed32012-06-29 00:50:23 -0400770 ret = tipc_snprintf(buf, len, "%-10u %-10u ", sseq->lower, sseq->upper);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100771
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400772 if (depth == 2) {
Erik Hugnedc1aed32012-06-29 00:50:23 -0400773 ret += tipc_snprintf(buf - ret, len + ret, "\n");
774 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100775 }
776
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400777 info = sseq->info;
778
779 list_for_each_entry(publ, &info->zone_list, zone_list) {
Allan Stephens0e659672010-12-31 18:59:32 +0000780 sprintf(portIdStr, "<%u.%u.%u:%u>",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100781 tipc_zone(publ->node), tipc_cluster(publ->node),
782 tipc_node(publ->node), publ->ref);
Erik Hugnedc1aed32012-06-29 00:50:23 -0400783 ret += tipc_snprintf(buf + ret, len - ret, "%-26s ", portIdStr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100784 if (depth > 3) {
Erik Hugnedc1aed32012-06-29 00:50:23 -0400785 ret += tipc_snprintf(buf + ret, len - ret, "%-10u %s",
786 publ->key, scope_str[publ->scope]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100787 }
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400788 if (!list_is_last(&publ->zone_list, &info->zone_list))
Erik Hugnedc1aed32012-06-29 00:50:23 -0400789 ret += tipc_snprintf(buf + ret, len - ret,
790 "\n%33s", " ");
Peter Senna Tschudinadccff32012-09-18 07:10:45 +0000791 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100792
Erik Hugnedc1aed32012-06-29 00:50:23 -0400793 ret += tipc_snprintf(buf + ret, len - ret, "\n");
794 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100795}
796
797/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000798 * nameseq_list - print specified name sequence contents into the given buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100799 */
Erik Hugnedc1aed32012-06-29 00:50:23 -0400800static int nameseq_list(struct name_seq *seq, char *buf, int len, u32 depth,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400801 u32 type, u32 lowbound, u32 upbound, u32 index)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100802{
803 struct sub_seq *sseq;
804 char typearea[11];
Erik Hugnedc1aed32012-06-29 00:50:23 -0400805 int ret = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100806
Allan Stephens0f15d362008-06-04 17:37:59 -0700807 if (seq->first_free == 0)
Erik Hugnedc1aed32012-06-29 00:50:23 -0400808 return 0;
Allan Stephens0f15d362008-06-04 17:37:59 -0700809
Per Lidenb97bf3f2006-01-02 19:04:38 +0100810 sprintf(typearea, "%-10u", seq->type);
811
812 if (depth == 1) {
Erik Hugnedc1aed32012-06-29 00:50:23 -0400813 ret += tipc_snprintf(buf, len, "%s\n", typearea);
814 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100815 }
816
817 for (sseq = seq->sseqs; sseq != &seq->sseqs[seq->first_free]; sseq++) {
818 if ((lowbound <= sseq->upper) && (upbound >= sseq->lower)) {
Erik Hugnedc1aed32012-06-29 00:50:23 -0400819 ret += tipc_snprintf(buf + ret, len - ret, "%s ",
820 typearea);
Allan Stephens307fdf52008-06-04 17:38:22 -0700821 spin_lock_bh(&seq->lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -0400822 ret += subseq_list(sseq, buf + ret, len - ret,
823 depth, index);
Allan Stephens307fdf52008-06-04 17:38:22 -0700824 spin_unlock_bh(&seq->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100825 sprintf(typearea, "%10s", " ");
826 }
827 }
Erik Hugnedc1aed32012-06-29 00:50:23 -0400828 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100829}
830
831/**
832 * nametbl_header - print name table header into the given buffer
833 */
Erik Hugnedc1aed32012-06-29 00:50:23 -0400834static int nametbl_header(char *buf, int len, u32 depth)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100835{
Allan Stephensc2de5812010-08-17 11:00:14 +0000836 const char *header[] = {
837 "Type ",
838 "Lower Upper ",
839 "Port Identity ",
840 "Publication Scope"
841 };
Per Lidenb97bf3f2006-01-02 19:04:38 +0100842
Allan Stephensc2de5812010-08-17 11:00:14 +0000843 int i;
Erik Hugnedc1aed32012-06-29 00:50:23 -0400844 int ret = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100845
Allan Stephensc2de5812010-08-17 11:00:14 +0000846 if (depth > 4)
847 depth = 4;
848 for (i = 0; i < depth; i++)
Erik Hugnedc1aed32012-06-29 00:50:23 -0400849 ret += tipc_snprintf(buf + ret, len - ret, header[i]);
850 ret += tipc_snprintf(buf + ret, len - ret, "\n");
851 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100852}
853
854/**
855 * nametbl_list - print specified name table contents into the given buffer
856 */
Erik Hugnedc1aed32012-06-29 00:50:23 -0400857static int nametbl_list(char *buf, int len, u32 depth_info,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400858 u32 type, u32 lowbound, u32 upbound)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100859{
860 struct hlist_head *seq_head;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100861 struct name_seq *seq;
862 int all_types;
Erik Hugnedc1aed32012-06-29 00:50:23 -0400863 int ret = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100864 u32 depth;
865 u32 i;
866
867 all_types = (depth_info & TIPC_NTQ_ALLTYPES);
868 depth = (depth_info & ~TIPC_NTQ_ALLTYPES);
869
870 if (depth == 0)
Erik Hugnedc1aed32012-06-29 00:50:23 -0400871 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100872
873 if (all_types) {
874 /* display all entries in name table to specified depth */
Erik Hugnedc1aed32012-06-29 00:50:23 -0400875 ret += nametbl_header(buf, len, depth);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100876 lowbound = 0;
877 upbound = ~0;
Ying Xuef046e7d2012-08-16 12:09:11 +0000878 for (i = 0; i < TIPC_NAMETBL_SIZE; i++) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100879 seq_head = &table.types[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800880 hlist_for_each_entry(seq, seq_head, ns_list) {
Erik Hugnedc1aed32012-06-29 00:50:23 -0400881 ret += nameseq_list(seq, buf + ret, len - ret,
882 depth, seq->type,
883 lowbound, upbound, i);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100884 }
885 }
886 } else {
887 /* display only the sequence that matches the specified type */
888 if (upbound < lowbound) {
Erik Hugnedc1aed32012-06-29 00:50:23 -0400889 ret += tipc_snprintf(buf + ret, len - ret,
890 "invalid name sequence specified\n");
891 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100892 }
Erik Hugnedc1aed32012-06-29 00:50:23 -0400893 ret += nametbl_header(buf + ret, len - ret, depth);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100894 i = hash(type);
895 seq_head = &table.types[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800896 hlist_for_each_entry(seq, seq_head, ns_list) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100897 if (seq->type == type) {
Erik Hugnedc1aed32012-06-29 00:50:23 -0400898 ret += nameseq_list(seq, buf + ret, len - ret,
899 depth, type,
900 lowbound, upbound, i);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100901 break;
902 }
903 }
904 }
Erik Hugnedc1aed32012-06-29 00:50:23 -0400905 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100906}
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;
Erik Hugnedc1aed32012-06-29 00:50:23 -0400913 char *pb;
914 int pb_len;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100915 int str_len;
916
917 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_NAME_TBL_QUERY))
Per Liden4323add2006-01-18 00:38:21 +0100918 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100919
Erik Hugnedc1aed32012-06-29 00:50:23 -0400920 buf = tipc_cfg_reply_alloc(TLV_SPACE(ULTRA_STRING_MAX_LEN));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100921 if (!buf)
922 return NULL;
923
924 rep_tlv = (struct tlv_desc *)buf->data;
Erik Hugnedc1aed32012-06-29 00:50:23 -0400925 pb = TLV_DATA(rep_tlv);
926 pb_len = ULTRA_STRING_MAX_LEN;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100927 argv = (struct tipc_name_table_query *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +0100928 read_lock_bh(&tipc_nametbl_lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -0400929 str_len = nametbl_list(pb, pb_len, ntohl(argv->depth),
930 ntohl(argv->type),
931 ntohl(argv->lowbound), ntohl(argv->upbound));
Per Liden4323add2006-01-18 00:38:21 +0100932 read_unlock_bh(&tipc_nametbl_lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -0400933 str_len += 1; /* for "\0" */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100934 skb_put(buf, TLV_SPACE(str_len));
935 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
936
937 return buf;
938}
939
Per Liden4323add2006-01-18 00:38:21 +0100940int tipc_nametbl_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100941{
Ying Xuef046e7d2012-08-16 12:09:11 +0000942 table.types = kcalloc(TIPC_NAMETBL_SIZE, sizeof(struct hlist_head),
Allan Stephens4e3e6dc2008-05-12 15:41:53 -0700943 GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100944 if (!table.types)
945 return -ENOMEM;
946
Per Lidenb97bf3f2006-01-02 19:04:38 +0100947 table.local_publ_count = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100948 return 0;
949}
950
Erik Hugne1bb8dce2014-03-06 14:40:20 +0100951/**
952 * tipc_purge_publications - remove all publications for a given type
953 *
954 * tipc_nametbl_lock must be held when calling this function
955 */
956static void tipc_purge_publications(struct name_seq *seq)
957{
958 struct publication *publ, *safe;
959 struct sub_seq *sseq;
960 struct name_info *info;
961
962 if (!seq->sseqs) {
963 nameseq_delete_empty(seq);
964 return;
965 }
966 sseq = seq->sseqs;
967 info = sseq->info;
968 list_for_each_entry_safe(publ, safe, &info->zone_list, zone_list) {
969 tipc_nametbl_remove_publ(publ->type, publ->lower, publ->node,
970 publ->ref, publ->key);
Ying Xue1621b942014-04-29 11:12:18 +0800971 kfree(publ);
Erik Hugne1bb8dce2014-03-06 14:40:20 +0100972 }
973}
974
Per Liden4323add2006-01-18 00:38:21 +0100975void tipc_nametbl_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100976{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100977 u32 i;
Erik Hugne1bb8dce2014-03-06 14:40:20 +0100978 struct name_seq *seq;
979 struct hlist_head *seq_head;
980 struct hlist_node *safe;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100981
Erik Hugne1bb8dce2014-03-06 14:40:20 +0100982 /* Verify name table is empty and purge any lingering
983 * publications, then release the name table
984 */
Per Liden4323add2006-01-18 00:38:21 +0100985 write_lock_bh(&tipc_nametbl_lock);
Ying Xuef046e7d2012-08-16 12:09:11 +0000986 for (i = 0; i < TIPC_NAMETBL_SIZE; i++) {
Paul Gortmakerf705ab92012-07-11 17:35:01 -0400987 if (hlist_empty(&table.types[i]))
988 continue;
Erik Hugne1bb8dce2014-03-06 14:40:20 +0100989 seq_head = &table.types[i];
990 hlist_for_each_entry_safe(seq, safe, seq_head, ns_list) {
991 tipc_purge_publications(seq);
992 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100993 }
994 kfree(table.types);
995 table.types = NULL;
Per Liden4323add2006-01-18 00:38:21 +0100996 write_unlock_bh(&tipc_nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100997}