]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - net/tipc/name_table.c
tipc: improve groupcast scope handling
[mirror_ubuntu-jammy-kernel.git] / net / tipc / name_table.c
1 /*
2 * net/tipc/name_table.c: TIPC name table code
3 *
4 * Copyright (c) 2000-2006, 2014-2015, Ericsson AB
5 * Copyright (c) 2004-2008, 2010-2014, Wind River Systems
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
10 *
11 * 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.
19 *
20 * 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
34 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37 #include <net/sock.h>
38 #include "core.h"
39 #include "netlink.h"
40 #include "name_table.h"
41 #include "name_distr.h"
42 #include "subscr.h"
43 #include "bcast.h"
44 #include "addr.h"
45 #include "node.h"
46 #include "group.h"
47 #include <net/genetlink.h>
48
49 #define TIPC_NAMETBL_SIZE 1024 /* must be a power of 2 */
50
51 /**
52 * struct name_info - name sequence publication info
53 * @node_list: circular list of publications made by own node
54 * @cluster_list: circular list of publications made by own cluster
55 * @zone_list: circular list of publications made by own zone
56 * @node_list_size: number of entries in "node_list"
57 * @cluster_list_size: number of entries in "cluster_list"
58 * @zone_list_size: number of entries in "zone_list"
59 *
60 * Note: The zone list always contains at least one entry, since all
61 * publications of the associated name sequence belong to it.
62 * (The cluster and node lists may be empty.)
63 */
64 struct name_info {
65 struct list_head node_list;
66 struct list_head cluster_list;
67 struct list_head zone_list;
68 u32 node_list_size;
69 u32 cluster_list_size;
70 u32 zone_list_size;
71 };
72
73 /**
74 * struct sub_seq - container for all published instances of a name sequence
75 * @lower: name sequence lower bound
76 * @upper: name sequence upper bound
77 * @info: pointer to name sequence publication info
78 */
79 struct sub_seq {
80 u32 lower;
81 u32 upper;
82 struct name_info *info;
83 };
84
85 /**
86 * struct name_seq - container for all published instances of a name type
87 * @type: 32 bit 'type' value for name sequence
88 * @sseq: pointer to dynamically-sized array of sub-sequences of this 'type';
89 * sub-sequences are sorted in ascending order
90 * @alloc: number of sub-sequences currently in array
91 * @first_free: array index of first unused sub-sequence entry
92 * @ns_list: links to adjacent name sequences in hash chain
93 * @subscriptions: list of subscriptions for this 'type'
94 * @lock: spinlock controlling access to publication lists of all sub-sequences
95 * @rcu: RCU callback head used for deferred freeing
96 */
97 struct name_seq {
98 u32 type;
99 struct sub_seq *sseqs;
100 u32 alloc;
101 u32 first_free;
102 struct hlist_node ns_list;
103 struct list_head subscriptions;
104 spinlock_t lock;
105 struct rcu_head rcu;
106 };
107
108 static int hash(int x)
109 {
110 return x & (TIPC_NAMETBL_SIZE - 1);
111 }
112
113 /**
114 * publ_create - create a publication structure
115 */
116 static struct publication *publ_create(u32 type, u32 lower, u32 upper,
117 u32 scope, u32 node, u32 port_ref,
118 u32 key)
119 {
120 struct publication *publ = kzalloc(sizeof(*publ), GFP_ATOMIC);
121 if (publ == NULL) {
122 pr_warn("Publication creation failure, no memory\n");
123 return NULL;
124 }
125
126 publ->type = type;
127 publ->lower = lower;
128 publ->upper = upper;
129 publ->scope = scope;
130 publ->node = node;
131 publ->ref = port_ref;
132 publ->key = key;
133 INIT_LIST_HEAD(&publ->pport_list);
134 return publ;
135 }
136
137 /**
138 * tipc_subseq_alloc - allocate a specified number of sub-sequence structures
139 */
140 static struct sub_seq *tipc_subseq_alloc(u32 cnt)
141 {
142 return kcalloc(cnt, sizeof(struct sub_seq), GFP_ATOMIC);
143 }
144
145 /**
146 * tipc_nameseq_create - create a name sequence structure for the specified 'type'
147 *
148 * Allocates a single sub-sequence structure and sets it to all 0's.
149 */
150 static struct name_seq *tipc_nameseq_create(u32 type, struct hlist_head *seq_head)
151 {
152 struct name_seq *nseq = kzalloc(sizeof(*nseq), GFP_ATOMIC);
153 struct sub_seq *sseq = tipc_subseq_alloc(1);
154
155 if (!nseq || !sseq) {
156 pr_warn("Name sequence creation failed, no memory\n");
157 kfree(nseq);
158 kfree(sseq);
159 return NULL;
160 }
161
162 spin_lock_init(&nseq->lock);
163 nseq->type = type;
164 nseq->sseqs = sseq;
165 nseq->alloc = 1;
166 INIT_HLIST_NODE(&nseq->ns_list);
167 INIT_LIST_HEAD(&nseq->subscriptions);
168 hlist_add_head_rcu(&nseq->ns_list, seq_head);
169 return nseq;
170 }
171
172 /**
173 * nameseq_find_subseq - find sub-sequence (if any) matching a name instance
174 *
175 * Very time-critical, so binary searches through sub-sequence array.
176 */
177 static struct sub_seq *nameseq_find_subseq(struct name_seq *nseq,
178 u32 instance)
179 {
180 struct sub_seq *sseqs = nseq->sseqs;
181 int low = 0;
182 int high = nseq->first_free - 1;
183 int mid;
184
185 while (low <= high) {
186 mid = (low + high) / 2;
187 if (instance < sseqs[mid].lower)
188 high = mid - 1;
189 else if (instance > sseqs[mid].upper)
190 low = mid + 1;
191 else
192 return &sseqs[mid];
193 }
194 return NULL;
195 }
196
197 /**
198 * nameseq_locate_subseq - determine position of name instance in sub-sequence
199 *
200 * Returns index in sub-sequence array of the entry that contains the specified
201 * instance value; if no entry contains that value, returns the position
202 * where a new entry for it would be inserted in the array.
203 *
204 * Note: Similar to binary search code for locating a sub-sequence.
205 */
206 static u32 nameseq_locate_subseq(struct name_seq *nseq, u32 instance)
207 {
208 struct sub_seq *sseqs = nseq->sseqs;
209 int low = 0;
210 int high = nseq->first_free - 1;
211 int mid;
212
213 while (low <= high) {
214 mid = (low + high) / 2;
215 if (instance < sseqs[mid].lower)
216 high = mid - 1;
217 else if (instance > sseqs[mid].upper)
218 low = mid + 1;
219 else
220 return mid;
221 }
222 return low;
223 }
224
225 /**
226 * tipc_nameseq_insert_publ
227 */
228 static struct publication *tipc_nameseq_insert_publ(struct net *net,
229 struct name_seq *nseq,
230 u32 type, u32 lower,
231 u32 upper, u32 scope,
232 u32 node, u32 port, u32 key)
233 {
234 struct tipc_subscription *s;
235 struct tipc_subscription *st;
236 struct publication *publ;
237 struct sub_seq *sseq;
238 struct name_info *info;
239 int created_subseq = 0;
240
241 sseq = nameseq_find_subseq(nseq, lower);
242 if (sseq) {
243
244 /* Lower end overlaps existing entry => need an exact match */
245 if ((sseq->lower != lower) || (sseq->upper != upper)) {
246 return NULL;
247 }
248
249 info = sseq->info;
250
251 /* Check if an identical publication already exists */
252 list_for_each_entry(publ, &info->zone_list, zone_list) {
253 if ((publ->ref == port) && (publ->key == key) &&
254 (!publ->node || (publ->node == node)))
255 return NULL;
256 }
257 } else {
258 u32 inspos;
259 struct sub_seq *freesseq;
260
261 /* Find where lower end should be inserted */
262 inspos = nameseq_locate_subseq(nseq, lower);
263
264 /* Fail if upper end overlaps into an existing entry */
265 if ((inspos < nseq->first_free) &&
266 (upper >= nseq->sseqs[inspos].lower)) {
267 return NULL;
268 }
269
270 /* Ensure there is space for new sub-sequence */
271 if (nseq->first_free == nseq->alloc) {
272 struct sub_seq *sseqs = tipc_subseq_alloc(nseq->alloc * 2);
273
274 if (!sseqs) {
275 pr_warn("Cannot publish {%u,%u,%u}, no memory\n",
276 type, lower, upper);
277 return NULL;
278 }
279 memcpy(sseqs, nseq->sseqs,
280 nseq->alloc * sizeof(struct sub_seq));
281 kfree(nseq->sseqs);
282 nseq->sseqs = sseqs;
283 nseq->alloc *= 2;
284 }
285
286 info = kzalloc(sizeof(*info), GFP_ATOMIC);
287 if (!info) {
288 pr_warn("Cannot publish {%u,%u,%u}, no memory\n",
289 type, lower, upper);
290 return NULL;
291 }
292
293 INIT_LIST_HEAD(&info->node_list);
294 INIT_LIST_HEAD(&info->cluster_list);
295 INIT_LIST_HEAD(&info->zone_list);
296
297 /* Insert new sub-sequence */
298 sseq = &nseq->sseqs[inspos];
299 freesseq = &nseq->sseqs[nseq->first_free];
300 memmove(sseq + 1, sseq, (freesseq - sseq) * sizeof(*sseq));
301 memset(sseq, 0, sizeof(*sseq));
302 nseq->first_free++;
303 sseq->lower = lower;
304 sseq->upper = upper;
305 sseq->info = info;
306 created_subseq = 1;
307 }
308
309 /* Insert a publication */
310 publ = publ_create(type, lower, upper, scope, node, port, key);
311 if (!publ)
312 return NULL;
313
314 list_add(&publ->zone_list, &info->zone_list);
315 info->zone_list_size++;
316
317 if (in_own_cluster(net, node)) {
318 list_add(&publ->cluster_list, &info->cluster_list);
319 info->cluster_list_size++;
320 }
321
322 if (in_own_node(net, node)) {
323 list_add(&publ->node_list, &info->node_list);
324 info->node_list_size++;
325 }
326
327 /* Any subscriptions waiting for notification? */
328 list_for_each_entry_safe(s, st, &nseq->subscriptions, nameseq_list) {
329 tipc_subscrp_report_overlap(s, publ->lower, publ->upper,
330 TIPC_PUBLISHED, publ->ref,
331 publ->node, publ->scope,
332 created_subseq);
333 }
334 return publ;
335 }
336
337 /**
338 * tipc_nameseq_remove_publ
339 *
340 * NOTE: There may be cases where TIPC is asked to remove a publication
341 * that is not in the name table. For example, if another node issues a
342 * publication for a name sequence that overlaps an existing name sequence
343 * the publication will not be recorded, which means the publication won't
344 * be found when the name sequence is later withdrawn by that node.
345 * A failed withdraw request simply returns a failure indication and lets the
346 * caller issue any error or warning messages associated with such a problem.
347 */
348 static struct publication *tipc_nameseq_remove_publ(struct net *net,
349 struct name_seq *nseq,
350 u32 inst, u32 node,
351 u32 ref, u32 key)
352 {
353 struct publication *publ;
354 struct sub_seq *sseq = nameseq_find_subseq(nseq, inst);
355 struct name_info *info;
356 struct sub_seq *free;
357 struct tipc_subscription *s, *st;
358 int removed_subseq = 0;
359
360 if (!sseq)
361 return NULL;
362
363 info = sseq->info;
364
365 /* Locate publication, if it exists */
366 list_for_each_entry(publ, &info->zone_list, zone_list) {
367 if ((publ->key == key) && (publ->ref == ref) &&
368 (!publ->node || (publ->node == node)))
369 goto found;
370 }
371 return NULL;
372
373 found:
374 /* Remove publication from zone scope list */
375 list_del(&publ->zone_list);
376 info->zone_list_size--;
377
378 /* Remove publication from cluster scope list, if present */
379 if (in_own_cluster(net, node)) {
380 list_del(&publ->cluster_list);
381 info->cluster_list_size--;
382 }
383
384 /* Remove publication from node scope list, if present */
385 if (in_own_node(net, node)) {
386 list_del(&publ->node_list);
387 info->node_list_size--;
388 }
389
390 /* Contract subseq list if no more publications for that subseq */
391 if (list_empty(&info->zone_list)) {
392 kfree(info);
393 free = &nseq->sseqs[nseq->first_free--];
394 memmove(sseq, sseq + 1, (free - (sseq + 1)) * sizeof(*sseq));
395 removed_subseq = 1;
396 }
397
398 /* Notify any waiting subscriptions */
399 list_for_each_entry_safe(s, st, &nseq->subscriptions, nameseq_list) {
400 tipc_subscrp_report_overlap(s, publ->lower, publ->upper,
401 TIPC_WITHDRAWN, publ->ref,
402 publ->node, publ->scope,
403 removed_subseq);
404 }
405
406 return publ;
407 }
408
409 /**
410 * tipc_nameseq_subscribe - attach a subscription, and optionally
411 * issue the prescribed number of events if there is any sub-
412 * sequence overlapping with the requested sequence
413 */
414 static void tipc_nameseq_subscribe(struct name_seq *nseq,
415 struct tipc_subscription *s,
416 bool status)
417 {
418 struct sub_seq *sseq = nseq->sseqs;
419 struct tipc_name_seq ns;
420
421 tipc_subscrp_convert_seq(&s->evt.s.seq, s->swap, &ns);
422
423 tipc_subscrp_get(s);
424 list_add(&s->nameseq_list, &nseq->subscriptions);
425
426 if (!status || !sseq)
427 return;
428
429 while (sseq != &nseq->sseqs[nseq->first_free]) {
430 if (tipc_subscrp_check_overlap(&ns, sseq->lower, sseq->upper)) {
431 struct publication *crs;
432 struct name_info *info = sseq->info;
433 int must_report = 1;
434
435 list_for_each_entry(crs, &info->zone_list, zone_list) {
436 tipc_subscrp_report_overlap(s, sseq->lower,
437 sseq->upper,
438 TIPC_PUBLISHED,
439 crs->ref, crs->node,
440 crs->scope,
441 must_report);
442 must_report = 0;
443 }
444 }
445 sseq++;
446 }
447 }
448
449 static struct name_seq *nametbl_find_seq(struct net *net, u32 type)
450 {
451 struct tipc_net *tn = net_generic(net, tipc_net_id);
452 struct hlist_head *seq_head;
453 struct name_seq *ns;
454
455 seq_head = &tn->nametbl->seq_hlist[hash(type)];
456 hlist_for_each_entry_rcu(ns, seq_head, ns_list) {
457 if (ns->type == type)
458 return ns;
459 }
460
461 return NULL;
462 };
463
464 struct publication *tipc_nametbl_insert_publ(struct net *net, u32 type,
465 u32 lower, u32 upper, u32 scope,
466 u32 node, u32 port, u32 key)
467 {
468 struct tipc_net *tn = net_generic(net, tipc_net_id);
469 struct publication *publ;
470 struct name_seq *seq = nametbl_find_seq(net, type);
471 int index = hash(type);
472
473 if ((scope < TIPC_ZONE_SCOPE) || (scope > TIPC_NODE_SCOPE) ||
474 (lower > upper)) {
475 pr_debug("Failed to publish illegal {%u,%u,%u} with scope %u\n",
476 type, lower, upper, scope);
477 return NULL;
478 }
479
480 if (!seq)
481 seq = tipc_nameseq_create(type, &tn->nametbl->seq_hlist[index]);
482 if (!seq)
483 return NULL;
484
485 spin_lock_bh(&seq->lock);
486 publ = tipc_nameseq_insert_publ(net, seq, type, lower, upper,
487 scope, node, port, key);
488 spin_unlock_bh(&seq->lock);
489 return publ;
490 }
491
492 struct publication *tipc_nametbl_remove_publ(struct net *net, u32 type,
493 u32 lower, u32 node, u32 ref,
494 u32 key)
495 {
496 struct publication *publ;
497 struct name_seq *seq = nametbl_find_seq(net, type);
498
499 if (!seq)
500 return NULL;
501
502 spin_lock_bh(&seq->lock);
503 publ = tipc_nameseq_remove_publ(net, seq, lower, node, ref, key);
504 if (!seq->first_free && list_empty(&seq->subscriptions)) {
505 hlist_del_init_rcu(&seq->ns_list);
506 kfree(seq->sseqs);
507 spin_unlock_bh(&seq->lock);
508 kfree_rcu(seq, rcu);
509 return publ;
510 }
511 spin_unlock_bh(&seq->lock);
512 return publ;
513 }
514
515 /**
516 * tipc_nametbl_translate - perform name translation
517 *
518 * On entry, 'destnode' is the search domain used during translation.
519 *
520 * On exit:
521 * - if name translation is deferred to another node/cluster/zone,
522 * leaves 'destnode' unchanged (will be non-zero) and returns 0
523 * - if name translation is attempted and succeeds, sets 'destnode'
524 * to publishing node and returns port reference (will be non-zero)
525 * - if name translation is attempted and fails, sets 'destnode' to 0
526 * and returns 0
527 */
528 u32 tipc_nametbl_translate(struct net *net, u32 type, u32 instance,
529 u32 *destnode)
530 {
531 struct tipc_net *tn = net_generic(net, tipc_net_id);
532 struct sub_seq *sseq;
533 struct name_info *info;
534 struct publication *publ;
535 struct name_seq *seq;
536 u32 ref = 0;
537 u32 node = 0;
538
539 if (!tipc_in_scope(*destnode, tn->own_addr))
540 return 0;
541
542 rcu_read_lock();
543 seq = nametbl_find_seq(net, type);
544 if (unlikely(!seq))
545 goto not_found;
546 spin_lock_bh(&seq->lock);
547 sseq = nameseq_find_subseq(seq, instance);
548 if (unlikely(!sseq))
549 goto no_match;
550 info = sseq->info;
551
552 /* Closest-First Algorithm */
553 if (likely(!*destnode)) {
554 if (!list_empty(&info->node_list)) {
555 publ = list_first_entry(&info->node_list,
556 struct publication,
557 node_list);
558 list_move_tail(&publ->node_list,
559 &info->node_list);
560 } else if (!list_empty(&info->cluster_list)) {
561 publ = list_first_entry(&info->cluster_list,
562 struct publication,
563 cluster_list);
564 list_move_tail(&publ->cluster_list,
565 &info->cluster_list);
566 } else {
567 publ = list_first_entry(&info->zone_list,
568 struct publication,
569 zone_list);
570 list_move_tail(&publ->zone_list,
571 &info->zone_list);
572 }
573 }
574
575 /* Round-Robin Algorithm */
576 else if (*destnode == tn->own_addr) {
577 if (list_empty(&info->node_list))
578 goto no_match;
579 publ = list_first_entry(&info->node_list, struct publication,
580 node_list);
581 list_move_tail(&publ->node_list, &info->node_list);
582 } else if (in_own_cluster_exact(net, *destnode)) {
583 if (list_empty(&info->cluster_list))
584 goto no_match;
585 publ = list_first_entry(&info->cluster_list, struct publication,
586 cluster_list);
587 list_move_tail(&publ->cluster_list, &info->cluster_list);
588 } else {
589 publ = list_first_entry(&info->zone_list, struct publication,
590 zone_list);
591 list_move_tail(&publ->zone_list, &info->zone_list);
592 }
593
594 ref = publ->ref;
595 node = publ->node;
596 no_match:
597 spin_unlock_bh(&seq->lock);
598 not_found:
599 rcu_read_unlock();
600 *destnode = node;
601 return ref;
602 }
603
604 bool tipc_nametbl_lookup(struct net *net, u32 type, u32 instance, u32 scope,
605 struct list_head *dsts, int *dstcnt, u32 exclude,
606 bool all)
607 {
608 u32 self = tipc_own_addr(net);
609 struct publication *publ;
610 struct name_info *info;
611 struct name_seq *seq;
612 struct sub_seq *sseq;
613
614 *dstcnt = 0;
615 rcu_read_lock();
616 seq = nametbl_find_seq(net, type);
617 if (unlikely(!seq))
618 goto exit;
619 spin_lock_bh(&seq->lock);
620 sseq = nameseq_find_subseq(seq, instance);
621 if (likely(sseq)) {
622 info = sseq->info;
623 list_for_each_entry(publ, &info->zone_list, zone_list) {
624 if (publ->scope != scope)
625 continue;
626 if (publ->ref == exclude && publ->node == self)
627 continue;
628 tipc_dest_push(dsts, publ->node, publ->ref);
629 (*dstcnt)++;
630 if (all)
631 continue;
632 list_move_tail(&publ->zone_list, &info->zone_list);
633 break;
634 }
635 }
636 spin_unlock_bh(&seq->lock);
637 exit:
638 rcu_read_unlock();
639 return !list_empty(dsts);
640 }
641
642 int tipc_nametbl_mc_lookup(struct net *net, u32 type, u32 lower, u32 upper,
643 u32 scope, bool exact, struct list_head *dports)
644 {
645 struct sub_seq *sseq_stop;
646 struct name_info *info;
647 struct publication *p;
648 struct name_seq *seq;
649 struct sub_seq *sseq;
650 int res = 0;
651
652 rcu_read_lock();
653 seq = nametbl_find_seq(net, type);
654 if (!seq)
655 goto exit;
656
657 spin_lock_bh(&seq->lock);
658 sseq = seq->sseqs + nameseq_locate_subseq(seq, lower);
659 sseq_stop = seq->sseqs + seq->first_free;
660 for (; sseq != sseq_stop; sseq++) {
661 if (sseq->lower > upper)
662 break;
663 info = sseq->info;
664 list_for_each_entry(p, &info->node_list, node_list) {
665 if (p->scope == scope || (!exact && p->scope < scope))
666 tipc_dest_push(dports, 0, p->ref);
667 }
668
669 if (info->cluster_list_size != info->node_list_size)
670 res = 1;
671 }
672 spin_unlock_bh(&seq->lock);
673 exit:
674 rcu_read_unlock();
675 return res;
676 }
677
678 /* tipc_nametbl_lookup_dst_nodes - find broadcast destination nodes
679 * - Creates list of nodes that overlap the given multicast address
680 * - Determines if any node local ports overlap
681 */
682 void tipc_nametbl_lookup_dst_nodes(struct net *net, u32 type, u32 lower,
683 u32 upper, u32 scope,
684 struct tipc_nlist *nodes)
685 {
686 struct sub_seq *sseq, *stop;
687 struct publication *publ;
688 struct name_info *info;
689 struct name_seq *seq;
690
691 rcu_read_lock();
692 seq = nametbl_find_seq(net, type);
693 if (!seq)
694 goto exit;
695
696 spin_lock_bh(&seq->lock);
697 sseq = seq->sseqs + nameseq_locate_subseq(seq, lower);
698 stop = seq->sseqs + seq->first_free;
699 for (; sseq != stop && sseq->lower <= upper; sseq++) {
700 info = sseq->info;
701 list_for_each_entry(publ, &info->zone_list, zone_list) {
702 if (publ->scope == scope)
703 tipc_nlist_add(nodes, publ->node);
704 }
705 }
706 spin_unlock_bh(&seq->lock);
707 exit:
708 rcu_read_unlock();
709 }
710
711 /* tipc_nametbl_build_group - build list of communication group members
712 */
713 void tipc_nametbl_build_group(struct net *net, struct tipc_group *grp,
714 u32 type, u32 scope)
715 {
716 struct sub_seq *sseq, *stop;
717 struct name_info *info;
718 struct publication *p;
719 struct name_seq *seq;
720
721 rcu_read_lock();
722 seq = nametbl_find_seq(net, type);
723 if (!seq)
724 goto exit;
725
726 spin_lock_bh(&seq->lock);
727 sseq = seq->sseqs;
728 stop = seq->sseqs + seq->first_free;
729 for (; sseq != stop; sseq++) {
730 info = sseq->info;
731 list_for_each_entry(p, &info->zone_list, zone_list) {
732 if (p->scope != scope)
733 continue;
734 tipc_group_add_member(grp, p->node, p->ref, p->lower);
735 }
736 }
737 spin_unlock_bh(&seq->lock);
738 exit:
739 rcu_read_unlock();
740 }
741
742 /*
743 * tipc_nametbl_publish - add name publication to network name tables
744 */
745 struct publication *tipc_nametbl_publish(struct net *net, u32 type, u32 lower,
746 u32 upper, u32 scope, u32 port_ref,
747 u32 key)
748 {
749 struct publication *publ;
750 struct sk_buff *buf = NULL;
751 struct tipc_net *tn = net_generic(net, tipc_net_id);
752
753 spin_lock_bh(&tn->nametbl_lock);
754 if (tn->nametbl->local_publ_count >= TIPC_MAX_PUBLICATIONS) {
755 pr_warn("Publication failed, local publication limit reached (%u)\n",
756 TIPC_MAX_PUBLICATIONS);
757 spin_unlock_bh(&tn->nametbl_lock);
758 return NULL;
759 }
760
761 publ = tipc_nametbl_insert_publ(net, type, lower, upper, scope,
762 tn->own_addr, port_ref, key);
763 if (likely(publ)) {
764 tn->nametbl->local_publ_count++;
765 buf = tipc_named_publish(net, publ);
766 /* Any pending external events? */
767 tipc_named_process_backlog(net);
768 }
769 spin_unlock_bh(&tn->nametbl_lock);
770
771 if (buf)
772 tipc_node_broadcast(net, buf);
773 return publ;
774 }
775
776 /**
777 * tipc_nametbl_withdraw - withdraw name publication from network name tables
778 */
779 int tipc_nametbl_withdraw(struct net *net, u32 type, u32 lower, u32 ref,
780 u32 key)
781 {
782 struct publication *publ;
783 struct sk_buff *skb = NULL;
784 struct tipc_net *tn = net_generic(net, tipc_net_id);
785
786 spin_lock_bh(&tn->nametbl_lock);
787 publ = tipc_nametbl_remove_publ(net, type, lower, tn->own_addr,
788 ref, key);
789 if (likely(publ)) {
790 tn->nametbl->local_publ_count--;
791 skb = tipc_named_withdraw(net, publ);
792 /* Any pending external events? */
793 tipc_named_process_backlog(net);
794 list_del_init(&publ->pport_list);
795 kfree_rcu(publ, rcu);
796 } else {
797 pr_err("Unable to remove local publication\n"
798 "(type=%u, lower=%u, ref=%u, key=%u)\n",
799 type, lower, ref, key);
800 }
801 spin_unlock_bh(&tn->nametbl_lock);
802
803 if (skb) {
804 tipc_node_broadcast(net, skb);
805 return 1;
806 }
807 return 0;
808 }
809
810 /**
811 * tipc_nametbl_subscribe - add a subscription object to the name table
812 */
813 void tipc_nametbl_subscribe(struct tipc_subscription *s, bool status)
814 {
815 struct tipc_net *tn = net_generic(s->net, tipc_net_id);
816 u32 type = tipc_subscrp_convert_seq_type(s->evt.s.seq.type, s->swap);
817 int index = hash(type);
818 struct name_seq *seq;
819 struct tipc_name_seq ns;
820
821 spin_lock_bh(&tn->nametbl_lock);
822 seq = nametbl_find_seq(s->net, type);
823 if (!seq)
824 seq = tipc_nameseq_create(type, &tn->nametbl->seq_hlist[index]);
825 if (seq) {
826 spin_lock_bh(&seq->lock);
827 tipc_nameseq_subscribe(seq, s, status);
828 spin_unlock_bh(&seq->lock);
829 } else {
830 tipc_subscrp_convert_seq(&s->evt.s.seq, s->swap, &ns);
831 pr_warn("Failed to create subscription for {%u,%u,%u}\n",
832 ns.type, ns.lower, ns.upper);
833 }
834 spin_unlock_bh(&tn->nametbl_lock);
835 }
836
837 /**
838 * tipc_nametbl_unsubscribe - remove a subscription object from name table
839 */
840 void tipc_nametbl_unsubscribe(struct tipc_subscription *s)
841 {
842 struct tipc_net *tn = net_generic(s->net, tipc_net_id);
843 struct name_seq *seq;
844 u32 type = tipc_subscrp_convert_seq_type(s->evt.s.seq.type, s->swap);
845
846 spin_lock_bh(&tn->nametbl_lock);
847 seq = nametbl_find_seq(s->net, type);
848 if (seq != NULL) {
849 spin_lock_bh(&seq->lock);
850 list_del_init(&s->nameseq_list);
851 tipc_subscrp_put(s);
852 if (!seq->first_free && list_empty(&seq->subscriptions)) {
853 hlist_del_init_rcu(&seq->ns_list);
854 kfree(seq->sseqs);
855 spin_unlock_bh(&seq->lock);
856 kfree_rcu(seq, rcu);
857 } else {
858 spin_unlock_bh(&seq->lock);
859 }
860 }
861 spin_unlock_bh(&tn->nametbl_lock);
862 }
863
864 int tipc_nametbl_init(struct net *net)
865 {
866 struct tipc_net *tn = net_generic(net, tipc_net_id);
867 struct name_table *tipc_nametbl;
868 int i;
869
870 tipc_nametbl = kzalloc(sizeof(*tipc_nametbl), GFP_ATOMIC);
871 if (!tipc_nametbl)
872 return -ENOMEM;
873
874 for (i = 0; i < TIPC_NAMETBL_SIZE; i++)
875 INIT_HLIST_HEAD(&tipc_nametbl->seq_hlist[i]);
876
877 INIT_LIST_HEAD(&tipc_nametbl->publ_list[TIPC_ZONE_SCOPE]);
878 INIT_LIST_HEAD(&tipc_nametbl->publ_list[TIPC_CLUSTER_SCOPE]);
879 INIT_LIST_HEAD(&tipc_nametbl->publ_list[TIPC_NODE_SCOPE]);
880 tn->nametbl = tipc_nametbl;
881 spin_lock_init(&tn->nametbl_lock);
882 return 0;
883 }
884
885 /**
886 * tipc_purge_publications - remove all publications for a given type
887 *
888 * tipc_nametbl_lock must be held when calling this function
889 */
890 static void tipc_purge_publications(struct net *net, struct name_seq *seq)
891 {
892 struct publication *publ, *safe;
893 struct sub_seq *sseq;
894 struct name_info *info;
895
896 spin_lock_bh(&seq->lock);
897 sseq = seq->sseqs;
898 info = sseq->info;
899 list_for_each_entry_safe(publ, safe, &info->zone_list, zone_list) {
900 tipc_nameseq_remove_publ(net, seq, publ->lower, publ->node,
901 publ->ref, publ->key);
902 kfree_rcu(publ, rcu);
903 }
904 hlist_del_init_rcu(&seq->ns_list);
905 kfree(seq->sseqs);
906 spin_unlock_bh(&seq->lock);
907
908 kfree_rcu(seq, rcu);
909 }
910
911 void tipc_nametbl_stop(struct net *net)
912 {
913 u32 i;
914 struct name_seq *seq;
915 struct hlist_head *seq_head;
916 struct tipc_net *tn = net_generic(net, tipc_net_id);
917 struct name_table *tipc_nametbl = tn->nametbl;
918
919 /* Verify name table is empty and purge any lingering
920 * publications, then release the name table
921 */
922 spin_lock_bh(&tn->nametbl_lock);
923 for (i = 0; i < TIPC_NAMETBL_SIZE; i++) {
924 if (hlist_empty(&tipc_nametbl->seq_hlist[i]))
925 continue;
926 seq_head = &tipc_nametbl->seq_hlist[i];
927 hlist_for_each_entry_rcu(seq, seq_head, ns_list) {
928 tipc_purge_publications(net, seq);
929 }
930 }
931 spin_unlock_bh(&tn->nametbl_lock);
932
933 synchronize_net();
934 kfree(tipc_nametbl);
935
936 }
937
938 static int __tipc_nl_add_nametable_publ(struct tipc_nl_msg *msg,
939 struct name_seq *seq,
940 struct sub_seq *sseq, u32 *last_publ)
941 {
942 void *hdr;
943 struct nlattr *attrs;
944 struct nlattr *publ;
945 struct publication *p;
946
947 if (*last_publ) {
948 list_for_each_entry(p, &sseq->info->zone_list, zone_list)
949 if (p->key == *last_publ)
950 break;
951 if (p->key != *last_publ)
952 return -EPIPE;
953 } else {
954 p = list_first_entry(&sseq->info->zone_list, struct publication,
955 zone_list);
956 }
957
958 list_for_each_entry_from(p, &sseq->info->zone_list, zone_list) {
959 *last_publ = p->key;
960
961 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq,
962 &tipc_genl_family, NLM_F_MULTI,
963 TIPC_NL_NAME_TABLE_GET);
964 if (!hdr)
965 return -EMSGSIZE;
966
967 attrs = nla_nest_start(msg->skb, TIPC_NLA_NAME_TABLE);
968 if (!attrs)
969 goto msg_full;
970
971 publ = nla_nest_start(msg->skb, TIPC_NLA_NAME_TABLE_PUBL);
972 if (!publ)
973 goto attr_msg_full;
974
975 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_TYPE, seq->type))
976 goto publ_msg_full;
977 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_LOWER, sseq->lower))
978 goto publ_msg_full;
979 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_UPPER, sseq->upper))
980 goto publ_msg_full;
981 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_SCOPE, p->scope))
982 goto publ_msg_full;
983 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_NODE, p->node))
984 goto publ_msg_full;
985 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_REF, p->ref))
986 goto publ_msg_full;
987 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_KEY, p->key))
988 goto publ_msg_full;
989
990 nla_nest_end(msg->skb, publ);
991 nla_nest_end(msg->skb, attrs);
992 genlmsg_end(msg->skb, hdr);
993 }
994 *last_publ = 0;
995
996 return 0;
997
998 publ_msg_full:
999 nla_nest_cancel(msg->skb, publ);
1000 attr_msg_full:
1001 nla_nest_cancel(msg->skb, attrs);
1002 msg_full:
1003 genlmsg_cancel(msg->skb, hdr);
1004
1005 return -EMSGSIZE;
1006 }
1007
1008 static int __tipc_nl_subseq_list(struct tipc_nl_msg *msg, struct name_seq *seq,
1009 u32 *last_lower, u32 *last_publ)
1010 {
1011 struct sub_seq *sseq;
1012 struct sub_seq *sseq_start;
1013 int err;
1014
1015 if (*last_lower) {
1016 sseq_start = nameseq_find_subseq(seq, *last_lower);
1017 if (!sseq_start)
1018 return -EPIPE;
1019 } else {
1020 sseq_start = seq->sseqs;
1021 }
1022
1023 for (sseq = sseq_start; sseq != &seq->sseqs[seq->first_free]; sseq++) {
1024 err = __tipc_nl_add_nametable_publ(msg, seq, sseq, last_publ);
1025 if (err) {
1026 *last_lower = sseq->lower;
1027 return err;
1028 }
1029 }
1030 *last_lower = 0;
1031
1032 return 0;
1033 }
1034
1035 static int tipc_nl_seq_list(struct net *net, struct tipc_nl_msg *msg,
1036 u32 *last_type, u32 *last_lower, u32 *last_publ)
1037 {
1038 struct tipc_net *tn = net_generic(net, tipc_net_id);
1039 struct hlist_head *seq_head;
1040 struct name_seq *seq = NULL;
1041 int err;
1042 int i;
1043
1044 if (*last_type)
1045 i = hash(*last_type);
1046 else
1047 i = 0;
1048
1049 for (; i < TIPC_NAMETBL_SIZE; i++) {
1050 seq_head = &tn->nametbl->seq_hlist[i];
1051
1052 if (*last_type) {
1053 seq = nametbl_find_seq(net, *last_type);
1054 if (!seq)
1055 return -EPIPE;
1056 } else {
1057 hlist_for_each_entry_rcu(seq, seq_head, ns_list)
1058 break;
1059 if (!seq)
1060 continue;
1061 }
1062
1063 hlist_for_each_entry_from_rcu(seq, ns_list) {
1064 spin_lock_bh(&seq->lock);
1065 err = __tipc_nl_subseq_list(msg, seq, last_lower,
1066 last_publ);
1067
1068 if (err) {
1069 *last_type = seq->type;
1070 spin_unlock_bh(&seq->lock);
1071 return err;
1072 }
1073 spin_unlock_bh(&seq->lock);
1074 }
1075 *last_type = 0;
1076 }
1077 return 0;
1078 }
1079
1080 int tipc_nl_name_table_dump(struct sk_buff *skb, struct netlink_callback *cb)
1081 {
1082 int err;
1083 int done = cb->args[3];
1084 u32 last_type = cb->args[0];
1085 u32 last_lower = cb->args[1];
1086 u32 last_publ = cb->args[2];
1087 struct net *net = sock_net(skb->sk);
1088 struct tipc_nl_msg msg;
1089
1090 if (done)
1091 return 0;
1092
1093 msg.skb = skb;
1094 msg.portid = NETLINK_CB(cb->skb).portid;
1095 msg.seq = cb->nlh->nlmsg_seq;
1096
1097 rcu_read_lock();
1098 err = tipc_nl_seq_list(net, &msg, &last_type, &last_lower, &last_publ);
1099 if (!err) {
1100 done = 1;
1101 } else if (err != -EMSGSIZE) {
1102 /* We never set seq or call nl_dump_check_consistent() this
1103 * means that setting prev_seq here will cause the consistence
1104 * check to fail in the netlink callback handler. Resulting in
1105 * the NLMSG_DONE message having the NLM_F_DUMP_INTR flag set if
1106 * we got an error.
1107 */
1108 cb->prev_seq = 1;
1109 }
1110 rcu_read_unlock();
1111
1112 cb->args[0] = last_type;
1113 cb->args[1] = last_lower;
1114 cb->args[2] = last_publ;
1115 cb->args[3] = done;
1116
1117 return skb->len;
1118 }
1119
1120 struct tipc_dest *tipc_dest_find(struct list_head *l, u32 node, u32 port)
1121 {
1122 u64 value = (u64)node << 32 | port;
1123 struct tipc_dest *dst;
1124
1125 list_for_each_entry(dst, l, list) {
1126 if (dst->value != value)
1127 continue;
1128 return dst;
1129 }
1130 return NULL;
1131 }
1132
1133 bool tipc_dest_push(struct list_head *l, u32 node, u32 port)
1134 {
1135 u64 value = (u64)node << 32 | port;
1136 struct tipc_dest *dst;
1137
1138 if (tipc_dest_find(l, node, port))
1139 return false;
1140
1141 dst = kmalloc(sizeof(*dst), GFP_ATOMIC);
1142 if (unlikely(!dst))
1143 return false;
1144 dst->value = value;
1145 list_add(&dst->list, l);
1146 return true;
1147 }
1148
1149 bool tipc_dest_pop(struct list_head *l, u32 *node, u32 *port)
1150 {
1151 struct tipc_dest *dst;
1152
1153 if (list_empty(l))
1154 return false;
1155 dst = list_first_entry(l, typeof(*dst), list);
1156 if (port)
1157 *port = dst->port;
1158 if (node)
1159 *node = dst->node;
1160 list_del(&dst->list);
1161 kfree(dst);
1162 return true;
1163 }
1164
1165 bool tipc_dest_del(struct list_head *l, u32 node, u32 port)
1166 {
1167 struct tipc_dest *dst;
1168
1169 dst = tipc_dest_find(l, node, port);
1170 if (!dst)
1171 return false;
1172 list_del(&dst->list);
1173 kfree(dst);
1174 return true;
1175 }
1176
1177 void tipc_dest_list_purge(struct list_head *l)
1178 {
1179 struct tipc_dest *dst, *tmp;
1180
1181 list_for_each_entry_safe(dst, tmp, l, list) {
1182 list_del(&dst->list);
1183 kfree(dst);
1184 }
1185 }
1186
1187 int tipc_dest_list_len(struct list_head *l)
1188 {
1189 struct tipc_dest *dst;
1190 int i = 0;
1191
1192 list_for_each_entry(dst, l, list) {
1193 i++;
1194 }
1195 return i;
1196 }