net: add __pskb_copy_fclone and pskb_copy_for_clone
[deliverable/linux.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;
7a54d4a9 562 node->bclink.deferred_size--;
8a275a6a
AS
563 goto receive;
564 }
565
566 /* Handle out-of-sequence broadcast message */
567
568 if (less(next_in, seqno)) {
8a275a6a
AS
569 deferred = tipc_link_defer_pkt(&node->bclink.deferred_head,
570 &node->bclink.deferred_tail,
571 buf);
7a54d4a9
AS
572 node->bclink.deferred_size += deferred;
573 bclink_update_last_sent(node, seqno);
5d3c488d 574 buf = NULL;
8a275a6a
AS
575 } else
576 deferred = 0;
577
d69afc90 578 tipc_bclink_lock();
b98158e3 579
8a275a6a
AS
580 if (deferred)
581 bcl->stats.deferred_recv++;
0232c5a5
AS
582 else
583 bcl->stats.duplicates++;
8a275a6a 584
d69afc90 585 tipc_bclink_unlock();
b98158e3 586
5d3c488d 587unlock:
4323add6 588 tipc_node_unlock(node);
5d3c488d 589exit:
5f6d9123 590 kfree_skb(buf);
b97bf3fd
PL
591}
592
6c00055a 593u32 tipc_bclink_acks_missing(struct tipc_node *n_ptr)
b97bf3fd 594{
389dd9bc 595 return (n_ptr->bclink.recv_permitted &&
4323add6 596 (tipc_bclink_get_last_sent() != n_ptr->bclink.acked));
b97bf3fd
PL
597}
598
599
600/**
4323add6 601 * tipc_bcbearer_send - send a packet through the broadcast pseudo-bearer
c4307285 602 *
2ff9f924
AS
603 * Send packet over as many bearers as necessary to reach all nodes
604 * that have joined the broadcast link.
c4307285 605 *
2ff9f924
AS
606 * Returns 0 (packet sent successfully) under all circumstances,
607 * since the broadcast link's pseudo-bearer never blocks
b97bf3fd 608 */
ae8509c4 609static int tipc_bcbearer_send(struct sk_buff *buf, struct tipc_bearer *unused1,
988f088a 610 struct tipc_media_addr *unused2)
b97bf3fd 611{
b97bf3fd 612 int bp_index;
b97bf3fd 613
e6160710 614 /* Prepare broadcast link message for reliable transmission,
2ff9f924
AS
615 * if first time trying to send it;
616 * preparation is skipped for broadcast link protocol messages
617 * since they are sent in an unreliable manner and don't need it
618 */
b97bf3fd
PL
619 if (likely(!msg_non_seq(buf_msg(buf)))) {
620 struct tipc_msg *msg;
621
cd3decdf 622 bcbuf_set_acks(buf, bclink->bcast_nodes.count);
b97bf3fd 623 msg = buf_msg(buf);
40aecb1b 624 msg_set_non_seq(msg, 1);
b97bf3fd 625 msg_set_mc_netid(msg, tipc_net_id);
0048b826 626 bcl->stats.sent_info++;
5e726900 627
cd3decdf 628 if (WARN_ON(!bclink->bcast_nodes.count)) {
5e726900
AS
629 dump_stack();
630 return 0;
631 }
b97bf3fd
PL
632 }
633
b97bf3fd 634 /* Send buffer over bearers until all targets reached */
cd3decdf 635 bcbearer->remains = bclink->bcast_nodes;
b97bf3fd
PL
636
637 for (bp_index = 0; bp_index < MAX_BEARERS; bp_index++) {
2d627b92
AS
638 struct tipc_bearer *p = bcbearer->bpairs[bp_index].primary;
639 struct tipc_bearer *s = bcbearer->bpairs[bp_index].secondary;
77861d9c 640 struct tipc_bearer *b = p;
488fc9af 641 struct sk_buff *tbuf;
b97bf3fd
PL
642
643 if (!p)
e6160710 644 break; /* No more bearers to try */
b97bf3fd 645
77861d9c 646 tipc_nmap_diff(&bcbearer->remains, &b->nodes,
e6160710 647 &bcbearer->remains_new);
65f51ef0 648 if (bcbearer->remains_new.count == bcbearer->remains.count)
e6160710 649 continue; /* Nothing added by bearer pair */
b97bf3fd 650
488fc9af
GF
651 if (bp_index == 0) {
652 /* Use original buffer for first bearer */
7a2f7d18 653 tipc_bearer_send(b->identity, buf, &b->bcast_addr);
488fc9af
GF
654 } else {
655 /* Avoid concurrent buffer access */
bad93e9d 656 tbuf = pskb_copy_for_clone(buf, GFP_ATOMIC);
488fc9af
GF
657 if (!tbuf)
658 break;
7a2f7d18 659 tipc_bearer_send(b->identity, tbuf, &b->bcast_addr);
488fc9af
GF
660 kfree_skb(tbuf); /* Bearer keeps a clone */
661 }
1a624832 662
e6160710 663 /* Swap bearers for next packet */
1a624832
NH
664 if (s) {
665 bcbearer->bpairs[bp_index].primary = s;
666 bcbearer->bpairs[bp_index].secondary = p;
b97bf3fd
PL
667 }
668
65f51ef0 669 if (bcbearer->remains_new.count == 0)
e6160710 670 break; /* All targets reached */
b97bf3fd 671
65f51ef0 672 bcbearer->remains = bcbearer->remains_new;
b97bf3fd 673 }
c4307285 674
2ff9f924 675 return 0;
b97bf3fd
PL
676}
677
678/**
4323add6 679 * tipc_bcbearer_sort - create sets of bearer pairs used by broadcast bearer
b97bf3fd 680 */
28dd9418 681void tipc_bcbearer_sort(struct tipc_node_map *nm_ptr, u32 node, bool action)
b97bf3fd 682{
7f9ab6ac
PG
683 struct tipc_bcbearer_pair *bp_temp = bcbearer->bpairs_temp;
684 struct tipc_bcbearer_pair *bp_curr;
f8322dfc 685 struct tipc_bearer *b;
b97bf3fd
PL
686 int b_index;
687 int pri;
688
d69afc90 689 tipc_bclink_lock();
b97bf3fd 690
28dd9418
YX
691 if (action)
692 tipc_nmap_add(nm_ptr, node);
693 else
694 tipc_nmap_remove(nm_ptr, node);
695
b97bf3fd 696 /* Group bearers by priority (can assume max of two per priority) */
b97bf3fd
PL
697 memset(bp_temp, 0, sizeof(bcbearer->bpairs_temp));
698
f8322dfc 699 rcu_read_lock();
b97bf3fd 700 for (b_index = 0; b_index < MAX_BEARERS; b_index++) {
f8322dfc 701 b = rcu_dereference_rtnl(bearer_list[b_index]);
f47de12b 702 if (!b || !b->nodes.count)
b97bf3fd
PL
703 continue;
704
705 if (!bp_temp[b->priority].primary)
706 bp_temp[b->priority].primary = b;
707 else
708 bp_temp[b->priority].secondary = b;
709 }
f8322dfc 710 rcu_read_unlock();
b97bf3fd
PL
711
712 /* Create array of bearer pairs for broadcasting */
b97bf3fd
PL
713 bp_curr = bcbearer->bpairs;
714 memset(bcbearer->bpairs, 0, sizeof(bcbearer->bpairs));
715
16cb4b33 716 for (pri = TIPC_MAX_LINK_PRI; pri >= 0; pri--) {
b97bf3fd
PL
717
718 if (!bp_temp[pri].primary)
719 continue;
720
721 bp_curr->primary = bp_temp[pri].primary;
722
723 if (bp_temp[pri].secondary) {
4323add6
PL
724 if (tipc_nmap_equal(&bp_temp[pri].primary->nodes,
725 &bp_temp[pri].secondary->nodes)) {
b97bf3fd
PL
726 bp_curr->secondary = bp_temp[pri].secondary;
727 } else {
728 bp_curr++;
729 bp_curr->primary = bp_temp[pri].secondary;
730 }
731 }
732
733 bp_curr++;
734 }
735
d69afc90 736 tipc_bclink_unlock();
b97bf3fd
PL
737}
738
b97bf3fd 739
4323add6 740int tipc_bclink_stats(char *buf, const u32 buf_size)
b97bf3fd 741{
dc1aed37
EH
742 int ret;
743 struct tipc_stats *s;
b97bf3fd
PL
744
745 if (!bcl)
746 return 0;
747
d69afc90 748 tipc_bclink_lock();
b97bf3fd 749
dc1aed37
EH
750 s = &bcl->stats;
751
752 ret = tipc_snprintf(buf, buf_size, "Link <%s>\n"
753 " Window:%u packets\n",
754 bcl->name, bcl->queue_limit[0]);
755 ret += tipc_snprintf(buf + ret, buf_size - ret,
756 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
757 s->recv_info, s->recv_fragments,
758 s->recv_fragmented, s->recv_bundles,
759 s->recv_bundled);
760 ret += tipc_snprintf(buf + ret, buf_size - ret,
761 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
762 s->sent_info, s->sent_fragments,
763 s->sent_fragmented, s->sent_bundles,
764 s->sent_bundled);
765 ret += tipc_snprintf(buf + ret, buf_size - ret,
766 " RX naks:%u defs:%u dups:%u\n",
767 s->recv_nacks, s->deferred_recv, s->duplicates);
768 ret += tipc_snprintf(buf + ret, buf_size - ret,
769 " TX naks:%u acks:%u dups:%u\n",
770 s->sent_nacks, s->sent_acks, s->retransmitted);
771 ret += tipc_snprintf(buf + ret, buf_size - ret,
3c294cb3
YX
772 " Congestion link:%u Send queue max:%u avg:%u\n",
773 s->link_congs, s->max_queue_sz,
dc1aed37
EH
774 s->queue_sz_counts ?
775 (s->accu_queue_sz / s->queue_sz_counts) : 0);
b97bf3fd 776
d69afc90 777 tipc_bclink_unlock();
dc1aed37 778 return ret;
b97bf3fd
PL
779}
780
4323add6 781int tipc_bclink_reset_stats(void)
b97bf3fd
PL
782{
783 if (!bcl)
784 return -ENOPROTOOPT;
785
d69afc90 786 tipc_bclink_lock();
b97bf3fd 787 memset(&bcl->stats, 0, sizeof(bcl->stats));
d69afc90 788 tipc_bclink_unlock();
0e35fd5e 789 return 0;
b97bf3fd
PL
790}
791
4323add6 792int tipc_bclink_set_queue_limits(u32 limit)
b97bf3fd
PL
793{
794 if (!bcl)
795 return -ENOPROTOOPT;
796 if ((limit < TIPC_MIN_LINK_WIN) || (limit > TIPC_MAX_LINK_WIN))
797 return -EINVAL;
798
d69afc90 799 tipc_bclink_lock();
4323add6 800 tipc_link_set_queue_limits(bcl, limit);
d69afc90 801 tipc_bclink_unlock();
0e35fd5e 802 return 0;
b97bf3fd
PL
803}
804
eb8b00f5 805int tipc_bclink_init(void)
b97bf3fd 806{
eb8b00f5
YX
807 bcbearer = kzalloc(sizeof(*bcbearer), GFP_ATOMIC);
808 if (!bcbearer)
809 return -ENOMEM;
810
811 bclink = kzalloc(sizeof(*bclink), GFP_ATOMIC);
812 if (!bclink) {
813 kfree(bcbearer);
814 return -ENOMEM;
815 }
816
817 bcl = &bclink->link;
b97bf3fd 818 bcbearer->bearer.media = &bcbearer->media;
4323add6 819 bcbearer->media.send_msg = tipc_bcbearer_send;
2e2d9be8 820 sprintf(bcbearer->media.name, "tipc-broadcast");
b97bf3fd 821
d69afc90 822 spin_lock_init(&bclink->lock);
b97bf3fd
PL
823 INIT_LIST_HEAD(&bcl->waiting_ports);
824 bcl->next_out_no = 1;
34af946a 825 spin_lock_init(&bclink->node.lock);
b97bf3fd 826 bcl->owner = &bclink->node;
c4307285 827 bcl->max_pkt = MAX_PKT_DEFAULT_MCAST;
4323add6 828 tipc_link_set_queue_limits(bcl, BCLINK_WIN_DEFAULT);
7a2f7d18 829 bcl->bearer_id = MAX_BEARERS;
f8322dfc 830 rcu_assign_pointer(bearer_list[MAX_BEARERS], &bcbearer->bearer);
b97bf3fd 831 bcl->state = WORKING_WORKING;
4b704d59 832 strlcpy(bcl->name, tipc_bclink_name, TIPC_MAX_LINK_NAME);
eb8b00f5 833 return 0;
b97bf3fd
PL
834}
835
4323add6 836void tipc_bclink_stop(void)
b97bf3fd 837{
d69afc90 838 tipc_bclink_lock();
581465fa 839 tipc_link_purge_queues(bcl);
d69afc90 840 tipc_bclink_unlock();
c47e9b91 841
f8322dfc 842 RCU_INIT_POINTER(bearer_list[BCBEARER], NULL);
eb8b00f5
YX
843 synchronize_net();
844 kfree(bcbearer);
845 kfree(bclink);
b97bf3fd
PL
846}
847
3e22e62b
AS
848/**
849 * tipc_nmap_add - add a node to a node map
850 */
28dd9418 851static void tipc_nmap_add(struct tipc_node_map *nm_ptr, u32 node)
3e22e62b
AS
852{
853 int n = tipc_node(node);
854 int w = n / WSIZE;
855 u32 mask = (1 << (n % WSIZE));
856
857 if ((nm_ptr->map[w] & mask) == 0) {
858 nm_ptr->count++;
859 nm_ptr->map[w] |= mask;
860 }
861}
862
863/**
864 * tipc_nmap_remove - remove a node from a node map
865 */
28dd9418 866static void tipc_nmap_remove(struct tipc_node_map *nm_ptr, u32 node)
3e22e62b
AS
867{
868 int n = tipc_node(node);
869 int w = n / WSIZE;
870 u32 mask = (1 << (n % WSIZE));
871
872 if ((nm_ptr->map[w] & mask) != 0) {
873 nm_ptr->map[w] &= ~mask;
874 nm_ptr->count--;
875 }
876}
877
878/**
879 * tipc_nmap_diff - find differences between node maps
880 * @nm_a: input node map A
881 * @nm_b: input node map B
882 * @nm_diff: output node map A-B (i.e. nodes of A that are not in B)
883 */
31e3c3f6 884static void tipc_nmap_diff(struct tipc_node_map *nm_a,
885 struct tipc_node_map *nm_b,
886 struct tipc_node_map *nm_diff)
3e22e62b
AS
887{
888 int stop = ARRAY_SIZE(nm_a->map);
889 int w;
890 int b;
891 u32 map;
892
893 memset(nm_diff, 0, sizeof(*nm_diff));
894 for (w = 0; w < stop; w++) {
895 map = nm_a->map[w] ^ (nm_a->map[w] & nm_b->map[w]);
896 nm_diff->map[w] = map;
897 if (map != 0) {
898 for (b = 0 ; b < WSIZE; b++) {
899 if (map & (1 << b))
900 nm_diff->count++;
901 }
902 }
903 }
904}
43608edc
AS
905
906/**
907 * tipc_port_list_add - add a port to a port list, ensuring no duplicates
908 */
4584310b 909void tipc_port_list_add(struct tipc_port_list *pl_ptr, u32 port)
43608edc 910{
4584310b 911 struct tipc_port_list *item = pl_ptr;
43608edc
AS
912 int i;
913 int item_sz = PLSIZE;
914 int cnt = pl_ptr->count;
915
916 for (; ; cnt -= item_sz, item = item->next) {
917 if (cnt < PLSIZE)
918 item_sz = cnt;
919 for (i = 0; i < item_sz; i++)
920 if (item->ports[i] == port)
921 return;
922 if (i < PLSIZE) {
923 item->ports[i] = port;
924 pl_ptr->count++;
925 return;
926 }
927 if (!item->next) {
928 item->next = kmalloc(sizeof(*item), GFP_ATOMIC);
929 if (!item->next) {
2cf8aa19 930 pr_warn("Incomplete multicast delivery, no memory\n");
43608edc
AS
931 return;
932 }
933 item->next->next = NULL;
934 }
935 }
936}
937
938/**
939 * tipc_port_list_free - free dynamically created entries in port_list chain
940 *
941 */
4584310b 942void tipc_port_list_free(struct tipc_port_list *pl_ptr)
43608edc 943{
4584310b
PG
944 struct tipc_port_list *item;
945 struct tipc_port_list *next;
43608edc
AS
946
947 for (item = pl_ptr->next; item; item = next) {
948 next = item->next;
949 kfree(item);
950 }
951}
This page took 0.707747 seconds and 5 git commands to generate.