blob: aa1babbea385348f1ecd4b7467079fc442653094 [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 Maloy3c724ac2015-02-05 08:36:43 -05004 * Copyright (c) 2004-2006, 2014-2015, 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"
Allan Stephens9f6bdcd42011-04-07 14:57:53 -040042#include "name_distr.h"
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -040043#include "link.h"
44#include "node.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010045
Jon Paul Maloy53387c42015-10-19 09:21:37 -040046#define BCLINK_WIN_DEFAULT 50 /* bcast link window size (default) */
47#define BCLINK_WIN_MIN 32 /* bcast minimum link window size */
Allan Stephensc47e9b92011-10-24 10:29:26 -040048
Allan Stephens3aec9cc2010-05-11 14:30:07 +000049const char tipc_bclink_name[] = "broadcast-link";
Per Lidenb97bf3f2006-01-02 19:04:38 +010050
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -040051/**
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -040052 * struct tipc_bc_base - base structure for keeping broadcast send state
Jon Paul Maloyb06b2812015-10-22 08:51:42 -040053 * @link: broadcast send link structure
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -040054 * @inputq: data input queue; will only carry SOCK_WAKEUP messages
55 * @dest: array keeping number of reachable destinations per bearer
56 * @primary_bearer: a bearer having links to all broadcast destinations, if any
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -040057 */
58struct tipc_bc_base {
Jon Paul Maloy32301902015-10-22 08:51:37 -040059 struct tipc_link *link;
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -040060 struct sk_buff_head inputq;
Jon Paul Maloyb06b2812015-10-22 08:51:42 -040061 int dests[MAX_BEARERS];
62 int primary_bearer;
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -040063};
64
Jon Paul Maloy5fd9fd62015-10-22 08:51:35 -040065static struct tipc_bc_base *tipc_bc_base(struct net *net)
66{
67 return tipc_net(net)->bcbase;
68}
69
Jon Paul Maloy959e1782015-10-22 08:51:43 -040070int tipc_bcast_get_mtu(struct net *net)
Jon Paul Maloy078bec82014-07-16 20:41:00 -040071{
Jon Paul Maloy959e1782015-10-22 08:51:43 -040072 return tipc_link_mtu(tipc_bc_sndlink(net));
Jon Paul Maloy078bec82014-07-16 20:41:00 -040073}
74
Jon Paul Maloyb06b2812015-10-22 08:51:42 -040075/* tipc_bcbase_select_primary(): find a bearer with links to all destinations,
76 * if any, and make it primary bearer
77 */
78static void tipc_bcbase_select_primary(struct net *net)
79{
80 struct tipc_bc_base *bb = tipc_bc_base(net);
81 int all_dests = tipc_link_bc_peers(bb->link);
Jon Paul Maloy959e1782015-10-22 08:51:43 -040082 int i, mtu;
Jon Paul Maloyb06b2812015-10-22 08:51:42 -040083
84 bb->primary_bearer = INVALID_BEARER_ID;
85
86 if (!all_dests)
87 return;
88
89 for (i = 0; i < MAX_BEARERS; i++) {
Jon Paul Maloy959e1782015-10-22 08:51:43 -040090 if (!bb->dests[i])
91 continue;
92
93 mtu = tipc_bearer_mtu(net, i);
94 if (mtu < tipc_link_mtu(bb->link))
95 tipc_link_set_mtu(bb->link, mtu);
96
Jon Paul Maloyb06b2812015-10-22 08:51:42 -040097 if (bb->dests[i] < all_dests)
98 continue;
99
100 bb->primary_bearer = i;
101
102 /* Reduce risk that all nodes select same primary */
103 if ((i ^ tipc_own_addr(net)) & 1)
104 break;
105 }
106}
107
108void tipc_bcast_inc_bearer_dst_cnt(struct net *net, int bearer_id)
109{
110 struct tipc_bc_base *bb = tipc_bc_base(net);
111
112 tipc_bcast_lock(net);
113 bb->dests[bearer_id]++;
114 tipc_bcbase_select_primary(net);
115 tipc_bcast_unlock(net);
116}
117
118void tipc_bcast_dec_bearer_dst_cnt(struct net *net, int bearer_id)
119{
120 struct tipc_bc_base *bb = tipc_bc_base(net);
121
122 tipc_bcast_lock(net);
123 bb->dests[bearer_id]--;
124 tipc_bcbase_select_primary(net);
125 tipc_bcast_unlock(net);
126}
127
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400128/* tipc_bcbase_xmit - broadcast a packet queue across one or more bearers
129 *
130 * Note that number of reachable destinations, as indicated in the dests[]
131 * array, may transitionally differ from the number of destinations indicated
132 * in each sent buffer. We can sustain this. Excess destination nodes will
133 * drop and never acknowledge the unexpected packets, and missing destinations
134 * will either require retransmission (if they are just about to be added to
135 * the bearer), or be removed from the buffer's 'ackers' counter (if they
136 * just went down)
137 */
138static void tipc_bcbase_xmit(struct net *net, struct sk_buff_head *xmitq)
139{
140 int bearer_id;
141 struct tipc_bc_base *bb = tipc_bc_base(net);
142 struct sk_buff *skb, *_skb;
143 struct sk_buff_head _xmitq;
144
145 if (skb_queue_empty(xmitq))
146 return;
147
148 /* The typical case: at least one bearer has links to all nodes */
149 bearer_id = bb->primary_bearer;
150 if (bearer_id >= 0) {
151 tipc_bearer_bc_xmit(net, bearer_id, xmitq);
152 return;
153 }
154
155 /* We have to transmit across all bearers */
156 skb_queue_head_init(&_xmitq);
157 for (bearer_id = 0; bearer_id < MAX_BEARERS; bearer_id++) {
158 if (!bb->dests[bearer_id])
159 continue;
160
161 skb_queue_walk(xmitq, skb) {
162 _skb = pskb_copy_for_clone(skb, GFP_ATOMIC);
163 if (!_skb)
164 break;
165 __skb_queue_tail(&_xmitq, _skb);
166 }
167 tipc_bearer_bc_xmit(net, bearer_id, &_xmitq);
168 }
169 __skb_queue_purge(xmitq);
170 __skb_queue_purge(&_xmitq);
171}
172
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -0400173/* tipc_bcast_xmit - deliver buffer chain to all nodes in cluster
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -0400174 * and to identified node local sockets
Ying Xuef2f98002015-01-09 15:27:05 +0800175 * @net: the applicable net namespace
Ying Xuea6ca1092014-11-26 11:41:55 +0800176 * @list: chain of buffers containing message
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400177 * Consumes the buffer chain, except when returning -ELINKCONG
178 * Returns 0 if success, otherwise errno: -ELINKCONG,-EHOSTUNREACH,-EMSGSIZE
179 */
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -0400180int tipc_bcast_xmit(struct net *net, struct sk_buff_head *list)
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400181{
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400182 struct tipc_link *l = tipc_bc_sndlink(net);
183 struct sk_buff_head xmitq, inputq, rcvq;
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400184 int rc = 0;
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400185
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400186 __skb_queue_head_init(&rcvq);
187 __skb_queue_head_init(&xmitq);
188 skb_queue_head_init(&inputq);
189
190 /* Prepare message clone for local node */
191 if (unlikely(!tipc_msg_reassemble(list, &rcvq)))
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400192 return -EHOSTUNREACH;
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400193
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400194 tipc_bcast_lock(net);
195 if (tipc_link_bc_peers(l))
196 rc = tipc_link_xmit(l, list, &xmitq);
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400197 tipc_bcast_unlock(net);
Ying Xue58dc55f2014-11-26 11:41:52 +0800198
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400199 /* Don't send to local node if adding to link failed */
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500200 if (unlikely(rc)) {
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400201 __skb_queue_purge(&rcvq);
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500202 return rc;
203 }
Jon Paul Maloy52666982015-10-22 08:51:41 -0400204
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400205 /* Broadcast to all nodes, inluding local node */
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400206 tipc_bcbase_xmit(net, &xmitq);
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400207 tipc_sk_mcast_rcv(net, &rcvq, &inputq);
208 __skb_queue_purge(list);
209 return 0;
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400210}
Jon Paul Maloy52666982015-10-22 08:51:41 -0400211
212/* tipc_bcast_rcv - receive a broadcast packet, and deliver to rcv link
213 *
214 * RCU is locked, no other locks set
215 */
216int tipc_bcast_rcv(struct net *net, struct tipc_link *l, struct sk_buff *skb)
217{
218 struct tipc_msg *hdr = buf_msg(skb);
219 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
220 struct sk_buff_head xmitq;
221 int rc;
222
223 __skb_queue_head_init(&xmitq);
224
225 if (msg_mc_netid(hdr) != tipc_netid(net) || !tipc_link_is_up(l)) {
226 kfree_skb(skb);
227 return 0;
228 }
229
230 tipc_bcast_lock(net);
231 if (msg_user(hdr) == BCAST_PROTOCOL)
232 rc = tipc_link_bc_nack_rcv(l, skb, &xmitq);
233 else
234 rc = tipc_link_rcv(l, skb, NULL);
235 tipc_bcast_unlock(net);
236
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400237 tipc_bcbase_xmit(net, &xmitq);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400238
239 /* Any socket wakeup messages ? */
240 if (!skb_queue_empty(inputq))
241 tipc_sk_rcv(net, inputq);
242
243 return rc;
244}
245
246/* tipc_bcast_ack_rcv - receive and handle a broadcast acknowledge
247 *
248 * RCU is locked, no other locks set
249 */
Jon Paul Maloy06bd2b12016-10-27 18:51:55 -0400250void tipc_bcast_ack_rcv(struct net *net, struct tipc_link *l,
251 struct tipc_msg *hdr)
Jon Paul Maloy52666982015-10-22 08:51:41 -0400252{
253 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
Jon Paul Maloy06bd2b12016-10-27 18:51:55 -0400254 u16 acked = msg_bcast_ack(hdr);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400255 struct sk_buff_head xmitq;
256
Jon Paul Maloy06bd2b12016-10-27 18:51:55 -0400257 /* Ignore bc acks sent by peer before bcast synch point was received */
258 if (msg_bc_ack_invalid(hdr))
259 return;
260
Jon Paul Maloy52666982015-10-22 08:51:41 -0400261 __skb_queue_head_init(&xmitq);
262
263 tipc_bcast_lock(net);
264 tipc_link_bc_ack_rcv(l, acked, &xmitq);
265 tipc_bcast_unlock(net);
266
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400267 tipc_bcbase_xmit(net, &xmitq);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400268
269 /* Any socket wakeup messages ? */
270 if (!skb_queue_empty(inputq))
271 tipc_sk_rcv(net, inputq);
272}
273
274/* tipc_bcast_synch_rcv - check and update rcv link with peer's send state
275 *
276 * RCU is locked, no other locks set
277 */
Jon Paul Maloy02d11ca2016-09-01 13:52:49 -0400278int tipc_bcast_sync_rcv(struct net *net, struct tipc_link *l,
279 struct tipc_msg *hdr)
Jon Paul Maloy52666982015-10-22 08:51:41 -0400280{
281 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
282 struct sk_buff_head xmitq;
Jon Paul Maloy02d11ca2016-09-01 13:52:49 -0400283 int rc = 0;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400284
285 __skb_queue_head_init(&xmitq);
286
287 tipc_bcast_lock(net);
Jon Paul Maloy06bd2b12016-10-27 18:51:55 -0400288 if (msg_type(hdr) != STATE_MSG) {
289 tipc_link_bc_init_rcv(l, hdr);
290 } else if (!msg_bc_ack_invalid(hdr)) {
Jon Paul Maloy52666982015-10-22 08:51:41 -0400291 tipc_link_bc_ack_rcv(l, msg_bcast_ack(hdr), &xmitq);
Jon Paul Maloy02d11ca2016-09-01 13:52:49 -0400292 rc = tipc_link_bc_sync_rcv(l, hdr, &xmitq);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400293 }
294 tipc_bcast_unlock(net);
295
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400296 tipc_bcbase_xmit(net, &xmitq);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400297
298 /* Any socket wakeup messages ? */
299 if (!skb_queue_empty(inputq))
300 tipc_sk_rcv(net, inputq);
Jon Paul Maloy02d11ca2016-09-01 13:52:49 -0400301 return rc;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400302}
303
304/* tipc_bcast_add_peer - add a peer node to broadcast link and bearer
305 *
306 * RCU is locked, node lock is set
307 */
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400308void tipc_bcast_add_peer(struct net *net, struct tipc_link *uc_l,
Jon Paul Maloy52666982015-10-22 08:51:41 -0400309 struct sk_buff_head *xmitq)
310{
Jon Paul Maloy52666982015-10-22 08:51:41 -0400311 struct tipc_link *snd_l = tipc_bc_sndlink(net);
312
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400313 tipc_bcast_lock(net);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400314 tipc_link_add_bc_peer(snd_l, uc_l, xmitq);
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400315 tipc_bcbase_select_primary(net);
316 tipc_bcast_unlock(net);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400317}
318
319/* tipc_bcast_remove_peer - remove a peer node from broadcast link and bearer
320 *
321 * RCU is locked, node lock is set
322 */
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400323void tipc_bcast_remove_peer(struct net *net, struct tipc_link *rcv_l)
Jon Paul Maloy52666982015-10-22 08:51:41 -0400324{
Jon Paul Maloy52666982015-10-22 08:51:41 -0400325 struct tipc_link *snd_l = tipc_bc_sndlink(net);
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400326 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400327 struct sk_buff_head xmitq;
328
329 __skb_queue_head_init(&xmitq);
330
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400331 tipc_bcast_lock(net);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400332 tipc_link_remove_bc_peer(snd_l, rcv_l, &xmitq);
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400333 tipc_bcbase_select_primary(net);
334 tipc_bcast_unlock(net);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400335
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400336 tipc_bcbase_xmit(net, &xmitq);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400337
338 /* Any socket wakeup messages ? */
339 if (!skb_queue_empty(inputq))
340 tipc_sk_rcv(net, inputq);
341}
342
Ying Xue1da46562015-01-09 15:27:07 +0800343int tipc_bclink_reset_stats(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100344{
Jon Paul Maloy38206d52015-11-19 14:30:46 -0500345 struct tipc_link *l = tipc_bc_sndlink(net);
Ying Xue1da46562015-01-09 15:27:07 +0800346
Jon Paul Maloy38206d52015-11-19 14:30:46 -0500347 if (!l)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100348 return -ENOPROTOOPT;
349
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400350 tipc_bcast_lock(net);
Jon Paul Maloy38206d52015-11-19 14:30:46 -0500351 tipc_link_reset_stats(l);
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400352 tipc_bcast_unlock(net);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700353 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100354}
355
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400356static int tipc_bc_link_set_queue_limits(struct net *net, u32 limit)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100357{
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400358 struct tipc_link *l = tipc_bc_sndlink(net);
Ying Xue1da46562015-01-09 15:27:07 +0800359
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400360 if (!l)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100361 return -ENOPROTOOPT;
Jon Paul Maloy53387c42015-10-19 09:21:37 -0400362 if (limit < BCLINK_WIN_MIN)
363 limit = BCLINK_WIN_MIN;
364 if (limit > TIPC_MAX_LINK_WIN)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100365 return -EINVAL;
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400366 tipc_bcast_lock(net);
367 tipc_link_set_queue_limits(l, limit);
368 tipc_bcast_unlock(net);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700369 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100370}
371
Richard Alpe670f4f82015-05-06 13:58:55 +0200372int tipc_nl_bc_link_set(struct net *net, struct nlattr *attrs[])
373{
374 int err;
375 u32 win;
376 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
377
378 if (!attrs[TIPC_NLA_LINK_PROP])
379 return -EINVAL;
380
381 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_LINK_PROP], props);
382 if (err)
383 return err;
384
385 if (!props[TIPC_NLA_PROP_WIN])
386 return -EOPNOTSUPP;
387
388 win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
389
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400390 return tipc_bc_link_set_queue_limits(net, win);
Richard Alpe670f4f82015-05-06 13:58:55 +0200391}
392
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -0400393int tipc_bcast_init(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100394{
Jon Paul Maloy32301902015-10-22 08:51:37 -0400395 struct tipc_net *tn = tipc_net(net);
Jon Paul Maloy32301902015-10-22 08:51:37 -0400396 struct tipc_bc_base *bb = NULL;
397 struct tipc_link *l = NULL;
Ying Xue7f9f95d2015-01-09 15:27:06 +0800398
Jon Paul Maloy32301902015-10-22 08:51:37 -0400399 bb = kzalloc(sizeof(*bb), GFP_ATOMIC);
400 if (!bb)
401 goto enomem;
402 tn->bcbase = bb;
Jon Paul Maloy00435502015-10-22 08:51:34 -0400403 spin_lock_init(&tipc_net(net)->bclock);
Jon Paul Maloy5fd9fd62015-10-22 08:51:35 -0400404
Jon Paul Maloyc72fa872015-10-22 08:51:46 -0400405 if (!tipc_link_bc_create(net, 0, 0,
Jon Paul Maloy959e1782015-10-22 08:51:43 -0400406 U16_MAX,
Jon Paul Maloy32301902015-10-22 08:51:37 -0400407 BCLINK_WIN_DEFAULT,
Jon Paul Maloyfd556f22015-10-22 08:51:40 -0400408 0,
Jon Paul Maloy32301902015-10-22 08:51:37 -0400409 &bb->inputq,
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400410 NULL,
Jon Paul Maloy52666982015-10-22 08:51:41 -0400411 NULL,
Jon Paul Maloy32301902015-10-22 08:51:37 -0400412 &l))
413 goto enomem;
414 bb->link = l;
415 tn->bcl = l;
Ying Xueeb8b00f2014-05-05 08:56:16 +0800416 return 0;
Jon Paul Maloy32301902015-10-22 08:51:37 -0400417enomem:
Jon Paul Maloy32301902015-10-22 08:51:37 -0400418 kfree(bb);
419 kfree(l);
420 return -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100421}
422
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -0400423void tipc_bcast_stop(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100424{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800425 struct tipc_net *tn = net_generic(net, tipc_net_id);
426
Ying Xueeb8b00f2014-05-05 08:56:16 +0800427 synchronize_net();
Jon Paul Maloy6beb19a2015-10-22 08:51:33 -0400428 kfree(tn->bcbase);
Jon Paul Maloy32301902015-10-22 08:51:37 -0400429 kfree(tn->bcl);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100430}