blob: 7d99029df342f15b28c1f8e49d43bc90c709d1b0 [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 *
Jon Paul Maloy99999742017-01-18 13:50:50 -05004 * Copyright (c) 2004-2006, 2014-2016, 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
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -040038#include <linux/tipc_config.h>
Jon Paul Maloy078bec82014-07-16 20:41:00 -040039#include "socket.h"
40#include "msg.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010041#include "bcast.h"
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -040042#include "link.h"
Jon Paul Maloy2ae0b8a2017-01-18 13:50:51 -050043#include "name_table.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010044
Jon Paul Maloy53387c42015-10-19 09:21:37 -040045#define BCLINK_WIN_DEFAULT 50 /* bcast link window size (default) */
46#define BCLINK_WIN_MIN 32 /* bcast minimum link window size */
Allan Stephensc47e9b92011-10-24 10:29:26 -040047
Allan Stephens3aec9cc2010-05-11 14:30:07 +000048const char tipc_bclink_name[] = "broadcast-link";
Per Lidenb97bf3f2006-01-02 19:04:38 +010049
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -040050/**
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -040051 * struct tipc_bc_base - base structure for keeping broadcast send state
Jon Paul Maloyb06b2812015-10-22 08:51:42 -040052 * @link: broadcast send link structure
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -040053 * @inputq: data input queue; will only carry SOCK_WAKEUP messages
54 * @dest: array keeping number of reachable destinations per bearer
55 * @primary_bearer: a bearer having links to all broadcast destinations, if any
Jon Paul Maloy99999742017-01-18 13:50:50 -050056 * @bcast_support: indicates if primary bearer, if any, supports broadcast
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -050057 * @rcast_support: indicates if all peer nodes support replicast
58 * @rc_ratio: dest count as percentage of cluster size where send method changes
59 * @bc_threshold: calculated drom rc_ratio; if dests > threshold use broadcast
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -040060 */
61struct tipc_bc_base {
Jon Paul Maloy32301902015-10-22 08:51:37 -040062 struct tipc_link *link;
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -040063 struct sk_buff_head inputq;
Jon Paul Maloyb06b2812015-10-22 08:51:42 -040064 int dests[MAX_BEARERS];
65 int primary_bearer;
Jon Paul Maloy99999742017-01-18 13:50:50 -050066 bool bcast_support;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -050067 bool rcast_support;
68 int rc_ratio;
69 int bc_threshold;
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -040070};
71
Jon Paul Maloy5fd9fd62015-10-22 08:51:35 -040072static struct tipc_bc_base *tipc_bc_base(struct net *net)
73{
74 return tipc_net(net)->bcbase;
75}
76
Jon Paul Maloy959e1782015-10-22 08:51:43 -040077int tipc_bcast_get_mtu(struct net *net)
Jon Paul Maloy078bec82014-07-16 20:41:00 -040078{
Jon Paul Maloya853e4c2017-01-18 13:50:52 -050079 return tipc_link_mtu(tipc_bc_sndlink(net)) - INT_H_SIZE;
Jon Paul Maloy078bec82014-07-16 20:41:00 -040080}
81
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -050082void tipc_bcast_disable_rcast(struct net *net)
83{
84 tipc_bc_base(net)->rcast_support = false;
85}
86
87static void tipc_bcbase_calc_bc_threshold(struct net *net)
88{
89 struct tipc_bc_base *bb = tipc_bc_base(net);
90 int cluster_size = tipc_link_bc_peers(tipc_bc_sndlink(net));
91
92 bb->bc_threshold = 1 + (cluster_size * bb->rc_ratio / 100);
93}
94
Jon Paul Maloyb06b2812015-10-22 08:51:42 -040095/* tipc_bcbase_select_primary(): find a bearer with links to all destinations,
96 * if any, and make it primary bearer
97 */
98static void tipc_bcbase_select_primary(struct net *net)
99{
100 struct tipc_bc_base *bb = tipc_bc_base(net);
101 int all_dests = tipc_link_bc_peers(bb->link);
Jon Paul Maloy99999742017-01-18 13:50:50 -0500102 int i, mtu, prim;
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400103
104 bb->primary_bearer = INVALID_BEARER_ID;
Jon Paul Maloy99999742017-01-18 13:50:50 -0500105 bb->bcast_support = true;
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400106
107 if (!all_dests)
108 return;
109
110 for (i = 0; i < MAX_BEARERS; i++) {
Jon Paul Maloy959e1782015-10-22 08:51:43 -0400111 if (!bb->dests[i])
112 continue;
113
114 mtu = tipc_bearer_mtu(net, i);
115 if (mtu < tipc_link_mtu(bb->link))
116 tipc_link_set_mtu(bb->link, mtu);
Jon Paul Maloy99999742017-01-18 13:50:50 -0500117 bb->bcast_support &= tipc_bearer_bcast_support(net, i);
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400118 if (bb->dests[i] < all_dests)
119 continue;
120
121 bb->primary_bearer = i;
122
123 /* Reduce risk that all nodes select same primary */
124 if ((i ^ tipc_own_addr(net)) & 1)
125 break;
126 }
Jon Paul Maloy99999742017-01-18 13:50:50 -0500127 prim = bb->primary_bearer;
128 if (prim != INVALID_BEARER_ID)
129 bb->bcast_support = tipc_bearer_bcast_support(net, prim);
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400130}
131
132void tipc_bcast_inc_bearer_dst_cnt(struct net *net, int bearer_id)
133{
134 struct tipc_bc_base *bb = tipc_bc_base(net);
135
136 tipc_bcast_lock(net);
137 bb->dests[bearer_id]++;
138 tipc_bcbase_select_primary(net);
139 tipc_bcast_unlock(net);
140}
141
142void tipc_bcast_dec_bearer_dst_cnt(struct net *net, int bearer_id)
143{
144 struct tipc_bc_base *bb = tipc_bc_base(net);
145
146 tipc_bcast_lock(net);
147 bb->dests[bearer_id]--;
148 tipc_bcbase_select_primary(net);
149 tipc_bcast_unlock(net);
150}
151
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400152/* tipc_bcbase_xmit - broadcast a packet queue across one or more bearers
153 *
154 * Note that number of reachable destinations, as indicated in the dests[]
155 * array, may transitionally differ from the number of destinations indicated
156 * in each sent buffer. We can sustain this. Excess destination nodes will
157 * drop and never acknowledge the unexpected packets, and missing destinations
158 * will either require retransmission (if they are just about to be added to
159 * the bearer), or be removed from the buffer's 'ackers' counter (if they
160 * just went down)
161 */
162static void tipc_bcbase_xmit(struct net *net, struct sk_buff_head *xmitq)
163{
164 int bearer_id;
165 struct tipc_bc_base *bb = tipc_bc_base(net);
166 struct sk_buff *skb, *_skb;
167 struct sk_buff_head _xmitq;
168
169 if (skb_queue_empty(xmitq))
170 return;
171
172 /* The typical case: at least one bearer has links to all nodes */
173 bearer_id = bb->primary_bearer;
174 if (bearer_id >= 0) {
175 tipc_bearer_bc_xmit(net, bearer_id, xmitq);
176 return;
177 }
178
179 /* We have to transmit across all bearers */
180 skb_queue_head_init(&_xmitq);
181 for (bearer_id = 0; bearer_id < MAX_BEARERS; bearer_id++) {
182 if (!bb->dests[bearer_id])
183 continue;
184
185 skb_queue_walk(xmitq, skb) {
186 _skb = pskb_copy_for_clone(skb, GFP_ATOMIC);
187 if (!_skb)
188 break;
189 __skb_queue_tail(&_xmitq, _skb);
190 }
191 tipc_bearer_bc_xmit(net, bearer_id, &_xmitq);
192 }
193 __skb_queue_purge(xmitq);
194 __skb_queue_purge(&_xmitq);
195}
196
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500197static void tipc_bcast_select_xmit_method(struct net *net, int dests,
198 struct tipc_mc_method *method)
199{
200 struct tipc_bc_base *bb = tipc_bc_base(net);
201 unsigned long exp = method->expires;
202
203 /* Broadcast supported by used bearer/bearers? */
204 if (!bb->bcast_support) {
205 method->rcast = true;
206 return;
207 }
208 /* Any destinations which don't support replicast ? */
209 if (!bb->rcast_support) {
210 method->rcast = false;
211 return;
212 }
213 /* Can current method be changed ? */
214 method->expires = jiffies + TIPC_METHOD_EXPIRE;
215 if (method->mandatory || time_before(jiffies, exp))
216 return;
217
218 /* Determine method to use now */
219 method->rcast = dests <= bb->bc_threshold;
220}
221
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500222/* tipc_bcast_xmit - broadcast the buffer chain to all external nodes
Ying Xuef2f98002015-01-09 15:27:05 +0800223 * @net: the applicable net namespace
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500224 * @pkts: chain of buffers containing message
225 * @cong_link_cnt: set to 1 if broadcast link is congested, otherwise 0
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500226 * Consumes the buffer chain.
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500227 * Returns 0 if success, otherwise errno: -EHOSTUNREACH,-EMSGSIZE
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400228 */
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500229static int tipc_bcast_xmit(struct net *net, struct sk_buff_head *pkts,
230 u16 *cong_link_cnt)
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400231{
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400232 struct tipc_link *l = tipc_bc_sndlink(net);
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500233 struct sk_buff_head xmitq;
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400234 int rc = 0;
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400235
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400236 __skb_queue_head_init(&xmitq);
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400237 tipc_bcast_lock(net);
238 if (tipc_link_bc_peers(l))
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500239 rc = tipc_link_xmit(l, pkts, &xmitq);
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400240 tipc_bcast_unlock(net);
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500241 tipc_bcbase_xmit(net, &xmitq);
242 __skb_queue_purge(pkts);
243 if (rc == -ELINKCONG) {
244 *cong_link_cnt = 1;
245 rc = 0;
246 }
247 return rc;
248}
Ying Xue58dc55f2014-11-26 11:41:52 +0800249
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500250/* tipc_rcast_xmit - replicate and send a message to given destination nodes
251 * @net: the applicable net namespace
252 * @pkts: chain of buffers containing message
253 * @dests: list of destination nodes
254 * @cong_link_cnt: returns number of congested links
255 * @cong_links: returns identities of congested links
256 * Returns 0 if success, otherwise errno
257 */
258static int tipc_rcast_xmit(struct net *net, struct sk_buff_head *pkts,
259 struct tipc_nlist *dests, u16 *cong_link_cnt)
260{
261 struct sk_buff_head _pkts;
262 struct u32_item *n, *tmp;
263 u32 dst, selector;
264
265 selector = msg_link_selector(buf_msg(skb_peek(pkts)));
266 __skb_queue_head_init(&_pkts);
267
268 list_for_each_entry_safe(n, tmp, &dests->list, list) {
269 dst = n->value;
270 if (!tipc_msg_pskb_copy(dst, pkts, &_pkts))
271 return -ENOMEM;
272
273 /* Any other return value than -ELINKCONG is ignored */
274 if (tipc_node_xmit(net, &_pkts, dst, selector) == -ELINKCONG)
275 (*cong_link_cnt)++;
276 }
277 return 0;
278}
279
280/* tipc_mcast_xmit - deliver message to indicated destination nodes
281 * and to identified node local sockets
282 * @net: the applicable net namespace
283 * @pkts: chain of buffers containing message
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500284 * @method: send method to be used
285 * @dests: destination nodes for message.
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500286 * @cong_link_cnt: returns number of encountered congested destination links
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500287 * Consumes buffer chain.
288 * Returns 0 if success, otherwise errno
289 */
290int tipc_mcast_xmit(struct net *net, struct sk_buff_head *pkts,
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500291 struct tipc_mc_method *method, struct tipc_nlist *dests,
292 u16 *cong_link_cnt)
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500293{
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500294 struct sk_buff_head inputq, localq;
295 int rc = 0;
296
297 skb_queue_head_init(&inputq);
298 skb_queue_head_init(&localq);
299
300 /* Clone packets before they are consumed by next call */
301 if (dests->local && !tipc_msg_reassemble(pkts, &localq)) {
302 rc = -ENOMEM;
303 goto exit;
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500304 }
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500305 /* Send according to determined transmit method */
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500306 if (dests->remote) {
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500307 tipc_bcast_select_xmit_method(net, dests->remote, method);
308 if (method->rcast)
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500309 rc = tipc_rcast_xmit(net, pkts, dests, cong_link_cnt);
310 else
311 rc = tipc_bcast_xmit(net, pkts, cong_link_cnt);
312 }
313
314 if (dests->local)
315 tipc_sk_mcast_rcv(net, &localq, &inputq);
316exit:
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500317 /* This queue should normally be empty by now */
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500318 __skb_queue_purge(pkts);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500319 return rc;
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400320}
Jon Paul Maloy52666982015-10-22 08:51:41 -0400321
322/* tipc_bcast_rcv - receive a broadcast packet, and deliver to rcv link
323 *
324 * RCU is locked, no other locks set
325 */
326int tipc_bcast_rcv(struct net *net, struct tipc_link *l, struct sk_buff *skb)
327{
328 struct tipc_msg *hdr = buf_msg(skb);
329 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
330 struct sk_buff_head xmitq;
331 int rc;
332
333 __skb_queue_head_init(&xmitq);
334
335 if (msg_mc_netid(hdr) != tipc_netid(net) || !tipc_link_is_up(l)) {
336 kfree_skb(skb);
337 return 0;
338 }
339
340 tipc_bcast_lock(net);
341 if (msg_user(hdr) == BCAST_PROTOCOL)
342 rc = tipc_link_bc_nack_rcv(l, skb, &xmitq);
343 else
344 rc = tipc_link_rcv(l, skb, NULL);
345 tipc_bcast_unlock(net);
346
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400347 tipc_bcbase_xmit(net, &xmitq);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400348
349 /* Any socket wakeup messages ? */
350 if (!skb_queue_empty(inputq))
351 tipc_sk_rcv(net, inputq);
352
353 return rc;
354}
355
356/* tipc_bcast_ack_rcv - receive and handle a broadcast acknowledge
357 *
358 * RCU is locked, no other locks set
359 */
Jon Paul Maloy06bd2b12016-10-27 18:51:55 -0400360void tipc_bcast_ack_rcv(struct net *net, struct tipc_link *l,
361 struct tipc_msg *hdr)
Jon Paul Maloy52666982015-10-22 08:51:41 -0400362{
363 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
Jon Paul Maloy06bd2b12016-10-27 18:51:55 -0400364 u16 acked = msg_bcast_ack(hdr);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400365 struct sk_buff_head xmitq;
366
Jon Paul Maloy06bd2b12016-10-27 18:51:55 -0400367 /* Ignore bc acks sent by peer before bcast synch point was received */
368 if (msg_bc_ack_invalid(hdr))
369 return;
370
Jon Paul Maloy52666982015-10-22 08:51:41 -0400371 __skb_queue_head_init(&xmitq);
372
373 tipc_bcast_lock(net);
374 tipc_link_bc_ack_rcv(l, acked, &xmitq);
375 tipc_bcast_unlock(net);
376
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400377 tipc_bcbase_xmit(net, &xmitq);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400378
379 /* Any socket wakeup messages ? */
380 if (!skb_queue_empty(inputq))
381 tipc_sk_rcv(net, inputq);
382}
383
384/* tipc_bcast_synch_rcv - check and update rcv link with peer's send state
385 *
386 * RCU is locked, no other locks set
387 */
Jon Paul Maloy02d11ca2016-09-01 13:52:49 -0400388int tipc_bcast_sync_rcv(struct net *net, struct tipc_link *l,
389 struct tipc_msg *hdr)
Jon Paul Maloy52666982015-10-22 08:51:41 -0400390{
391 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
392 struct sk_buff_head xmitq;
Jon Paul Maloy02d11ca2016-09-01 13:52:49 -0400393 int rc = 0;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400394
395 __skb_queue_head_init(&xmitq);
396
397 tipc_bcast_lock(net);
Jon Paul Maloy06bd2b12016-10-27 18:51:55 -0400398 if (msg_type(hdr) != STATE_MSG) {
399 tipc_link_bc_init_rcv(l, hdr);
400 } else if (!msg_bc_ack_invalid(hdr)) {
Jon Paul Maloy52666982015-10-22 08:51:41 -0400401 tipc_link_bc_ack_rcv(l, msg_bcast_ack(hdr), &xmitq);
Jon Paul Maloy02d11ca2016-09-01 13:52:49 -0400402 rc = tipc_link_bc_sync_rcv(l, hdr, &xmitq);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400403 }
404 tipc_bcast_unlock(net);
405
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400406 tipc_bcbase_xmit(net, &xmitq);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400407
408 /* Any socket wakeup messages ? */
409 if (!skb_queue_empty(inputq))
410 tipc_sk_rcv(net, inputq);
Jon Paul Maloy02d11ca2016-09-01 13:52:49 -0400411 return rc;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400412}
413
414/* tipc_bcast_add_peer - add a peer node to broadcast link and bearer
415 *
416 * RCU is locked, node lock is set
417 */
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400418void tipc_bcast_add_peer(struct net *net, struct tipc_link *uc_l,
Jon Paul Maloy52666982015-10-22 08:51:41 -0400419 struct sk_buff_head *xmitq)
420{
Jon Paul Maloy52666982015-10-22 08:51:41 -0400421 struct tipc_link *snd_l = tipc_bc_sndlink(net);
422
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400423 tipc_bcast_lock(net);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400424 tipc_link_add_bc_peer(snd_l, uc_l, xmitq);
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400425 tipc_bcbase_select_primary(net);
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500426 tipc_bcbase_calc_bc_threshold(net);
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400427 tipc_bcast_unlock(net);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400428}
429
430/* tipc_bcast_remove_peer - remove a peer node from broadcast link and bearer
431 *
432 * RCU is locked, node lock is set
433 */
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400434void tipc_bcast_remove_peer(struct net *net, struct tipc_link *rcv_l)
Jon Paul Maloy52666982015-10-22 08:51:41 -0400435{
Jon Paul Maloy52666982015-10-22 08:51:41 -0400436 struct tipc_link *snd_l = tipc_bc_sndlink(net);
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400437 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400438 struct sk_buff_head xmitq;
439
440 __skb_queue_head_init(&xmitq);
441
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400442 tipc_bcast_lock(net);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400443 tipc_link_remove_bc_peer(snd_l, rcv_l, &xmitq);
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400444 tipc_bcbase_select_primary(net);
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500445 tipc_bcbase_calc_bc_threshold(net);
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400446 tipc_bcast_unlock(net);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400447
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400448 tipc_bcbase_xmit(net, &xmitq);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400449
450 /* Any socket wakeup messages ? */
451 if (!skb_queue_empty(inputq))
452 tipc_sk_rcv(net, inputq);
453}
454
Ying Xue1da46562015-01-09 15:27:07 +0800455int tipc_bclink_reset_stats(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100456{
Jon Paul Maloy38206d52015-11-19 14:30:46 -0500457 struct tipc_link *l = tipc_bc_sndlink(net);
Ying Xue1da46562015-01-09 15:27:07 +0800458
Jon Paul Maloy38206d52015-11-19 14:30:46 -0500459 if (!l)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100460 return -ENOPROTOOPT;
461
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400462 tipc_bcast_lock(net);
Jon Paul Maloy38206d52015-11-19 14:30:46 -0500463 tipc_link_reset_stats(l);
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400464 tipc_bcast_unlock(net);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700465 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100466}
467
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400468static int tipc_bc_link_set_queue_limits(struct net *net, u32 limit)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100469{
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400470 struct tipc_link *l = tipc_bc_sndlink(net);
Ying Xue1da46562015-01-09 15:27:07 +0800471
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400472 if (!l)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100473 return -ENOPROTOOPT;
Jon Paul Maloy53387c42015-10-19 09:21:37 -0400474 if (limit < BCLINK_WIN_MIN)
475 limit = BCLINK_WIN_MIN;
476 if (limit > TIPC_MAX_LINK_WIN)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100477 return -EINVAL;
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400478 tipc_bcast_lock(net);
479 tipc_link_set_queue_limits(l, limit);
480 tipc_bcast_unlock(net);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700481 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100482}
483
Richard Alpe670f4f82015-05-06 13:58:55 +0200484int tipc_nl_bc_link_set(struct net *net, struct nlattr *attrs[])
485{
486 int err;
487 u32 win;
488 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
489
490 if (!attrs[TIPC_NLA_LINK_PROP])
491 return -EINVAL;
492
493 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_LINK_PROP], props);
494 if (err)
495 return err;
496
497 if (!props[TIPC_NLA_PROP_WIN])
498 return -EOPNOTSUPP;
499
500 win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
501
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400502 return tipc_bc_link_set_queue_limits(net, win);
Richard Alpe670f4f82015-05-06 13:58:55 +0200503}
504
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -0400505int tipc_bcast_init(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100506{
Jon Paul Maloy32301902015-10-22 08:51:37 -0400507 struct tipc_net *tn = tipc_net(net);
Jon Paul Maloy32301902015-10-22 08:51:37 -0400508 struct tipc_bc_base *bb = NULL;
509 struct tipc_link *l = NULL;
Ying Xue7f9f95d2015-01-09 15:27:06 +0800510
Jon Paul Maloy32301902015-10-22 08:51:37 -0400511 bb = kzalloc(sizeof(*bb), GFP_ATOMIC);
512 if (!bb)
513 goto enomem;
514 tn->bcbase = bb;
Jon Paul Maloy00435502015-10-22 08:51:34 -0400515 spin_lock_init(&tipc_net(net)->bclock);
Jon Paul Maloy5fd9fd62015-10-22 08:51:35 -0400516
Jon Paul Maloyc72fa872015-10-22 08:51:46 -0400517 if (!tipc_link_bc_create(net, 0, 0,
Jon Paul Maloy959e1782015-10-22 08:51:43 -0400518 U16_MAX,
Jon Paul Maloy32301902015-10-22 08:51:37 -0400519 BCLINK_WIN_DEFAULT,
Jon Paul Maloyfd556f22015-10-22 08:51:40 -0400520 0,
Jon Paul Maloy32301902015-10-22 08:51:37 -0400521 &bb->inputq,
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400522 NULL,
Jon Paul Maloy52666982015-10-22 08:51:41 -0400523 NULL,
Jon Paul Maloy32301902015-10-22 08:51:37 -0400524 &l))
525 goto enomem;
526 bb->link = l;
527 tn->bcl = l;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500528 bb->rc_ratio = 25;
529 bb->rcast_support = true;
Ying Xueeb8b00f2014-05-05 08:56:16 +0800530 return 0;
Jon Paul Maloy32301902015-10-22 08:51:37 -0400531enomem:
Jon Paul Maloy32301902015-10-22 08:51:37 -0400532 kfree(bb);
533 kfree(l);
534 return -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100535}
536
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -0400537void tipc_bcast_stop(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100538{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800539 struct tipc_net *tn = net_generic(net, tipc_net_id);
540
Ying Xueeb8b00f2014-05-05 08:56:16 +0800541 synchronize_net();
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -0400542 kfree(tn->bcbase);
Jon Paul Maloy32301902015-10-22 08:51:37 -0400543 kfree(tn->bcl);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100544}
Jon Paul Maloy2ae0b8a2017-01-18 13:50:51 -0500545
546void tipc_nlist_init(struct tipc_nlist *nl, u32 self)
547{
548 memset(nl, 0, sizeof(*nl));
549 INIT_LIST_HEAD(&nl->list);
550 nl->self = self;
551}
552
553void tipc_nlist_add(struct tipc_nlist *nl, u32 node)
554{
555 if (node == nl->self)
556 nl->local = true;
557 else if (u32_push(&nl->list, node))
558 nl->remote++;
559}
560
561void tipc_nlist_del(struct tipc_nlist *nl, u32 node)
562{
563 if (node == nl->self)
564 nl->local = false;
565 else if (u32_del(&nl->list, node))
566 nl->remote--;
567}
568
569void tipc_nlist_purge(struct tipc_nlist *nl)
570{
571 u32_list_purge(&nl->list);
572 nl->remote = 0;
573 nl->local = 0;
574}