This source file includes following definitions.
- tipc_bcast_get_mtu
- tipc_bcast_disable_rcast
- tipc_bcbase_calc_bc_threshold
- tipc_bcbase_select_primary
- tipc_bcast_inc_bearer_dst_cnt
- tipc_bcast_dec_bearer_dst_cnt
- tipc_bcbase_xmit
- tipc_bcast_select_xmit_method
- tipc_bcast_xmit
- tipc_rcast_xmit
- tipc_mcast_send_sync
- tipc_mcast_xmit
- tipc_bcast_rcv
- tipc_bcast_ack_rcv
- tipc_bcast_sync_rcv
- tipc_bcast_add_peer
- tipc_bcast_remove_peer
- tipc_bclink_reset_stats
- tipc_bc_link_set_queue_limits
- tipc_bc_link_set_broadcast_mode
- tipc_bc_link_set_broadcast_ratio
- tipc_nl_bc_link_set
- tipc_bcast_init
- tipc_bcast_stop
- tipc_nlist_init
- tipc_nlist_add
- tipc_nlist_del
- tipc_nlist_purge
- tipc_bcast_get_broadcast_mode
- tipc_bcast_get_broadcast_ratio
- tipc_mcast_filter_msg
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
48 const char tipc_bclink_name[] = "broadcast-link";
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63 struct tipc_bc_base {
64 struct tipc_link *link;
65 struct sk_buff_head inputq;
66 int dests[MAX_BEARERS];
67 int primary_bearer;
68 bool bcast_support;
69 bool force_bcast;
70 bool rcast_support;
71 bool force_rcast;
72 int rc_ratio;
73 int bc_threshold;
74 };
75
76 static struct tipc_bc_base *tipc_bc_base(struct net *net)
77 {
78 return tipc_net(net)->bcbase;
79 }
80
81
82
83
84
85 int tipc_bcast_get_mtu(struct net *net)
86 {
87 return tipc_link_mtu(tipc_bc_sndlink(net)) - INT_H_SIZE;
88 }
89
90 void tipc_bcast_disable_rcast(struct net *net)
91 {
92 tipc_bc_base(net)->rcast_support = false;
93 }
94
95 static void tipc_bcbase_calc_bc_threshold(struct net *net)
96 {
97 struct tipc_bc_base *bb = tipc_bc_base(net);
98 int cluster_size = tipc_link_bc_peers(tipc_bc_sndlink(net));
99
100 bb->bc_threshold = 1 + (cluster_size * bb->rc_ratio / 100);
101 }
102
103
104
105
106 static void tipc_bcbase_select_primary(struct net *net)
107 {
108 struct tipc_bc_base *bb = tipc_bc_base(net);
109 int all_dests = tipc_link_bc_peers(bb->link);
110 int i, mtu, prim;
111
112 bb->primary_bearer = INVALID_BEARER_ID;
113 bb->bcast_support = true;
114
115 if (!all_dests)
116 return;
117
118 for (i = 0; i < MAX_BEARERS; i++) {
119 if (!bb->dests[i])
120 continue;
121
122 mtu = tipc_bearer_mtu(net, i);
123 if (mtu < tipc_link_mtu(bb->link))
124 tipc_link_set_mtu(bb->link, mtu);
125 bb->bcast_support &= tipc_bearer_bcast_support(net, i);
126 if (bb->dests[i] < all_dests)
127 continue;
128
129 bb->primary_bearer = i;
130
131
132 if ((i ^ tipc_own_addr(net)) & 1)
133 break;
134 }
135 prim = bb->primary_bearer;
136 if (prim != INVALID_BEARER_ID)
137 bb->bcast_support = tipc_bearer_bcast_support(net, prim);
138 }
139
140 void tipc_bcast_inc_bearer_dst_cnt(struct net *net, int bearer_id)
141 {
142 struct tipc_bc_base *bb = tipc_bc_base(net);
143
144 tipc_bcast_lock(net);
145 bb->dests[bearer_id]++;
146 tipc_bcbase_select_primary(net);
147 tipc_bcast_unlock(net);
148 }
149
150 void tipc_bcast_dec_bearer_dst_cnt(struct net *net, int bearer_id)
151 {
152 struct tipc_bc_base *bb = tipc_bc_base(net);
153
154 tipc_bcast_lock(net);
155 bb->dests[bearer_id]--;
156 tipc_bcbase_select_primary(net);
157 tipc_bcast_unlock(net);
158 }
159
160
161
162
163
164
165
166
167
168
169
170 static void tipc_bcbase_xmit(struct net *net, struct sk_buff_head *xmitq)
171 {
172 int bearer_id;
173 struct tipc_bc_base *bb = tipc_bc_base(net);
174 struct sk_buff *skb, *_skb;
175 struct sk_buff_head _xmitq;
176
177 if (skb_queue_empty(xmitq))
178 return;
179
180
181 bearer_id = bb->primary_bearer;
182 if (bearer_id >= 0) {
183 tipc_bearer_bc_xmit(net, bearer_id, xmitq);
184 return;
185 }
186
187
188 __skb_queue_head_init(&_xmitq);
189 for (bearer_id = 0; bearer_id < MAX_BEARERS; bearer_id++) {
190 if (!bb->dests[bearer_id])
191 continue;
192
193 skb_queue_walk(xmitq, skb) {
194 _skb = pskb_copy_for_clone(skb, GFP_ATOMIC);
195 if (!_skb)
196 break;
197 __skb_queue_tail(&_xmitq, _skb);
198 }
199 tipc_bearer_bc_xmit(net, bearer_id, &_xmitq);
200 }
201 __skb_queue_purge(xmitq);
202 __skb_queue_purge(&_xmitq);
203 }
204
205 static void tipc_bcast_select_xmit_method(struct net *net, int dests,
206 struct tipc_mc_method *method)
207 {
208 struct tipc_bc_base *bb = tipc_bc_base(net);
209 unsigned long exp = method->expires;
210
211
212 if (!bb->bcast_support) {
213 method->rcast = true;
214 return;
215 }
216
217 if (!bb->rcast_support) {
218 method->rcast = false;
219 return;
220 }
221
222 method->expires = jiffies + TIPC_METHOD_EXPIRE;
223 if (method->mandatory)
224 return;
225
226 if (!(tipc_net(net)->capabilities & TIPC_MCAST_RBCTL) &&
227 time_before(jiffies, exp))
228 return;
229
230
231 if (bb->force_bcast) {
232 method->rcast = false;
233 return;
234 }
235
236 if (bb->force_rcast) {
237 method->rcast = true;
238 return;
239 }
240
241
242 method->rcast = dests <= bb->bc_threshold;
243 }
244
245
246
247
248
249
250
251
252 static int tipc_bcast_xmit(struct net *net, struct sk_buff_head *pkts,
253 u16 *cong_link_cnt)
254 {
255 struct tipc_link *l = tipc_bc_sndlink(net);
256 struct sk_buff_head xmitq;
257 int rc = 0;
258
259 __skb_queue_head_init(&xmitq);
260 tipc_bcast_lock(net);
261 if (tipc_link_bc_peers(l))
262 rc = tipc_link_xmit(l, pkts, &xmitq);
263 tipc_bcast_unlock(net);
264 tipc_bcbase_xmit(net, &xmitq);
265 __skb_queue_purge(pkts);
266 if (rc == -ELINKCONG) {
267 *cong_link_cnt = 1;
268 rc = 0;
269 }
270 return rc;
271 }
272
273
274
275
276
277
278
279
280
281 static int tipc_rcast_xmit(struct net *net, struct sk_buff_head *pkts,
282 struct tipc_nlist *dests, u16 *cong_link_cnt)
283 {
284 struct tipc_dest *dst, *tmp;
285 struct sk_buff_head _pkts;
286 u32 dnode, selector;
287
288 selector = msg_link_selector(buf_msg(skb_peek(pkts)));
289 __skb_queue_head_init(&_pkts);
290
291 list_for_each_entry_safe(dst, tmp, &dests->list, list) {
292 dnode = dst->node;
293 if (!tipc_msg_pskb_copy(dnode, pkts, &_pkts))
294 return -ENOMEM;
295
296
297 if (tipc_node_xmit(net, &_pkts, dnode, selector) == -ELINKCONG)
298 (*cong_link_cnt)++;
299 }
300 return 0;
301 }
302
303
304
305
306
307
308
309
310 static int tipc_mcast_send_sync(struct net *net, struct sk_buff *skb,
311 struct tipc_mc_method *method,
312 struct tipc_nlist *dests)
313 {
314 struct tipc_msg *hdr, *_hdr;
315 struct sk_buff_head tmpq;
316 struct sk_buff *_skb;
317 u16 cong_link_cnt;
318 int rc = 0;
319
320
321 if (!(tipc_net(net)->capabilities & TIPC_MCAST_RBCTL))
322 return 0;
323
324 hdr = buf_msg(skb);
325 if (msg_user(hdr) == MSG_FRAGMENTER)
326 hdr = msg_inner_hdr(hdr);
327 if (msg_type(hdr) != TIPC_MCAST_MSG)
328 return 0;
329
330
331 _skb = tipc_buf_acquire(MCAST_H_SIZE, GFP_KERNEL);
332 if (!_skb)
333 return -ENOMEM;
334
335
336 msg_set_syn(hdr, 1);
337
338
339 skb_copy_to_linear_data(_skb, hdr, MCAST_H_SIZE);
340 skb_orphan(_skb);
341
342
343 _hdr = buf_msg(_skb);
344 msg_set_size(_hdr, MCAST_H_SIZE);
345 msg_set_is_rcast(_hdr, !msg_is_rcast(hdr));
346 msg_set_errcode(_hdr, TIPC_ERR_NO_PORT);
347
348 __skb_queue_head_init(&tmpq);
349 __skb_queue_tail(&tmpq, _skb);
350 if (method->rcast)
351 rc = tipc_bcast_xmit(net, &tmpq, &cong_link_cnt);
352 else
353 rc = tipc_rcast_xmit(net, &tmpq, dests, &cong_link_cnt);
354
355
356 __skb_queue_purge(&tmpq);
357
358 return rc;
359 }
360
361
362
363
364
365
366
367
368
369
370
371 int tipc_mcast_xmit(struct net *net, struct sk_buff_head *pkts,
372 struct tipc_mc_method *method, struct tipc_nlist *dests,
373 u16 *cong_link_cnt)
374 {
375 struct sk_buff_head inputq, localq;
376 bool rcast = method->rcast;
377 struct tipc_msg *hdr;
378 struct sk_buff *skb;
379 int rc = 0;
380
381 skb_queue_head_init(&inputq);
382 __skb_queue_head_init(&localq);
383
384
385 if (dests->local && !tipc_msg_reassemble(pkts, &localq)) {
386 rc = -ENOMEM;
387 goto exit;
388 }
389
390 if (dests->remote) {
391 tipc_bcast_select_xmit_method(net, dests->remote, method);
392
393 skb = skb_peek(pkts);
394 hdr = buf_msg(skb);
395 if (msg_user(hdr) == MSG_FRAGMENTER)
396 hdr = msg_inner_hdr(hdr);
397 msg_set_is_rcast(hdr, method->rcast);
398
399
400 if (rcast != method->rcast) {
401 rc = tipc_mcast_send_sync(net, skb, method, dests);
402 if (unlikely(rc)) {
403 pr_err("Unable to send SYN: method %d, rc %d\n",
404 rcast, rc);
405 goto exit;
406 }
407 }
408
409 if (method->rcast)
410 rc = tipc_rcast_xmit(net, pkts, dests, cong_link_cnt);
411 else
412 rc = tipc_bcast_xmit(net, pkts, cong_link_cnt);
413 }
414
415 if (dests->local) {
416 tipc_loopback_trace(net, &localq);
417 tipc_sk_mcast_rcv(net, &localq, &inputq);
418 }
419 exit:
420
421 __skb_queue_purge(pkts);
422 return rc;
423 }
424
425
426
427
428
429 int tipc_bcast_rcv(struct net *net, struct tipc_link *l, struct sk_buff *skb)
430 {
431 struct tipc_msg *hdr = buf_msg(skb);
432 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
433 struct sk_buff_head xmitq;
434 int rc;
435
436 __skb_queue_head_init(&xmitq);
437
438 if (msg_mc_netid(hdr) != tipc_netid(net) || !tipc_link_is_up(l)) {
439 kfree_skb(skb);
440 return 0;
441 }
442
443 tipc_bcast_lock(net);
444 if (msg_user(hdr) == BCAST_PROTOCOL)
445 rc = tipc_link_bc_nack_rcv(l, skb, &xmitq);
446 else
447 rc = tipc_link_rcv(l, skb, NULL);
448 tipc_bcast_unlock(net);
449
450 tipc_bcbase_xmit(net, &xmitq);
451
452
453 if (!skb_queue_empty(inputq))
454 tipc_sk_rcv(net, inputq);
455
456 return rc;
457 }
458
459
460
461
462
463 void tipc_bcast_ack_rcv(struct net *net, struct tipc_link *l,
464 struct tipc_msg *hdr)
465 {
466 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
467 u16 acked = msg_bcast_ack(hdr);
468 struct sk_buff_head xmitq;
469
470
471 if (msg_bc_ack_invalid(hdr))
472 return;
473
474 __skb_queue_head_init(&xmitq);
475
476 tipc_bcast_lock(net);
477 tipc_link_bc_ack_rcv(l, acked, &xmitq);
478 tipc_bcast_unlock(net);
479
480 tipc_bcbase_xmit(net, &xmitq);
481
482
483 if (!skb_queue_empty(inputq))
484 tipc_sk_rcv(net, inputq);
485 }
486
487
488
489
490
491 int tipc_bcast_sync_rcv(struct net *net, struct tipc_link *l,
492 struct tipc_msg *hdr)
493 {
494 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
495 struct sk_buff_head xmitq;
496 int rc = 0;
497
498 __skb_queue_head_init(&xmitq);
499
500 tipc_bcast_lock(net);
501 if (msg_type(hdr) != STATE_MSG) {
502 tipc_link_bc_init_rcv(l, hdr);
503 } else if (!msg_bc_ack_invalid(hdr)) {
504 tipc_link_bc_ack_rcv(l, msg_bcast_ack(hdr), &xmitq);
505 rc = tipc_link_bc_sync_rcv(l, hdr, &xmitq);
506 }
507 tipc_bcast_unlock(net);
508
509 tipc_bcbase_xmit(net, &xmitq);
510
511
512 if (!skb_queue_empty(inputq))
513 tipc_sk_rcv(net, inputq);
514 return rc;
515 }
516
517
518
519
520
521 void tipc_bcast_add_peer(struct net *net, struct tipc_link *uc_l,
522 struct sk_buff_head *xmitq)
523 {
524 struct tipc_link *snd_l = tipc_bc_sndlink(net);
525
526 tipc_bcast_lock(net);
527 tipc_link_add_bc_peer(snd_l, uc_l, xmitq);
528 tipc_bcbase_select_primary(net);
529 tipc_bcbase_calc_bc_threshold(net);
530 tipc_bcast_unlock(net);
531 }
532
533
534
535
536
537 void tipc_bcast_remove_peer(struct net *net, struct tipc_link *rcv_l)
538 {
539 struct tipc_link *snd_l = tipc_bc_sndlink(net);
540 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
541 struct sk_buff_head xmitq;
542
543 __skb_queue_head_init(&xmitq);
544
545 tipc_bcast_lock(net);
546 tipc_link_remove_bc_peer(snd_l, rcv_l, &xmitq);
547 tipc_bcbase_select_primary(net);
548 tipc_bcbase_calc_bc_threshold(net);
549 tipc_bcast_unlock(net);
550
551 tipc_bcbase_xmit(net, &xmitq);
552
553
554 if (!skb_queue_empty(inputq))
555 tipc_sk_rcv(net, inputq);
556 }
557
558 int tipc_bclink_reset_stats(struct net *net)
559 {
560 struct tipc_link *l = tipc_bc_sndlink(net);
561
562 if (!l)
563 return -ENOPROTOOPT;
564
565 tipc_bcast_lock(net);
566 tipc_link_reset_stats(l);
567 tipc_bcast_unlock(net);
568 return 0;
569 }
570
571 static int tipc_bc_link_set_queue_limits(struct net *net, u32 limit)
572 {
573 struct tipc_link *l = tipc_bc_sndlink(net);
574
575 if (!l)
576 return -ENOPROTOOPT;
577 if (limit < BCLINK_WIN_MIN)
578 limit = BCLINK_WIN_MIN;
579 if (limit > TIPC_MAX_LINK_WIN)
580 return -EINVAL;
581 tipc_bcast_lock(net);
582 tipc_link_set_queue_limits(l, limit);
583 tipc_bcast_unlock(net);
584 return 0;
585 }
586
587 static int tipc_bc_link_set_broadcast_mode(struct net *net, u32 bc_mode)
588 {
589 struct tipc_bc_base *bb = tipc_bc_base(net);
590
591 switch (bc_mode) {
592 case BCLINK_MODE_BCAST:
593 if (!bb->bcast_support)
594 return -ENOPROTOOPT;
595
596 bb->force_bcast = true;
597 bb->force_rcast = false;
598 break;
599 case BCLINK_MODE_RCAST:
600 if (!bb->rcast_support)
601 return -ENOPROTOOPT;
602
603 bb->force_bcast = false;
604 bb->force_rcast = true;
605 break;
606 case BCLINK_MODE_SEL:
607 if (!bb->bcast_support || !bb->rcast_support)
608 return -ENOPROTOOPT;
609
610 bb->force_bcast = false;
611 bb->force_rcast = false;
612 break;
613 default:
614 return -EINVAL;
615 }
616
617 return 0;
618 }
619
620 static int tipc_bc_link_set_broadcast_ratio(struct net *net, u32 bc_ratio)
621 {
622 struct tipc_bc_base *bb = tipc_bc_base(net);
623
624 if (!bb->bcast_support || !bb->rcast_support)
625 return -ENOPROTOOPT;
626
627 if (bc_ratio > 100 || bc_ratio <= 0)
628 return -EINVAL;
629
630 bb->rc_ratio = bc_ratio;
631 tipc_bcast_lock(net);
632 tipc_bcbase_calc_bc_threshold(net);
633 tipc_bcast_unlock(net);
634
635 return 0;
636 }
637
638 int tipc_nl_bc_link_set(struct net *net, struct nlattr *attrs[])
639 {
640 int err;
641 u32 win;
642 u32 bc_mode;
643 u32 bc_ratio;
644 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
645
646 if (!attrs[TIPC_NLA_LINK_PROP])
647 return -EINVAL;
648
649 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_LINK_PROP], props);
650 if (err)
651 return err;
652
653 if (!props[TIPC_NLA_PROP_WIN] &&
654 !props[TIPC_NLA_PROP_BROADCAST] &&
655 !props[TIPC_NLA_PROP_BROADCAST_RATIO]) {
656 return -EOPNOTSUPP;
657 }
658
659 if (props[TIPC_NLA_PROP_BROADCAST]) {
660 bc_mode = nla_get_u32(props[TIPC_NLA_PROP_BROADCAST]);
661 err = tipc_bc_link_set_broadcast_mode(net, bc_mode);
662 }
663
664 if (!err && props[TIPC_NLA_PROP_BROADCAST_RATIO]) {
665 bc_ratio = nla_get_u32(props[TIPC_NLA_PROP_BROADCAST_RATIO]);
666 err = tipc_bc_link_set_broadcast_ratio(net, bc_ratio);
667 }
668
669 if (!err && props[TIPC_NLA_PROP_WIN]) {
670 win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
671 err = tipc_bc_link_set_queue_limits(net, win);
672 }
673
674 return err;
675 }
676
677 int tipc_bcast_init(struct net *net)
678 {
679 struct tipc_net *tn = tipc_net(net);
680 struct tipc_bc_base *bb = NULL;
681 struct tipc_link *l = NULL;
682
683 bb = kzalloc(sizeof(*bb), GFP_KERNEL);
684 if (!bb)
685 goto enomem;
686 tn->bcbase = bb;
687 spin_lock_init(&tipc_net(net)->bclock);
688
689 if (!tipc_link_bc_create(net, 0, 0,
690 FB_MTU,
691 BCLINK_WIN_DEFAULT,
692 0,
693 &bb->inputq,
694 NULL,
695 NULL,
696 &l))
697 goto enomem;
698 bb->link = l;
699 tn->bcl = l;
700 bb->rc_ratio = 10;
701 bb->rcast_support = true;
702 return 0;
703 enomem:
704 kfree(bb);
705 kfree(l);
706 return -ENOMEM;
707 }
708
709 void tipc_bcast_stop(struct net *net)
710 {
711 struct tipc_net *tn = net_generic(net, tipc_net_id);
712
713 synchronize_net();
714 kfree(tn->bcbase);
715 kfree(tn->bcl);
716 }
717
718 void tipc_nlist_init(struct tipc_nlist *nl, u32 self)
719 {
720 memset(nl, 0, sizeof(*nl));
721 INIT_LIST_HEAD(&nl->list);
722 nl->self = self;
723 }
724
725 void tipc_nlist_add(struct tipc_nlist *nl, u32 node)
726 {
727 if (node == nl->self)
728 nl->local = true;
729 else if (tipc_dest_push(&nl->list, node, 0))
730 nl->remote++;
731 }
732
733 void tipc_nlist_del(struct tipc_nlist *nl, u32 node)
734 {
735 if (node == nl->self)
736 nl->local = false;
737 else if (tipc_dest_del(&nl->list, node, 0))
738 nl->remote--;
739 }
740
741 void tipc_nlist_purge(struct tipc_nlist *nl)
742 {
743 tipc_dest_list_purge(&nl->list);
744 nl->remote = 0;
745 nl->local = false;
746 }
747
748 u32 tipc_bcast_get_broadcast_mode(struct net *net)
749 {
750 struct tipc_bc_base *bb = tipc_bc_base(net);
751
752 if (bb->force_bcast)
753 return BCLINK_MODE_BCAST;
754
755 if (bb->force_rcast)
756 return BCLINK_MODE_RCAST;
757
758 if (bb->bcast_support && bb->rcast_support)
759 return BCLINK_MODE_SEL;
760
761 return 0;
762 }
763
764 u32 tipc_bcast_get_broadcast_ratio(struct net *net)
765 {
766 struct tipc_bc_base *bb = tipc_bc_base(net);
767
768 return bb->rc_ratio;
769 }
770
771 void tipc_mcast_filter_msg(struct net *net, struct sk_buff_head *defq,
772 struct sk_buff_head *inputq)
773 {
774 struct sk_buff *skb, *_skb, *tmp;
775 struct tipc_msg *hdr, *_hdr;
776 bool match = false;
777 u32 node, port;
778
779 skb = skb_peek(inputq);
780 if (!skb)
781 return;
782
783 hdr = buf_msg(skb);
784
785 if (likely(!msg_is_syn(hdr) && skb_queue_empty(defq)))
786 return;
787
788 node = msg_orignode(hdr);
789 if (node == tipc_own_addr(net))
790 return;
791
792 port = msg_origport(hdr);
793
794
795 skb_queue_walk(defq, _skb) {
796 _hdr = buf_msg(_skb);
797 if (msg_orignode(_hdr) != node)
798 continue;
799 if (msg_origport(_hdr) != port)
800 continue;
801 match = true;
802 break;
803 }
804
805 if (!match) {
806 if (!msg_is_syn(hdr))
807 return;
808 __skb_dequeue(inputq);
809 __skb_queue_tail(defq, skb);
810 return;
811 }
812
813
814 if (!msg_is_syn(hdr)) {
815 if (msg_is_rcast(hdr) != msg_is_rcast(_hdr))
816 return;
817 __skb_dequeue(inputq);
818 __skb_queue_tail(defq, skb);
819 return;
820 }
821
822
823 if (msg_is_rcast(hdr) == msg_is_rcast(_hdr)) {
824 __skb_dequeue(inputq);
825 __skb_queue_tail(defq, skb);
826 return;
827 }
828
829
830 __skb_unlink(_skb, defq);
831 if (msg_data_sz(hdr)) {
832 kfree_skb(_skb);
833 } else {
834 __skb_dequeue(inputq);
835 kfree_skb(skb);
836 __skb_queue_tail(inputq, _skb);
837 }
838
839
840 skb_queue_walk_safe(defq, _skb, tmp) {
841 _hdr = buf_msg(_skb);
842 if (msg_orignode(_hdr) != node)
843 continue;
844 if (msg_origport(_hdr) != port)
845 continue;
846 if (msg_is_syn(_hdr))
847 break;
848 __skb_unlink(_skb, defq);
849 __skb_queue_tail(inputq, _skb);
850 }
851 }