]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/tipc/bcast.c
Merge remote-tracking branch 'spi/topic/core' into spi-next
[mirror_ubuntu-artful-kernel.git] / net / tipc / bcast.c
CommitLineData
b97bf3fd
PL
1/*
2 * net/tipc/bcast.c: TIPC broadcast code
c4307285 3 *
593a5f22 4 * Copyright (c) 2004-2006, Ericsson AB
b97bf3fd 5 * Copyright (c) 2004, Intel Corporation.
2d627b92 6 * Copyright (c) 2005, 2010-2011, Wind River Systems
b97bf3fd
PL
7 * All rights reserved.
8 *
9ea1fd3c 9 * Redistribution and use in source and binary forms, with or without
b97bf3fd
PL
10 * modification, are permitted provided that the following conditions are met:
11 *
9ea1fd3c
PL
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.
b97bf3fd 20 *
9ea1fd3c
PL
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
b97bf3fd
PL
35 * POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#include "core.h"
b97bf3fd 39#include "link.h"
b97bf3fd 40#include "port.h"
b97bf3fd 41#include "bcast.h"
9f6bdcd4 42#include "name_distr.h"
b97bf3fd 43
987b58be
YX
44#define MAX_PKT_DEFAULT_MCAST 1500 /* bcast link max packet size (fixed) */
45#define BCLINK_WIN_DEFAULT 20 /* bcast link window size (default) */
46#define BCBEARER MAX_BEARERS
b97bf3fd 47
b97bf3fd 48/**
7f9ab6ac 49 * struct tipc_bcbearer_pair - a pair of bearers used by broadcast link
b97bf3fd
PL
50 * @primary: pointer to primary bearer
51 * @secondary: pointer to secondary bearer
c4307285
YH
52 *
53 * Bearers must have same priority and same set of reachable destinations
b97bf3fd
PL
54 * to be paired.
55 */
56
7f9ab6ac 57struct tipc_bcbearer_pair {
2d627b92
AS
58 struct tipc_bearer *primary;
59 struct tipc_bearer *secondary;
b97bf3fd
PL
60};
61
62/**
7f9ab6ac 63 * struct tipc_bcbearer - bearer used by broadcast link
b97bf3fd
PL
64 * @bearer: (non-standard) broadcast bearer structure
65 * @media: (non-standard) broadcast media structure
66 * @bpairs: array of bearer pairs
65f51ef0
AS
67 * @bpairs_temp: temporary array of bearer pairs used by tipc_bcbearer_sort()
68 * @remains: temporary node map used by tipc_bcbearer_send()
69 * @remains_new: temporary node map used tipc_bcbearer_send()
c4307285 70 *
65f51ef0
AS
71 * Note: The fields labelled "temporary" are incorporated into the bearer
72 * to avoid consuming potentially limited stack space through the use of
73 * large local variables within multicast routines. Concurrent access is
d69afc90 74 * prevented through use of the spinlock "bclink_lock".
b97bf3fd 75 */
7f9ab6ac 76struct tipc_bcbearer {
2d627b92 77 struct tipc_bearer bearer;
358a0d1c 78 struct tipc_media media;
7f9ab6ac
PG
79 struct tipc_bcbearer_pair bpairs[MAX_BEARERS];
80 struct tipc_bcbearer_pair bpairs_temp[TIPC_MAX_LINK_PRI + 1];
6c00055a
DM
81 struct tipc_node_map remains;
82 struct tipc_node_map remains_new;
b97bf3fd
PL
83};
84
85/**
6765fd67 86 * struct tipc_bclink - link used for broadcast messages
d69afc90 87 * @lock: spinlock governing access to structure
b97bf3fd
PL
88 * @link: (non-standard) broadcast link structure
89 * @node: (non-standard) node structure representing b'cast link's peer node
3f5a12bd 90 * @flags: represent bclink states
cd3decdf 91 * @bcast_nodes: map of broadcast-capable nodes
01d83edd 92 * @retransmit_to: node that most recently requested a retransmit
c4307285 93 *
b97bf3fd
PL
94 * Handles sequence numbering, fragmentation, bundling, etc.
95 */
6765fd67 96struct tipc_bclink {
d69afc90 97 spinlock_t lock;
a18c4bc3 98 struct tipc_link link;
6c00055a 99 struct tipc_node node;
3f5a12bd 100 unsigned int flags;
cd3decdf 101 struct tipc_node_map bcast_nodes;
01d83edd 102 struct tipc_node *retransmit_to;
b97bf3fd
PL
103};
104
eb8b00f5
YX
105static struct tipc_bcbearer *bcbearer;
106static struct tipc_bclink *bclink;
107static struct tipc_link *bcl;
b97bf3fd 108
3aec9cc9 109const char tipc_bclink_name[] = "broadcast-link";
b97bf3fd 110
31e3c3f6 111static void tipc_nmap_diff(struct tipc_node_map *nm_a,
112 struct tipc_node_map *nm_b,
113 struct tipc_node_map *nm_diff);
28dd9418
YX
114static void tipc_nmap_add(struct tipc_node_map *nm_ptr, u32 node);
115static void tipc_nmap_remove(struct tipc_node_map *nm_ptr, u32 node);
b97bf3fd 116
d69afc90
YX
117static void tipc_bclink_lock(void)
118{
119 spin_lock_bh(&bclink->lock);
120}
121
122static void tipc_bclink_unlock(void)
123{
3f5a12bd
YX
124 struct tipc_node *node = NULL;
125
126 if (likely(!bclink->flags)) {
127 spin_unlock_bh(&bclink->lock);
128 return;
129 }
130
131 if (bclink->flags & TIPC_BCLINK_RESET) {
132 bclink->flags &= ~TIPC_BCLINK_RESET;
133 node = tipc_bclink_retransmit_to();
134 }
d69afc90 135 spin_unlock_bh(&bclink->lock);
3f5a12bd
YX
136
137 if (node)
138 tipc_link_reset_all(node);
139}
140
141void tipc_bclink_set_flags(unsigned int flags)
142{
143 bclink->flags |= flags;
d69afc90
YX
144}
145
05790c64 146static u32 bcbuf_acks(struct sk_buff *buf)
b97bf3fd 147{
880b005f 148 return (u32)(unsigned long)TIPC_SKB_CB(buf)->handle;
b97bf3fd
PL
149}
150
05790c64 151static void bcbuf_set_acks(struct sk_buff *buf, u32 acks)
b97bf3fd 152{
880b005f 153 TIPC_SKB_CB(buf)->handle = (void *)(unsigned long)acks;
b97bf3fd
PL
154}
155
05790c64 156static void bcbuf_decr_acks(struct sk_buff *buf)
b97bf3fd
PL
157{
158 bcbuf_set_acks(buf, bcbuf_acks(buf) - 1);
159}
160
cd3decdf
AS
161void tipc_bclink_add_node(u32 addr)
162{
d69afc90 163 tipc_bclink_lock();
cd3decdf 164 tipc_nmap_add(&bclink->bcast_nodes, addr);
d69afc90 165 tipc_bclink_unlock();
cd3decdf
AS
166}
167
168void tipc_bclink_remove_node(u32 addr)
169{
d69afc90 170 tipc_bclink_lock();
cd3decdf 171 tipc_nmap_remove(&bclink->bcast_nodes, addr);
d69afc90 172 tipc_bclink_unlock();
cd3decdf 173}
b97bf3fd 174
5b1f7bde
AS
175static void bclink_set_last_sent(void)
176{
177 if (bcl->next_out)
178 bcl->fsm_msg_cnt = mod(buf_seqno(bcl->next_out) - 1);
179 else
180 bcl->fsm_msg_cnt = mod(bcl->next_out_no - 1);
181}
182
183u32 tipc_bclink_get_last_sent(void)
184{
185 return bcl->fsm_msg_cnt;
186}
187
7a54d4a9 188static void bclink_update_last_sent(struct tipc_node *node, u32 seqno)
b97bf3fd 189{
7a54d4a9
AS
190 node->bclink.last_sent = less_eq(node->bclink.last_sent, seqno) ?
191 seqno : node->bclink.last_sent;
b97bf3fd
PL
192}
193
b97bf3fd 194
2c53040f 195/**
01d83edd
AS
196 * tipc_bclink_retransmit_to - get most recent node to request retransmission
197 *
d69afc90 198 * Called with bclink_lock locked
01d83edd 199 */
01d83edd
AS
200struct tipc_node *tipc_bclink_retransmit_to(void)
201{
202 return bclink->retransmit_to;
203}
204
c4307285 205/**
b97bf3fd
PL
206 * bclink_retransmit_pkt - retransmit broadcast packets
207 * @after: sequence number of last packet to *not* retransmit
208 * @to: sequence number of last packet to retransmit
c4307285 209 *
d69afc90 210 * Called with bclink_lock locked
b97bf3fd 211 */
b97bf3fd
PL
212static void bclink_retransmit_pkt(u32 after, u32 to)
213{
214 struct sk_buff *buf;
215
b97bf3fd 216 buf = bcl->first_out;
a016892c 217 while (buf && less_eq(buf_seqno(buf), after))
c4307285 218 buf = buf->next;
d356eeba 219 tipc_link_retransmit(bcl, buf, mod(to - after));
b97bf3fd
PL
220}
221
c4307285 222/**
4323add6 223 * tipc_bclink_acknowledge - handle acknowledgement of broadcast packets
b97bf3fd
PL
224 * @n_ptr: node that sent acknowledgement info
225 * @acked: broadcast sequence # that has been acknowledged
c4307285 226 *
d69afc90 227 * Node is locked, bclink_lock unlocked.
b97bf3fd 228 */
6c00055a 229void tipc_bclink_acknowledge(struct tipc_node *n_ptr, u32 acked)
b97bf3fd
PL
230{
231 struct sk_buff *crs;
232 struct sk_buff *next;
233 unsigned int released = 0;
234
d69afc90 235 tipc_bclink_lock();
36559591 236 /* Bail out if tx queue is empty (no clean up is required) */
b97bf3fd 237 crs = bcl->first_out;
36559591
AS
238 if (!crs)
239 goto exit;
240
241 /* Determine which messages need to be acknowledged */
242 if (acked == INVALID_LINK_SEQ) {
243 /*
244 * Contact with specified node has been lost, so need to
245 * acknowledge sent messages only (if other nodes still exist)
246 * or both sent and unsent messages (otherwise)
247 */
248 if (bclink->bcast_nodes.count)
249 acked = bcl->fsm_msg_cnt;
250 else
251 acked = bcl->next_out_no;
252 } else {
253 /*
254 * Bail out if specified sequence number does not correspond
255 * to a message that has been sent and not yet acknowledged
256 */
257 if (less(acked, buf_seqno(crs)) ||
258 less(bcl->fsm_msg_cnt, acked) ||
259 less_eq(acked, n_ptr->bclink.acked))
260 goto exit;
261 }
262
263 /* Skip over packets that node has previously acknowledged */
a016892c 264 while (crs && less_eq(buf_seqno(crs), n_ptr->bclink.acked))
b97bf3fd 265 crs = crs->next;
b97bf3fd
PL
266
267 /* Update packets that node is now acknowledging */
268
269 while (crs && less_eq(buf_seqno(crs), acked)) {
270 next = crs->next;
10745cd5
AS
271
272 if (crs != bcl->next_out)
273 bcbuf_decr_acks(crs);
10745cd5
AS
274 else {
275 bcbuf_set_acks(crs, 0);
276 bcl->next_out = next;
277 bclink_set_last_sent();
278 }
279
b97bf3fd
PL
280 if (bcbuf_acks(crs) == 0) {
281 bcl->first_out = next;
282 bcl->out_queue_size--;
5f6d9123 283 kfree_skb(crs);
b97bf3fd
PL
284 released = 1;
285 }
286 crs = next;
287 }
288 n_ptr->bclink.acked = acked;
289
290 /* Try resolving broadcast link congestion, if necessary */
291
5b1f7bde 292 if (unlikely(bcl->next_out)) {
4323add6 293 tipc_link_push_queue(bcl);
5b1f7bde
AS
294 bclink_set_last_sent();
295 }
b97bf3fd 296 if (unlikely(released && !list_empty(&bcl->waiting_ports)))
4323add6 297 tipc_link_wakeup_ports(bcl, 0);
36559591 298exit:
d69afc90 299 tipc_bclink_unlock();
b97bf3fd
PL
300}
301
2c53040f 302/**
7a54d4a9 303 * tipc_bclink_update_link_state - update broadcast link state
c4307285 304 *
7216cd94 305 * RCU and node lock set
b97bf3fd 306 */
7a54d4a9 307void tipc_bclink_update_link_state(struct tipc_node *n_ptr, u32 last_sent)
b97bf3fd 308{
7a54d4a9 309 struct sk_buff *buf;
b97bf3fd 310
7a54d4a9 311 /* Ignore "stale" link state info */
b97bf3fd 312
7a54d4a9
AS
313 if (less_eq(last_sent, n_ptr->bclink.last_in))
314 return;
b97bf3fd 315
7a54d4a9
AS
316 /* Update link synchronization state; quit if in sync */
317
318 bclink_update_last_sent(n_ptr, last_sent);
319
320 if (n_ptr->bclink.last_sent == n_ptr->bclink.last_in)
321 return;
322
323 /* Update out-of-sync state; quit if loss is still unconfirmed */
324
325 if ((++n_ptr->bclink.oos_state) == 1) {
326 if (n_ptr->bclink.deferred_size < (TIPC_MIN_LINK_WIN / 2))
327 return;
328 n_ptr->bclink.oos_state++;
329 }
330
331 /* Don't NACK if one has been recently sent (or seen) */
b97bf3fd 332
7a54d4a9 333 if (n_ptr->bclink.oos_state & 0x1)
b97bf3fd
PL
334 return;
335
7a54d4a9
AS
336 /* Send NACK */
337
31e3c3f6 338 buf = tipc_buf_acquire(INT_H_SIZE);
b97bf3fd 339 if (buf) {
7a54d4a9
AS
340 struct tipc_msg *msg = buf_msg(buf);
341
c68ca7b7 342 tipc_msg_init(msg, BCAST_PROTOCOL, STATE_MSG,
7a54d4a9 343 INT_H_SIZE, n_ptr->addr);
bf781ecf 344 msg_set_non_seq(msg, 1);
b97bf3fd 345 msg_set_mc_netid(msg, tipc_net_id);
7a54d4a9
AS
346 msg_set_bcast_ack(msg, n_ptr->bclink.last_in);
347 msg_set_bcgap_after(msg, n_ptr->bclink.last_in);
348 msg_set_bcgap_to(msg, n_ptr->bclink.deferred_head
349 ? buf_seqno(n_ptr->bclink.deferred_head) - 1
350 : n_ptr->bclink.last_sent);
b97bf3fd 351
d69afc90 352 tipc_bclink_lock();
7a2f7d18 353 tipc_bearer_send(MAX_BEARERS, buf, NULL);
0f38513d 354 bcl->stats.sent_nacks++;
d69afc90 355 tipc_bclink_unlock();
5f6d9123 356 kfree_skb(buf);
b97bf3fd 357
7a54d4a9 358 n_ptr->bclink.oos_state++;
b97bf3fd
PL
359 }
360}
361
2c53040f 362/**
7a54d4a9 363 * bclink_peek_nack - monitor retransmission requests sent by other nodes
b97bf3fd 364 *
7a54d4a9
AS
365 * Delay any upcoming NACK by this node if another node has already
366 * requested the first message this node is going to ask for.
b97bf3fd 367 */
7a54d4a9 368static void bclink_peek_nack(struct tipc_msg *msg)
b97bf3fd 369{
7a54d4a9 370 struct tipc_node *n_ptr = tipc_node_find(msg_destnode(msg));
b97bf3fd 371
7a54d4a9 372 if (unlikely(!n_ptr))
b97bf3fd 373 return;
7a54d4a9 374
4323add6 375 tipc_node_lock(n_ptr);
7a54d4a9 376
389dd9bc 377 if (n_ptr->bclink.recv_permitted &&
7a54d4a9
AS
378 (n_ptr->bclink.last_in != n_ptr->bclink.last_sent) &&
379 (n_ptr->bclink.last_in == msg_bcgap_after(msg)))
380 n_ptr->bclink.oos_state = 2;
381
4323add6 382 tipc_node_unlock(n_ptr);
b97bf3fd
PL
383}
384
7a54d4a9 385/*
247f0f3c 386 * tipc_bclink_xmit - broadcast a packet to all nodes in cluster
b97bf3fd 387 */
247f0f3c 388int tipc_bclink_xmit(struct sk_buff *buf)
b97bf3fd
PL
389{
390 int res;
391
d69afc90 392 tipc_bclink_lock();
b97bf3fd 393
2b78f9a0
AS
394 if (!bclink->bcast_nodes.count) {
395 res = msg_data_sz(buf_msg(buf));
5f6d9123 396 kfree_skb(buf);
2b78f9a0
AS
397 goto exit;
398 }
399
247f0f3c 400 res = __tipc_link_xmit(bcl, buf);
9157bafb 401 if (likely(res >= 0)) {
5b1f7bde 402 bclink_set_last_sent();
9157bafb
AS
403 bcl->stats.queue_sz_counts++;
404 bcl->stats.accu_queue_sz += bcl->out_queue_size;
405 }
2b78f9a0 406exit:
d69afc90 407 tipc_bclink_unlock();
b97bf3fd
PL
408 return res;
409}
410
2c53040f 411/**
63e7f1ac
AS
412 * bclink_accept_pkt - accept an incoming, in-sequence broadcast packet
413 *
d69afc90 414 * Called with both sending node's lock and bclink_lock taken.
63e7f1ac 415 */
63e7f1ac
AS
416static void bclink_accept_pkt(struct tipc_node *node, u32 seqno)
417{
418 bclink_update_last_sent(node, seqno);
419 node->bclink.last_in = seqno;
420 node->bclink.oos_state = 0;
421 bcl->stats.recv_info++;
422
423 /*
424 * Unicast an ACK periodically, ensuring that
425 * all nodes in the cluster don't ACK at the same time
426 */
427
428 if (((seqno - tipc_own_addr) % TIPC_MIN_LINK_WIN) == 0) {
247f0f3c
YX
429 tipc_link_proto_xmit(node->active_links[node->addr & 1],
430 STATE_MSG, 0, 0, 0, 0, 0);
63e7f1ac
AS
431 bcl->stats.sent_acks++;
432 }
433}
434
2c53040f 435/**
247f0f3c 436 * tipc_bclink_rcv - receive a broadcast packet, and deliver upwards
c4307285 437 *
7216cd94 438 * RCU is locked, no other locks set
b97bf3fd 439 */
247f0f3c 440void tipc_bclink_rcv(struct sk_buff *buf)
d356eeba 441{
b97bf3fd 442 struct tipc_msg *msg = buf_msg(buf);
5d3c488d 443 struct tipc_node *node;
b97bf3fd
PL
444 u32 next_in;
445 u32 seqno;
8a275a6a 446 int deferred;
b97bf3fd 447
5d3c488d
AS
448 /* Screen out unwanted broadcast messages */
449
450 if (msg_mc_netid(msg) != tipc_net_id)
451 goto exit;
452
453 node = tipc_node_find(msg_prevnode(msg));
454 if (unlikely(!node))
455 goto exit;
456
457 tipc_node_lock(node);
389dd9bc 458 if (unlikely(!node->bclink.recv_permitted))
5d3c488d 459 goto unlock;
b97bf3fd 460
8a275a6a
AS
461 /* Handle broadcast protocol message */
462
b97bf3fd 463 if (unlikely(msg_user(msg) == BCAST_PROTOCOL)) {
9f6bdcd4
AS
464 if (msg_type(msg) != STATE_MSG)
465 goto unlock;
b97bf3fd 466 if (msg_destnode(msg) == tipc_own_addr) {
4323add6
PL
467 tipc_bclink_acknowledge(node, msg_bcast_ack(msg));
468 tipc_node_unlock(node);
d69afc90 469 tipc_bclink_lock();
b97bf3fd 470 bcl->stats.recv_nacks++;
01d83edd 471 bclink->retransmit_to = node;
b97bf3fd
PL
472 bclink_retransmit_pkt(msg_bcgap_after(msg),
473 msg_bcgap_to(msg));
d69afc90 474 tipc_bclink_unlock();
b97bf3fd 475 } else {
5d3c488d 476 tipc_node_unlock(node);
7a54d4a9 477 bclink_peek_nack(msg);
b97bf3fd 478 }
5d3c488d 479 goto exit;
b97bf3fd
PL
480 }
481
5d3c488d
AS
482 /* Handle in-sequence broadcast message */
483
b97bf3fd 484 seqno = msg_seqno(msg);
8a275a6a 485 next_in = mod(node->bclink.last_in + 1);
b97bf3fd
PL
486
487 if (likely(seqno == next_in)) {
8a275a6a 488receive:
7a54d4a9
AS
489 /* Deliver message to destination */
490
b97bf3fd 491 if (likely(msg_isdata(msg))) {
d69afc90 492 tipc_bclink_lock();
63e7f1ac 493 bclink_accept_pkt(node, seqno);
d69afc90 494 tipc_bclink_unlock();
4323add6 495 tipc_node_unlock(node);
9f6bdcd4 496 if (likely(msg_mcast(msg)))
247f0f3c 497 tipc_port_mcast_rcv(buf, NULL);
9f6bdcd4 498 else
5f6d9123 499 kfree_skb(buf);
b97bf3fd 500 } else if (msg_user(msg) == MSG_BUNDLER) {
d69afc90 501 tipc_bclink_lock();
63e7f1ac 502 bclink_accept_pkt(node, seqno);
b97bf3fd
PL
503 bcl->stats.recv_bundles++;
504 bcl->stats.recv_bundled += msg_msgcnt(msg);
d69afc90 505 tipc_bclink_unlock();
4323add6 506 tipc_node_unlock(node);
247f0f3c 507 tipc_link_bundle_rcv(buf);
b97bf3fd 508 } else if (msg_user(msg) == MSG_FRAGMENTER) {
37e22164
JPM
509 tipc_buf_append(&node->bclink.reasm_buf, &buf);
510 if (unlikely(!buf && !node->bclink.reasm_buf))
63e7f1ac 511 goto unlock;
d69afc90 512 tipc_bclink_lock();
63e7f1ac 513 bclink_accept_pkt(node, seqno);
b97bf3fd 514 bcl->stats.recv_fragments++;
37e22164 515 if (buf) {
b97bf3fd 516 bcl->stats.recv_fragmented++;
40ba3cdf 517 msg = buf_msg(buf);
d69afc90 518 tipc_bclink_unlock();
528f6f4b
EH
519 goto receive;
520 }
d69afc90 521 tipc_bclink_unlock();
4323add6 522 tipc_node_unlock(node);
9f6bdcd4 523 } else if (msg_user(msg) == NAME_DISTRIBUTOR) {
d69afc90 524 tipc_bclink_lock();
63e7f1ac 525 bclink_accept_pkt(node, seqno);
d69afc90 526 tipc_bclink_unlock();
9f6bdcd4 527 tipc_node_unlock(node);
247f0f3c 528 tipc_named_rcv(buf);
b97bf3fd 529 } else {
d69afc90 530 tipc_bclink_lock();
63e7f1ac 531 bclink_accept_pkt(node, seqno);
d69afc90 532 tipc_bclink_unlock();
4323add6 533 tipc_node_unlock(node);
5f6d9123 534 kfree_skb(buf);
b97bf3fd 535 }
5d3c488d 536 buf = NULL;
8a275a6a
AS
537
538 /* Determine new synchronization state */
539
5d3c488d 540 tipc_node_lock(node);
8a275a6a
AS
541 if (unlikely(!tipc_node_is_up(node)))
542 goto unlock;
543
7a54d4a9 544 if (node->bclink.last_in == node->bclink.last_sent)
8a275a6a
AS
545 goto unlock;
546
7a54d4a9
AS
547 if (!node->bclink.deferred_head) {
548 node->bclink.oos_state = 1;
549 goto unlock;
550 }
551
8a275a6a
AS
552 msg = buf_msg(node->bclink.deferred_head);
553 seqno = msg_seqno(msg);
554 next_in = mod(next_in + 1);
555 if (seqno != next_in)
556 goto unlock;
557
558 /* Take in-sequence message from deferred queue & deliver it */
559
560 buf = node->bclink.deferred_head;
561 node->bclink.deferred_head = buf->next;
99941754 562 buf->next = NULL;
7a54d4a9 563 node->bclink.deferred_size--;
8a275a6a
AS
564 goto receive;
565 }
566
567 /* Handle out-of-sequence broadcast message */
568
569 if (less(next_in, seqno)) {
8a275a6a
AS
570 deferred = tipc_link_defer_pkt(&node->bclink.deferred_head,
571 &node->bclink.deferred_tail,
572 buf);
7a54d4a9
AS
573 node->bclink.deferred_size += deferred;
574 bclink_update_last_sent(node, seqno);
5d3c488d 575 buf = NULL;
8a275a6a
AS
576 } else
577 deferred = 0;
578
d69afc90 579 tipc_bclink_lock();
b98158e3 580
8a275a6a
AS
581 if (deferred)
582 bcl->stats.deferred_recv++;
0232c5a5
AS
583 else
584 bcl->stats.duplicates++;
8a275a6a 585
d69afc90 586 tipc_bclink_unlock();
b98158e3 587
5d3c488d 588unlock:
4323add6 589 tipc_node_unlock(node);
5d3c488d 590exit:
5f6d9123 591 kfree_skb(buf);
b97bf3fd
PL
592}
593
6c00055a 594u32 tipc_bclink_acks_missing(struct tipc_node *n_ptr)
b97bf3fd 595{
389dd9bc 596 return (n_ptr->bclink.recv_permitted &&
4323add6 597 (tipc_bclink_get_last_sent() != n_ptr->bclink.acked));
b97bf3fd
PL
598}
599
600
601/**
4323add6 602 * tipc_bcbearer_send - send a packet through the broadcast pseudo-bearer
c4307285 603 *
2ff9f924
AS
604 * Send packet over as many bearers as necessary to reach all nodes
605 * that have joined the broadcast link.
c4307285 606 *
2ff9f924
AS
607 * Returns 0 (packet sent successfully) under all circumstances,
608 * since the broadcast link's pseudo-bearer never blocks
b97bf3fd 609 */
ae8509c4 610static int tipc_bcbearer_send(struct sk_buff *buf, struct tipc_bearer *unused1,
988f088a 611 struct tipc_media_addr *unused2)
b97bf3fd 612{
b97bf3fd 613 int bp_index;
b97bf3fd 614
e6160710 615 /* Prepare broadcast link message for reliable transmission,
2ff9f924
AS
616 * if first time trying to send it;
617 * preparation is skipped for broadcast link protocol messages
618 * since they are sent in an unreliable manner and don't need it
619 */
b97bf3fd
PL
620 if (likely(!msg_non_seq(buf_msg(buf)))) {
621 struct tipc_msg *msg;
622
cd3decdf 623 bcbuf_set_acks(buf, bclink->bcast_nodes.count);
b97bf3fd 624 msg = buf_msg(buf);
40aecb1b 625 msg_set_non_seq(msg, 1);
b97bf3fd 626 msg_set_mc_netid(msg, tipc_net_id);
0048b826 627 bcl->stats.sent_info++;
5e726900 628
cd3decdf 629 if (WARN_ON(!bclink->bcast_nodes.count)) {
5e726900
AS
630 dump_stack();
631 return 0;
632 }
b97bf3fd
PL
633 }
634
b97bf3fd 635 /* Send buffer over bearers until all targets reached */
cd3decdf 636 bcbearer->remains = bclink->bcast_nodes;
b97bf3fd
PL
637
638 for (bp_index = 0; bp_index < MAX_BEARERS; bp_index++) {
2d627b92
AS
639 struct tipc_bearer *p = bcbearer->bpairs[bp_index].primary;
640 struct tipc_bearer *s = bcbearer->bpairs[bp_index].secondary;
77861d9c 641 struct tipc_bearer *b = p;
488fc9af 642 struct sk_buff *tbuf;
b97bf3fd
PL
643
644 if (!p)
e6160710 645 break; /* No more bearers to try */
b97bf3fd 646
77861d9c 647 tipc_nmap_diff(&bcbearer->remains, &b->nodes,
e6160710 648 &bcbearer->remains_new);
65f51ef0 649 if (bcbearer->remains_new.count == bcbearer->remains.count)
e6160710 650 continue; /* Nothing added by bearer pair */
b97bf3fd 651
488fc9af
GF
652 if (bp_index == 0) {
653 /* Use original buffer for first bearer */
7a2f7d18 654 tipc_bearer_send(b->identity, buf, &b->bcast_addr);
488fc9af
GF
655 } else {
656 /* Avoid concurrent buffer access */
bad93e9d 657 tbuf = pskb_copy_for_clone(buf, GFP_ATOMIC);
488fc9af
GF
658 if (!tbuf)
659 break;
7a2f7d18 660 tipc_bearer_send(b->identity, tbuf, &b->bcast_addr);
488fc9af
GF
661 kfree_skb(tbuf); /* Bearer keeps a clone */
662 }
1a624832 663
e6160710 664 /* Swap bearers for next packet */
1a624832
NH
665 if (s) {
666 bcbearer->bpairs[bp_index].primary = s;
667 bcbearer->bpairs[bp_index].secondary = p;
b97bf3fd
PL
668 }
669
65f51ef0 670 if (bcbearer->remains_new.count == 0)
e6160710 671 break; /* All targets reached */
b97bf3fd 672
65f51ef0 673 bcbearer->remains = bcbearer->remains_new;
b97bf3fd 674 }
c4307285 675
2ff9f924 676 return 0;
b97bf3fd
PL
677}
678
679/**
4323add6 680 * tipc_bcbearer_sort - create sets of bearer pairs used by broadcast bearer
b97bf3fd 681 */
28dd9418 682void tipc_bcbearer_sort(struct tipc_node_map *nm_ptr, u32 node, bool action)
b97bf3fd 683{
7f9ab6ac
PG
684 struct tipc_bcbearer_pair *bp_temp = bcbearer->bpairs_temp;
685 struct tipc_bcbearer_pair *bp_curr;
f8322dfc 686 struct tipc_bearer *b;
b97bf3fd
PL
687 int b_index;
688 int pri;
689
d69afc90 690 tipc_bclink_lock();
b97bf3fd 691
28dd9418
YX
692 if (action)
693 tipc_nmap_add(nm_ptr, node);
694 else
695 tipc_nmap_remove(nm_ptr, node);
696
b97bf3fd 697 /* Group bearers by priority (can assume max of two per priority) */
b97bf3fd
PL
698 memset(bp_temp, 0, sizeof(bcbearer->bpairs_temp));
699
f8322dfc 700 rcu_read_lock();
b97bf3fd 701 for (b_index = 0; b_index < MAX_BEARERS; b_index++) {
f8322dfc 702 b = rcu_dereference_rtnl(bearer_list[b_index]);
f47de12b 703 if (!b || !b->nodes.count)
b97bf3fd
PL
704 continue;
705
706 if (!bp_temp[b->priority].primary)
707 bp_temp[b->priority].primary = b;
708 else
709 bp_temp[b->priority].secondary = b;
710 }
f8322dfc 711 rcu_read_unlock();
b97bf3fd
PL
712
713 /* Create array of bearer pairs for broadcasting */
b97bf3fd
PL
714 bp_curr = bcbearer->bpairs;
715 memset(bcbearer->bpairs, 0, sizeof(bcbearer->bpairs));
716
16cb4b33 717 for (pri = TIPC_MAX_LINK_PRI; pri >= 0; pri--) {
b97bf3fd
PL
718
719 if (!bp_temp[pri].primary)
720 continue;
721
722 bp_curr->primary = bp_temp[pri].primary;
723
724 if (bp_temp[pri].secondary) {
4323add6
PL
725 if (tipc_nmap_equal(&bp_temp[pri].primary->nodes,
726 &bp_temp[pri].secondary->nodes)) {
b97bf3fd
PL
727 bp_curr->secondary = bp_temp[pri].secondary;
728 } else {
729 bp_curr++;
730 bp_curr->primary = bp_temp[pri].secondary;
731 }
732 }
733
734 bp_curr++;
735 }
736
d69afc90 737 tipc_bclink_unlock();
b97bf3fd
PL
738}
739
b97bf3fd 740
4323add6 741int tipc_bclink_stats(char *buf, const u32 buf_size)
b97bf3fd 742{
dc1aed37
EH
743 int ret;
744 struct tipc_stats *s;
b97bf3fd
PL
745
746 if (!bcl)
747 return 0;
748
d69afc90 749 tipc_bclink_lock();
b97bf3fd 750
dc1aed37
EH
751 s = &bcl->stats;
752
753 ret = tipc_snprintf(buf, buf_size, "Link <%s>\n"
754 " Window:%u packets\n",
755 bcl->name, bcl->queue_limit[0]);
756 ret += tipc_snprintf(buf + ret, buf_size - ret,
757 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
758 s->recv_info, s->recv_fragments,
759 s->recv_fragmented, s->recv_bundles,
760 s->recv_bundled);
761 ret += tipc_snprintf(buf + ret, buf_size - ret,
762 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
763 s->sent_info, s->sent_fragments,
764 s->sent_fragmented, s->sent_bundles,
765 s->sent_bundled);
766 ret += tipc_snprintf(buf + ret, buf_size - ret,
767 " RX naks:%u defs:%u dups:%u\n",
768 s->recv_nacks, s->deferred_recv, s->duplicates);
769 ret += tipc_snprintf(buf + ret, buf_size - ret,
770 " TX naks:%u acks:%u dups:%u\n",
771 s->sent_nacks, s->sent_acks, s->retransmitted);
772 ret += tipc_snprintf(buf + ret, buf_size - ret,
3c294cb3
YX
773 " Congestion link:%u Send queue max:%u avg:%u\n",
774 s->link_congs, s->max_queue_sz,
dc1aed37
EH
775 s->queue_sz_counts ?
776 (s->accu_queue_sz / s->queue_sz_counts) : 0);
b97bf3fd 777
d69afc90 778 tipc_bclink_unlock();
dc1aed37 779 return ret;
b97bf3fd
PL
780}
781
4323add6 782int tipc_bclink_reset_stats(void)
b97bf3fd
PL
783{
784 if (!bcl)
785 return -ENOPROTOOPT;
786
d69afc90 787 tipc_bclink_lock();
b97bf3fd 788 memset(&bcl->stats, 0, sizeof(bcl->stats));
d69afc90 789 tipc_bclink_unlock();
0e35fd5e 790 return 0;
b97bf3fd
PL
791}
792
4323add6 793int tipc_bclink_set_queue_limits(u32 limit)
b97bf3fd
PL
794{
795 if (!bcl)
796 return -ENOPROTOOPT;
797 if ((limit < TIPC_MIN_LINK_WIN) || (limit > TIPC_MAX_LINK_WIN))
798 return -EINVAL;
799
d69afc90 800 tipc_bclink_lock();
4323add6 801 tipc_link_set_queue_limits(bcl, limit);
d69afc90 802 tipc_bclink_unlock();
0e35fd5e 803 return 0;
b97bf3fd
PL
804}
805
eb8b00f5 806int tipc_bclink_init(void)
b97bf3fd 807{
eb8b00f5
YX
808 bcbearer = kzalloc(sizeof(*bcbearer), GFP_ATOMIC);
809 if (!bcbearer)
810 return -ENOMEM;
811
812 bclink = kzalloc(sizeof(*bclink), GFP_ATOMIC);
813 if (!bclink) {
814 kfree(bcbearer);
815 return -ENOMEM;
816 }
817
818 bcl = &bclink->link;
b97bf3fd 819 bcbearer->bearer.media = &bcbearer->media;
4323add6 820 bcbearer->media.send_msg = tipc_bcbearer_send;
2e2d9be8 821 sprintf(bcbearer->media.name, "tipc-broadcast");
b97bf3fd 822
d69afc90 823 spin_lock_init(&bclink->lock);
b97bf3fd
PL
824 INIT_LIST_HEAD(&bcl->waiting_ports);
825 bcl->next_out_no = 1;
34af946a 826 spin_lock_init(&bclink->node.lock);
b97bf3fd 827 bcl->owner = &bclink->node;
c4307285 828 bcl->max_pkt = MAX_PKT_DEFAULT_MCAST;
4323add6 829 tipc_link_set_queue_limits(bcl, BCLINK_WIN_DEFAULT);
7a2f7d18 830 bcl->bearer_id = MAX_BEARERS;
f8322dfc 831 rcu_assign_pointer(bearer_list[MAX_BEARERS], &bcbearer->bearer);
b97bf3fd 832 bcl->state = WORKING_WORKING;
4b704d59 833 strlcpy(bcl->name, tipc_bclink_name, TIPC_MAX_LINK_NAME);
eb8b00f5 834 return 0;
b97bf3fd
PL
835}
836
4323add6 837void tipc_bclink_stop(void)
b97bf3fd 838{
d69afc90 839 tipc_bclink_lock();
581465fa 840 tipc_link_purge_queues(bcl);
d69afc90 841 tipc_bclink_unlock();
c47e9b91 842
f8322dfc 843 RCU_INIT_POINTER(bearer_list[BCBEARER], NULL);
eb8b00f5
YX
844 synchronize_net();
845 kfree(bcbearer);
846 kfree(bclink);
b97bf3fd
PL
847}
848
3e22e62b
AS
849/**
850 * tipc_nmap_add - add a node to a node map
851 */
28dd9418 852static void tipc_nmap_add(struct tipc_node_map *nm_ptr, u32 node)
3e22e62b
AS
853{
854 int n = tipc_node(node);
855 int w = n / WSIZE;
856 u32 mask = (1 << (n % WSIZE));
857
858 if ((nm_ptr->map[w] & mask) == 0) {
859 nm_ptr->count++;
860 nm_ptr->map[w] |= mask;
861 }
862}
863
864/**
865 * tipc_nmap_remove - remove a node from a node map
866 */
28dd9418 867static void tipc_nmap_remove(struct tipc_node_map *nm_ptr, u32 node)
3e22e62b
AS
868{
869 int n = tipc_node(node);
870 int w = n / WSIZE;
871 u32 mask = (1 << (n % WSIZE));
872
873 if ((nm_ptr->map[w] & mask) != 0) {
874 nm_ptr->map[w] &= ~mask;
875 nm_ptr->count--;
876 }
877}
878
879/**
880 * tipc_nmap_diff - find differences between node maps
881 * @nm_a: input node map A
882 * @nm_b: input node map B
883 * @nm_diff: output node map A-B (i.e. nodes of A that are not in B)
884 */
31e3c3f6 885static void tipc_nmap_diff(struct tipc_node_map *nm_a,
886 struct tipc_node_map *nm_b,
887 struct tipc_node_map *nm_diff)
3e22e62b
AS
888{
889 int stop = ARRAY_SIZE(nm_a->map);
890 int w;
891 int b;
892 u32 map;
893
894 memset(nm_diff, 0, sizeof(*nm_diff));
895 for (w = 0; w < stop; w++) {
896 map = nm_a->map[w] ^ (nm_a->map[w] & nm_b->map[w]);
897 nm_diff->map[w] = map;
898 if (map != 0) {
899 for (b = 0 ; b < WSIZE; b++) {
900 if (map & (1 << b))
901 nm_diff->count++;
902 }
903 }
904 }
905}
43608edc
AS
906
907/**
908 * tipc_port_list_add - add a port to a port list, ensuring no duplicates
909 */
4584310b 910void tipc_port_list_add(struct tipc_port_list *pl_ptr, u32 port)
43608edc 911{
4584310b 912 struct tipc_port_list *item = pl_ptr;
43608edc
AS
913 int i;
914 int item_sz = PLSIZE;
915 int cnt = pl_ptr->count;
916
917 for (; ; cnt -= item_sz, item = item->next) {
918 if (cnt < PLSIZE)
919 item_sz = cnt;
920 for (i = 0; i < item_sz; i++)
921 if (item->ports[i] == port)
922 return;
923 if (i < PLSIZE) {
924 item->ports[i] = port;
925 pl_ptr->count++;
926 return;
927 }
928 if (!item->next) {
929 item->next = kmalloc(sizeof(*item), GFP_ATOMIC);
930 if (!item->next) {
2cf8aa19 931 pr_warn("Incomplete multicast delivery, no memory\n");
43608edc
AS
932 return;
933 }
934 item->next->next = NULL;
935 }
936 }
937}
938
939/**
940 * tipc_port_list_free - free dynamically created entries in port_list chain
941 *
942 */
4584310b 943void tipc_port_list_free(struct tipc_port_list *pl_ptr)
43608edc 944{
4584310b
PG
945 struct tipc_port_list *item;
946 struct tipc_port_list *next;
43608edc
AS
947
948 for (item = pl_ptr->next; item; item = next) {
949 next = item->next;
950 kfree(item);
951 }
952}