]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blob - net/tipc/bcast.c
tipc: fix potential hanging after b/rcast changing
[mirror_ubuntu-eoan-kernel.git] / net / tipc / bcast.c
1 /*
2 * net/tipc/bcast.c: TIPC broadcast code
3 *
4 * Copyright (c) 2004-2006, 2014-2017, Ericsson AB
5 * Copyright (c) 2004, Intel Corporation.
6 * Copyright (c) 2005, 2010-2011, Wind River Systems
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from
19 * this software without specific prior written permission.
20 *
21 * Alternatively, this software may be distributed under the terms of the
22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * Software Foundation.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
36 */
37
38 #include <linux/tipc_config.h>
39 #include "socket.h"
40 #include "msg.h"
41 #include "bcast.h"
42 #include "link.h"
43 #include "name_table.h"
44
45 #define BCLINK_WIN_DEFAULT 50 /* bcast link window size (default) */
46 #define BCLINK_WIN_MIN 32 /* bcast minimum link window size */
47
48 const char tipc_bclink_name[] = "broadcast-link";
49
50 /**
51 * struct tipc_bc_base - base structure for keeping broadcast send state
52 * @link: broadcast send link structure
53 * @inputq: data input queue; will only carry SOCK_WAKEUP messages
54 * @dests: array keeping number of reachable destinations per bearer
55 * @primary_bearer: a bearer having links to all broadcast destinations, if any
56 * @bcast_support: indicates if primary bearer, if any, supports broadcast
57 * @force_bcast: forces broadcast for multicast traffic
58 * @rcast_support: indicates if all peer nodes support replicast
59 * @force_rcast: forces replicast for multicast traffic
60 * @rc_ratio: dest count as percentage of cluster size where send method changes
61 * @bc_threshold: calculated from rc_ratio; if dests > threshold use broadcast
62 */
63 struct tipc_bc_base {
64 struct tipc_link *link;
65 struct sk_buff_head inputq;
66 int dests[MAX_BEARERS];
67 int primary_bearer;
68 bool bcast_support;
69 bool force_bcast;
70 bool rcast_support;
71 bool force_rcast;
72 int rc_ratio;
73 int bc_threshold;
74 };
75
76 static struct tipc_bc_base *tipc_bc_base(struct net *net)
77 {
78 return tipc_net(net)->bcbase;
79 }
80
81 /* tipc_bcast_get_mtu(): -get the MTU currently used by broadcast link
82 * Note: the MTU is decremented to give room for a tunnel header, in
83 * case the message needs to be sent as replicast
84 */
85 int tipc_bcast_get_mtu(struct net *net)
86 {
87 return tipc_link_mtu(tipc_bc_sndlink(net)) - INT_H_SIZE;
88 }
89
90 void tipc_bcast_disable_rcast(struct net *net)
91 {
92 tipc_bc_base(net)->rcast_support = false;
93 }
94
95 static void tipc_bcbase_calc_bc_threshold(struct net *net)
96 {
97 struct tipc_bc_base *bb = tipc_bc_base(net);
98 int cluster_size = tipc_link_bc_peers(tipc_bc_sndlink(net));
99
100 bb->bc_threshold = 1 + (cluster_size * bb->rc_ratio / 100);
101 }
102
103 /* tipc_bcbase_select_primary(): find a bearer with links to all destinations,
104 * if any, and make it primary bearer
105 */
106 static void tipc_bcbase_select_primary(struct net *net)
107 {
108 struct tipc_bc_base *bb = tipc_bc_base(net);
109 int all_dests = tipc_link_bc_peers(bb->link);
110 int i, mtu, prim;
111
112 bb->primary_bearer = INVALID_BEARER_ID;
113 bb->bcast_support = true;
114
115 if (!all_dests)
116 return;
117
118 for (i = 0; i < MAX_BEARERS; i++) {
119 if (!bb->dests[i])
120 continue;
121
122 mtu = tipc_bearer_mtu(net, i);
123 if (mtu < tipc_link_mtu(bb->link))
124 tipc_link_set_mtu(bb->link, mtu);
125 bb->bcast_support &= tipc_bearer_bcast_support(net, i);
126 if (bb->dests[i] < all_dests)
127 continue;
128
129 bb->primary_bearer = i;
130
131 /* Reduce risk that all nodes select same primary */
132 if ((i ^ tipc_own_addr(net)) & 1)
133 break;
134 }
135 prim = bb->primary_bearer;
136 if (prim != INVALID_BEARER_ID)
137 bb->bcast_support = tipc_bearer_bcast_support(net, prim);
138 }
139
140 void tipc_bcast_inc_bearer_dst_cnt(struct net *net, int bearer_id)
141 {
142 struct tipc_bc_base *bb = tipc_bc_base(net);
143
144 tipc_bcast_lock(net);
145 bb->dests[bearer_id]++;
146 tipc_bcbase_select_primary(net);
147 tipc_bcast_unlock(net);
148 }
149
150 void tipc_bcast_dec_bearer_dst_cnt(struct net *net, int bearer_id)
151 {
152 struct tipc_bc_base *bb = tipc_bc_base(net);
153
154 tipc_bcast_lock(net);
155 bb->dests[bearer_id]--;
156 tipc_bcbase_select_primary(net);
157 tipc_bcast_unlock(net);
158 }
159
160 /* tipc_bcbase_xmit - broadcast a packet queue across one or more bearers
161 *
162 * Note that number of reachable destinations, as indicated in the dests[]
163 * array, may transitionally differ from the number of destinations indicated
164 * in each sent buffer. We can sustain this. Excess destination nodes will
165 * drop and never acknowledge the unexpected packets, and missing destinations
166 * will either require retransmission (if they are just about to be added to
167 * the bearer), or be removed from the buffer's 'ackers' counter (if they
168 * just went down)
169 */
170 static void tipc_bcbase_xmit(struct net *net, struct sk_buff_head *xmitq)
171 {
172 int bearer_id;
173 struct tipc_bc_base *bb = tipc_bc_base(net);
174 struct sk_buff *skb, *_skb;
175 struct sk_buff_head _xmitq;
176
177 if (skb_queue_empty(xmitq))
178 return;
179
180 /* The typical case: at least one bearer has links to all nodes */
181 bearer_id = bb->primary_bearer;
182 if (bearer_id >= 0) {
183 tipc_bearer_bc_xmit(net, bearer_id, xmitq);
184 return;
185 }
186
187 /* We have to transmit across all bearers */
188 skb_queue_head_init(&_xmitq);
189 for (bearer_id = 0; bearer_id < MAX_BEARERS; bearer_id++) {
190 if (!bb->dests[bearer_id])
191 continue;
192
193 skb_queue_walk(xmitq, skb) {
194 _skb = pskb_copy_for_clone(skb, GFP_ATOMIC);
195 if (!_skb)
196 break;
197 __skb_queue_tail(&_xmitq, _skb);
198 }
199 tipc_bearer_bc_xmit(net, bearer_id, &_xmitq);
200 }
201 __skb_queue_purge(xmitq);
202 __skb_queue_purge(&_xmitq);
203 }
204
205 static void tipc_bcast_select_xmit_method(struct net *net, int dests,
206 struct tipc_mc_method *method)
207 {
208 struct tipc_bc_base *bb = tipc_bc_base(net);
209 unsigned long exp = method->expires;
210
211 /* Broadcast supported by used bearer/bearers? */
212 if (!bb->bcast_support) {
213 method->rcast = true;
214 return;
215 }
216 /* Any destinations which don't support replicast ? */
217 if (!bb->rcast_support) {
218 method->rcast = false;
219 return;
220 }
221 /* Can current method be changed ? */
222 method->expires = jiffies + TIPC_METHOD_EXPIRE;
223 if (method->mandatory)
224 return;
225
226 if (!(tipc_net(net)->capabilities & TIPC_MCAST_RBCTL) &&
227 time_before(jiffies, exp))
228 return;
229
230 /* Configuration as force 'broadcast' method */
231 if (bb->force_bcast) {
232 method->rcast = false;
233 return;
234 }
235 /* Configuration as force 'replicast' method */
236 if (bb->force_rcast) {
237 method->rcast = true;
238 return;
239 }
240 /* Configuration as 'autoselect' or default method */
241 /* Determine method to use now */
242 method->rcast = dests <= bb->bc_threshold;
243 }
244
245 /* tipc_bcast_xmit - broadcast the buffer chain to all external nodes
246 * @net: the applicable net namespace
247 * @pkts: chain of buffers containing message
248 * @cong_link_cnt: set to 1 if broadcast link is congested, otherwise 0
249 * Consumes the buffer chain.
250 * Returns 0 if success, otherwise errno: -EHOSTUNREACH,-EMSGSIZE
251 */
252 static int tipc_bcast_xmit(struct net *net, struct sk_buff_head *pkts,
253 u16 *cong_link_cnt)
254 {
255 struct tipc_link *l = tipc_bc_sndlink(net);
256 struct sk_buff_head xmitq;
257 int rc = 0;
258
259 skb_queue_head_init(&xmitq);
260 tipc_bcast_lock(net);
261 if (tipc_link_bc_peers(l))
262 rc = tipc_link_xmit(l, pkts, &xmitq);
263 tipc_bcast_unlock(net);
264 tipc_bcbase_xmit(net, &xmitq);
265 __skb_queue_purge(pkts);
266 if (rc == -ELINKCONG) {
267 *cong_link_cnt = 1;
268 rc = 0;
269 }
270 return rc;
271 }
272
273 /* tipc_rcast_xmit - replicate and send a message to given destination nodes
274 * @net: the applicable net namespace
275 * @pkts: chain of buffers containing message
276 * @dests: list of destination nodes
277 * @cong_link_cnt: returns number of congested links
278 * @cong_links: returns identities of congested links
279 * Returns 0 if success, otherwise errno
280 */
281 static int tipc_rcast_xmit(struct net *net, struct sk_buff_head *pkts,
282 struct tipc_nlist *dests, u16 *cong_link_cnt)
283 {
284 struct tipc_dest *dst, *tmp;
285 struct sk_buff_head _pkts;
286 u32 dnode, selector;
287
288 selector = msg_link_selector(buf_msg(skb_peek(pkts)));
289 skb_queue_head_init(&_pkts);
290
291 list_for_each_entry_safe(dst, tmp, &dests->list, list) {
292 dnode = dst->node;
293 if (!tipc_msg_pskb_copy(dnode, pkts, &_pkts))
294 return -ENOMEM;
295
296 /* Any other return value than -ELINKCONG is ignored */
297 if (tipc_node_xmit(net, &_pkts, dnode, selector) == -ELINKCONG)
298 (*cong_link_cnt)++;
299 }
300 return 0;
301 }
302
303 /* tipc_mcast_send_sync - deliver a dummy message with SYN bit
304 * @net: the applicable net namespace
305 * @skb: socket buffer to copy
306 * @method: send method to be used
307 * @dests: destination nodes for message.
308 * Returns 0 if success, otherwise errno
309 */
310 static int tipc_mcast_send_sync(struct net *net, struct sk_buff *skb,
311 struct tipc_mc_method *method,
312 struct tipc_nlist *dests)
313 {
314 struct tipc_msg *hdr, *_hdr;
315 struct sk_buff_head tmpq;
316 struct sk_buff *_skb;
317 u16 cong_link_cnt;
318 int rc = 0;
319
320 /* Is a cluster supporting with new capabilities ? */
321 if (!(tipc_net(net)->capabilities & TIPC_MCAST_RBCTL))
322 return 0;
323
324 hdr = buf_msg(skb);
325 if (msg_user(hdr) == MSG_FRAGMENTER)
326 hdr = msg_inner_hdr(hdr);
327 if (msg_type(hdr) != TIPC_MCAST_MSG)
328 return 0;
329
330 /* Allocate dummy message */
331 _skb = tipc_buf_acquire(MCAST_H_SIZE, GFP_KERNEL);
332 if (!_skb)
333 return -ENOMEM;
334
335 /* Preparing for 'synching' header */
336 msg_set_syn(hdr, 1);
337
338 /* Copy skb's header into a dummy header */
339 skb_copy_to_linear_data(_skb, hdr, MCAST_H_SIZE);
340 skb_orphan(_skb);
341
342 /* Reverse method for dummy message */
343 _hdr = buf_msg(_skb);
344 msg_set_size(_hdr, MCAST_H_SIZE);
345 msg_set_is_rcast(_hdr, !msg_is_rcast(hdr));
346 msg_set_errcode(_hdr, TIPC_ERR_NO_PORT);
347
348 skb_queue_head_init(&tmpq);
349 __skb_queue_tail(&tmpq, _skb);
350 if (method->rcast)
351 rc = tipc_bcast_xmit(net, &tmpq, &cong_link_cnt);
352 else
353 rc = tipc_rcast_xmit(net, &tmpq, dests, &cong_link_cnt);
354
355 /* This queue should normally be empty by now */
356 __skb_queue_purge(&tmpq);
357
358 return rc;
359 }
360
361 /* tipc_mcast_xmit - deliver message to indicated destination nodes
362 * and to identified node local sockets
363 * @net: the applicable net namespace
364 * @pkts: chain of buffers containing message
365 * @method: send method to be used
366 * @dests: destination nodes for message.
367 * @cong_link_cnt: returns number of encountered congested destination links
368 * Consumes buffer chain.
369 * Returns 0 if success, otherwise errno
370 */
371 int tipc_mcast_xmit(struct net *net, struct sk_buff_head *pkts,
372 struct tipc_mc_method *method, struct tipc_nlist *dests,
373 u16 *cong_link_cnt)
374 {
375 struct sk_buff_head inputq, localq;
376 bool rcast = method->rcast;
377 struct tipc_msg *hdr;
378 struct sk_buff *skb;
379 int rc = 0;
380
381 skb_queue_head_init(&inputq);
382 skb_queue_head_init(&localq);
383
384 /* Clone packets before they are consumed by next call */
385 if (dests->local && !tipc_msg_reassemble(pkts, &localq)) {
386 rc = -ENOMEM;
387 goto exit;
388 }
389 /* Send according to determined transmit method */
390 if (dests->remote) {
391 tipc_bcast_select_xmit_method(net, dests->remote, method);
392
393 skb = skb_peek(pkts);
394 hdr = buf_msg(skb);
395 if (msg_user(hdr) == MSG_FRAGMENTER)
396 hdr = msg_inner_hdr(hdr);
397 msg_set_is_rcast(hdr, method->rcast);
398
399 /* Switch method ? */
400 if (rcast != method->rcast) {
401 rc = tipc_mcast_send_sync(net, skb, method, dests);
402 if (unlikely(rc)) {
403 pr_err("Unable to send SYN: method %d, rc %d\n",
404 rcast, rc);
405 goto exit;
406 }
407 }
408
409 if (method->rcast)
410 rc = tipc_rcast_xmit(net, pkts, dests, cong_link_cnt);
411 else
412 rc = tipc_bcast_xmit(net, pkts, cong_link_cnt);
413 }
414
415 if (dests->local)
416 tipc_sk_mcast_rcv(net, &localq, &inputq);
417 exit:
418 /* This queue should normally be empty by now */
419 __skb_queue_purge(pkts);
420 return rc;
421 }
422
423 /* tipc_bcast_rcv - receive a broadcast packet, and deliver to rcv link
424 *
425 * RCU is locked, no other locks set
426 */
427 int tipc_bcast_rcv(struct net *net, struct tipc_link *l, struct sk_buff *skb)
428 {
429 struct tipc_msg *hdr = buf_msg(skb);
430 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
431 struct sk_buff_head xmitq;
432 int rc;
433
434 __skb_queue_head_init(&xmitq);
435
436 if (msg_mc_netid(hdr) != tipc_netid(net) || !tipc_link_is_up(l)) {
437 kfree_skb(skb);
438 return 0;
439 }
440
441 tipc_bcast_lock(net);
442 if (msg_user(hdr) == BCAST_PROTOCOL)
443 rc = tipc_link_bc_nack_rcv(l, skb, &xmitq);
444 else
445 rc = tipc_link_rcv(l, skb, NULL);
446 tipc_bcast_unlock(net);
447
448 tipc_bcbase_xmit(net, &xmitq);
449
450 /* Any socket wakeup messages ? */
451 if (!skb_queue_empty(inputq))
452 tipc_sk_rcv(net, inputq);
453
454 return rc;
455 }
456
457 /* tipc_bcast_ack_rcv - receive and handle a broadcast acknowledge
458 *
459 * RCU is locked, no other locks set
460 */
461 void tipc_bcast_ack_rcv(struct net *net, struct tipc_link *l,
462 struct tipc_msg *hdr)
463 {
464 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
465 u16 acked = msg_bcast_ack(hdr);
466 struct sk_buff_head xmitq;
467
468 /* Ignore bc acks sent by peer before bcast synch point was received */
469 if (msg_bc_ack_invalid(hdr))
470 return;
471
472 __skb_queue_head_init(&xmitq);
473
474 tipc_bcast_lock(net);
475 tipc_link_bc_ack_rcv(l, acked, &xmitq);
476 tipc_bcast_unlock(net);
477
478 tipc_bcbase_xmit(net, &xmitq);
479
480 /* Any socket wakeup messages ? */
481 if (!skb_queue_empty(inputq))
482 tipc_sk_rcv(net, inputq);
483 }
484
485 /* tipc_bcast_synch_rcv - check and update rcv link with peer's send state
486 *
487 * RCU is locked, no other locks set
488 */
489 int tipc_bcast_sync_rcv(struct net *net, struct tipc_link *l,
490 struct tipc_msg *hdr)
491 {
492 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
493 struct sk_buff_head xmitq;
494 int rc = 0;
495
496 __skb_queue_head_init(&xmitq);
497
498 tipc_bcast_lock(net);
499 if (msg_type(hdr) != STATE_MSG) {
500 tipc_link_bc_init_rcv(l, hdr);
501 } else if (!msg_bc_ack_invalid(hdr)) {
502 tipc_link_bc_ack_rcv(l, msg_bcast_ack(hdr), &xmitq);
503 rc = tipc_link_bc_sync_rcv(l, hdr, &xmitq);
504 }
505 tipc_bcast_unlock(net);
506
507 tipc_bcbase_xmit(net, &xmitq);
508
509 /* Any socket wakeup messages ? */
510 if (!skb_queue_empty(inputq))
511 tipc_sk_rcv(net, inputq);
512 return rc;
513 }
514
515 /* tipc_bcast_add_peer - add a peer node to broadcast link and bearer
516 *
517 * RCU is locked, node lock is set
518 */
519 void tipc_bcast_add_peer(struct net *net, struct tipc_link *uc_l,
520 struct sk_buff_head *xmitq)
521 {
522 struct tipc_link *snd_l = tipc_bc_sndlink(net);
523
524 tipc_bcast_lock(net);
525 tipc_link_add_bc_peer(snd_l, uc_l, xmitq);
526 tipc_bcbase_select_primary(net);
527 tipc_bcbase_calc_bc_threshold(net);
528 tipc_bcast_unlock(net);
529 }
530
531 /* tipc_bcast_remove_peer - remove a peer node from broadcast link and bearer
532 *
533 * RCU is locked, node lock is set
534 */
535 void tipc_bcast_remove_peer(struct net *net, struct tipc_link *rcv_l)
536 {
537 struct tipc_link *snd_l = tipc_bc_sndlink(net);
538 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
539 struct sk_buff_head xmitq;
540
541 __skb_queue_head_init(&xmitq);
542
543 tipc_bcast_lock(net);
544 tipc_link_remove_bc_peer(snd_l, rcv_l, &xmitq);
545 tipc_bcbase_select_primary(net);
546 tipc_bcbase_calc_bc_threshold(net);
547 tipc_bcast_unlock(net);
548
549 tipc_bcbase_xmit(net, &xmitq);
550
551 /* Any socket wakeup messages ? */
552 if (!skb_queue_empty(inputq))
553 tipc_sk_rcv(net, inputq);
554 }
555
556 int tipc_bclink_reset_stats(struct net *net)
557 {
558 struct tipc_link *l = tipc_bc_sndlink(net);
559
560 if (!l)
561 return -ENOPROTOOPT;
562
563 tipc_bcast_lock(net);
564 tipc_link_reset_stats(l);
565 tipc_bcast_unlock(net);
566 return 0;
567 }
568
569 static int tipc_bc_link_set_queue_limits(struct net *net, u32 limit)
570 {
571 struct tipc_link *l = tipc_bc_sndlink(net);
572
573 if (!l)
574 return -ENOPROTOOPT;
575 if (limit < BCLINK_WIN_MIN)
576 limit = BCLINK_WIN_MIN;
577 if (limit > TIPC_MAX_LINK_WIN)
578 return -EINVAL;
579 tipc_bcast_lock(net);
580 tipc_link_set_queue_limits(l, limit);
581 tipc_bcast_unlock(net);
582 return 0;
583 }
584
585 static int tipc_bc_link_set_broadcast_mode(struct net *net, u32 bc_mode)
586 {
587 struct tipc_bc_base *bb = tipc_bc_base(net);
588
589 switch (bc_mode) {
590 case BCLINK_MODE_BCAST:
591 if (!bb->bcast_support)
592 return -ENOPROTOOPT;
593
594 bb->force_bcast = true;
595 bb->force_rcast = false;
596 break;
597 case BCLINK_MODE_RCAST:
598 if (!bb->rcast_support)
599 return -ENOPROTOOPT;
600
601 bb->force_bcast = false;
602 bb->force_rcast = true;
603 break;
604 case BCLINK_MODE_SEL:
605 if (!bb->bcast_support || !bb->rcast_support)
606 return -ENOPROTOOPT;
607
608 bb->force_bcast = false;
609 bb->force_rcast = false;
610 break;
611 default:
612 return -EINVAL;
613 }
614
615 return 0;
616 }
617
618 static int tipc_bc_link_set_broadcast_ratio(struct net *net, u32 bc_ratio)
619 {
620 struct tipc_bc_base *bb = tipc_bc_base(net);
621
622 if (!bb->bcast_support || !bb->rcast_support)
623 return -ENOPROTOOPT;
624
625 if (bc_ratio > 100 || bc_ratio <= 0)
626 return -EINVAL;
627
628 bb->rc_ratio = bc_ratio;
629 tipc_bcast_lock(net);
630 tipc_bcbase_calc_bc_threshold(net);
631 tipc_bcast_unlock(net);
632
633 return 0;
634 }
635
636 int tipc_nl_bc_link_set(struct net *net, struct nlattr *attrs[])
637 {
638 int err;
639 u32 win;
640 u32 bc_mode;
641 u32 bc_ratio;
642 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
643
644 if (!attrs[TIPC_NLA_LINK_PROP])
645 return -EINVAL;
646
647 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_LINK_PROP], props);
648 if (err)
649 return err;
650
651 if (!props[TIPC_NLA_PROP_WIN] &&
652 !props[TIPC_NLA_PROP_BROADCAST] &&
653 !props[TIPC_NLA_PROP_BROADCAST_RATIO]) {
654 return -EOPNOTSUPP;
655 }
656
657 if (props[TIPC_NLA_PROP_BROADCAST]) {
658 bc_mode = nla_get_u32(props[TIPC_NLA_PROP_BROADCAST]);
659 err = tipc_bc_link_set_broadcast_mode(net, bc_mode);
660 }
661
662 if (!err && props[TIPC_NLA_PROP_BROADCAST_RATIO]) {
663 bc_ratio = nla_get_u32(props[TIPC_NLA_PROP_BROADCAST_RATIO]);
664 err = tipc_bc_link_set_broadcast_ratio(net, bc_ratio);
665 }
666
667 if (!err && props[TIPC_NLA_PROP_WIN]) {
668 win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
669 err = tipc_bc_link_set_queue_limits(net, win);
670 }
671
672 return err;
673 }
674
675 int tipc_bcast_init(struct net *net)
676 {
677 struct tipc_net *tn = tipc_net(net);
678 struct tipc_bc_base *bb = NULL;
679 struct tipc_link *l = NULL;
680
681 bb = kzalloc(sizeof(*bb), GFP_KERNEL);
682 if (!bb)
683 goto enomem;
684 tn->bcbase = bb;
685 spin_lock_init(&tipc_net(net)->bclock);
686
687 if (!tipc_link_bc_create(net, 0, 0,
688 FB_MTU,
689 BCLINK_WIN_DEFAULT,
690 0,
691 &bb->inputq,
692 NULL,
693 NULL,
694 &l))
695 goto enomem;
696 bb->link = l;
697 tn->bcl = l;
698 bb->rc_ratio = 10;
699 bb->rcast_support = true;
700 return 0;
701 enomem:
702 kfree(bb);
703 kfree(l);
704 return -ENOMEM;
705 }
706
707 void tipc_bcast_stop(struct net *net)
708 {
709 struct tipc_net *tn = net_generic(net, tipc_net_id);
710
711 synchronize_net();
712 kfree(tn->bcbase);
713 kfree(tn->bcl);
714 }
715
716 void tipc_nlist_init(struct tipc_nlist *nl, u32 self)
717 {
718 memset(nl, 0, sizeof(*nl));
719 INIT_LIST_HEAD(&nl->list);
720 nl->self = self;
721 }
722
723 void tipc_nlist_add(struct tipc_nlist *nl, u32 node)
724 {
725 if (node == nl->self)
726 nl->local = true;
727 else if (tipc_dest_push(&nl->list, node, 0))
728 nl->remote++;
729 }
730
731 void tipc_nlist_del(struct tipc_nlist *nl, u32 node)
732 {
733 if (node == nl->self)
734 nl->local = false;
735 else if (tipc_dest_del(&nl->list, node, 0))
736 nl->remote--;
737 }
738
739 void tipc_nlist_purge(struct tipc_nlist *nl)
740 {
741 tipc_dest_list_purge(&nl->list);
742 nl->remote = 0;
743 nl->local = false;
744 }
745
746 u32 tipc_bcast_get_broadcast_mode(struct net *net)
747 {
748 struct tipc_bc_base *bb = tipc_bc_base(net);
749
750 if (bb->force_bcast)
751 return BCLINK_MODE_BCAST;
752
753 if (bb->force_rcast)
754 return BCLINK_MODE_RCAST;
755
756 if (bb->bcast_support && bb->rcast_support)
757 return BCLINK_MODE_SEL;
758
759 return 0;
760 }
761
762 u32 tipc_bcast_get_broadcast_ratio(struct net *net)
763 {
764 struct tipc_bc_base *bb = tipc_bc_base(net);
765
766 return bb->rc_ratio;
767 }
768
769 void tipc_mcast_filter_msg(struct net *net, struct sk_buff_head *defq,
770 struct sk_buff_head *inputq)
771 {
772 struct sk_buff *skb, *_skb, *tmp;
773 struct tipc_msg *hdr, *_hdr;
774 bool match = false;
775 u32 node, port;
776
777 skb = skb_peek(inputq);
778 if (!skb)
779 return;
780
781 hdr = buf_msg(skb);
782
783 if (likely(!msg_is_syn(hdr) && skb_queue_empty(defq)))
784 return;
785
786 node = msg_orignode(hdr);
787 if (node == tipc_own_addr(net))
788 return;
789
790 port = msg_origport(hdr);
791
792 /* Has the twin SYN message already arrived ? */
793 skb_queue_walk(defq, _skb) {
794 _hdr = buf_msg(_skb);
795 if (msg_orignode(_hdr) != node)
796 continue;
797 if (msg_origport(_hdr) != port)
798 continue;
799 match = true;
800 break;
801 }
802
803 if (!match) {
804 if (!msg_is_syn(hdr))
805 return;
806 __skb_dequeue(inputq);
807 __skb_queue_tail(defq, skb);
808 return;
809 }
810
811 /* Deliver non-SYN message from other link, otherwise queue it */
812 if (!msg_is_syn(hdr)) {
813 if (msg_is_rcast(hdr) != msg_is_rcast(_hdr))
814 return;
815 __skb_dequeue(inputq);
816 __skb_queue_tail(defq, skb);
817 return;
818 }
819
820 /* Queue non-SYN/SYN message from same link */
821 if (msg_is_rcast(hdr) == msg_is_rcast(_hdr)) {
822 __skb_dequeue(inputq);
823 __skb_queue_tail(defq, skb);
824 return;
825 }
826
827 /* Matching SYN messages => return the one with data, if any */
828 __skb_unlink(_skb, defq);
829 if (msg_data_sz(hdr)) {
830 kfree_skb(_skb);
831 } else {
832 __skb_dequeue(inputq);
833 kfree_skb(skb);
834 __skb_queue_tail(inputq, _skb);
835 }
836
837 /* Deliver subsequent non-SYN messages from same peer */
838 skb_queue_walk_safe(defq, _skb, tmp) {
839 _hdr = buf_msg(_skb);
840 if (msg_orignode(_hdr) != node)
841 continue;
842 if (msg_origport(_hdr) != port)
843 continue;
844 if (msg_is_syn(_hdr))
845 break;
846 __skb_unlink(_skb, defq);
847 __skb_queue_tail(inputq, _skb);
848 }
849 }