blob: ab0ac62a12879b068ef4d34aa360bf8839676b2c [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 *
Jon Paul Maloy3c724ac2015-02-05 08:36:43 -05004 * Copyright (c) 2000-2006, 2014-2015, Ericsson AB
Ying Xue993bfe52014-12-02 15:00:24 +08005 * Copyright (c) 2004-2008, 2010-2014, 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
Ying Xue4ac1c8d2015-01-09 15:27:09 +080037#include <net/sock.h>
Per Lidenb97bf3f2006-01-02 19:04:38 +010038#include "core.h"
Richard Alpe22ae7cf2015-02-09 09:50:18 +010039#include "netlink.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "name_table.h"
41#include "name_distr.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010042#include "subscr.h"
Ying Xue1da46562015-01-09 15:27:07 +080043#include "bcast.h"
Richard Alpe22ae7cf2015-02-09 09:50:18 +010044#include "addr.h"
45#include <net/genetlink.h>
Per Lidenb97bf3f2006-01-02 19:04:38 +010046
Ying Xuef046e7d2012-08-16 12:09:11 +000047#define TIPC_NAMETBL_SIZE 1024 /* must be a power of 2 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010048
Richard Alpe15931232014-11-20 10:29:20 +010049static const struct nla_policy
50tipc_nl_name_table_policy[TIPC_NLA_NAME_TABLE_MAX + 1] = {
51 [TIPC_NLA_NAME_TABLE_UNSPEC] = { .type = NLA_UNSPEC },
52 [TIPC_NLA_NAME_TABLE_PUBL] = { .type = NLA_NESTED }
53};
54
Per Lidenb97bf3f2006-01-02 19:04:38 +010055/**
Allan Stephensb52124a2011-05-30 09:44:38 -040056 * struct name_info - name sequence publication info
Allan Stephens968edbe2008-07-14 22:45:33 -070057 * @node_list: circular list of publications made by own node
58 * @cluster_list: circular list of publications made by own cluster
59 * @zone_list: circular list of publications made by own zone
60 * @node_list_size: number of entries in "node_list"
61 * @cluster_list_size: number of entries in "cluster_list"
62 * @zone_list_size: number of entries in "zone_list"
63 *
64 * Note: The zone list always contains at least one entry, since all
65 * publications of the associated name sequence belong to it.
66 * (The cluster and node lists may be empty.)
Per Lidenb97bf3f2006-01-02 19:04:38 +010067 */
Allan Stephensb52124a2011-05-30 09:44:38 -040068struct name_info {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -040069 struct list_head node_list;
70 struct list_head cluster_list;
71 struct list_head zone_list;
Allan Stephens968edbe2008-07-14 22:45:33 -070072 u32 node_list_size;
73 u32 cluster_list_size;
74 u32 zone_list_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +010075};
76
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090077/**
Allan Stephensb52124a2011-05-30 09:44:38 -040078 * struct sub_seq - container for all published instances of a name sequence
79 * @lower: name sequence lower bound
80 * @upper: name sequence upper bound
81 * @info: pointer to name sequence publication info
82 */
Allan Stephensb52124a2011-05-30 09:44:38 -040083struct sub_seq {
84 u32 lower;
85 u32 upper;
86 struct name_info *info;
87};
88
89/**
Per Lidenb97bf3f2006-01-02 19:04:38 +010090 * struct name_seq - container for all published instances of a name type
91 * @type: 32 bit 'type' value for name sequence
92 * @sseq: pointer to dynamically-sized array of sub-sequences of this 'type';
93 * sub-sequences are sorted in ascending order
94 * @alloc: number of sub-sequences currently in array
Allan Stephensf1310722006-06-25 23:51:37 -070095 * @first_free: array index of first unused sub-sequence entry
Per Lidenb97bf3f2006-01-02 19:04:38 +010096 * @ns_list: links to adjacent name sequences in hash chain
97 * @subscriptions: list of subscriptions for this 'type'
Allan Stephens307fdf52008-06-04 17:38:22 -070098 * @lock: spinlock controlling access to publication lists of all sub-sequences
Ying Xue97ede292014-12-02 15:00:30 +080099 * @rcu: RCU callback head used for deferred freeing
Per Lidenb97bf3f2006-01-02 19:04:38 +0100100 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100101struct name_seq {
102 u32 type;
103 struct sub_seq *sseqs;
104 u32 alloc;
105 u32 first_free;
106 struct hlist_node ns_list;
107 struct list_head subscriptions;
108 spinlock_t lock;
Ying Xue97ede292014-12-02 15:00:30 +0800109 struct rcu_head rcu;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100110};
111
Sam Ravnborg05790c62006-03-20 22:37:04 -0800112static int hash(int x)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100113{
Ying Xuef046e7d2012-08-16 12:09:11 +0000114 return x & (TIPC_NAMETBL_SIZE - 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100115}
116
117/**
118 * publ_create - create a publication structure
119 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900120static struct publication *publ_create(u32 type, u32 lower, u32 upper,
121 u32 scope, u32 node, u32 port_ref,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122 u32 key)
123{
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700124 struct publication *publ = kzalloc(sizeof(*publ), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100125 if (publ == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400126 pr_warn("Publication creation failure, no memory\n");
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800127 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100128 }
129
Per Lidenb97bf3f2006-01-02 19:04:38 +0100130 publ->type = type;
131 publ->lower = lower;
132 publ->upper = upper;
133 publ->scope = scope;
134 publ->node = node;
135 publ->ref = port_ref;
136 publ->key = key;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100137 INIT_LIST_HEAD(&publ->pport_list);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100138 return publ;
139}
140
141/**
Per Liden4323add2006-01-18 00:38:21 +0100142 * tipc_subseq_alloc - allocate a specified number of sub-sequence structures
Per Lidenb97bf3f2006-01-02 19:04:38 +0100143 */
Adrian Bunk988f0882006-03-20 22:37:52 -0800144static struct sub_seq *tipc_subseq_alloc(u32 cnt)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100145{
wangweidong0cee6bb2013-12-12 09:36:39 +0800146 return kcalloc(cnt, sizeof(struct sub_seq), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100147}
148
149/**
Per Liden4323add2006-01-18 00:38:21 +0100150 * tipc_nameseq_create - create a name sequence structure for the specified 'type'
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900151 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100152 * Allocates a single sub-sequence structure and sets it to all 0's.
153 */
Adrian Bunk988f0882006-03-20 22:37:52 -0800154static struct name_seq *tipc_nameseq_create(u32 type, struct hlist_head *seq_head)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100155{
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700156 struct name_seq *nseq = kzalloc(sizeof(*nseq), GFP_ATOMIC);
Per Liden4323add2006-01-18 00:38:21 +0100157 struct sub_seq *sseq = tipc_subseq_alloc(1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100158
159 if (!nseq || !sseq) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400160 pr_warn("Name sequence creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100161 kfree(nseq);
162 kfree(sseq);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800163 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100164 }
165
Ingo Molnar34af9462006-06-27 02:53:55 -0700166 spin_lock_init(&nseq->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100167 nseq->type = type;
168 nseq->sseqs = sseq;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100169 nseq->alloc = 1;
170 INIT_HLIST_NODE(&nseq->ns_list);
171 INIT_LIST_HEAD(&nseq->subscriptions);
Ying Xue97ede292014-12-02 15:00:30 +0800172 hlist_add_head_rcu(&nseq->ns_list, seq_head);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100173 return nseq;
174}
175
Ben Hutchings2c530402012-07-10 10:55:09 +0000176/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100177 * nameseq_find_subseq - find sub-sequence (if any) matching a name instance
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900178 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100179 * Very time-critical, so binary searches through sub-sequence array.
180 */
Sam Ravnborg05790c62006-03-20 22:37:04 -0800181static struct sub_seq *nameseq_find_subseq(struct name_seq *nseq,
182 u32 instance)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100183{
184 struct sub_seq *sseqs = nseq->sseqs;
185 int low = 0;
186 int high = nseq->first_free - 1;
187 int mid;
188
189 while (low <= high) {
190 mid = (low + high) / 2;
191 if (instance < sseqs[mid].lower)
192 high = mid - 1;
193 else if (instance > sseqs[mid].upper)
194 low = mid + 1;
195 else
196 return &sseqs[mid];
197 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800198 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100199}
200
201/**
202 * nameseq_locate_subseq - determine position of name instance in sub-sequence
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900203 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100204 * Returns index in sub-sequence array of the entry that contains the specified
205 * instance value; if no entry contains that value, returns the position
206 * where a new entry for it would be inserted in the array.
207 *
208 * Note: Similar to binary search code for locating a sub-sequence.
209 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100210static u32 nameseq_locate_subseq(struct name_seq *nseq, u32 instance)
211{
212 struct sub_seq *sseqs = nseq->sseqs;
213 int low = 0;
214 int high = nseq->first_free - 1;
215 int mid;
216
217 while (low <= high) {
218 mid = (low + high) / 2;
219 if (instance < sseqs[mid].lower)
220 high = mid - 1;
221 else if (instance > sseqs[mid].upper)
222 low = mid + 1;
223 else
224 return mid;
225 }
226 return low;
227}
228
229/**
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400230 * tipc_nameseq_insert_publ
Per Lidenb97bf3f2006-01-02 19:04:38 +0100231 */
Ying Xue34747532015-01-09 15:27:10 +0800232static struct publication *tipc_nameseq_insert_publ(struct net *net,
233 struct name_seq *nseq,
234 u32 type, u32 lower,
235 u32 upper, u32 scope,
236 u32 node, u32 port, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100237{
Paul Gortmakerfead3902011-12-29 20:43:44 -0500238 struct tipc_subscription *s;
239 struct tipc_subscription *st;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100240 struct publication *publ;
241 struct sub_seq *sseq;
Allan Stephensb52124a2011-05-30 09:44:38 -0400242 struct name_info *info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100243 int created_subseq = 0;
244
Per Lidenb97bf3f2006-01-02 19:04:38 +0100245 sseq = nameseq_find_subseq(nseq, lower);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100246 if (sseq) {
247
248 /* Lower end overlaps existing entry => need an exact match */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100249 if ((sseq->lower != lower) || (sseq->upper != upper)) {
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800250 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100251 }
Allan Stephensb52124a2011-05-30 09:44:38 -0400252
253 info = sseq->info;
Allan Stephensf80c24d2011-11-03 11:12:01 -0400254
255 /* Check if an identical publication already exists */
256 list_for_each_entry(publ, &info->zone_list, zone_list) {
257 if ((publ->ref == port) && (publ->key == key) &&
258 (!publ->node || (publ->node == node)))
259 return NULL;
260 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100261 } else {
262 u32 inspos;
263 struct sub_seq *freesseq;
264
265 /* Find where lower end should be inserted */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100266 inspos = nameseq_locate_subseq(nseq, lower);
267
268 /* Fail if upper end overlaps into an existing entry */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100269 if ((inspos < nseq->first_free) &&
270 (upper >= nseq->sseqs[inspos].lower)) {
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800271 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100272 }
273
274 /* Ensure there is space for new sub-sequence */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100275 if (nseq->first_free == nseq->alloc) {
Allan Stephens9ab230f2006-06-25 23:37:24 -0700276 struct sub_seq *sseqs = tipc_subseq_alloc(nseq->alloc * 2);
277
278 if (!sseqs) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400279 pr_warn("Cannot publish {%u,%u,%u}, no memory\n",
280 type, lower, upper);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800281 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100282 }
Allan Stephens9ab230f2006-06-25 23:37:24 -0700283 memcpy(sseqs, nseq->sseqs,
284 nseq->alloc * sizeof(struct sub_seq));
285 kfree(nseq->sseqs);
286 nseq->sseqs = sseqs;
287 nseq->alloc *= 2;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100288 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100289
Allan Stephensb52124a2011-05-30 09:44:38 -0400290 info = kzalloc(sizeof(*info), GFP_ATOMIC);
291 if (!info) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400292 pr_warn("Cannot publish {%u,%u,%u}, no memory\n",
293 type, lower, upper);
Allan Stephensb52124a2011-05-30 09:44:38 -0400294 return NULL;
295 }
296
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400297 INIT_LIST_HEAD(&info->node_list);
298 INIT_LIST_HEAD(&info->cluster_list);
299 INIT_LIST_HEAD(&info->zone_list);
300
Per Lidenb97bf3f2006-01-02 19:04:38 +0100301 /* Insert new sub-sequence */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100302 sseq = &nseq->sseqs[inspos];
303 freesseq = &nseq->sseqs[nseq->first_free];
Allan Stephens0e659672010-12-31 18:59:32 +0000304 memmove(sseq + 1, sseq, (freesseq - sseq) * sizeof(*sseq));
305 memset(sseq, 0, sizeof(*sseq));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100306 nseq->first_free++;
307 sseq->lower = lower;
308 sseq->upper = upper;
Allan Stephensb52124a2011-05-30 09:44:38 -0400309 sseq->info = info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100310 created_subseq = 1;
311 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100312
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400313 /* Insert a publication */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100314 publ = publ_create(type, lower, upper, scope, node, port, key);
315 if (!publ)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800316 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100317
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400318 list_add(&publ->zone_list, &info->zone_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400319 info->zone_list_size++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100320
Ying Xue34747532015-01-09 15:27:10 +0800321 if (in_own_cluster(net, node)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400322 list_add(&publ->cluster_list, &info->cluster_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400323 info->cluster_list_size++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100324 }
325
Ying Xue34747532015-01-09 15:27:10 +0800326 if (in_own_node(net, node)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400327 list_add(&publ->node_list, &info->node_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400328 info->node_list_size++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100329 }
330
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400331 /* Any subscriptions waiting for notification? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100332 list_for_each_entry_safe(s, st, &nseq->subscriptions, nameseq_list) {
Per Liden4323add2006-01-18 00:38:21 +0100333 tipc_subscr_report_overlap(s,
334 publ->lower,
335 publ->upper,
336 TIPC_PUBLISHED,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900337 publ->ref,
Per Liden4323add2006-01-18 00:38:21 +0100338 publ->node,
339 created_subseq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100340 }
341 return publ;
342}
343
344/**
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400345 * tipc_nameseq_remove_publ
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900346 *
Allan Stephensf1310722006-06-25 23:51:37 -0700347 * NOTE: There may be cases where TIPC is asked to remove a publication
348 * that is not in the name table. For example, if another node issues a
349 * publication for a name sequence that overlaps an existing name sequence
350 * the publication will not be recorded, which means the publication won't
351 * be found when the name sequence is later withdrawn by that node.
352 * A failed withdraw request simply returns a failure indication and lets the
353 * caller issue any error or warning messages associated with such a problem.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100354 */
Ying Xue34747532015-01-09 15:27:10 +0800355static struct publication *tipc_nameseq_remove_publ(struct net *net,
356 struct name_seq *nseq,
357 u32 inst, u32 node,
358 u32 ref, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100359{
360 struct publication *publ;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100361 struct sub_seq *sseq = nameseq_find_subseq(nseq, inst);
Allan Stephensb52124a2011-05-30 09:44:38 -0400362 struct name_info *info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100363 struct sub_seq *free;
Paul Gortmakerfead3902011-12-29 20:43:44 -0500364 struct tipc_subscription *s, *st;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100365 int removed_subseq = 0;
366
Allan Stephensf1310722006-06-25 23:51:37 -0700367 if (!sseq)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800368 return NULL;
Allan Stephensf1310722006-06-25 23:51:37 -0700369
Allan Stephensb52124a2011-05-30 09:44:38 -0400370 info = sseq->info;
371
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400372 /* Locate publication, if it exists */
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400373 list_for_each_entry(publ, &info->zone_list, zone_list) {
374 if ((publ->key == key) && (publ->ref == ref) &&
375 (!publ->node || (publ->node == node)))
376 goto found;
377 }
378 return NULL;
379
380found:
Allan Stephensf1310722006-06-25 23:51:37 -0700381 /* Remove publication from zone scope list */
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400382 list_del(&publ->zone_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400383 info->zone_list_size--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100384
Allan Stephensf1310722006-06-25 23:51:37 -0700385 /* Remove publication from cluster scope list, if present */
Ying Xue34747532015-01-09 15:27:10 +0800386 if (in_own_cluster(net, node)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400387 list_del(&publ->cluster_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400388 info->cluster_list_size--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100389 }
Allan Stephensf1310722006-06-25 23:51:37 -0700390
391 /* Remove publication from node scope list, if present */
Ying Xue34747532015-01-09 15:27:10 +0800392 if (in_own_node(net, node)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400393 list_del(&publ->node_list);
Allan Stephensb52124a2011-05-30 09:44:38 -0400394 info->node_list_size--;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100395 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100396
Allan Stephensf1310722006-06-25 23:51:37 -0700397 /* Contract subseq list if no more publications for that subseq */
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400398 if (list_empty(&info->zone_list)) {
Allan Stephensb52124a2011-05-30 09:44:38 -0400399 kfree(info);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100400 free = &nseq->sseqs[nseq->first_free--];
Allan Stephens0e659672010-12-31 18:59:32 +0000401 memmove(sseq, sseq + 1, (free - (sseq + 1)) * sizeof(*sseq));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100402 removed_subseq = 1;
403 }
404
Allan Stephensf1310722006-06-25 23:51:37 -0700405 /* Notify any waiting subscriptions */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100406 list_for_each_entry_safe(s, st, &nseq->subscriptions, nameseq_list) {
Per Liden4323add2006-01-18 00:38:21 +0100407 tipc_subscr_report_overlap(s,
408 publ->lower,
409 publ->upper,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900410 TIPC_WITHDRAWN,
411 publ->ref,
Per Liden4323add2006-01-18 00:38:21 +0100412 publ->node,
413 removed_subseq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100414 }
Allan Stephensf1310722006-06-25 23:51:37 -0700415
Per Lidenb97bf3f2006-01-02 19:04:38 +0100416 return publ;
417}
418
419/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000420 * tipc_nameseq_subscribe - attach a subscription, and issue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100421 * the prescribed number of events if there is any sub-
422 * sequence overlapping with the requested sequence
423 */
Paul Gortmakerfead3902011-12-29 20:43:44 -0500424static void tipc_nameseq_subscribe(struct name_seq *nseq,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400425 struct tipc_subscription *s)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100426{
427 struct sub_seq *sseq = nseq->sseqs;
428
429 list_add(&s->nameseq_list, &nseq->subscriptions);
430
431 if (!sseq)
432 return;
433
434 while (sseq != &nseq->sseqs[nseq->first_free]) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400435 if (tipc_subscr_overlap(s, sseq->lower, sseq->upper)) {
436 struct publication *crs;
437 struct name_info *info = sseq->info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100438 int must_report = 1;
439
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400440 list_for_each_entry(crs, &info->zone_list, zone_list) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900441 tipc_subscr_report_overlap(s,
442 sseq->lower,
Per Liden4323add2006-01-18 00:38:21 +0100443 sseq->upper,
444 TIPC_PUBLISHED,
445 crs->ref,
446 crs->node,
447 must_report);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100448 must_report = 0;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400449 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100450 }
451 sseq++;
452 }
453}
454
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800455static struct name_seq *nametbl_find_seq(struct net *net, u32 type)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100456{
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800457 struct tipc_net *tn = net_generic(net, tipc_net_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100458 struct hlist_head *seq_head;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100459 struct name_seq *ns;
460
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800461 seq_head = &tn->nametbl->seq_hlist[hash(type)];
Ying Xue97ede292014-12-02 15:00:30 +0800462 hlist_for_each_entry_rcu(ns, seq_head, ns_list) {
Allan Stephensb29f1422010-12-31 18:59:25 +0000463 if (ns->type == type)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100464 return ns;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100465 }
466
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800467 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100468};
469
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800470struct publication *tipc_nametbl_insert_publ(struct net *net, u32 type,
471 u32 lower, u32 upper, u32 scope,
472 u32 node, u32 port, u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100473{
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800474 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xuefb9962f2014-12-02 15:00:26 +0800475 struct publication *publ;
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800476 struct name_seq *seq = nametbl_find_seq(net, type);
Ying Xue993bfe52014-12-02 15:00:24 +0800477 int index = hash(type);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100478
Allan Stephens8f177892012-04-26 17:57:17 -0400479 if ((scope < TIPC_ZONE_SCOPE) || (scope > TIPC_NODE_SCOPE) ||
480 (lower > upper)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400481 pr_debug("Failed to publish illegal {%u,%u,%u} with scope %u\n",
482 type, lower, upper, scope);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800483 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100484 }
485
Allan Stephensb29f1422010-12-31 18:59:25 +0000486 if (!seq)
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800487 seq = tipc_nameseq_create(type, &tn->nametbl->seq_hlist[index]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100488 if (!seq)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800489 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100490
Ying Xuefb9962f2014-12-02 15:00:26 +0800491 spin_lock_bh(&seq->lock);
Ying Xue34747532015-01-09 15:27:10 +0800492 publ = tipc_nameseq_insert_publ(net, seq, type, lower, upper,
Per Liden4323add2006-01-18 00:38:21 +0100493 scope, node, port, key);
Ying Xuefb9962f2014-12-02 15:00:26 +0800494 spin_unlock_bh(&seq->lock);
495 return publ;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100496}
497
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800498struct publication *tipc_nametbl_remove_publ(struct net *net, u32 type,
499 u32 lower, u32 node, u32 ref,
500 u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100501{
502 struct publication *publ;
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800503 struct name_seq *seq = nametbl_find_seq(net, type);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100504
505 if (!seq)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800506 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100507
Ying Xuefb9962f2014-12-02 15:00:26 +0800508 spin_lock_bh(&seq->lock);
Ying Xue34747532015-01-09 15:27:10 +0800509 publ = tipc_nameseq_remove_publ(net, seq, lower, node, ref, key);
Ying Xuefb9962f2014-12-02 15:00:26 +0800510 if (!seq->first_free && list_empty(&seq->subscriptions)) {
Ying Xue97ede292014-12-02 15:00:30 +0800511 hlist_del_init_rcu(&seq->ns_list);
Ying Xuefb9962f2014-12-02 15:00:26 +0800512 kfree(seq->sseqs);
Ying Xue97ede292014-12-02 15:00:30 +0800513 spin_unlock_bh(&seq->lock);
514 kfree_rcu(seq, rcu);
Ying Xuefb9962f2014-12-02 15:00:26 +0800515 return publ;
516 }
517 spin_unlock_bh(&seq->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100518 return publ;
519}
520
Ben Hutchings2c530402012-07-10 10:55:09 +0000521/**
Allan Stephensbc9f8142011-11-07 17:00:54 -0500522 * tipc_nametbl_translate - perform name translation
Per Lidenb97bf3f2006-01-02 19:04:38 +0100523 *
Allan Stephensbc9f8142011-11-07 17:00:54 -0500524 * On entry, 'destnode' is the search domain used during translation.
525 *
526 * On exit:
527 * - if name translation is deferred to another node/cluster/zone,
528 * leaves 'destnode' unchanged (will be non-zero) and returns 0
529 * - if name translation is attempted and succeeds, sets 'destnode'
530 * to publishing node and returns port reference (will be non-zero)
531 * - if name translation is attempted and fails, sets 'destnode' to 0
532 * and returns 0
Per Lidenb97bf3f2006-01-02 19:04:38 +0100533 */
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800534u32 tipc_nametbl_translate(struct net *net, u32 type, u32 instance,
535 u32 *destnode)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100536{
Ying Xue34747532015-01-09 15:27:10 +0800537 struct tipc_net *tn = net_generic(net, tipc_net_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100538 struct sub_seq *sseq;
Allan Stephensb52124a2011-05-30 09:44:38 -0400539 struct name_info *info;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400540 struct publication *publ;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100541 struct name_seq *seq;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400542 u32 ref = 0;
Allan Stephensbc9f8142011-11-07 17:00:54 -0500543 u32 node = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100544
Ying Xue34747532015-01-09 15:27:10 +0800545 if (!tipc_in_scope(*destnode, tn->own_addr))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100546 return 0;
547
Ying Xue97ede292014-12-02 15:00:30 +0800548 rcu_read_lock();
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800549 seq = nametbl_find_seq(net, type);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100550 if (unlikely(!seq))
551 goto not_found;
Ying Xuefb9962f2014-12-02 15:00:26 +0800552 spin_lock_bh(&seq->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100553 sseq = nameseq_find_subseq(seq, instance);
554 if (unlikely(!sseq))
Ying Xuefb9962f2014-12-02 15:00:26 +0800555 goto no_match;
Allan Stephensb52124a2011-05-30 09:44:38 -0400556 info = sseq->info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100557
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400558 /* Closest-First Algorithm */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100559 if (likely(!*destnode)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400560 if (!list_empty(&info->node_list)) {
561 publ = list_first_entry(&info->node_list,
562 struct publication,
563 node_list);
564 list_move_tail(&publ->node_list,
565 &info->node_list);
566 } else if (!list_empty(&info->cluster_list)) {
567 publ = list_first_entry(&info->cluster_list,
568 struct publication,
569 cluster_list);
570 list_move_tail(&publ->cluster_list,
571 &info->cluster_list);
Allan Stephens8af46382011-05-30 11:27:50 -0400572 } else {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400573 publ = list_first_entry(&info->zone_list,
574 struct publication,
575 zone_list);
576 list_move_tail(&publ->zone_list,
577 &info->zone_list);
Allan Stephens8af46382011-05-30 11:27:50 -0400578 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100579 }
580
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400581 /* Round-Robin Algorithm */
Ying Xue34747532015-01-09 15:27:10 +0800582 else if (*destnode == tn->own_addr) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400583 if (list_empty(&info->node_list))
584 goto no_match;
585 publ = list_first_entry(&info->node_list, struct publication,
586 node_list);
587 list_move_tail(&publ->node_list, &info->node_list);
Ying Xue34747532015-01-09 15:27:10 +0800588 } else if (in_own_cluster_exact(net, *destnode)) {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400589 if (list_empty(&info->cluster_list))
590 goto no_match;
591 publ = list_first_entry(&info->cluster_list, struct publication,
592 cluster_list);
593 list_move_tail(&publ->cluster_list, &info->cluster_list);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100594 } else {
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400595 publ = list_first_entry(&info->zone_list, struct publication,
596 zone_list);
597 list_move_tail(&publ->zone_list, &info->zone_list);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100598 }
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400599
600 ref = publ->ref;
Allan Stephensbc9f8142011-11-07 17:00:54 -0500601 node = publ->node;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400602no_match:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100603 spin_unlock_bh(&seq->lock);
604not_found:
Ying Xue97ede292014-12-02 15:00:30 +0800605 rcu_read_unlock();
Allan Stephensbc9f8142011-11-07 17:00:54 -0500606 *destnode = node;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400607 return ref;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100608}
609
610/**
Per Liden4323add2006-01-18 00:38:21 +0100611 * tipc_nametbl_mc_translate - find multicast destinations
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900612 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100613 * Creates list of all local ports that overlap the given multicast address;
614 * also determines if any off-node ports overlap.
615 *
616 * Note: Publications with a scope narrower than 'limit' are ignored.
617 * (i.e. local node-scope publications mustn't receive messages arriving
618 * from another node, even if the multcast link brought it here)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900619 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100620 * Returns non-zero if any off-node ports overlap
621 */
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800622int tipc_nametbl_mc_translate(struct net *net, u32 type, u32 lower, u32 upper,
Jon Paul Maloy3c724ac2015-02-05 08:36:43 -0500623 u32 limit, struct tipc_plist *dports)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100624{
625 struct name_seq *seq;
626 struct sub_seq *sseq;
627 struct sub_seq *sseq_stop;
Allan Stephensb52124a2011-05-30 09:44:38 -0400628 struct name_info *info;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100629 int res = 0;
630
Ying Xue97ede292014-12-02 15:00:30 +0800631 rcu_read_lock();
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800632 seq = nametbl_find_seq(net, type);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100633 if (!seq)
634 goto exit;
635
636 spin_lock_bh(&seq->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100637 sseq = seq->sseqs + nameseq_locate_subseq(seq, lower);
638 sseq_stop = seq->sseqs + seq->first_free;
639 for (; sseq != sseq_stop; sseq++) {
640 struct publication *publ;
641
642 if (sseq->lower > upper)
643 break;
Allan Stephens968edbe2008-07-14 22:45:33 -0700644
Allan Stephensb52124a2011-05-30 09:44:38 -0400645 info = sseq->info;
Allan Stephensf6f0a4d2011-05-30 10:48:48 -0400646 list_for_each_entry(publ, &info->node_list, node_list) {
647 if (publ->scope <= limit)
Jon Paul Maloy3c724ac2015-02-05 08:36:43 -0500648 tipc_plist_push(dports, publ->ref);
Allan Stephens968edbe2008-07-14 22:45:33 -0700649 }
650
Allan Stephensb52124a2011-05-30 09:44:38 -0400651 if (info->cluster_list_size != info->node_list_size)
Allan Stephens968edbe2008-07-14 22:45:33 -0700652 res = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100653 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100654 spin_unlock_bh(&seq->lock);
655exit:
Ying Xue97ede292014-12-02 15:00:30 +0800656 rcu_read_unlock();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100657 return res;
658}
659
Allan Stephensc422f1b2011-11-02 15:49:40 -0400660/*
Per Liden4323add2006-01-18 00:38:21 +0100661 * tipc_nametbl_publish - add name publication to network name tables
Per Lidenb97bf3f2006-01-02 19:04:38 +0100662 */
Ying Xuef2f98002015-01-09 15:27:05 +0800663struct publication *tipc_nametbl_publish(struct net *net, u32 type, u32 lower,
664 u32 upper, u32 scope, u32 port_ref,
665 u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100666{
667 struct publication *publ;
Ying Xueeab8c0452014-04-28 18:00:10 +0800668 struct sk_buff *buf = NULL;
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800669 struct tipc_net *tn = net_generic(net, tipc_net_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100670
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800671 spin_lock_bh(&tn->nametbl_lock);
672 if (tn->nametbl->local_publ_count >= TIPC_MAX_PUBLICATIONS) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400673 pr_warn("Publication failed, local publication limit reached (%u)\n",
Ying Xuee6a04b12012-08-16 12:09:14 +0000674 TIPC_MAX_PUBLICATIONS);
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800675 spin_unlock_bh(&tn->nametbl_lock);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800676 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100677 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100678
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800679 publ = tipc_nametbl_insert_publ(net, type, lower, upper, scope,
Ying Xue34747532015-01-09 15:27:10 +0800680 tn->own_addr, port_ref, key);
Allan Stephensfd6eced2011-11-09 14:22:52 -0500681 if (likely(publ)) {
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800682 tn->nametbl->local_publ_count++;
683 buf = tipc_named_publish(net, publ);
Erik Hugnea5325ae2014-08-28 09:08:47 +0200684 /* Any pending external events? */
Ying Xuef2f98002015-01-09 15:27:05 +0800685 tipc_named_process_backlog(net);
Allan Stephensfd6eced2011-11-09 14:22:52 -0500686 }
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800687 spin_unlock_bh(&tn->nametbl_lock);
Ying Xueeab8c0452014-04-28 18:00:10 +0800688
689 if (buf)
Ying Xuef2f98002015-01-09 15:27:05 +0800690 named_cluster_distribute(net, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100691 return publ;
692}
693
694/**
Per Liden4323add2006-01-18 00:38:21 +0100695 * tipc_nametbl_withdraw - withdraw name publication from network name tables
Per Lidenb97bf3f2006-01-02 19:04:38 +0100696 */
Ying Xuef2f98002015-01-09 15:27:05 +0800697int tipc_nametbl_withdraw(struct net *net, u32 type, u32 lower, u32 ref,
698 u32 key)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100699{
700 struct publication *publ;
Ying Xue54923902014-12-02 15:00:28 +0800701 struct sk_buff *skb = NULL;
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800702 struct tipc_net *tn = net_generic(net, tipc_net_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100703
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800704 spin_lock_bh(&tn->nametbl_lock);
Ying Xue34747532015-01-09 15:27:10 +0800705 publ = tipc_nametbl_remove_publ(net, type, lower, tn->own_addr,
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800706 ref, key);
Allan Stephensf1310722006-06-25 23:51:37 -0700707 if (likely(publ)) {
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800708 tn->nametbl->local_publ_count--;
Ying Xue34747532015-01-09 15:27:10 +0800709 skb = tipc_named_withdraw(net, publ);
Erik Hugnea5325ae2014-08-28 09:08:47 +0200710 /* Any pending external events? */
Ying Xuef2f98002015-01-09 15:27:05 +0800711 tipc_named_process_backlog(net);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100712 list_del_init(&publ->pport_list);
Ying Xue97ede292014-12-02 15:00:30 +0800713 kfree_rcu(publ, rcu);
Ying Xue54923902014-12-02 15:00:28 +0800714 } else {
715 pr_err("Unable to remove local publication\n"
716 "(type=%u, lower=%u, ref=%u, key=%u)\n",
717 type, lower, ref, key);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100718 }
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800719 spin_unlock_bh(&tn->nametbl_lock);
Ying Xue54923902014-12-02 15:00:28 +0800720
721 if (skb) {
Ying Xuef2f98002015-01-09 15:27:05 +0800722 named_cluster_distribute(net, skb);
Ying Xue54923902014-12-02 15:00:28 +0800723 return 1;
724 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100725 return 0;
726}
727
728/**
Per Liden4323add2006-01-18 00:38:21 +0100729 * tipc_nametbl_subscribe - add a subscription object to the name table
Per Lidenb97bf3f2006-01-02 19:04:38 +0100730 */
Paul Gortmakerfead3902011-12-29 20:43:44 -0500731void tipc_nametbl_subscribe(struct tipc_subscription *s)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100732{
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800733 struct tipc_net *tn = net_generic(s->net, tipc_net_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100734 u32 type = s->seq.type;
Ying Xue993bfe52014-12-02 15:00:24 +0800735 int index = hash(type);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100736 struct name_seq *seq;
737
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800738 spin_lock_bh(&tn->nametbl_lock);
739 seq = nametbl_find_seq(s->net, type);
Allan Stephensa0168922010-12-31 18:59:35 +0000740 if (!seq)
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800741 seq = tipc_nameseq_create(type, &tn->nametbl->seq_hlist[index]);
Allan Stephens0e659672010-12-31 18:59:32 +0000742 if (seq) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900743 spin_lock_bh(&seq->lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900744 tipc_nameseq_subscribe(seq, s);
745 spin_unlock_bh(&seq->lock);
746 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400747 pr_warn("Failed to create subscription for {%u,%u,%u}\n",
748 s->seq.type, s->seq.lower, s->seq.upper);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900749 }
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800750 spin_unlock_bh(&tn->nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100751}
752
753/**
Per Liden4323add2006-01-18 00:38:21 +0100754 * tipc_nametbl_unsubscribe - remove a subscription object from name table
Per Lidenb97bf3f2006-01-02 19:04:38 +0100755 */
Paul Gortmakerfead3902011-12-29 20:43:44 -0500756void tipc_nametbl_unsubscribe(struct tipc_subscription *s)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100757{
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800758 struct tipc_net *tn = net_generic(s->net, tipc_net_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100759 struct name_seq *seq;
760
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800761 spin_lock_bh(&tn->nametbl_lock);
762 seq = nametbl_find_seq(s->net, s->seq.type);
Allan Stephens0e659672010-12-31 18:59:32 +0000763 if (seq != NULL) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900764 spin_lock_bh(&seq->lock);
765 list_del_init(&s->nameseq_list);
Ying Xuefb9962f2014-12-02 15:00:26 +0800766 if (!seq->first_free && list_empty(&seq->subscriptions)) {
Ying Xue97ede292014-12-02 15:00:30 +0800767 hlist_del_init_rcu(&seq->ns_list);
Ying Xuefb9962f2014-12-02 15:00:26 +0800768 kfree(seq->sseqs);
Ying Xue97ede292014-12-02 15:00:30 +0800769 spin_unlock_bh(&seq->lock);
770 kfree_rcu(seq, rcu);
Ying Xuefb9962f2014-12-02 15:00:26 +0800771 } else {
772 spin_unlock_bh(&seq->lock);
773 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900774 }
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800775 spin_unlock_bh(&tn->nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100776}
777
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800778int tipc_nametbl_init(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100779{
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800780 struct tipc_net *tn = net_generic(net, tipc_net_id);
781 struct name_table *tipc_nametbl;
Ying Xue993bfe52014-12-02 15:00:24 +0800782 int i;
783
784 tipc_nametbl = kzalloc(sizeof(*tipc_nametbl), GFP_ATOMIC);
785 if (!tipc_nametbl)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100786 return -ENOMEM;
787
Ying Xue993bfe52014-12-02 15:00:24 +0800788 for (i = 0; i < TIPC_NAMETBL_SIZE; i++)
789 INIT_HLIST_HEAD(&tipc_nametbl->seq_hlist[i]);
790
791 INIT_LIST_HEAD(&tipc_nametbl->publ_list[TIPC_ZONE_SCOPE]);
792 INIT_LIST_HEAD(&tipc_nametbl->publ_list[TIPC_CLUSTER_SCOPE]);
793 INIT_LIST_HEAD(&tipc_nametbl->publ_list[TIPC_NODE_SCOPE]);
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800794 tn->nametbl = tipc_nametbl;
795 spin_lock_init(&tn->nametbl_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100796 return 0;
797}
798
Erik Hugne1bb8dce2014-03-06 14:40:20 +0100799/**
800 * tipc_purge_publications - remove all publications for a given type
801 *
802 * tipc_nametbl_lock must be held when calling this function
803 */
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800804static void tipc_purge_publications(struct net *net, struct name_seq *seq)
Erik Hugne1bb8dce2014-03-06 14:40:20 +0100805{
806 struct publication *publ, *safe;
807 struct sub_seq *sseq;
808 struct name_info *info;
809
Ying Xuefb9962f2014-12-02 15:00:26 +0800810 spin_lock_bh(&seq->lock);
Erik Hugne1bb8dce2014-03-06 14:40:20 +0100811 sseq = seq->sseqs;
812 info = sseq->info;
813 list_for_each_entry_safe(publ, safe, &info->zone_list, zone_list) {
Ying Xue84605042015-03-18 09:32:58 +0800814 tipc_nameseq_remove_publ(net, seq, publ->lower, publ->node,
815 publ->ref, publ->key);
Ying Xue97ede292014-12-02 15:00:30 +0800816 kfree_rcu(publ, rcu);
Erik Hugne1bb8dce2014-03-06 14:40:20 +0100817 }
Ying Xue97ede292014-12-02 15:00:30 +0800818 hlist_del_init_rcu(&seq->ns_list);
819 kfree(seq->sseqs);
Ying Xue023160b2014-12-09 15:17:56 +0800820 spin_unlock_bh(&seq->lock);
Ying Xuefb9962f2014-12-02 15:00:26 +0800821
Ying Xue97ede292014-12-02 15:00:30 +0800822 kfree_rcu(seq, rcu);
Erik Hugne1bb8dce2014-03-06 14:40:20 +0100823}
824
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800825void tipc_nametbl_stop(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100826{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100827 u32 i;
Erik Hugne1bb8dce2014-03-06 14:40:20 +0100828 struct name_seq *seq;
829 struct hlist_head *seq_head;
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800830 struct tipc_net *tn = net_generic(net, tipc_net_id);
831 struct name_table *tipc_nametbl = tn->nametbl;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100832
Erik Hugne1bb8dce2014-03-06 14:40:20 +0100833 /* Verify name table is empty and purge any lingering
834 * publications, then release the name table
835 */
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800836 spin_lock_bh(&tn->nametbl_lock);
Ying Xuef046e7d2012-08-16 12:09:11 +0000837 for (i = 0; i < TIPC_NAMETBL_SIZE; i++) {
Ying Xue993bfe52014-12-02 15:00:24 +0800838 if (hlist_empty(&tipc_nametbl->seq_hlist[i]))
Paul Gortmakerf705ab92012-07-11 17:35:01 -0400839 continue;
Ying Xue993bfe52014-12-02 15:00:24 +0800840 seq_head = &tipc_nametbl->seq_hlist[i];
Ying Xue97ede292014-12-02 15:00:30 +0800841 hlist_for_each_entry_rcu(seq, seq_head, ns_list) {
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800842 tipc_purge_publications(net, seq);
Erik Hugne1bb8dce2014-03-06 14:40:20 +0100843 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100844 }
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800845 spin_unlock_bh(&tn->nametbl_lock);
Ying Xue993bfe52014-12-02 15:00:24 +0800846
Ying Xue97ede292014-12-02 15:00:30 +0800847 synchronize_net();
Ying Xue993bfe52014-12-02 15:00:24 +0800848 kfree(tipc_nametbl);
849
Per Lidenb97bf3f2006-01-02 19:04:38 +0100850}
Richard Alpe15931232014-11-20 10:29:20 +0100851
Richard Alped8182802014-11-24 11:10:29 +0100852static int __tipc_nl_add_nametable_publ(struct tipc_nl_msg *msg,
853 struct name_seq *seq,
854 struct sub_seq *sseq, u32 *last_publ)
Richard Alpe15931232014-11-20 10:29:20 +0100855{
856 void *hdr;
857 struct nlattr *attrs;
858 struct nlattr *publ;
859 struct publication *p;
860
861 if (*last_publ) {
862 list_for_each_entry(p, &sseq->info->zone_list, zone_list)
863 if (p->key == *last_publ)
864 break;
865 if (p->key != *last_publ)
866 return -EPIPE;
867 } else {
868 p = list_first_entry(&sseq->info->zone_list, struct publication,
869 zone_list);
870 }
871
872 list_for_each_entry_from(p, &sseq->info->zone_list, zone_list) {
873 *last_publ = p->key;
874
875 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq,
Richard Alpebfb3e5d2015-02-09 09:50:03 +0100876 &tipc_genl_family, NLM_F_MULTI,
Richard Alpe15931232014-11-20 10:29:20 +0100877 TIPC_NL_NAME_TABLE_GET);
878 if (!hdr)
879 return -EMSGSIZE;
880
881 attrs = nla_nest_start(msg->skb, TIPC_NLA_NAME_TABLE);
882 if (!attrs)
883 goto msg_full;
884
885 publ = nla_nest_start(msg->skb, TIPC_NLA_NAME_TABLE_PUBL);
886 if (!publ)
887 goto attr_msg_full;
888
889 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_TYPE, seq->type))
890 goto publ_msg_full;
891 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_LOWER, sseq->lower))
892 goto publ_msg_full;
893 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_UPPER, sseq->upper))
894 goto publ_msg_full;
895 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_SCOPE, p->scope))
896 goto publ_msg_full;
897 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_NODE, p->node))
898 goto publ_msg_full;
899 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_REF, p->ref))
900 goto publ_msg_full;
901 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_KEY, p->key))
902 goto publ_msg_full;
903
904 nla_nest_end(msg->skb, publ);
905 nla_nest_end(msg->skb, attrs);
906 genlmsg_end(msg->skb, hdr);
907 }
908 *last_publ = 0;
909
910 return 0;
911
912publ_msg_full:
913 nla_nest_cancel(msg->skb, publ);
914attr_msg_full:
915 nla_nest_cancel(msg->skb, attrs);
916msg_full:
917 genlmsg_cancel(msg->skb, hdr);
918
919 return -EMSGSIZE;
920}
921
Richard Alped8182802014-11-24 11:10:29 +0100922static int __tipc_nl_subseq_list(struct tipc_nl_msg *msg, struct name_seq *seq,
923 u32 *last_lower, u32 *last_publ)
Richard Alpe15931232014-11-20 10:29:20 +0100924{
925 struct sub_seq *sseq;
926 struct sub_seq *sseq_start;
927 int err;
928
929 if (*last_lower) {
930 sseq_start = nameseq_find_subseq(seq, *last_lower);
931 if (!sseq_start)
932 return -EPIPE;
933 } else {
934 sseq_start = seq->sseqs;
935 }
936
937 for (sseq = sseq_start; sseq != &seq->sseqs[seq->first_free]; sseq++) {
938 err = __tipc_nl_add_nametable_publ(msg, seq, sseq, last_publ);
939 if (err) {
940 *last_lower = sseq->lower;
941 return err;
942 }
943 }
944 *last_lower = 0;
945
946 return 0;
947}
948
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800949static int tipc_nl_seq_list(struct net *net, struct tipc_nl_msg *msg,
950 u32 *last_type, u32 *last_lower, u32 *last_publ)
Richard Alpe15931232014-11-20 10:29:20 +0100951{
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800952 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe15931232014-11-20 10:29:20 +0100953 struct hlist_head *seq_head;
Ying Xue97ede292014-12-02 15:00:30 +0800954 struct name_seq *seq = NULL;
Richard Alpe15931232014-11-20 10:29:20 +0100955 int err;
956 int i;
957
958 if (*last_type)
959 i = hash(*last_type);
960 else
961 i = 0;
962
963 for (; i < TIPC_NAMETBL_SIZE; i++) {
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800964 seq_head = &tn->nametbl->seq_hlist[i];
Richard Alpe15931232014-11-20 10:29:20 +0100965
966 if (*last_type) {
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800967 seq = nametbl_find_seq(net, *last_type);
Richard Alpe15931232014-11-20 10:29:20 +0100968 if (!seq)
969 return -EPIPE;
970 } else {
Ying Xue97ede292014-12-02 15:00:30 +0800971 hlist_for_each_entry_rcu(seq, seq_head, ns_list)
972 break;
Richard Alpe15931232014-11-20 10:29:20 +0100973 if (!seq)
974 continue;
975 }
976
Ying Xue97ede292014-12-02 15:00:30 +0800977 hlist_for_each_entry_from_rcu(seq, ns_list) {
Richard Alpe15931232014-11-20 10:29:20 +0100978 spin_lock_bh(&seq->lock);
Richard Alpe15931232014-11-20 10:29:20 +0100979 err = __tipc_nl_subseq_list(msg, seq, last_lower,
980 last_publ);
981
982 if (err) {
983 *last_type = seq->type;
984 spin_unlock_bh(&seq->lock);
985 return err;
986 }
987 spin_unlock_bh(&seq->lock);
988 }
989 *last_type = 0;
990 }
991 return 0;
992}
993
994int tipc_nl_name_table_dump(struct sk_buff *skb, struct netlink_callback *cb)
995{
996 int err;
997 int done = cb->args[3];
998 u32 last_type = cb->args[0];
999 u32 last_lower = cb->args[1];
1000 u32 last_publ = cb->args[2];
Ying Xue4ac1c8d2015-01-09 15:27:09 +08001001 struct net *net = sock_net(skb->sk);
Richard Alpe15931232014-11-20 10:29:20 +01001002 struct tipc_nl_msg msg;
1003
1004 if (done)
1005 return 0;
1006
1007 msg.skb = skb;
1008 msg.portid = NETLINK_CB(cb->skb).portid;
1009 msg.seq = cb->nlh->nlmsg_seq;
1010
Ying Xue97ede292014-12-02 15:00:30 +08001011 rcu_read_lock();
Ying Xue4ac1c8d2015-01-09 15:27:09 +08001012 err = tipc_nl_seq_list(net, &msg, &last_type, &last_lower, &last_publ);
Richard Alpe15931232014-11-20 10:29:20 +01001013 if (!err) {
1014 done = 1;
1015 } else if (err != -EMSGSIZE) {
1016 /* We never set seq or call nl_dump_check_consistent() this
1017 * means that setting prev_seq here will cause the consistence
1018 * check to fail in the netlink callback handler. Resulting in
1019 * the NLMSG_DONE message having the NLM_F_DUMP_INTR flag set if
1020 * we got an error.
1021 */
1022 cb->prev_seq = 1;
1023 }
Ying Xue97ede292014-12-02 15:00:30 +08001024 rcu_read_unlock();
Richard Alpe15931232014-11-20 10:29:20 +01001025
1026 cb->args[0] = last_type;
1027 cb->args[1] = last_lower;
1028 cb->args[2] = last_publ;
1029 cb->args[3] = done;
1030
1031 return skb->len;
1032}
Jon Paul Maloy3c724ac2015-02-05 08:36:43 -05001033
1034void tipc_plist_push(struct tipc_plist *pl, u32 port)
1035{
1036 struct tipc_plist *nl;
1037
1038 if (likely(!pl->port)) {
1039 pl->port = port;
1040 return;
1041 }
1042 if (pl->port == port)
1043 return;
1044 list_for_each_entry(nl, &pl->list, list) {
1045 if (nl->port == port)
1046 return;
1047 }
1048 nl = kmalloc(sizeof(*nl), GFP_ATOMIC);
1049 if (nl) {
1050 nl->port = port;
1051 list_add(&nl->list, &pl->list);
1052 }
1053}
1054
1055u32 tipc_plist_pop(struct tipc_plist *pl)
1056{
1057 struct tipc_plist *nl;
1058 u32 port = 0;
1059
1060 if (likely(list_empty(&pl->list))) {
1061 port = pl->port;
1062 pl->port = 0;
1063 return port;
1064 }
1065 nl = list_first_entry(&pl->list, typeof(*nl), list);
1066 port = nl->port;
1067 list_del(&nl->list);
1068 kfree(nl);
1069 return port;
1070}