blob: 738cb642d31b6429fe96a5c93e18c32ac6d66fe6 [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/bcast.c: TIPC broadcast code
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Per Liden593a5f22006-01-11 19:14:19 +01004 * Copyright (c) 2004-2006, Ericsson AB
Per Lidenb97bf3f2006-01-02 19:04:38 +01005 * Copyright (c) 2004, Intel Corporation.
Allan Stephens2d627b92011-01-07 13:00:11 -05006 * Copyright (c) 2005, 2010-2011, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01007 * All rights reserved.
8 *
Per Liden9ea1fd32006-01-11 13:30:43 +01009 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +010010 * modification, are permitted provided that the following conditions are met:
11 *
Per Liden9ea1fd32006-01-11 13:30:43 +010012 * 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.
Per Lidenb97bf3f2006-01-02 19:04:38 +010020 *
Per Liden9ea1fd32006-01-11 13:30:43 +010021 * 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
Per Lidenb97bf3f2006-01-02 19:04:38 +010035 * POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#include "core.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039#include "link.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "port.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010041#include "bcast.h"
Allan Stephens9f6bdcd42011-04-07 14:57:53 -040042#include "name_distr.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010043
Per Lidenb97bf3f2006-01-02 19:04:38 +010044#define MAX_PKT_DEFAULT_MCAST 1500 /* bcast link max packet size (fixed) */
45
46#define BCLINK_WIN_DEFAULT 20 /* bcast link window size (default) */
47
Per Lidenb97bf3f2006-01-02 19:04:38 +010048/**
49 * struct bcbearer_pair - a pair of bearers used by broadcast link
50 * @primary: pointer to primary bearer
51 * @secondary: pointer to secondary bearer
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090052 *
53 * Bearers must have same priority and same set of reachable destinations
Per Lidenb97bf3f2006-01-02 19:04:38 +010054 * to be paired.
55 */
56
57struct bcbearer_pair {
Allan Stephens2d627b92011-01-07 13:00:11 -050058 struct tipc_bearer *primary;
59 struct tipc_bearer *secondary;
Per Lidenb97bf3f2006-01-02 19:04:38 +010060};
61
62/**
63 * struct bcbearer - bearer used by broadcast link
64 * @bearer: (non-standard) broadcast bearer structure
65 * @media: (non-standard) broadcast media structure
66 * @bpairs: array of bearer pairs
Allan Stephens65f51ef2006-06-25 23:53:20 -070067 * @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()
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090070 *
Allan Stephens65f51ef2006-06-25 23:53:20 -070071 * 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
74 * prevented through use of the spinlock "bc_lock".
Per Lidenb97bf3f2006-01-02 19:04:38 +010075 */
76
77struct bcbearer {
Allan Stephens2d627b92011-01-07 13:00:11 -050078 struct tipc_bearer bearer;
Per Lidenb97bf3f2006-01-02 19:04:38 +010079 struct media media;
80 struct bcbearer_pair bpairs[MAX_BEARERS];
Per Liden16cb4b32006-01-13 22:22:22 +010081 struct bcbearer_pair bpairs_temp[TIPC_MAX_LINK_PRI + 1];
David S. Miller6c000552008-09-02 23:38:32 -070082 struct tipc_node_map remains;
83 struct tipc_node_map remains_new;
Per Lidenb97bf3f2006-01-02 19:04:38 +010084};
85
86/**
87 * struct bclink - link used for broadcast messages
88 * @link: (non-standard) broadcast link structure
89 * @node: (non-standard) node structure representing b'cast link's peer node
Allan Stephens01d83ed2011-01-18 13:53:16 -050090 * @retransmit_to: node that most recently requested a retransmit
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090091 *
Per Lidenb97bf3f2006-01-02 19:04:38 +010092 * Handles sequence numbering, fragmentation, bundling, etc.
93 */
94
95struct bclink {
96 struct link link;
David S. Miller6c000552008-09-02 23:38:32 -070097 struct tipc_node node;
Allan Stephens01d83ed2011-01-18 13:53:16 -050098 struct tipc_node *retransmit_to;
Per Lidenb97bf3f2006-01-02 19:04:38 +010099};
100
Allan Stephensc47e9b92011-10-24 10:29:26 -0400101static struct bcbearer bcast_bearer;
102static struct bclink bcast_link;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100103
Allan Stephensc47e9b92011-10-24 10:29:26 -0400104static struct bcbearer *bcbearer = &bcast_bearer;
105static struct bclink *bclink = &bcast_link;
106static struct link *bcl = &bcast_link.link;
107
Ingo Molnar34af9462006-06-27 02:53:55 -0700108static DEFINE_SPINLOCK(bc_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100109
Allan Stephens8f92df62010-12-31 18:59:19 +0000110/* broadcast-capable node map */
111struct tipc_node_map tipc_bcast_nmap;
112
Allan Stephens3aec9cc2010-05-11 14:30:07 +0000113const char tipc_bclink_name[] = "broadcast-link";
Per Lidenb97bf3f2006-01-02 19:04:38 +0100114
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000115static void tipc_nmap_diff(struct tipc_node_map *nm_a,
116 struct tipc_node_map *nm_b,
117 struct tipc_node_map *nm_diff);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100118
Sam Ravnborg05790c62006-03-20 22:37:04 -0800119static u32 buf_seqno(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100120{
121 return msg_seqno(buf_msg(buf));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900122}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100123
Sam Ravnborg05790c62006-03-20 22:37:04 -0800124static u32 bcbuf_acks(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100125{
David S. Miller880b0052006-01-12 13:22:32 -0800126 return (u32)(unsigned long)TIPC_SKB_CB(buf)->handle;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127}
128
Sam Ravnborg05790c62006-03-20 22:37:04 -0800129static void bcbuf_set_acks(struct sk_buff *buf, u32 acks)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100130{
David S. Miller880b0052006-01-12 13:22:32 -0800131 TIPC_SKB_CB(buf)->handle = (void *)(unsigned long)acks;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100132}
133
Sam Ravnborg05790c62006-03-20 22:37:04 -0800134static void bcbuf_decr_acks(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100135{
136 bcbuf_set_acks(buf, bcbuf_acks(buf) - 1);
137}
138
139
Allan Stephens5b1f7bd2010-08-17 11:00:09 +0000140static void bclink_set_last_sent(void)
141{
142 if (bcl->next_out)
143 bcl->fsm_msg_cnt = mod(buf_seqno(bcl->next_out) - 1);
144 else
145 bcl->fsm_msg_cnt = mod(bcl->next_out_no - 1);
146}
147
148u32 tipc_bclink_get_last_sent(void)
149{
150 return bcl->fsm_msg_cnt;
151}
152
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900153/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100154 * bclink_set_gap - set gap according to contents of current deferred pkt queue
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900155 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100156 * Called with 'node' locked, bc_lock unlocked
157 */
158
David S. Miller6c000552008-09-02 23:38:32 -0700159static void bclink_set_gap(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100160{
161 struct sk_buff *buf = n_ptr->bclink.deferred_head;
162
163 n_ptr->bclink.gap_after = n_ptr->bclink.gap_to =
164 mod(n_ptr->bclink.last_in);
165 if (unlikely(buf != NULL))
166 n_ptr->bclink.gap_to = mod(buf_seqno(buf) - 1);
167}
168
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900169/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100170 * bclink_ack_allowed - test if ACK or NACK message can be sent at this moment
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900171 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100172 * This mechanism endeavours to prevent all nodes in network from trying
173 * to ACK or NACK at the same time.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900174 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100175 * Note: TIPC uses a different trigger to distribute ACKs than it does to
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900176 * distribute NACKs, but tries to use the same spacing (divide by 16).
Per Lidenb97bf3f2006-01-02 19:04:38 +0100177 */
178
Sam Ravnborg05790c62006-03-20 22:37:04 -0800179static int bclink_ack_allowed(u32 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100180{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000181 return (n % TIPC_MIN_LINK_WIN) == tipc_own_tag;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100182}
183
184
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900185/**
Allan Stephens01d83ed2011-01-18 13:53:16 -0500186 * tipc_bclink_retransmit_to - get most recent node to request retransmission
187 *
188 * Called with bc_lock locked
189 */
190
191struct tipc_node *tipc_bclink_retransmit_to(void)
192{
193 return bclink->retransmit_to;
194}
195
196/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100197 * bclink_retransmit_pkt - retransmit broadcast packets
198 * @after: sequence number of last packet to *not* retransmit
199 * @to: sequence number of last packet to retransmit
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900200 *
Allan Stephensd356eeb2006-06-25 23:40:01 -0700201 * Called with bc_lock locked
Per Lidenb97bf3f2006-01-02 19:04:38 +0100202 */
203
204static void bclink_retransmit_pkt(u32 after, u32 to)
205{
206 struct sk_buff *buf;
207
Per Lidenb97bf3f2006-01-02 19:04:38 +0100208 buf = bcl->first_out;
Allan Stephensa0168922010-12-31 18:59:35 +0000209 while (buf && less_eq(buf_seqno(buf), after))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900210 buf = buf->next;
Allan Stephensd356eeb2006-06-25 23:40:01 -0700211 tipc_link_retransmit(bcl, buf, mod(to - after));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100212}
213
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900214/**
Per Liden4323add2006-01-18 00:38:21 +0100215 * tipc_bclink_acknowledge - handle acknowledgement of broadcast packets
Per Lidenb97bf3f2006-01-02 19:04:38 +0100216 * @n_ptr: node that sent acknowledgement info
217 * @acked: broadcast sequence # that has been acknowledged
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900218 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100219 * Node is locked, bc_lock unlocked.
220 */
221
David S. Miller6c000552008-09-02 23:38:32 -0700222void tipc_bclink_acknowledge(struct tipc_node *n_ptr, u32 acked)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100223{
224 struct sk_buff *crs;
225 struct sk_buff *next;
226 unsigned int released = 0;
227
228 if (less_eq(acked, n_ptr->bclink.acked))
229 return;
230
231 spin_lock_bh(&bc_lock);
232
233 /* Skip over packets that node has previously acknowledged */
234
235 crs = bcl->first_out;
Allan Stephensa0168922010-12-31 18:59:35 +0000236 while (crs && less_eq(buf_seqno(crs), n_ptr->bclink.acked))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100237 crs = crs->next;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100238
239 /* Update packets that node is now acknowledging */
240
241 while (crs && less_eq(buf_seqno(crs), acked)) {
242 next = crs->next;
243 bcbuf_decr_acks(crs);
244 if (bcbuf_acks(crs) == 0) {
245 bcl->first_out = next;
246 bcl->out_queue_size--;
247 buf_discard(crs);
248 released = 1;
249 }
250 crs = next;
251 }
252 n_ptr->bclink.acked = acked;
253
254 /* Try resolving broadcast link congestion, if necessary */
255
Allan Stephens5b1f7bd2010-08-17 11:00:09 +0000256 if (unlikely(bcl->next_out)) {
Per Liden4323add2006-01-18 00:38:21 +0100257 tipc_link_push_queue(bcl);
Allan Stephens5b1f7bd2010-08-17 11:00:09 +0000258 bclink_set_last_sent();
259 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100260 if (unlikely(released && !list_empty(&bcl->waiting_ports)))
Per Liden4323add2006-01-18 00:38:21 +0100261 tipc_link_wakeup_ports(bcl, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100262 spin_unlock_bh(&bc_lock);
263}
264
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900265/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100266 * bclink_send_ack - unicast an ACK msg
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900267 *
Per Liden4323add2006-01-18 00:38:21 +0100268 * tipc_net_lock and node lock set
Per Lidenb97bf3f2006-01-02 19:04:38 +0100269 */
270
David S. Miller6c000552008-09-02 23:38:32 -0700271static void bclink_send_ack(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100272{
273 struct link *l_ptr = n_ptr->active_links[n_ptr->addr & 1];
274
275 if (l_ptr != NULL)
Per Liden4323add2006-01-18 00:38:21 +0100276 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100277}
278
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900279/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100280 * bclink_send_nack- broadcast a NACK msg
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900281 *
Per Liden4323add2006-01-18 00:38:21 +0100282 * tipc_net_lock and node lock set
Per Lidenb97bf3f2006-01-02 19:04:38 +0100283 */
284
David S. Miller6c000552008-09-02 23:38:32 -0700285static void bclink_send_nack(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100286{
287 struct sk_buff *buf;
288 struct tipc_msg *msg;
289
290 if (!less(n_ptr->bclink.gap_after, n_ptr->bclink.gap_to))
291 return;
292
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000293 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100294 if (buf) {
295 msg = buf_msg(buf);
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000296 tipc_msg_init(msg, BCAST_PROTOCOL, STATE_MSG,
Allan Stephens75715212008-06-04 17:37:34 -0700297 INT_H_SIZE, n_ptr->addr);
Allan Stephensbf781ec2011-01-25 16:12:39 -0500298 msg_set_non_seq(msg, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100299 msg_set_mc_netid(msg, tipc_net_id);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900300 msg_set_bcast_ack(msg, mod(n_ptr->bclink.last_in));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100301 msg_set_bcgap_after(msg, n_ptr->bclink.gap_after);
302 msg_set_bcgap_to(msg, n_ptr->bclink.gap_to);
303 msg_set_bcast_tag(msg, tipc_own_tag);
304
Allan Stephens0f385132011-04-07 15:47:48 -0400305 tipc_bearer_send(&bcbearer->bearer, buf, NULL);
306 bcl->stats.sent_nacks++;
307 buf_discard(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100308
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900309 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100310 * Ensure we doesn't send another NACK msg to the node
311 * until 16 more deferred messages arrive from it
312 * (i.e. helps prevent all nodes from NACK'ing at same time)
313 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900314
Per Lidenb97bf3f2006-01-02 19:04:38 +0100315 n_ptr->bclink.nack_sync = tipc_own_tag;
316 }
317}
318
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900319/**
Per Liden4323add2006-01-18 00:38:21 +0100320 * tipc_bclink_check_gap - send a NACK if a sequence gap exists
Per Lidenb97bf3f2006-01-02 19:04:38 +0100321 *
Per Liden4323add2006-01-18 00:38:21 +0100322 * tipc_net_lock and node lock set
Per Lidenb97bf3f2006-01-02 19:04:38 +0100323 */
324
David S. Miller6c000552008-09-02 23:38:32 -0700325void tipc_bclink_check_gap(struct tipc_node *n_ptr, u32 last_sent)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100326{
327 if (!n_ptr->bclink.supported ||
328 less_eq(last_sent, mod(n_ptr->bclink.last_in)))
329 return;
330
331 bclink_set_gap(n_ptr);
332 if (n_ptr->bclink.gap_after == n_ptr->bclink.gap_to)
333 n_ptr->bclink.gap_to = last_sent;
334 bclink_send_nack(n_ptr);
335}
336
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900337/**
Per Liden4323add2006-01-18 00:38:21 +0100338 * tipc_bclink_peek_nack - process a NACK msg meant for another node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900339 *
Per Liden4323add2006-01-18 00:38:21 +0100340 * Only tipc_net_lock set.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100341 */
342
Adrian Bunk988f0882006-03-20 22:37:52 -0800343static void tipc_bclink_peek_nack(u32 dest, u32 sender_tag, u32 gap_after, u32 gap_to)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100344{
David S. Miller6c000552008-09-02 23:38:32 -0700345 struct tipc_node *n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100346 u32 my_after, my_to;
347
Per Liden4323add2006-01-18 00:38:21 +0100348 if (unlikely(!n_ptr || !tipc_node_is_up(n_ptr)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100349 return;
Per Liden4323add2006-01-18 00:38:21 +0100350 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100351 /*
352 * Modify gap to suppress unnecessary NACKs from this node
353 */
354 my_after = n_ptr->bclink.gap_after;
355 my_to = n_ptr->bclink.gap_to;
356
357 if (less_eq(gap_after, my_after)) {
358 if (less(my_after, gap_to) && less(gap_to, my_to))
359 n_ptr->bclink.gap_after = gap_to;
360 else if (less_eq(my_to, gap_to))
361 n_ptr->bclink.gap_to = n_ptr->bclink.gap_after;
362 } else if (less_eq(gap_after, my_to)) {
363 if (less_eq(my_to, gap_to))
364 n_ptr->bclink.gap_to = gap_after;
365 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900366 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100367 * Expand gap if missing bufs not in deferred queue:
368 */
369 struct sk_buff *buf = n_ptr->bclink.deferred_head;
370 u32 prev = n_ptr->bclink.gap_to;
371
372 for (; buf; buf = buf->next) {
373 u32 seqno = buf_seqno(buf);
374
Eric Sesterhenn3ac90212006-06-25 23:41:15 -0700375 if (mod(seqno - prev) != 1) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100376 buf = NULL;
Eric Sesterhenn3ac90212006-06-25 23:41:15 -0700377 break;
378 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100379 if (seqno == gap_after)
380 break;
381 prev = seqno;
382 }
383 if (buf == NULL)
384 n_ptr->bclink.gap_to = gap_after;
385 }
386 /*
387 * Some nodes may send a complementary NACK now:
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900388 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100389 if (bclink_ack_allowed(sender_tag + 1)) {
390 if (n_ptr->bclink.gap_to != n_ptr->bclink.gap_after) {
391 bclink_send_nack(n_ptr);
392 bclink_set_gap(n_ptr);
393 }
394 }
Per Liden4323add2006-01-18 00:38:21 +0100395 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100396}
397
398/**
Per Liden4323add2006-01-18 00:38:21 +0100399 * tipc_bclink_send_msg - broadcast a packet to all nodes in cluster
Per Lidenb97bf3f2006-01-02 19:04:38 +0100400 */
401
Per Liden4323add2006-01-18 00:38:21 +0100402int tipc_bclink_send_msg(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100403{
404 int res;
405
406 spin_lock_bh(&bc_lock);
407
Per Liden4323add2006-01-18 00:38:21 +0100408 res = tipc_link_send_buf(bcl, buf);
Allan Stephensbebc55a2011-04-19 10:17:58 -0400409 if (likely(res > 0))
Allan Stephens5b1f7bd2010-08-17 11:00:09 +0000410 bclink_set_last_sent();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100411
Per Lidenb97bf3f2006-01-02 19:04:38 +0100412 bcl->stats.queue_sz_counts++;
413 bcl->stats.accu_queue_sz += bcl->out_queue_size;
414
415 spin_unlock_bh(&bc_lock);
416 return res;
417}
418
419/**
Per Liden4323add2006-01-18 00:38:21 +0100420 * tipc_bclink_recv_pkt - receive a broadcast packet, and deliver upwards
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900421 *
Per Liden4323add2006-01-18 00:38:21 +0100422 * tipc_net_lock is read_locked, no other locks set
Per Lidenb97bf3f2006-01-02 19:04:38 +0100423 */
424
Per Liden4323add2006-01-18 00:38:21 +0100425void tipc_bclink_recv_pkt(struct sk_buff *buf)
Allan Stephensd356eeb2006-06-25 23:40:01 -0700426{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100427 struct tipc_msg *msg = buf_msg(buf);
Allan Stephens5d3c4882011-04-07 13:57:25 -0400428 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100429 u32 next_in;
430 u32 seqno;
431 struct sk_buff *deferred;
432
Allan Stephens5d3c4882011-04-07 13:57:25 -0400433 /* Screen out unwanted broadcast messages */
434
435 if (msg_mc_netid(msg) != tipc_net_id)
436 goto exit;
437
438 node = tipc_node_find(msg_prevnode(msg));
439 if (unlikely(!node))
440 goto exit;
441
442 tipc_node_lock(node);
443 if (unlikely(!node->bclink.supported))
444 goto unlock;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100445
446 if (unlikely(msg_user(msg) == BCAST_PROTOCOL)) {
Allan Stephens9f6bdcd42011-04-07 14:57:53 -0400447 if (msg_type(msg) != STATE_MSG)
448 goto unlock;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100449 if (msg_destnode(msg) == tipc_own_addr) {
Per Liden4323add2006-01-18 00:38:21 +0100450 tipc_bclink_acknowledge(node, msg_bcast_ack(msg));
451 tipc_node_unlock(node);
Allan Stephensd356eeb2006-06-25 23:40:01 -0700452 spin_lock_bh(&bc_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100453 bcl->stats.recv_nacks++;
Allan Stephens01d83ed2011-01-18 13:53:16 -0500454 bclink->retransmit_to = node;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100455 bclink_retransmit_pkt(msg_bcgap_after(msg),
456 msg_bcgap_to(msg));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900457 spin_unlock_bh(&bc_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100458 } else {
Allan Stephens5d3c4882011-04-07 13:57:25 -0400459 tipc_node_unlock(node);
Per Liden4323add2006-01-18 00:38:21 +0100460 tipc_bclink_peek_nack(msg_destnode(msg),
Adrian Bunk988f0882006-03-20 22:37:52 -0800461 msg_bcast_tag(msg),
462 msg_bcgap_after(msg),
463 msg_bcgap_to(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100464 }
Allan Stephens5d3c4882011-04-07 13:57:25 -0400465 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100466 }
467
Allan Stephens5d3c4882011-04-07 13:57:25 -0400468 /* Handle in-sequence broadcast message */
469
Per Lidenb97bf3f2006-01-02 19:04:38 +0100470receive:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100471 next_in = mod(node->bclink.last_in + 1);
472 seqno = msg_seqno(msg);
473
474 if (likely(seqno == next_in)) {
475 bcl->stats.recv_info++;
476 node->bclink.last_in++;
477 bclink_set_gap(node);
478 if (unlikely(bclink_ack_allowed(seqno))) {
479 bclink_send_ack(node);
480 bcl->stats.sent_acks++;
481 }
482 if (likely(msg_isdata(msg))) {
Per Liden4323add2006-01-18 00:38:21 +0100483 tipc_node_unlock(node);
Allan Stephens9f6bdcd42011-04-07 14:57:53 -0400484 if (likely(msg_mcast(msg)))
485 tipc_port_recv_mcast(buf, NULL);
486 else
487 buf_discard(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100488 } else if (msg_user(msg) == MSG_BUNDLER) {
489 bcl->stats.recv_bundles++;
490 bcl->stats.recv_bundled += msg_msgcnt(msg);
Per Liden4323add2006-01-18 00:38:21 +0100491 tipc_node_unlock(node);
492 tipc_link_recv_bundle(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100493 } else if (msg_user(msg) == MSG_FRAGMENTER) {
494 bcl->stats.recv_fragments++;
Per Liden4323add2006-01-18 00:38:21 +0100495 if (tipc_link_recv_fragment(&node->bclink.defragm,
496 &buf, &msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100497 bcl->stats.recv_fragmented++;
Per Liden4323add2006-01-18 00:38:21 +0100498 tipc_node_unlock(node);
499 tipc_net_route_msg(buf);
Allan Stephens9f6bdcd42011-04-07 14:57:53 -0400500 } else if (msg_user(msg) == NAME_DISTRIBUTOR) {
501 tipc_node_unlock(node);
502 tipc_named_recv(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100503 } else {
Per Liden4323add2006-01-18 00:38:21 +0100504 tipc_node_unlock(node);
Allan Stephens9f6bdcd42011-04-07 14:57:53 -0400505 buf_discard(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100506 }
Allan Stephens5d3c4882011-04-07 13:57:25 -0400507 buf = NULL;
508 tipc_node_lock(node);
Allan Stephens693d03a2011-04-07 14:20:45 -0400509 deferred = node->bclink.deferred_head;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100510 if (deferred && (buf_seqno(deferred) == mod(next_in + 1))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100511 buf = deferred;
512 msg = buf_msg(buf);
513 node->bclink.deferred_head = deferred->next;
514 goto receive;
515 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100516 } else if (less(next_in, seqno)) {
517 u32 gap_after = node->bclink.gap_after;
518 u32 gap_to = node->bclink.gap_to;
519
Per Liden4323add2006-01-18 00:38:21 +0100520 if (tipc_link_defer_pkt(&node->bclink.deferred_head,
521 &node->bclink.deferred_tail,
522 buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100523 node->bclink.nack_sync++;
524 bcl->stats.deferred_recv++;
525 if (seqno == mod(gap_after + 1))
526 node->bclink.gap_after = seqno;
527 else if (less(gap_after, seqno) && less(seqno, gap_to))
528 node->bclink.gap_to = seqno;
529 }
Allan Stephens5d3c4882011-04-07 13:57:25 -0400530 buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100531 if (bclink_ack_allowed(node->bclink.nack_sync)) {
532 if (gap_to != gap_after)
533 bclink_send_nack(node);
534 bclink_set_gap(node);
535 }
536 } else {
537 bcl->stats.duplicates++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100538 }
Allan Stephens5d3c4882011-04-07 13:57:25 -0400539unlock:
Per Liden4323add2006-01-18 00:38:21 +0100540 tipc_node_unlock(node);
Allan Stephens5d3c4882011-04-07 13:57:25 -0400541exit:
542 buf_discard(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100543}
544
David S. Miller6c000552008-09-02 23:38:32 -0700545u32 tipc_bclink_acks_missing(struct tipc_node *n_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100546{
547 return (n_ptr->bclink.supported &&
Per Liden4323add2006-01-18 00:38:21 +0100548 (tipc_bclink_get_last_sent() != n_ptr->bclink.acked));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100549}
550
551
552/**
Per Liden4323add2006-01-18 00:38:21 +0100553 * tipc_bcbearer_send - send a packet through the broadcast pseudo-bearer
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900554 *
Allan Stephens2ff9f922011-04-07 10:44:54 -0400555 * Send packet over as many bearers as necessary to reach all nodes
556 * that have joined the broadcast link.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900557 *
Allan Stephens2ff9f922011-04-07 10:44:54 -0400558 * Returns 0 (packet sent successfully) under all circumstances,
559 * since the broadcast link's pseudo-bearer never blocks
Per Lidenb97bf3f2006-01-02 19:04:38 +0100560 */
561
Adrian Bunk988f0882006-03-20 22:37:52 -0800562static int tipc_bcbearer_send(struct sk_buff *buf,
563 struct tipc_bearer *unused1,
564 struct tipc_media_addr *unused2)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100565{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100566 int bp_index;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100567
Allan Stephens2ff9f922011-04-07 10:44:54 -0400568 /*
569 * Prepare broadcast link message for reliable transmission,
570 * if first time trying to send it;
571 * preparation is skipped for broadcast link protocol messages
572 * since they are sent in an unreliable manner and don't need it
573 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100574
575 if (likely(!msg_non_seq(buf_msg(buf)))) {
576 struct tipc_msg *msg;
577
Allan Stephens8f92df62010-12-31 18:59:19 +0000578 bcbuf_set_acks(buf, tipc_bcast_nmap.count);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100579 msg = buf_msg(buf);
Allan Stephens40aecb12008-06-04 17:54:48 -0700580 msg_set_non_seq(msg, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100581 msg_set_mc_netid(msg, tipc_net_id);
Allan Stephens0048b822010-08-17 11:00:10 +0000582 bcl->stats.sent_info++;
Allan Stephens5e726902011-05-23 13:14:18 -0400583
584 if (WARN_ON(!tipc_bcast_nmap.count)) {
585 dump_stack();
586 return 0;
587 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100588 }
589
Per Lidenb97bf3f2006-01-02 19:04:38 +0100590 /* Send buffer over bearers until all targets reached */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900591
Allan Stephens8f92df62010-12-31 18:59:19 +0000592 bcbearer->remains = tipc_bcast_nmap;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100593
594 for (bp_index = 0; bp_index < MAX_BEARERS; bp_index++) {
Allan Stephens2d627b92011-01-07 13:00:11 -0500595 struct tipc_bearer *p = bcbearer->bpairs[bp_index].primary;
596 struct tipc_bearer *s = bcbearer->bpairs[bp_index].secondary;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100597
598 if (!p)
599 break; /* no more bearers to try */
600
Allan Stephens65f51ef2006-06-25 23:53:20 -0700601 tipc_nmap_diff(&bcbearer->remains, &p->nodes, &bcbearer->remains_new);
602 if (bcbearer->remains_new.count == bcbearer->remains.count)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100603 continue; /* bearer pair doesn't add anything */
604
Allan Stephens2d627b92011-01-07 13:00:11 -0500605 if (p->blocked ||
606 p->media->send_msg(buf, p, &p->media->bcast_addr)) {
Neil Horman1a624832010-03-15 08:02:24 +0000607 /* unable to send on primary bearer */
Allan Stephens2d627b92011-01-07 13:00:11 -0500608 if (!s || s->blocked ||
609 s->media->send_msg(buf, s,
Neil Horman1a624832010-03-15 08:02:24 +0000610 &s->media->bcast_addr)) {
611 /* unable to send on either bearer */
612 continue;
613 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100614 }
615
Neil Horman1a624832010-03-15 08:02:24 +0000616 if (s) {
617 bcbearer->bpairs[bp_index].primary = s;
618 bcbearer->bpairs[bp_index].secondary = p;
619 }
620
Allan Stephens65f51ef2006-06-25 23:53:20 -0700621 if (bcbearer->remains_new.count == 0)
Allan Stephens2ff9f922011-04-07 10:44:54 -0400622 break; /* all targets reached */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100623
Allan Stephens65f51ef2006-06-25 23:53:20 -0700624 bcbearer->remains = bcbearer->remains_new;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100625 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900626
Allan Stephens2ff9f922011-04-07 10:44:54 -0400627 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100628}
629
630/**
Per Liden4323add2006-01-18 00:38:21 +0100631 * tipc_bcbearer_sort - create sets of bearer pairs used by broadcast bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100632 */
633
Per Liden4323add2006-01-18 00:38:21 +0100634void tipc_bcbearer_sort(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100635{
636 struct bcbearer_pair *bp_temp = bcbearer->bpairs_temp;
637 struct bcbearer_pair *bp_curr;
638 int b_index;
639 int pri;
640
641 spin_lock_bh(&bc_lock);
642
643 /* Group bearers by priority (can assume max of two per priority) */
644
645 memset(bp_temp, 0, sizeof(bcbearer->bpairs_temp));
646
647 for (b_index = 0; b_index < MAX_BEARERS; b_index++) {
Allan Stephens2d627b92011-01-07 13:00:11 -0500648 struct tipc_bearer *b = &tipc_bearers[b_index];
Per Lidenb97bf3f2006-01-02 19:04:38 +0100649
650 if (!b->active || !b->nodes.count)
651 continue;
652
653 if (!bp_temp[b->priority].primary)
654 bp_temp[b->priority].primary = b;
655 else
656 bp_temp[b->priority].secondary = b;
657 }
658
659 /* Create array of bearer pairs for broadcasting */
660
661 bp_curr = bcbearer->bpairs;
662 memset(bcbearer->bpairs, 0, sizeof(bcbearer->bpairs));
663
Per Liden16cb4b32006-01-13 22:22:22 +0100664 for (pri = TIPC_MAX_LINK_PRI; pri >= 0; pri--) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100665
666 if (!bp_temp[pri].primary)
667 continue;
668
669 bp_curr->primary = bp_temp[pri].primary;
670
671 if (bp_temp[pri].secondary) {
Per Liden4323add2006-01-18 00:38:21 +0100672 if (tipc_nmap_equal(&bp_temp[pri].primary->nodes,
673 &bp_temp[pri].secondary->nodes)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100674 bp_curr->secondary = bp_temp[pri].secondary;
675 } else {
676 bp_curr++;
677 bp_curr->primary = bp_temp[pri].secondary;
678 }
679 }
680
681 bp_curr++;
682 }
683
684 spin_unlock_bh(&bc_lock);
685}
686
Per Lidenb97bf3f2006-01-02 19:04:38 +0100687
Per Liden4323add2006-01-18 00:38:21 +0100688int tipc_bclink_stats(char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100689{
690 struct print_buf pb;
691
692 if (!bcl)
693 return 0;
694
Per Liden4323add2006-01-18 00:38:21 +0100695 tipc_printbuf_init(&pb, buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100696
697 spin_lock_bh(&bc_lock);
698
699 tipc_printf(&pb, "Link <%s>\n"
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900700 " Window:%u packets\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100701 bcl->name, bcl->queue_limit[0]);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900702 tipc_printf(&pb, " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100703 bcl->stats.recv_info,
704 bcl->stats.recv_fragments,
705 bcl->stats.recv_fragmented,
706 bcl->stats.recv_bundles,
707 bcl->stats.recv_bundled);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900708 tipc_printf(&pb, " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100709 bcl->stats.sent_info,
710 bcl->stats.sent_fragments,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900711 bcl->stats.sent_fragmented,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100712 bcl->stats.sent_bundles,
713 bcl->stats.sent_bundled);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900714 tipc_printf(&pb, " RX naks:%u defs:%u dups:%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100715 bcl->stats.recv_nacks,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900716 bcl->stats.deferred_recv,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100717 bcl->stats.duplicates);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900718 tipc_printf(&pb, " TX naks:%u acks:%u dups:%u\n",
719 bcl->stats.sent_nacks,
720 bcl->stats.sent_acks,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100721 bcl->stats.retransmitted);
722 tipc_printf(&pb, " Congestion bearer:%u link:%u Send queue max:%u avg:%u\n",
723 bcl->stats.bearer_congs,
724 bcl->stats.link_congs,
725 bcl->stats.max_queue_sz,
726 bcl->stats.queue_sz_counts
727 ? (bcl->stats.accu_queue_sz / bcl->stats.queue_sz_counts)
728 : 0);
729
730 spin_unlock_bh(&bc_lock);
Per Liden4323add2006-01-18 00:38:21 +0100731 return tipc_printbuf_validate(&pb);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100732}
733
Per Liden4323add2006-01-18 00:38:21 +0100734int tipc_bclink_reset_stats(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100735{
736 if (!bcl)
737 return -ENOPROTOOPT;
738
739 spin_lock_bh(&bc_lock);
740 memset(&bcl->stats, 0, sizeof(bcl->stats));
741 spin_unlock_bh(&bc_lock);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700742 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100743}
744
Per Liden4323add2006-01-18 00:38:21 +0100745int tipc_bclink_set_queue_limits(u32 limit)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100746{
747 if (!bcl)
748 return -ENOPROTOOPT;
749 if ((limit < TIPC_MIN_LINK_WIN) || (limit > TIPC_MAX_LINK_WIN))
750 return -EINVAL;
751
752 spin_lock_bh(&bc_lock);
Per Liden4323add2006-01-18 00:38:21 +0100753 tipc_link_set_queue_limits(bcl, limit);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100754 spin_unlock_bh(&bc_lock);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700755 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100756}
757
Allan Stephensc47e9b92011-10-24 10:29:26 -0400758void tipc_bclink_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100759{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100760 INIT_LIST_HEAD(&bcbearer->bearer.cong_links);
761 bcbearer->bearer.media = &bcbearer->media;
Per Liden4323add2006-01-18 00:38:21 +0100762 bcbearer->media.send_msg = tipc_bcbearer_send;
Allan Stephens2e2d9be2011-04-07 10:22:31 -0400763 sprintf(bcbearer->media.name, "tipc-broadcast");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100764
Per Lidenb97bf3f2006-01-02 19:04:38 +0100765 INIT_LIST_HEAD(&bcl->waiting_ports);
766 bcl->next_out_no = 1;
Ingo Molnar34af9462006-06-27 02:53:55 -0700767 spin_lock_init(&bclink->node.lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100768 bcl->owner = &bclink->node;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900769 bcl->max_pkt = MAX_PKT_DEFAULT_MCAST;
Per Liden4323add2006-01-18 00:38:21 +0100770 tipc_link_set_queue_limits(bcl, BCLINK_WIN_DEFAULT);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100771 bcl->b_ptr = &bcbearer->bearer;
772 bcl->state = WORKING_WORKING;
Stephen Hemminger4b704d52009-03-18 19:11:29 -0700773 strlcpy(bcl->name, tipc_bclink_name, TIPC_MAX_LINK_NAME);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100774}
775
Per Liden4323add2006-01-18 00:38:21 +0100776void tipc_bclink_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100777{
778 spin_lock_bh(&bc_lock);
Allan Stephensc47e9b92011-10-24 10:29:26 -0400779 tipc_link_stop(bcl);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100780 spin_unlock_bh(&bc_lock);
Allan Stephensc47e9b92011-10-24 10:29:26 -0400781
782 memset(bclink, 0, sizeof(*bclink));
783 memset(bcbearer, 0, sizeof(*bcbearer));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100784}
785
Allan Stephens3e22e622010-05-11 14:30:14 +0000786
787/**
788 * tipc_nmap_add - add a node to a node map
789 */
790
791void tipc_nmap_add(struct tipc_node_map *nm_ptr, u32 node)
792{
793 int n = tipc_node(node);
794 int w = n / WSIZE;
795 u32 mask = (1 << (n % WSIZE));
796
797 if ((nm_ptr->map[w] & mask) == 0) {
798 nm_ptr->count++;
799 nm_ptr->map[w] |= mask;
800 }
801}
802
803/**
804 * tipc_nmap_remove - remove a node from a node map
805 */
806
807void tipc_nmap_remove(struct tipc_node_map *nm_ptr, u32 node)
808{
809 int n = tipc_node(node);
810 int w = n / WSIZE;
811 u32 mask = (1 << (n % WSIZE));
812
813 if ((nm_ptr->map[w] & mask) != 0) {
814 nm_ptr->map[w] &= ~mask;
815 nm_ptr->count--;
816 }
817}
818
819/**
820 * tipc_nmap_diff - find differences between node maps
821 * @nm_a: input node map A
822 * @nm_b: input node map B
823 * @nm_diff: output node map A-B (i.e. nodes of A that are not in B)
824 */
825
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000826static void tipc_nmap_diff(struct tipc_node_map *nm_a,
827 struct tipc_node_map *nm_b,
828 struct tipc_node_map *nm_diff)
Allan Stephens3e22e622010-05-11 14:30:14 +0000829{
830 int stop = ARRAY_SIZE(nm_a->map);
831 int w;
832 int b;
833 u32 map;
834
835 memset(nm_diff, 0, sizeof(*nm_diff));
836 for (w = 0; w < stop; w++) {
837 map = nm_a->map[w] ^ (nm_a->map[w] & nm_b->map[w]);
838 nm_diff->map[w] = map;
839 if (map != 0) {
840 for (b = 0 ; b < WSIZE; b++) {
841 if (map & (1 << b))
842 nm_diff->count++;
843 }
844 }
845 }
846}
Allan Stephens43608ed2010-05-11 14:30:15 +0000847
848/**
849 * tipc_port_list_add - add a port to a port list, ensuring no duplicates
850 */
851
852void tipc_port_list_add(struct port_list *pl_ptr, u32 port)
853{
854 struct port_list *item = pl_ptr;
855 int i;
856 int item_sz = PLSIZE;
857 int cnt = pl_ptr->count;
858
859 for (; ; cnt -= item_sz, item = item->next) {
860 if (cnt < PLSIZE)
861 item_sz = cnt;
862 for (i = 0; i < item_sz; i++)
863 if (item->ports[i] == port)
864 return;
865 if (i < PLSIZE) {
866 item->ports[i] = port;
867 pl_ptr->count++;
868 return;
869 }
870 if (!item->next) {
871 item->next = kmalloc(sizeof(*item), GFP_ATOMIC);
872 if (!item->next) {
873 warn("Incomplete multicast delivery, no memory\n");
874 return;
875 }
876 item->next->next = NULL;
877 }
878 }
879}
880
881/**
882 * tipc_port_list_free - free dynamically created entries in port_list chain
883 *
884 */
885
886void tipc_port_list_free(struct port_list *pl_ptr)
887{
888 struct port_list *item;
889 struct port_list *next;
890
891 for (item = pl_ptr->next; item; item = next) {
892 next = item->next;
893 kfree(item);
894 }
895}
896