1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38#include <linux/tipc_config.h>
39#include "socket.h"
40#include "msg.h"
41#include "bcast.h"
42#include "link.h"
43#include "name_table.h"
44
45#define BCLINK_WIN_DEFAULT 50
46#define BCLINK_WIN_MIN 32
47
48const char tipc_bclink_name[] = "broadcast-link";
49
50
51
52
53
54
55
56
57
58
59
60
61struct tipc_bc_base {
62 struct tipc_link *link;
63 struct sk_buff_head inputq;
64 int dests[MAX_BEARERS];
65 int primary_bearer;
66 bool bcast_support;
67 bool rcast_support;
68 int rc_ratio;
69 int bc_threshold;
70};
71
72static struct tipc_bc_base *tipc_bc_base(struct net *net)
73{
74 return tipc_net(net)->bcbase;
75}
76
77int tipc_bcast_get_mtu(struct net *net)
78{
79 return tipc_link_mtu(tipc_bc_sndlink(net)) - INT_H_SIZE;
80}
81
82void 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
95
96
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);
102 int i, mtu, prim;
103
104 bb->primary_bearer = INVALID_BEARER_ID;
105 bb->bcast_support = true;
106
107 if (!all_dests)
108 return;
109
110 for (i = 0; i < MAX_BEARERS; i++) {
111 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);
117 bb->bcast_support &= tipc_bearer_bcast_support(net, i);
118 if (bb->dests[i] < all_dests)
119 continue;
120
121 bb->primary_bearer = i;
122
123
124 if ((i ^ tipc_own_addr(net)) & 1)
125 break;
126 }
127 prim = bb->primary_bearer;
128 if (prim != INVALID_BEARER_ID)
129 bb->bcast_support = tipc_bearer_bcast_support(net, prim);
130}
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
152
153
154
155
156
157
158
159
160
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
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
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
197static 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
204 if (!bb->bcast_support) {
205 method->rcast = true;
206 return;
207 }
208
209 if (!bb->rcast_support) {
210 method->rcast = false;
211 return;
212 }
213
214 method->expires = jiffies + TIPC_METHOD_EXPIRE;
215 if (method->mandatory || time_before(jiffies, exp))
216 return;
217
218
219 method->rcast = dests <= bb->bc_threshold;
220}
221
222
223
224
225
226
227
228
229static int tipc_bcast_xmit(struct net *net, struct sk_buff_head *pkts,
230 u16 *cong_link_cnt)
231{
232 struct tipc_link *l = tipc_bc_sndlink(net);
233 struct sk_buff_head xmitq;
234 int rc = 0;
235
236 skb_queue_head_init(&xmitq);
237 tipc_bcast_lock(net);
238 if (tipc_link_bc_peers(l))
239 rc = tipc_link_xmit(l, pkts, &xmitq);
240 tipc_bcast_unlock(net);
241 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}
249
250
251
252
253
254
255
256
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
274 if (tipc_node_xmit(net, &_pkts, dst, selector) == -ELINKCONG)
275 (*cong_link_cnt)++;
276 }
277 return 0;
278}
279
280
281
282
283
284
285
286
287
288
289
290int tipc_mcast_xmit(struct net *net, struct sk_buff_head *pkts,
291 struct tipc_mc_method *method, struct tipc_nlist *dests,
292 u16 *cong_link_cnt)
293{
294 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
301 if (dests->local && !tipc_msg_reassemble(pkts, &localq)) {
302 rc = -ENOMEM;
303 goto exit;
304 }
305
306 if (dests->remote) {
307 tipc_bcast_select_xmit_method(net, dests->remote, method);
308 if (method->rcast)
309 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:
317
318 __skb_queue_purge(pkts);
319 return rc;
320}
321
322
323
324
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
347 tipc_bcbase_xmit(net, &xmitq);
348
349
350 if (!skb_queue_empty(inputq))
351 tipc_sk_rcv(net, inputq);
352
353 return rc;
354}
355
356
357
358
359
360void tipc_bcast_ack_rcv(struct net *net, struct tipc_link *l,
361 struct tipc_msg *hdr)
362{
363 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
364 u16 acked = msg_bcast_ack(hdr);
365 struct sk_buff_head xmitq;
366
367
368 if (msg_bc_ack_invalid(hdr))
369 return;
370
371 __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
377 tipc_bcbase_xmit(net, &xmitq);
378
379
380 if (!skb_queue_empty(inputq))
381 tipc_sk_rcv(net, inputq);
382}
383
384
385
386
387
388int tipc_bcast_sync_rcv(struct net *net, struct tipc_link *l,
389 struct tipc_msg *hdr)
390{
391 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
392 struct sk_buff_head xmitq;
393 int rc = 0;
394
395 __skb_queue_head_init(&xmitq);
396
397 tipc_bcast_lock(net);
398 if (msg_type(hdr) != STATE_MSG) {
399 tipc_link_bc_init_rcv(l, hdr);
400 } else if (!msg_bc_ack_invalid(hdr)) {
401 tipc_link_bc_ack_rcv(l, msg_bcast_ack(hdr), &xmitq);
402 rc = tipc_link_bc_sync_rcv(l, hdr, &xmitq);
403 }
404 tipc_bcast_unlock(net);
405
406 tipc_bcbase_xmit(net, &xmitq);
407
408
409 if (!skb_queue_empty(inputq))
410 tipc_sk_rcv(net, inputq);
411 return rc;
412}
413
414
415
416
417
418void tipc_bcast_add_peer(struct net *net, struct tipc_link *uc_l,
419 struct sk_buff_head *xmitq)
420{
421 struct tipc_link *snd_l = tipc_bc_sndlink(net);
422
423 tipc_bcast_lock(net);
424 tipc_link_add_bc_peer(snd_l, uc_l, xmitq);
425 tipc_bcbase_select_primary(net);
426 tipc_bcbase_calc_bc_threshold(net);
427 tipc_bcast_unlock(net);
428}
429
430
431
432
433
434void tipc_bcast_remove_peer(struct net *net, struct tipc_link *rcv_l)
435{
436 struct tipc_link *snd_l = tipc_bc_sndlink(net);
437 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
438 struct sk_buff_head xmitq;
439
440 __skb_queue_head_init(&xmitq);
441
442 tipc_bcast_lock(net);
443 tipc_link_remove_bc_peer(snd_l, rcv_l, &xmitq);
444 tipc_bcbase_select_primary(net);
445 tipc_bcbase_calc_bc_threshold(net);
446 tipc_bcast_unlock(net);
447
448 tipc_bcbase_xmit(net, &xmitq);
449
450
451 if (!skb_queue_empty(inputq))
452 tipc_sk_rcv(net, inputq);
453}
454
455int tipc_bclink_reset_stats(struct net *net)
456{
457 struct tipc_link *l = tipc_bc_sndlink(net);
458
459 if (!l)
460 return -ENOPROTOOPT;
461
462 tipc_bcast_lock(net);
463 tipc_link_reset_stats(l);
464 tipc_bcast_unlock(net);
465 return 0;
466}
467
468static int tipc_bc_link_set_queue_limits(struct net *net, u32 limit)
469{
470 struct tipc_link *l = tipc_bc_sndlink(net);
471
472 if (!l)
473 return -ENOPROTOOPT;
474 if (limit < BCLINK_WIN_MIN)
475 limit = BCLINK_WIN_MIN;
476 if (limit > TIPC_MAX_LINK_WIN)
477 return -EINVAL;
478 tipc_bcast_lock(net);
479 tipc_link_set_queue_limits(l, limit);
480 tipc_bcast_unlock(net);
481 return 0;
482}
483
484int 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
502 return tipc_bc_link_set_queue_limits(net, win);
503}
504
505int tipc_bcast_init(struct net *net)
506{
507 struct tipc_net *tn = tipc_net(net);
508 struct tipc_bc_base *bb = NULL;
509 struct tipc_link *l = NULL;
510
511 bb = kzalloc(sizeof(*bb), GFP_ATOMIC);
512 if (!bb)
513 goto enomem;
514 tn->bcbase = bb;
515 spin_lock_init(&tipc_net(net)->bclock);
516
517 if (!tipc_link_bc_create(net, 0, 0,
518 U16_MAX,
519 BCLINK_WIN_DEFAULT,
520 0,
521 &bb->inputq,
522 NULL,
523 NULL,
524 &l))
525 goto enomem;
526 bb->link = l;
527 tn->bcl = l;
528 bb->rc_ratio = 25;
529 bb->rcast_support = true;
530 return 0;
531enomem:
532 kfree(bb);
533 kfree(l);
534 return -ENOMEM;
535}
536
537void tipc_bcast_stop(struct net *net)
538{
539 struct tipc_net *tn = net_generic(net, tipc_net_id);
540
541 synchronize_net();
542 kfree(tn->bcbase);
543 kfree(tn->bcl);
544}
545
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}
575