]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - net/tipc/link.c
Merge branch 'net-tls-small-code-cleanup'
[mirror_ubuntu-jammy-kernel.git] / net / tipc / link.c
CommitLineData
b97bf3fd
PL
1/*
2 * net/tipc/link.c: TIPC link code
c4307285 3 *
e74a386d 4 * Copyright (c) 1996-2007, 2012-2016, Ericsson AB
198d73b8 5 * Copyright (c) 2004-2007, 2010-2013, Wind River Systems
b97bf3fd
PL
6 * All rights reserved.
7 *
9ea1fd3c 8 * Redistribution and use in source and binary forms, with or without
b97bf3fd
PL
9 * modification, are permitted provided that the following conditions are met:
10 *
9ea1fd3c
PL
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
b97bf3fd 19 *
9ea1fd3c
PL
20 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
b97bf3fd
PL
34 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
e3eea1eb 38#include "subscr.h"
b97bf3fd 39#include "link.h"
7be57fc6 40#include "bcast.h"
9816f061 41#include "socket.h"
b97bf3fd 42#include "name_distr.h"
b97bf3fd 43#include "discover.h"
0655f6a8 44#include "netlink.h"
35c55c98 45#include "monitor.h"
b4b9771b 46#include "trace.h"
b97bf3fd 47
796c75d0
YX
48#include <linux/pkt_sched.h>
49
38206d59 50struct tipc_stats {
95901122
JPM
51 u32 sent_pkts;
52 u32 recv_pkts;
38206d59
JPM
53 u32 sent_states;
54 u32 recv_states;
55 u32 sent_probes;
56 u32 recv_probes;
57 u32 sent_nacks;
58 u32 recv_nacks;
59 u32 sent_acks;
60 u32 sent_bundled;
61 u32 sent_bundles;
62 u32 recv_bundled;
63 u32 recv_bundles;
64 u32 retransmitted;
65 u32 sent_fragmented;
66 u32 sent_fragments;
67 u32 recv_fragmented;
68 u32 recv_fragments;
69 u32 link_congs; /* # port sends blocked by congestion */
70 u32 deferred_recv;
71 u32 duplicates;
72 u32 max_queue_sz; /* send queue size high water mark */
73 u32 accu_queue_sz; /* used for send queue size profiling */
74 u32 queue_sz_counts; /* used for send queue size profiling */
75 u32 msg_length_counts; /* used for message length profiling */
76 u32 msg_lengths_total; /* used for message length profiling */
77 u32 msg_length_profile[7]; /* used for msg. length profiling */
78};
79
80/**
81 * struct tipc_link - TIPC link data structure
82 * @addr: network address of link's peer node
83 * @name: link name character string
84 * @media_addr: media address to use when sending messages over link
85 * @timer: link timer
86 * @net: pointer to namespace struct
87 * @refcnt: reference counter for permanent references (owner node & timer)
88 * @peer_session: link session # being used by peer end of link
89 * @peer_bearer_id: bearer id used by link's peer endpoint
90 * @bearer_id: local bearer id used by link
91 * @tolerance: minimum link continuity loss needed to reset link [in ms]
38206d59
JPM
92 * @abort_limit: # of unacknowledged continuity probes needed to reset link
93 * @state: current state of link FSM
94 * @peer_caps: bitmap describing capabilities of peer node
95 * @silent_intv_cnt: # of timer intervals without any reception from peer
96 * @proto_msg: template for control messages generated by link
97 * @pmsg: convenience pointer to "proto_msg" field
98 * @priority: current link priority
99 * @net_plane: current link network plane ('A' through 'H')
35c55c98 100 * @mon_state: cookie with information needed by link monitor
38206d59
JPM
101 * @backlog_limit: backlog queue congestion thresholds (indexed by importance)
102 * @exp_msg_count: # of tunnelled messages expected during link changeover
103 * @reset_rcv_checkpt: seq # of last acknowledged message at time of link reset
104 * @mtu: current maximum packet size for this link
105 * @advertised_mtu: advertised own mtu when link is being established
106 * @transmitq: queue for sent, non-acked messages
107 * @backlogq: queue for messages waiting to be sent
108 * @snt_nxt: next sequence number to use for outbound messages
31c4f4cc 109 * @prev_from: sequence number of most previous retransmission request
a4dc70d4
JM
110 * @stale_cnt: counter for number of identical retransmit attempts
111 * @stale_limit: time when repeated identical retransmits must force link reset
38206d59
JPM
112 * @ackers: # of peers that needs to ack each packet before it can be released
113 * @acked: # last packet acked by a certain peer. Used for broadcast.
114 * @rcv_nxt: next sequence number to expect for inbound messages
115 * @deferred_queue: deferred queue saved OOS b'cast message received from node
116 * @unacked_window: # of inbound messages rx'd without ack'ing back to peer
117 * @inputq: buffer queue for messages to be delivered upwards
118 * @namedq: buffer queue for name table messages to be delivered upwards
119 * @next_out: ptr to first unsent outbound message in queue
120 * @wakeupq: linked list of wakeup msgs waiting for link congestion to abate
121 * @long_msg_seq_no: next identifier to use for outbound fragmented messages
122 * @reasm_buf: head of partially reassembled inbound message fragments
123 * @bc_rcvr: marks that this is a broadcast receiver link
124 * @stats: collects statistics regarding link activity
125 */
126struct tipc_link {
127 u32 addr;
128 char name[TIPC_MAX_LINK_NAME];
38206d59
JPM
129 struct net *net;
130
131 /* Management and link supervision data */
7ea817f4
JM
132 u16 peer_session;
133 u16 session;
9012de50
JM
134 u16 snd_nxt_state;
135 u16 rcv_nxt_state;
38206d59
JPM
136 u32 peer_bearer_id;
137 u32 bearer_id;
138 u32 tolerance;
38206d59
JPM
139 u32 abort_limit;
140 u32 state;
141 u16 peer_caps;
7ea817f4 142 bool in_session;
38206d59
JPM
143 bool active;
144 u32 silent_intv_cnt;
e74a386d 145 char if_name[TIPC_MAX_IF_NAME];
38206d59
JPM
146 u32 priority;
147 char net_plane;
35c55c98 148 struct tipc_mon_state mon_state;
88e8ac70 149 u16 rst_cnt;
38206d59
JPM
150
151 /* Failover/synch */
152 u16 drop_point;
153 struct sk_buff *failover_reasm_skb;
58ee86b8 154 struct sk_buff_head failover_deferdq;
38206d59
JPM
155
156 /* Max packet negotiation */
157 u16 mtu;
158 u16 advertised_mtu;
159
160 /* Sending */
161 struct sk_buff_head transmq;
162 struct sk_buff_head backlogq;
163 struct {
164 u16 len;
165 u16 limit;
166 } backlog[5];
167 u16 snd_nxt;
31c4f4cc 168 u16 prev_from;
38206d59 169 u16 window;
a4dc70d4
JM
170 u16 stale_cnt;
171 unsigned long stale_limit;
38206d59
JPM
172
173 /* Reception */
174 u16 rcv_nxt;
175 u32 rcv_unacked;
176 struct sk_buff_head deferdq;
177 struct sk_buff_head *inputq;
178 struct sk_buff_head *namedq;
179
180 /* Congestion handling */
181 struct sk_buff_head wakeupq;
182
183 /* Fragmentation/reassembly */
184 struct sk_buff *reasm_buf;
185
186 /* Broadcast */
187 u16 ackers;
188 u16 acked;
189 struct tipc_link *bc_rcvlink;
190 struct tipc_link *bc_sndlink;
7c4a54b9 191 u8 nack_state;
38206d59
JPM
192 bool bc_peer_is_up;
193
194 /* Statistics */
195 struct tipc_stats stats;
196};
197
2cf8aa19
EH
198/*
199 * Error message prefixes
200 */
6e498158 201static const char *link_co_err = "Link tunneling error, ";
2cf8aa19 202static const char *link_rst_msg = "Resetting link ";
7be57fc6 203
52666986
JPM
204/* Send states for broadcast NACKs
205 */
206enum {
207 BC_NACK_SND_CONDITIONAL,
208 BC_NACK_SND_UNCONDITIONAL,
209 BC_NACK_SND_SUPPRESS,
210};
211
31c4f4cc 212#define TIPC_BC_RETR_LIM msecs_to_jiffies(10) /* [ms] */
382f598f 213#define TIPC_UC_RETR_TIME (jiffies + msecs_to_jiffies(1))
7c4a54b9 214
d999297c
JPM
215/*
216 * Interval between NACKs when packets arrive out of order
217 */
218#define TIPC_NACK_INTV (TIPC_MIN_LINK_WIN * 2)
e74a386d 219
662921cd 220/* Link FSM states:
b97bf3fd 221 */
d3504c34 222enum {
662921cd
JPM
223 LINK_ESTABLISHED = 0xe,
224 LINK_ESTABLISHING = 0xe << 4,
225 LINK_RESET = 0x1 << 8,
226 LINK_RESETTING = 0x2 << 12,
227 LINK_PEER_RESET = 0xd << 16,
228 LINK_FAILINGOVER = 0xf << 20,
229 LINK_SYNCHING = 0xc << 24
d3504c34
JPM
230};
231
232/* Link FSM state checking routines
233 */
662921cd 234static int link_is_up(struct tipc_link *l)
d3504c34 235{
662921cd 236 return l->state & (LINK_ESTABLISHED | LINK_SYNCHING);
d3504c34 237}
b97bf3fd 238
d999297c
JPM
239static int tipc_link_proto_rcv(struct tipc_link *l, struct sk_buff *skb,
240 struct sk_buff_head *xmitq);
426cc2b8 241static void tipc_link_build_proto_msg(struct tipc_link *l, int mtyp, bool probe,
8d6e79d3
JM
242 bool probe_reply, u16 rcvgap,
243 int tolerance, int priority,
426cc2b8 244 struct sk_buff_head *xmitq);
1a90632d 245static void link_print(struct tipc_link *l, const char *str);
e0a05ebe
JPM
246static int tipc_link_build_nack_msg(struct tipc_link *l,
247 struct sk_buff_head *xmitq);
52666986
JPM
248static void tipc_link_build_bc_init_msg(struct tipc_link *l,
249 struct sk_buff_head *xmitq);
250static bool tipc_link_release_pkts(struct tipc_link *l, u16 to);
9195948f
TL
251static u16 tipc_build_gap_ack_blks(struct tipc_link *l, void *data);
252static void tipc_link_advance_transmq(struct tipc_link *l, u16 acked, u16 gap,
253 struct tipc_gap_ack_blks *ga,
254 struct sk_buff_head *xmitq);
8b4ed863 255
b97bf3fd 256/*
05790c64 257 * Simple non-static link routines (i.e. referenced outside this file)
b97bf3fd 258 */
662921cd 259bool tipc_link_is_up(struct tipc_link *l)
b97bf3fd 260{
662921cd
JPM
261 return link_is_up(l);
262}
263
c8199300
JPM
264bool tipc_link_peer_is_down(struct tipc_link *l)
265{
266 return l->state == LINK_PEER_RESET;
267}
268
662921cd
JPM
269bool tipc_link_is_reset(struct tipc_link *l)
270{
271 return l->state & (LINK_RESET | LINK_FAILINGOVER | LINK_ESTABLISHING);
272}
273
73f646ce
JPM
274bool tipc_link_is_establishing(struct tipc_link *l)
275{
276 return l->state == LINK_ESTABLISHING;
277}
278
662921cd
JPM
279bool tipc_link_is_synching(struct tipc_link *l)
280{
281 return l->state == LINK_SYNCHING;
282}
283
284bool tipc_link_is_failingover(struct tipc_link *l)
285{
286 return l->state == LINK_FAILINGOVER;
287}
288
289bool tipc_link_is_blocked(struct tipc_link *l)
290{
291 return l->state & (LINK_RESETTING | LINK_PEER_RESET | LINK_FAILINGOVER);
b97bf3fd
PL
292}
293
742e0383 294static bool link_is_bc_sndlink(struct tipc_link *l)
52666986
JPM
295{
296 return !l->bc_sndlink;
297}
298
742e0383 299static bool link_is_bc_rcvlink(struct tipc_link *l)
52666986
JPM
300{
301 return ((l->bc_rcvlink == l) && !link_is_bc_sndlink(l));
302}
303
c72fa872
JPM
304void tipc_link_set_active(struct tipc_link *l, bool active)
305{
306 l->active = active;
b97bf3fd
PL
307}
308
38206d59
JPM
309u32 tipc_link_id(struct tipc_link *l)
310{
311 return l->peer_bearer_id << 16 | l->bearer_id;
312}
313
314int tipc_link_window(struct tipc_link *l)
315{
316 return l->window;
317}
318
319int tipc_link_prio(struct tipc_link *l)
320{
321 return l->priority;
322}
323
324unsigned long tipc_link_tolerance(struct tipc_link *l)
325{
326 return l->tolerance;
327}
328
329struct sk_buff_head *tipc_link_inputq(struct tipc_link *l)
330{
331 return l->inputq;
332}
333
334char tipc_link_plane(struct tipc_link *l)
335{
336 return l->net_plane;
337}
338
9012de50
JM
339void tipc_link_update_caps(struct tipc_link *l, u16 capabilities)
340{
341 l->peer_caps = capabilities;
342}
343
52666986
JPM
344void tipc_link_add_bc_peer(struct tipc_link *snd_l,
345 struct tipc_link *uc_l,
346 struct sk_buff_head *xmitq)
2f566124 347{
52666986
JPM
348 struct tipc_link *rcv_l = uc_l->bc_rcvlink;
349
350 snd_l->ackers++;
351 rcv_l->acked = snd_l->snd_nxt - 1;
9a650838 352 snd_l->state = LINK_ESTABLISHED;
52666986 353 tipc_link_build_bc_init_msg(uc_l, xmitq);
2f566124
JPM
354}
355
52666986
JPM
356void tipc_link_remove_bc_peer(struct tipc_link *snd_l,
357 struct tipc_link *rcv_l,
358 struct sk_buff_head *xmitq)
2f566124 359{
52666986
JPM
360 u16 ack = snd_l->snd_nxt - 1;
361
362 snd_l->ackers--;
a71eb720
JPM
363 rcv_l->bc_peer_is_up = true;
364 rcv_l->state = LINK_ESTABLISHED;
52666986 365 tipc_link_bc_ack_rcv(rcv_l, ack, xmitq);
26574db0 366 trace_tipc_link_reset(rcv_l, TIPC_DUMP_ALL, "bclink removed!");
52666986
JPM
367 tipc_link_reset(rcv_l);
368 rcv_l->state = LINK_RESET;
369 if (!snd_l->ackers) {
26574db0 370 trace_tipc_link_reset(snd_l, TIPC_DUMP_ALL, "zero ackers!");
52666986 371 tipc_link_reset(snd_l);
9a650838 372 snd_l->state = LINK_RESET;
52666986
JPM
373 __skb_queue_purge(xmitq);
374 }
2f566124
JPM
375}
376
377int tipc_link_bc_peers(struct tipc_link *l)
378{
379 return l->ackers;
380}
381
e064cce1 382static u16 link_bc_rcv_gap(struct tipc_link *l)
02d11ca2
JPM
383{
384 struct sk_buff *skb = skb_peek(&l->deferdq);
385 u16 gap = 0;
386
387 if (more(l->snd_nxt, l->rcv_nxt))
388 gap = l->snd_nxt - l->rcv_nxt;
389 if (skb)
390 gap = buf_seqno(skb) - l->rcv_nxt;
391 return gap;
392}
393
959e1781
JPM
394void tipc_link_set_mtu(struct tipc_link *l, int mtu)
395{
396 l->mtu = mtu;
397}
398
399int tipc_link_mtu(struct tipc_link *l)
400{
401 return l->mtu;
402}
403
38206d59
JPM
404u16 tipc_link_rcv_nxt(struct tipc_link *l)
405{
406 return l->rcv_nxt;
407}
408
409u16 tipc_link_acked(struct tipc_link *l)
410{
411 return l->acked;
412}
413
414char *tipc_link_name(struct tipc_link *l)
415{
416 return l->name;
417}
418
c140eb16
LDC
419u32 tipc_link_state(struct tipc_link *l)
420{
421 return l->state;
422}
423
b97bf3fd 424/**
4323add6 425 * tipc_link_create - create a new link
440d8963 426 * @n: pointer to associated node
0e05498e
JPM
427 * @if_name: associated interface name
428 * @bearer_id: id (index) of associated bearer
429 * @tolerance: link tolerance to be used by link
430 * @net_plane: network plane (A,B,c..) this link belongs to
431 * @mtu: mtu to be advertised by link
432 * @priority: priority to be used by link
433 * @window: send window to be used by link
434 * @session: session to be used by link
440d8963 435 * @ownnode: identity of own node
0e05498e 436 * @peer: node id of peer node
fd556f20 437 * @peer_caps: bitmap describing peer node capabilities
52666986
JPM
438 * @bc_sndlink: the namespace global link used for broadcast sending
439 * @bc_rcvlink: the peer specific link used for broadcast reception
440d8963
JPM
440 * @inputq: queue to put messages ready for delivery
441 * @namedq: queue to put binding table update messages ready for delivery
442 * @link: return value, pointer to put the created link
c4307285 443 *
440d8963 444 * Returns true if link was created, otherwise false
b97bf3fd 445 */
c72fa872 446bool tipc_link_create(struct net *net, char *if_name, int bearer_id,
0e05498e 447 int tolerance, char net_plane, u32 mtu, int priority,
25b0b9c4
JM
448 int window, u32 session, u32 self,
449 u32 peer, u8 *peer_id, u16 peer_caps,
52666986
JPM
450 struct tipc_link *bc_sndlink,
451 struct tipc_link *bc_rcvlink,
452 struct sk_buff_head *inputq,
453 struct sk_buff_head *namedq,
440d8963 454 struct tipc_link **link)
b97bf3fd 455{
25b0b9c4
JM
456 char peer_str[NODE_ID_STR_LEN] = {0,};
457 char self_str[NODE_ID_STR_LEN] = {0,};
440d8963 458 struct tipc_link *l;
37b9c08a 459
440d8963
JPM
460 l = kzalloc(sizeof(*l), GFP_ATOMIC);
461 if (!l)
462 return false;
463 *link = l;
e74a386d 464 l->session = session;
37b9c08a 465
25b0b9c4
JM
466 /* Set link name for unicast links only */
467 if (peer_id) {
468 tipc_nodeid2string(self_str, tipc_own_id(net));
469 if (strlen(self_str) > 16)
470 sprintf(self_str, "%x", self);
471 tipc_nodeid2string(peer_str, peer_id);
472 if (strlen(peer_str) > 16)
473 sprintf(peer_str, "%x", peer);
474 }
475 /* Peer i/f name will be completed by reset/activate message */
7494cfa6
JM
476 snprintf(l->name, sizeof(l->name), "%s:%s-%s:unknown",
477 self_str, if_name, peer_str);
25b0b9c4 478
e74a386d 479 strcpy(l->if_name, if_name);
440d8963 480 l->addr = peer;
fd556f20 481 l->peer_caps = peer_caps;
c72fa872 482 l->net = net;
7ea817f4 483 l->in_session = false;
0e05498e
JPM
484 l->bearer_id = bearer_id;
485 l->tolerance = tolerance;
047491ea
JM
486 if (bc_rcvlink)
487 bc_rcvlink->tolerance = tolerance;
0e05498e
JPM
488 l->net_plane = net_plane;
489 l->advertised_mtu = mtu;
490 l->mtu = mtu;
491 l->priority = priority;
492 tipc_link_set_queue_limits(l, window);
c1ab3f1d 493 l->ackers = 1;
52666986
JPM
494 l->bc_sndlink = bc_sndlink;
495 l->bc_rcvlink = bc_rcvlink;
440d8963
JPM
496 l->inputq = inputq;
497 l->namedq = namedq;
498 l->state = LINK_RESETTING;
440d8963
JPM
499 __skb_queue_head_init(&l->transmq);
500 __skb_queue_head_init(&l->backlogq);
501 __skb_queue_head_init(&l->deferdq);
58ee86b8 502 __skb_queue_head_init(&l->failover_deferdq);
440d8963
JPM
503 skb_queue_head_init(&l->wakeupq);
504 skb_queue_head_init(l->inputq);
505 return true;
b97bf3fd
PL
506}
507
32301906
JPM
508/**
509 * tipc_link_bc_create - create new link to be used for broadcast
510 * @n: pointer to associated node
4c94cc2d 511 * @mtu: mtu to be used initially if no peers
32301906
JPM
512 * @window: send window to be used
513 * @inputq: queue to put messages ready for delivery
514 * @namedq: queue to put binding table update messages ready for delivery
515 * @link: return value, pointer to put the created link
516 *
517 * Returns true if link was created, otherwise false
518 */
c72fa872 519bool tipc_link_bc_create(struct net *net, u32 ownnode, u32 peer,
52666986 520 int mtu, int window, u16 peer_caps,
32301906
JPM
521 struct sk_buff_head *inputq,
522 struct sk_buff_head *namedq,
52666986 523 struct tipc_link *bc_sndlink,
32301906
JPM
524 struct tipc_link **link)
525{
526 struct tipc_link *l;
527
c72fa872 528 if (!tipc_link_create(net, "", MAX_BEARERS, 0, 'Z', mtu, 0, window,
25b0b9c4 529 0, ownnode, peer, NULL, peer_caps, bc_sndlink,
52666986 530 NULL, inputq, namedq, link))
32301906
JPM
531 return false;
532
533 l = *link;
534 strcpy(l->name, tipc_bclink_name);
26574db0 535 trace_tipc_link_reset(l, TIPC_DUMP_ALL, "bclink created!");
32301906 536 tipc_link_reset(l);
52666986 537 l->state = LINK_RESET;
2f566124 538 l->ackers = 0;
52666986 539 l->bc_rcvlink = l;
32301906 540
52666986
JPM
541 /* Broadcast send link is always up */
542 if (link_is_bc_sndlink(l))
543 l->state = LINK_ESTABLISHED;
d999297c 544
01fd12bb
JPM
545 /* Disable replicast if even a single peer doesn't support it */
546 if (link_is_bc_rcvlink(l) && !(peer_caps & TIPC_BCAST_RCAST))
547 tipc_bcast_disable_rcast(net);
548
52666986 549 return true;
d999297c
JPM
550}
551
6ab30f9c
JPM
552/**
553 * tipc_link_fsm_evt - link finite state machine
554 * @l: pointer to link
555 * @evt: state machine event to be processed
6ab30f9c 556 */
662921cd 557int tipc_link_fsm_evt(struct tipc_link *l, int evt)
6ab30f9c 558{
5045f7b9 559 int rc = 0;
26574db0 560 int old_state = l->state;
6ab30f9c
JPM
561
562 switch (l->state) {
662921cd 563 case LINK_RESETTING:
6ab30f9c 564 switch (evt) {
662921cd
JPM
565 case LINK_PEER_RESET_EVT:
566 l->state = LINK_PEER_RESET;
6ab30f9c 567 break;
662921cd
JPM
568 case LINK_RESET_EVT:
569 l->state = LINK_RESET;
570 break;
571 case LINK_FAILURE_EVT:
572 case LINK_FAILOVER_BEGIN_EVT:
573 case LINK_ESTABLISH_EVT:
574 case LINK_FAILOVER_END_EVT:
575 case LINK_SYNCH_BEGIN_EVT:
576 case LINK_SYNCH_END_EVT:
577 default:
578 goto illegal_evt;
579 }
580 break;
581 case LINK_RESET:
582 switch (evt) {
583 case LINK_PEER_RESET_EVT:
584 l->state = LINK_ESTABLISHING;
6ab30f9c 585 break;
662921cd
JPM
586 case LINK_FAILOVER_BEGIN_EVT:
587 l->state = LINK_FAILINGOVER;
588 case LINK_FAILURE_EVT:
589 case LINK_RESET_EVT:
590 case LINK_ESTABLISH_EVT:
591 case LINK_FAILOVER_END_EVT:
6ab30f9c 592 break;
662921cd
JPM
593 case LINK_SYNCH_BEGIN_EVT:
594 case LINK_SYNCH_END_EVT:
6ab30f9c 595 default:
662921cd 596 goto illegal_evt;
6ab30f9c
JPM
597 }
598 break;
662921cd 599 case LINK_PEER_RESET:
6ab30f9c 600 switch (evt) {
662921cd
JPM
601 case LINK_RESET_EVT:
602 l->state = LINK_ESTABLISHING;
6ab30f9c 603 break;
662921cd
JPM
604 case LINK_PEER_RESET_EVT:
605 case LINK_ESTABLISH_EVT:
606 case LINK_FAILURE_EVT:
6ab30f9c 607 break;
662921cd
JPM
608 case LINK_SYNCH_BEGIN_EVT:
609 case LINK_SYNCH_END_EVT:
610 case LINK_FAILOVER_BEGIN_EVT:
611 case LINK_FAILOVER_END_EVT:
612 default:
613 goto illegal_evt;
614 }
615 break;
616 case LINK_FAILINGOVER:
617 switch (evt) {
618 case LINK_FAILOVER_END_EVT:
619 l->state = LINK_RESET;
6ab30f9c 620 break;
662921cd
JPM
621 case LINK_PEER_RESET_EVT:
622 case LINK_RESET_EVT:
623 case LINK_ESTABLISH_EVT:
624 case LINK_FAILURE_EVT:
625 break;
626 case LINK_FAILOVER_BEGIN_EVT:
627 case LINK_SYNCH_BEGIN_EVT:
628 case LINK_SYNCH_END_EVT:
6ab30f9c 629 default:
662921cd 630 goto illegal_evt;
6ab30f9c
JPM
631 }
632 break;
662921cd 633 case LINK_ESTABLISHING:
6ab30f9c 634 switch (evt) {
662921cd
JPM
635 case LINK_ESTABLISH_EVT:
636 l->state = LINK_ESTABLISHED;
6ab30f9c 637 break;
662921cd
JPM
638 case LINK_FAILOVER_BEGIN_EVT:
639 l->state = LINK_FAILINGOVER;
640 break;
662921cd 641 case LINK_RESET_EVT:
73f646ce
JPM
642 l->state = LINK_RESET;
643 break;
662921cd 644 case LINK_FAILURE_EVT:
73f646ce 645 case LINK_PEER_RESET_EVT:
662921cd
JPM
646 case LINK_SYNCH_BEGIN_EVT:
647 case LINK_FAILOVER_END_EVT:
648 break;
649 case LINK_SYNCH_END_EVT:
650 default:
651 goto illegal_evt;
652 }
653 break;
654 case LINK_ESTABLISHED:
655 switch (evt) {
656 case LINK_PEER_RESET_EVT:
657 l->state = LINK_PEER_RESET;
658 rc |= TIPC_LINK_DOWN_EVT;
659 break;
660 case LINK_FAILURE_EVT:
661 l->state = LINK_RESETTING;
662 rc |= TIPC_LINK_DOWN_EVT;
6ab30f9c 663 break;
662921cd
JPM
664 case LINK_RESET_EVT:
665 l->state = LINK_RESET;
6ab30f9c 666 break;
662921cd 667 case LINK_ESTABLISH_EVT:
5ae2f8e6 668 case LINK_SYNCH_END_EVT:
6ab30f9c 669 break;
662921cd
JPM
670 case LINK_SYNCH_BEGIN_EVT:
671 l->state = LINK_SYNCHING;
672 break;
662921cd
JPM
673 case LINK_FAILOVER_BEGIN_EVT:
674 case LINK_FAILOVER_END_EVT:
6ab30f9c 675 default:
662921cd 676 goto illegal_evt;
6ab30f9c
JPM
677 }
678 break;
662921cd 679 case LINK_SYNCHING:
6ab30f9c 680 switch (evt) {
662921cd
JPM
681 case LINK_PEER_RESET_EVT:
682 l->state = LINK_PEER_RESET;
683 rc |= TIPC_LINK_DOWN_EVT;
684 break;
685 case LINK_FAILURE_EVT:
686 l->state = LINK_RESETTING;
687 rc |= TIPC_LINK_DOWN_EVT;
6ab30f9c 688 break;
662921cd
JPM
689 case LINK_RESET_EVT:
690 l->state = LINK_RESET;
6ab30f9c 691 break;
662921cd
JPM
692 case LINK_ESTABLISH_EVT:
693 case LINK_SYNCH_BEGIN_EVT:
6ab30f9c 694 break;
662921cd
JPM
695 case LINK_SYNCH_END_EVT:
696 l->state = LINK_ESTABLISHED;
697 break;
698 case LINK_FAILOVER_BEGIN_EVT:
699 case LINK_FAILOVER_END_EVT:
6ab30f9c 700 default:
662921cd 701 goto illegal_evt;
6ab30f9c
JPM
702 }
703 break;
704 default:
662921cd 705 pr_err("Unknown FSM state %x in %s\n", l->state, l->name);
6ab30f9c 706 }
26574db0 707 trace_tipc_link_fsm(l->name, old_state, l->state, evt);
662921cd
JPM
708 return rc;
709illegal_evt:
710 pr_err("Illegal FSM event %x in state %x on link %s\n",
711 evt, l->state, l->name);
26574db0 712 trace_tipc_link_fsm(l->name, old_state, l->state, evt);
6ab30f9c
JPM
713 return rc;
714}
715
333ef69e
JPM
716/* link_profile_stats - update statistical profiling of traffic
717 */
718static void link_profile_stats(struct tipc_link *l)
719{
720 struct sk_buff *skb;
721 struct tipc_msg *msg;
722 int length;
723
724 /* Update counters used in statistical profiling of send traffic */
725 l->stats.accu_queue_sz += skb_queue_len(&l->transmq);
726 l->stats.queue_sz_counts++;
727
728 skb = skb_peek(&l->transmq);
729 if (!skb)
730 return;
731 msg = buf_msg(skb);
732 length = msg_size(msg);
733
734 if (msg_user(msg) == MSG_FRAGMENTER) {
735 if (msg_type(msg) != FIRST_FRAGMENT)
736 return;
737 length = msg_size(msg_get_wrapped(msg));
738 }
739 l->stats.msg_lengths_total += length;
740 l->stats.msg_length_counts++;
741 if (length <= 64)
742 l->stats.msg_length_profile[0]++;
743 else if (length <= 256)
744 l->stats.msg_length_profile[1]++;
745 else if (length <= 1024)
746 l->stats.msg_length_profile[2]++;
747 else if (length <= 4096)
748 l->stats.msg_length_profile[3]++;
749 else if (length <= 16384)
750 l->stats.msg_length_profile[4]++;
751 else if (length <= 32768)
752 l->stats.msg_length_profile[5]++;
753 else
754 l->stats.msg_length_profile[6]++;
755}
756
26574db0
TL
757/**
758 * tipc_link_too_silent - check if link is "too silent"
759 * @l: tipc link to be checked
760 *
761 * Returns true if the link 'silent_intv_cnt' is about to reach the
762 * 'abort_limit' value, otherwise false
763 */
764bool tipc_link_too_silent(struct tipc_link *l)
765{
766 return (l->silent_intv_cnt + 2 > l->abort_limit);
767}
768
333ef69e
JPM
769/* tipc_link_timeout - perform periodic task as instructed from node timeout
770 */
771int tipc_link_timeout(struct tipc_link *l, struct sk_buff_head *xmitq)
772{
c91522f8
YX
773 int mtyp = 0;
774 int rc = 0;
42b18f60
JPM
775 bool state = false;
776 bool probe = false;
777 bool setup = false;
52666986
JPM
778 u16 bc_snt = l->bc_sndlink->snd_nxt - 1;
779 u16 bc_acked = l->bc_rcvlink->acked;
35c55c98 780 struct tipc_mon_state *mstate = &l->mon_state;
5045f7b9 781
26574db0
TL
782 trace_tipc_link_timeout(l, TIPC_DUMP_NONE, " ");
783 trace_tipc_link_too_silent(l, TIPC_DUMP_ALL, " ");
662921cd
JPM
784 switch (l->state) {
785 case LINK_ESTABLISHED:
786 case LINK_SYNCHING:
42b18f60 787 mtyp = STATE_MSG;
35c55c98
JPM
788 link_profile_stats(l);
789 tipc_mon_get_state(l->net, l->addr, mstate, l->bearer_id);
790 if (mstate->reset || (l->silent_intv_cnt > l->abort_limit))
791 return tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
42b18f60 792 state = bc_acked != bc_snt;
35c55c98
JPM
793 state |= l->bc_rcvlink->rcv_unacked;
794 state |= l->rcv_unacked;
795 state |= !skb_queue_empty(&l->transmq);
796 state |= !skb_queue_empty(&l->deferdq);
797 probe = mstate->probing;
798 probe |= l->silent_intv_cnt;
799 if (probe || mstate->monitoring)
800 l->silent_intv_cnt++;
662921cd
JPM
801 break;
802 case LINK_RESET:
42b18f60
JPM
803 setup = l->rst_cnt++ <= 4;
804 setup |= !(l->rst_cnt % 16);
5045f7b9 805 mtyp = RESET_MSG;
662921cd
JPM
806 break;
807 case LINK_ESTABLISHING:
42b18f60 808 setup = true;
5045f7b9 809 mtyp = ACTIVATE_MSG;
662921cd 810 break;
662921cd 811 case LINK_PEER_RESET:
598411d7 812 case LINK_RESETTING:
662921cd
JPM
813 case LINK_FAILINGOVER:
814 break;
815 default:
816 break;
5045f7b9 817 }
662921cd 818
42b18f60 819 if (state || probe || setup)
8d6e79d3 820 tipc_link_build_proto_msg(l, mtyp, probe, 0, 0, 0, 0, xmitq);
5045f7b9 821
333ef69e
JPM
822 return rc;
823}
824
b97bf3fd 825/**
3127a020 826 * link_schedule_user - schedule a message sender for wakeup after congestion
365ad353
JPM
827 * @l: congested link
828 * @hdr: header of message that is being sent
50100a5e 829 * Create pseudo msg to send back to user when congestion abates
b97bf3fd 830 */
365ad353 831static int link_schedule_user(struct tipc_link *l, struct tipc_msg *hdr)
b97bf3fd 832{
365ad353
JPM
833 u32 dnode = tipc_own_addr(l->net);
834 u32 dport = msg_origport(hdr);
3127a020
JPM
835 struct sk_buff *skb;
836
3127a020
JPM
837 /* Create and schedule wakeup pseudo message */
838 skb = tipc_msg_create(SOCK_WAKEUP, 0, INT_H_SIZE, 0,
365ad353 839 dnode, l->addr, dport, 0, 0);
3127a020 840 if (!skb)
22d85c79 841 return -ENOBUFS;
365ad353
JPM
842 msg_set_dest_droppable(buf_msg(skb), true);
843 TIPC_SKB_CB(skb)->chain_imp = msg_importance(hdr);
844 skb_queue_tail(&l->wakeupq, skb);
845 l->stats.link_congs++;
26574db0 846 trace_tipc_link_conges(l, TIPC_DUMP_ALL, "wakeup scheduled!");
3127a020 847 return -ELINKCONG;
b97bf3fd
PL
848}
849
50100a5e
JPM
850/**
851 * link_prepare_wakeup - prepare users for wakeup after congestion
365ad353
JPM
852 * @l: congested link
853 * Wake up a number of waiting users, as permitted by available space
854 * in the send queue
50100a5e 855 */
e064cce1 856static void link_prepare_wakeup(struct tipc_link *l)
b97bf3fd 857{
58d78b32 858 struct sk_buff *skb, *tmp;
365ad353 859 int imp, i = 0;
50100a5e 860
1f66d161
JPM
861 skb_queue_walk_safe(&l->wakeupq, skb, tmp) {
862 imp = TIPC_SKB_CB(skb)->chain_imp;
365ad353
JPM
863 if (l->backlog[imp].len < l->backlog[imp].limit) {
864 skb_unlink(skb, &l->wakeupq);
865 skb_queue_tail(l->inputq, skb);
866 } else if (i++ > 10) {
b97bf3fd 867 break;
365ad353 868 }
b97bf3fd 869 }
b97bf3fd
PL
870}
871
6e498158 872void tipc_link_reset(struct tipc_link *l)
b97bf3fd 873{
a1f8dd34
YX
874 struct sk_buff_head list;
875
876 __skb_queue_head_init(&list);
877
7ea817f4 878 l->in_session = false;
f7a93780
TL
879 /* Force re-synch of peer session number before establishing */
880 l->peer_session--;
e74a386d 881 l->session++;
6e498158 882 l->mtu = l->advertised_mtu;
a1f8dd34 883
3f32d0be 884 spin_lock_bh(&l->wakeupq.lock);
a1f8dd34
YX
885 skb_queue_splice_init(&l->wakeupq, &list);
886 spin_unlock_bh(&l->wakeupq.lock);
887
3f32d0be 888 spin_lock_bh(&l->inputq->lock);
a1f8dd34 889 skb_queue_splice_init(&list, l->inputq);
3f32d0be 890 spin_unlock_bh(&l->inputq->lock);
3f32d0be 891
6e498158
JPM
892 __skb_queue_purge(&l->transmq);
893 __skb_queue_purge(&l->deferdq);
2af5ae37 894 __skb_queue_purge(&l->backlogq);
58ee86b8 895 __skb_queue_purge(&l->failover_deferdq);
2af5ae37
JPM
896 l->backlog[TIPC_LOW_IMPORTANCE].len = 0;
897 l->backlog[TIPC_MEDIUM_IMPORTANCE].len = 0;
898 l->backlog[TIPC_HIGH_IMPORTANCE].len = 0;
899 l->backlog[TIPC_CRITICAL_IMPORTANCE].len = 0;
900 l->backlog[TIPC_SYSTEM_IMPORTANCE].len = 0;
6e498158
JPM
901 kfree_skb(l->reasm_buf);
902 kfree_skb(l->failover_reasm_skb);
903 l->reasm_buf = NULL;
904 l->failover_reasm_skb = NULL;
905 l->rcv_unacked = 0;
906 l->snd_nxt = 1;
907 l->rcv_nxt = 1;
9012de50
JM
908 l->snd_nxt_state = 1;
909 l->rcv_nxt_state = 1;
c1ab3f1d 910 l->acked = 0;
6e498158 911 l->silent_intv_cnt = 0;
88e8ac70 912 l->rst_cnt = 0;
a4dc70d4 913 l->stale_cnt = 0;
52666986 914 l->bc_peer_is_up = false;
35c55c98 915 memset(&l->mon_state, 0, sizeof(l->mon_state));
38206d59 916 tipc_link_reset_stats(l);
b97bf3fd
PL
917}
918
af9b028e
JPM
919/**
920 * tipc_link_xmit(): enqueue buffer list according to queue situation
921 * @link: link to use
922 * @list: chain of buffers containing message
923 * @xmitq: returned list of packets to be sent by caller
924 *
365ad353 925 * Consumes the buffer chain.
af9b028e
JPM
926 * Returns 0 if success, or errno: -ELINKCONG, -EMSGSIZE or -ENOBUFS
927 * Messages at TIPC_SYSTEM_IMPORTANCE are always accepted
928 */
929int tipc_link_xmit(struct tipc_link *l, struct sk_buff_head *list,
930 struct sk_buff_head *xmitq)
931{
932 struct tipc_msg *hdr = buf_msg(skb_peek(list));
933 unsigned int maxwin = l->window;
365ad353 934 int imp = msg_importance(hdr);
af9b028e
JPM
935 unsigned int mtu = l->mtu;
936 u16 ack = l->rcv_nxt - 1;
937 u16 seqno = l->snd_nxt;
52666986 938 u16 bc_ack = l->bc_rcvlink->rcv_nxt - 1;
af9b028e
JPM
939 struct sk_buff_head *transmq = &l->transmq;
940 struct sk_buff_head *backlogq = &l->backlogq;
941 struct sk_buff *skb, *_skb, *bskb;
95901122 942 int pkt_cnt = skb_queue_len(list);
365ad353 943 int rc = 0;
af9b028e 944
4952cd3e
RA
945 if (unlikely(msg_size(hdr) > mtu)) {
946 skb_queue_purge(list);
af9b028e 947 return -EMSGSIZE;
4952cd3e 948 }
af9b028e 949
365ad353
JPM
950 /* Allow oversubscription of one data msg per source at congestion */
951 if (unlikely(l->backlog[imp].len >= l->backlog[imp].limit)) {
952 if (imp == TIPC_SYSTEM_IMPORTANCE) {
953 pr_warn("%s<%s>, link overflow", link_rst_msg, l->name);
954 return -ENOBUFS;
955 }
956 rc = link_schedule_user(l, hdr);
957 }
958
95901122
JPM
959 if (pkt_cnt > 1) {
960 l->stats.sent_fragmented++;
961 l->stats.sent_fragments += pkt_cnt;
962 }
963
af9b028e
JPM
964 /* Prepare each packet for sending, and add to relevant queue: */
965 while (skb_queue_len(list)) {
966 skb = skb_peek(list);
967 hdr = buf_msg(skb);
968 msg_set_seqno(hdr, seqno);
969 msg_set_ack(hdr, ack);
52666986 970 msg_set_bcast_ack(hdr, bc_ack);
af9b028e
JPM
971
972 if (likely(skb_queue_len(transmq) < maxwin)) {
973 _skb = skb_clone(skb, GFP_ATOMIC);
4952cd3e
RA
974 if (!_skb) {
975 skb_queue_purge(list);
af9b028e 976 return -ENOBUFS;
4952cd3e 977 }
af9b028e
JPM
978 __skb_dequeue(list);
979 __skb_queue_tail(transmq, skb);
05572271
HL
980 /* next retransmit attempt */
981 if (link_is_bc_sndlink(l))
982 TIPC_SKB_CB(skb)->nxt_retr =
983 jiffies + TIPC_BC_RETR_LIM;
af9b028e 984 __skb_queue_tail(xmitq, _skb);
c1ab3f1d 985 TIPC_SKB_CB(skb)->ackers = l->ackers;
af9b028e 986 l->rcv_unacked = 0;
95901122 987 l->stats.sent_pkts++;
af9b028e
JPM
988 seqno++;
989 continue;
990 }
991 if (tipc_msg_bundle(skb_peek_tail(backlogq), hdr, mtu)) {
992 kfree_skb(__skb_dequeue(list));
993 l->stats.sent_bundled++;
994 continue;
995 }
996 if (tipc_msg_make_bundle(&bskb, hdr, mtu, l->addr)) {
997 kfree_skb(__skb_dequeue(list));
998 __skb_queue_tail(backlogq, bskb);
999 l->backlog[msg_importance(buf_msg(bskb))].len++;
1000 l->stats.sent_bundled++;
1001 l->stats.sent_bundles++;
1002 continue;
1003 }
1004 l->backlog[imp].len += skb_queue_len(list);
1005 skb_queue_splice_tail_init(list, backlogq);
1006 }
1007 l->snd_nxt = seqno;
365ad353 1008 return rc;
af9b028e
JPM
1009}
1010
e064cce1
Y
1011static void tipc_link_advance_backlog(struct tipc_link *l,
1012 struct sk_buff_head *xmitq)
d999297c
JPM
1013{
1014 struct sk_buff *skb, *_skb;
1015 struct tipc_msg *hdr;
1016 u16 seqno = l->snd_nxt;
1017 u16 ack = l->rcv_nxt - 1;
52666986 1018 u16 bc_ack = l->bc_rcvlink->rcv_nxt - 1;
d999297c
JPM
1019
1020 while (skb_queue_len(&l->transmq) < l->window) {
1021 skb = skb_peek(&l->backlogq);
1022 if (!skb)
1023 break;
1024 _skb = skb_clone(skb, GFP_ATOMIC);
1025 if (!_skb)
1026 break;
1027 __skb_dequeue(&l->backlogq);
1028 hdr = buf_msg(skb);
1029 l->backlog[msg_importance(hdr)].len--;
1030 __skb_queue_tail(&l->transmq, skb);
05572271
HL
1031 /* next retransmit attempt */
1032 if (link_is_bc_sndlink(l))
1033 TIPC_SKB_CB(skb)->nxt_retr = jiffies + TIPC_BC_RETR_LIM;
1034
d999297c 1035 __skb_queue_tail(xmitq, _skb);
c1ab3f1d 1036 TIPC_SKB_CB(skb)->ackers = l->ackers;
d999297c 1037 msg_set_seqno(hdr, seqno);
52666986
JPM
1038 msg_set_ack(hdr, ack);
1039 msg_set_bcast_ack(hdr, bc_ack);
d999297c 1040 l->rcv_unacked = 0;
95901122 1041 l->stats.sent_pkts++;
d999297c
JPM
1042 seqno++;
1043 }
1044 l->snd_nxt = seqno;
1045}
1046
52666986 1047static void link_retransmit_failure(struct tipc_link *l, struct sk_buff *skb)
d356eeba 1048{
52666986
JPM
1049 struct tipc_msg *hdr = buf_msg(skb);
1050
1051 pr_warn("Retransmission failure on link <%s>\n", l->name);
40501f90 1052 link_print(l, "State of link ");
52666986
JPM
1053 pr_info("Failed msg: usr %u, typ %u, len %u, err %u\n",
1054 msg_user(hdr), msg_type(hdr), msg_size(hdr), msg_errcode(hdr));
1055 pr_info("sqno %u, prev: %x, src: %x\n",
1056 msg_seqno(hdr), msg_prevnode(hdr), msg_orignode(hdr));
d356eeba
AS
1057}
1058
a4dc70d4
JM
1059/* tipc_link_retrans() - retransmit one or more packets
1060 * @l: the link to transmit on
1061 * @r: the receiving link ordering the retransmit. Same as l if unicast
1062 * @from: retransmit from (inclusive) this sequence number
1063 * @to: retransmit to (inclusive) this sequence number
1064 * xmitq: queue for accumulating the retransmitted packets
1065 */
e064cce1
Y
1066static int tipc_link_retrans(struct tipc_link *l, struct tipc_link *r,
1067 u16 from, u16 to, struct sk_buff_head *xmitq)
d999297c
JPM
1068{
1069 struct sk_buff *_skb, *skb = skb_peek(&l->transmq);
52666986 1070 u16 bc_ack = l->bc_rcvlink->rcv_nxt - 1;
a4dc70d4
JM
1071 u16 ack = l->rcv_nxt - 1;
1072 struct tipc_msg *hdr;
d999297c
JPM
1073
1074 if (!skb)
1075 return 0;
31c4f4cc
LDC
1076 if (less(to, from))
1077 return 0;
d999297c 1078
26574db0 1079 trace_tipc_link_retrans(r, from, to, &l->transmq);
d999297c 1080 /* Detect repeated retransmit failures on same packet */
31c4f4cc
LDC
1081 if (r->prev_from != from) {
1082 r->prev_from = from;
047491ea 1083 r->stale_limit = jiffies + msecs_to_jiffies(r->tolerance);
4af00f4c 1084 r->stale_cnt = 0;
a4dc70d4 1085 } else if (++r->stale_cnt > 99 && time_after(jiffies, r->stale_limit)) {
d999297c 1086 link_retransmit_failure(l, skb);
26574db0
TL
1087 trace_tipc_list_dump(&l->transmq, true, "retrans failure!");
1088 trace_tipc_link_dump(l, TIPC_DUMP_NONE, "retrans failure!");
1089 trace_tipc_link_dump(r, TIPC_DUMP_NONE, "retrans failure!");
40501f90
JPM
1090 if (link_is_bc_sndlink(l))
1091 return TIPC_LINK_DOWN_EVT;
662921cd 1092 return tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
d999297c 1093 }
c1ab3f1d 1094
d999297c 1095 skb_queue_walk(&l->transmq, skb) {
d999297c 1096 hdr = buf_msg(skb);
a4dc70d4
JM
1097 if (less(msg_seqno(hdr), from))
1098 continue;
1099 if (more(msg_seqno(hdr), to))
1100 break;
31c4f4cc
LDC
1101 if (link_is_bc_sndlink(l)) {
1102 if (time_before(jiffies, TIPC_SKB_CB(skb)->nxt_retr))
1103 continue;
1104 TIPC_SKB_CB(skb)->nxt_retr = jiffies + TIPC_BC_RETR_LIM;
1105 }
d999297c
JPM
1106 _skb = __pskb_copy(skb, MIN_H_SIZE, GFP_ATOMIC);
1107 if (!_skb)
1108 return 0;
1109 hdr = buf_msg(_skb);
c1ab3f1d
JPM
1110 msg_set_ack(hdr, ack);
1111 msg_set_bcast_ack(hdr, bc_ack);
d999297c
JPM
1112 _skb->priority = TC_PRIO_CONTROL;
1113 __skb_queue_tail(xmitq, _skb);
d999297c
JPM
1114 l->stats.retransmitted++;
1115 }
1116 return 0;
1117}
1118
c637c103 1119/* tipc_data_input - deliver data and name distr msgs to upper layer
7ae934be 1120 *
c637c103 1121 * Consumes buffer if message is of right type
7ae934be
EH
1122 * Node lock must be held
1123 */
52666986 1124static bool tipc_data_input(struct tipc_link *l, struct sk_buff *skb,
9073fb8b 1125 struct sk_buff_head *inputq)
7ae934be 1126{
399574d4 1127 struct sk_buff_head *mc_inputq = l->bc_rcvlink->inputq;
a853e4c6
JPM
1128 struct tipc_msg *hdr = buf_msg(skb);
1129
1130 switch (msg_user(hdr)) {
c637c103
JPM
1131 case TIPC_LOW_IMPORTANCE:
1132 case TIPC_MEDIUM_IMPORTANCE:
1133 case TIPC_HIGH_IMPORTANCE:
1134 case TIPC_CRITICAL_IMPORTANCE:
2f487712 1135 if (unlikely(msg_in_group(hdr) || msg_mcast(hdr))) {
399574d4 1136 skb_queue_tail(mc_inputq, skb);
a853e4c6
JPM
1137 return true;
1138 }
f79e3365 1139 /* fall through */
2f487712 1140 case CONN_MANAGER:
36c0a9df 1141 skb_queue_tail(inputq, skb);
c637c103 1142 return true;
399574d4
JM
1143 case GROUP_PROTOCOL:
1144 skb_queue_tail(mc_inputq, skb);
1145 return true;
7ae934be 1146 case NAME_DISTRIBUTOR:
52666986
JPM
1147 l->bc_rcvlink->state = LINK_ESTABLISHED;
1148 skb_queue_tail(l->namedq, skb);
c637c103
JPM
1149 return true;
1150 case MSG_BUNDLER:
dff29b1a 1151 case TUNNEL_PROTOCOL:
c637c103 1152 case MSG_FRAGMENTER:
7ae934be 1153 case BCAST_PROTOCOL:
c637c103 1154 return false;
7ae934be 1155 default:
c637c103
JPM
1156 pr_warn("Dropping received illegal msg type\n");
1157 kfree_skb(skb);
7384b538 1158 return true;
c637c103 1159 };
7ae934be 1160}
c637c103
JPM
1161
1162/* tipc_link_input - process packet that has passed link protocol check
1163 *
1164 * Consumes buffer
7ae934be 1165 */
9073fb8b 1166static int tipc_link_input(struct tipc_link *l, struct sk_buff *skb,
58ee86b8
TL
1167 struct sk_buff_head *inputq,
1168 struct sk_buff **reasm_skb)
7ae934be 1169{
6e498158 1170 struct tipc_msg *hdr = buf_msg(skb);
c637c103 1171 struct sk_buff *iskb;
9945e804 1172 struct sk_buff_head tmpq;
6e498158 1173 int usr = msg_user(hdr);
6e498158 1174 int pos = 0;
c637c103 1175
6e498158 1176 if (usr == MSG_BUNDLER) {
9945e804 1177 skb_queue_head_init(&tmpq);
6e498158
JPM
1178 l->stats.recv_bundles++;
1179 l->stats.recv_bundled += msg_msgcnt(hdr);
c637c103 1180 while (tipc_msg_extract(skb, &iskb, &pos))
9945e804
JPM
1181 tipc_data_input(l, iskb, &tmpq);
1182 tipc_skb_queue_splice_tail(&tmpq, inputq);
662921cd 1183 return 0;
6e498158
JPM
1184 } else if (usr == MSG_FRAGMENTER) {
1185 l->stats.recv_fragments++;
1186 if (tipc_buf_append(reasm_skb, &skb)) {
1187 l->stats.recv_fragmented++;
9073fb8b 1188 tipc_data_input(l, skb, inputq);
52666986
JPM
1189 } else if (!*reasm_skb && !link_is_bc_rcvlink(l)) {
1190 pr_warn_ratelimited("Unable to build fragment list\n");
662921cd 1191 return tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
c637c103 1192 }
662921cd 1193 return 0;
6e498158 1194 } else if (usr == BCAST_PROTOCOL) {
c72fa872 1195 tipc_bcast_lock(l->net);
52666986 1196 tipc_link_bc_init_rcv(l->bc_rcvlink, hdr);
c72fa872 1197 tipc_bcast_unlock(l->net);
6e498158 1198 }
58ee86b8 1199
6e498158 1200 kfree_skb(skb);
662921cd 1201 return 0;
7ae934be
EH
1202}
1203
58ee86b8
TL
1204/* tipc_link_tnl_rcv() - receive TUNNEL_PROTOCOL message, drop or process the
1205 * inner message along with the ones in the old link's
1206 * deferdq
1207 * @l: tunnel link
1208 * @skb: TUNNEL_PROTOCOL message
1209 * @inputq: queue to put messages ready for delivery
1210 */
1211static int tipc_link_tnl_rcv(struct tipc_link *l, struct sk_buff *skb,
1212 struct sk_buff_head *inputq)
1213{
1214 struct sk_buff **reasm_skb = &l->failover_reasm_skb;
1215 struct sk_buff_head *fdefq = &l->failover_deferdq;
1216 struct tipc_msg *hdr = buf_msg(skb);
1217 struct sk_buff *iskb;
1218 int ipos = 0;
1219 int rc = 0;
1220 u16 seqno;
1221
1222 /* SYNCH_MSG */
1223 if (msg_type(hdr) == SYNCH_MSG)
1224 goto drop;
1225
1226 /* FAILOVER_MSG */
1227 if (!tipc_msg_extract(skb, &iskb, &ipos)) {
1228 pr_warn_ratelimited("Cannot extract FAILOVER_MSG, defq: %d\n",
1229 skb_queue_len(fdefq));
1230 return rc;
1231 }
1232
1233 do {
1234 seqno = buf_seqno(iskb);
1235
1236 if (unlikely(less(seqno, l->drop_point))) {
1237 kfree_skb(iskb);
1238 continue;
1239 }
1240
1241 if (unlikely(seqno != l->drop_point)) {
1242 __tipc_skb_queue_sorted(fdefq, seqno, iskb);
1243 continue;
1244 }
1245
1246 l->drop_point++;
1247
1248 if (!tipc_data_input(l, iskb, inputq))
1249 rc |= tipc_link_input(l, iskb, inputq, reasm_skb);
1250 if (unlikely(rc))
1251 break;
1252 } while ((iskb = __tipc_skb_dequeue(fdefq, l->drop_point)));
1253
1254drop:
1255 kfree_skb(skb);
1256 return rc;
1257}
1258
d999297c
JPM
1259static bool tipc_link_release_pkts(struct tipc_link *l, u16 acked)
1260{
1261 bool released = false;
1262 struct sk_buff *skb, *tmp;
1263
1264 skb_queue_walk_safe(&l->transmq, skb, tmp) {
1265 if (more(buf_seqno(skb), acked))
1266 break;
1267 __skb_unlink(skb, &l->transmq);
1268 kfree_skb(skb);
1269 released = true;
1270 }
1271 return released;
1272}
1273
9195948f
TL
1274/* tipc_build_gap_ack_blks - build Gap ACK blocks
1275 * @l: tipc link that data have come with gaps in sequence if any
1276 * @data: data buffer to store the Gap ACK blocks after built
1277 *
1278 * returns the actual allocated memory size
1279 */
1280static u16 tipc_build_gap_ack_blks(struct tipc_link *l, void *data)
1281{
1282 struct sk_buff *skb = skb_peek(&l->deferdq);
1283 struct tipc_gap_ack_blks *ga = data;
1284 u16 len, expect, seqno = 0;
1285 u8 n = 0;
1286
1287 if (!skb)
1288 goto exit;
1289
1290 expect = buf_seqno(skb);
1291 skb_queue_walk(&l->deferdq, skb) {
1292 seqno = buf_seqno(skb);
1293 if (unlikely(more(seqno, expect))) {
1294 ga->gacks[n].ack = htons(expect - 1);
1295 ga->gacks[n].gap = htons(seqno - expect);
1296 if (++n >= MAX_GAP_ACK_BLKS) {
1297 pr_info_ratelimited("Too few Gap ACK blocks!\n");
1298 goto exit;
1299 }
1300 } else if (unlikely(less(seqno, expect))) {
1301 pr_warn("Unexpected skb in deferdq!\n");
1302 continue;
1303 }
1304 expect = seqno + 1;
1305 }
1306
1307 /* last block */
1308 ga->gacks[n].ack = htons(seqno);
1309 ga->gacks[n].gap = 0;
1310 n++;
1311
1312exit:
1313 len = tipc_gap_ack_blks_sz(n);
1314 ga->len = htons(len);
1315 ga->gack_cnt = n;
1316 return len;
1317}
1318
1319/* tipc_link_advance_transmq - advance TIPC link transmq queue by releasing
1320 * acked packets, also doing retransmissions if
1321 * gaps found
1322 * @l: tipc link with transmq queue to be advanced
1323 * @acked: seqno of last packet acked by peer without any gaps before
1324 * @gap: # of gap packets
1325 * @ga: buffer pointer to Gap ACK blocks from peer
1326 * @xmitq: queue for accumulating the retransmitted packets if any
1327 */
1328static void tipc_link_advance_transmq(struct tipc_link *l, u16 acked, u16 gap,
1329 struct tipc_gap_ack_blks *ga,
1330 struct sk_buff_head *xmitq)
1331{
1332 struct sk_buff *skb, *_skb, *tmp;
1333 struct tipc_msg *hdr;
1334 u16 bc_ack = l->bc_rcvlink->rcv_nxt - 1;
1335 u16 ack = l->rcv_nxt - 1;
1336 u16 seqno;
1337 u16 n = 0;
1338
1339 skb_queue_walk_safe(&l->transmq, skb, tmp) {
1340 seqno = buf_seqno(skb);
1341
1342next_gap_ack:
1343 if (less_eq(seqno, acked)) {
1344 /* release skb */
1345 __skb_unlink(skb, &l->transmq);
1346 kfree_skb(skb);
1347 } else if (less_eq(seqno, acked + gap)) {
1348 /* retransmit skb */
382f598f
TL
1349 if (time_before(jiffies, TIPC_SKB_CB(skb)->nxt_retr))
1350 continue;
1351 TIPC_SKB_CB(skb)->nxt_retr = TIPC_UC_RETR_TIME;
1352
9195948f
TL
1353 _skb = __pskb_copy(skb, MIN_H_SIZE, GFP_ATOMIC);
1354 if (!_skb)
1355 continue;
1356 hdr = buf_msg(_skb);
1357 msg_set_ack(hdr, ack);
1358 msg_set_bcast_ack(hdr, bc_ack);
1359 _skb->priority = TC_PRIO_CONTROL;
1360 __skb_queue_tail(xmitq, _skb);
1361 l->stats.retransmitted++;
1362 } else {
1363 /* retry with Gap ACK blocks if any */
1364 if (!ga || n >= ga->gack_cnt)
1365 break;
1366 acked = ntohs(ga->gacks[n].ack);
1367 gap = ntohs(ga->gacks[n].gap);
1368 n++;
1369 goto next_gap_ack;
1370 }
1371 }
1372}
1373
34b9cd64 1374/* tipc_link_build_state_msg: prepare link state message for transmission
52666986
JPM
1375 *
1376 * Note that sending of broadcast ack is coordinated among nodes, to reduce
1377 * risk of ack storms towards the sender
f9aa358a 1378 */
34b9cd64 1379int tipc_link_build_state_msg(struct tipc_link *l, struct sk_buff_head *xmitq)
f9aa358a 1380{
52666986
JPM
1381 if (!l)
1382 return 0;
1383
1384 /* Broadcast ACK must be sent via a unicast link => defer to caller */
1385 if (link_is_bc_rcvlink(l)) {
e74a386d 1386 if (((l->rcv_nxt ^ tipc_own_addr(l->net)) & 0xf) != 0xf)
52666986
JPM
1387 return 0;
1388 l->rcv_unacked = 0;
02d11ca2
JPM
1389
1390 /* Use snd_nxt to store peer's snd_nxt in broadcast rcv link */
1391 l->snd_nxt = l->rcv_nxt;
1392 return TIPC_LINK_SND_STATE;
52666986
JPM
1393 }
1394
1395 /* Unicast ACK */
f9aa358a
JPM
1396 l->rcv_unacked = 0;
1397 l->stats.sent_acks++;
8d6e79d3 1398 tipc_link_build_proto_msg(l, STATE_MSG, 0, 0, 0, 0, 0, xmitq);
52666986 1399 return 0;
f9aa358a
JPM
1400}
1401
282b3a05
JPM
1402/* tipc_link_build_reset_msg: prepare link RESET or ACTIVATE message
1403 */
1404void tipc_link_build_reset_msg(struct tipc_link *l, struct sk_buff_head *xmitq)
1405{
1406 int mtyp = RESET_MSG;
634696b1 1407 struct sk_buff *skb;
282b3a05
JPM
1408
1409 if (l->state == LINK_ESTABLISHING)
1410 mtyp = ACTIVATE_MSG;
1411
8d6e79d3 1412 tipc_link_build_proto_msg(l, mtyp, 0, 0, 0, 0, 0, xmitq);
634696b1
JPM
1413
1414 /* Inform peer that this endpoint is going down if applicable */
1415 skb = skb_peek_tail(xmitq);
1416 if (skb && (l->state == LINK_RESET))
1417 msg_set_peer_stopping(buf_msg(skb), 1);
282b3a05
JPM
1418}
1419
f9aa358a 1420/* tipc_link_build_nack_msg: prepare link nack message for transmission
e0a05ebe
JPM
1421 * Note that sending of broadcast NACK is coordinated among nodes, to
1422 * reduce the risk of NACK storms towards the sender
f9aa358a 1423 */
e0a05ebe
JPM
1424static int tipc_link_build_nack_msg(struct tipc_link *l,
1425 struct sk_buff_head *xmitq)
f9aa358a
JPM
1426{
1427 u32 def_cnt = ++l->stats.deferred_recv;
382f598f 1428 u32 defq_len = skb_queue_len(&l->deferdq);
e0a05ebe 1429 int match1, match2;
f9aa358a 1430
e0a05ebe
JPM
1431 if (link_is_bc_rcvlink(l)) {
1432 match1 = def_cnt & 0xf;
1433 match2 = tipc_own_addr(l->net) & 0xf;
1434 if (match1 == match2)
1435 return TIPC_LINK_SND_STATE;
1436 return 0;
1437 }
52666986 1438
382f598f 1439 if (defq_len >= 3 && !((defq_len - 3) % 16))
8d6e79d3 1440 tipc_link_build_proto_msg(l, STATE_MSG, 0, 0, 0, 0, 0, xmitq);
e0a05ebe 1441 return 0;
f9aa358a
JPM
1442}
1443
d999297c 1444/* tipc_link_rcv - process TIPC packets/messages arriving from off-node
f9aa358a 1445 * @l: the link that should handle the message
d999297c
JPM
1446 * @skb: TIPC packet
1447 * @xmitq: queue to place packets to be sent after this call
1448 */
1449int tipc_link_rcv(struct tipc_link *l, struct sk_buff *skb,
1450 struct sk_buff_head *xmitq)
1451{
f9aa358a 1452 struct sk_buff_head *defq = &l->deferdq;
382f598f 1453 struct tipc_msg *hdr = buf_msg(skb);
81204c49 1454 u16 seqno, rcv_nxt, win_lim;
d999297c
JPM
1455 int rc = 0;
1456
382f598f
TL
1457 /* Verify and update link state */
1458 if (unlikely(msg_user(hdr) == LINK_PROTOCOL))
1459 return tipc_link_proto_rcv(l, skb, xmitq);
1460
1461 /* Don't send probe at next timeout expiration */
1462 l->silent_intv_cnt = 0;
1463
f9aa358a 1464 do {
d999297c 1465 hdr = buf_msg(skb);
f9aa358a
JPM
1466 seqno = msg_seqno(hdr);
1467 rcv_nxt = l->rcv_nxt;
81204c49 1468 win_lim = rcv_nxt + TIPC_MAX_LINK_WIN;
d999297c 1469
662921cd 1470 if (unlikely(!link_is_up(l))) {
73f646ce
JPM
1471 if (l->state == LINK_ESTABLISHING)
1472 rc = TIPC_LINK_UP_EVT;
1473 goto drop;
d999297c
JPM
1474 }
1475
81204c49
JPM
1476 /* Drop if outside receive window */
1477 if (unlikely(less(seqno, rcv_nxt) || more(seqno, win_lim))) {
1478 l->stats.duplicates++;
1479 goto drop;
1480 }
1481
d999297c
JPM
1482 /* Forward queues and wake up waiting users */
1483 if (likely(tipc_link_release_pkts(l, msg_ack(hdr)))) {
a4dc70d4 1484 l->stale_cnt = 0;
d999297c
JPM
1485 tipc_link_advance_backlog(l, xmitq);
1486 if (unlikely(!skb_queue_empty(&l->wakeupq)))
1487 link_prepare_wakeup(l);
1488 }
1489
81204c49
JPM
1490 /* Defer delivery if sequence gap */
1491 if (unlikely(seqno != rcv_nxt)) {
8306f99a 1492 __tipc_skb_queue_sorted(defq, seqno, skb);
e0a05ebe 1493 rc |= tipc_link_build_nack_msg(l, xmitq);
f9aa358a 1494 break;
d999297c
JPM
1495 }
1496
81204c49 1497 /* Deliver packet */
d999297c 1498 l->rcv_nxt++;
95901122 1499 l->stats.recv_pkts++;
58ee86b8
TL
1500
1501 if (unlikely(msg_user(hdr) == TUNNEL_PROTOCOL))
1502 rc |= tipc_link_tnl_rcv(l, skb, l->inputq);
1503 else if (!tipc_data_input(l, skb, l->inputq))
1504 rc |= tipc_link_input(l, skb, l->inputq, &l->reasm_buf);
f9aa358a 1505 if (unlikely(++l->rcv_unacked >= TIPC_MIN_LINK_WIN))
34b9cd64 1506 rc |= tipc_link_build_state_msg(l, xmitq);
02d11ca2 1507 if (unlikely(rc & ~TIPC_LINK_SND_STATE))
52666986 1508 break;
382f598f 1509 } while ((skb = __tipc_skb_dequeue(defq, l->rcv_nxt)));
f9aa358a
JPM
1510
1511 return rc;
1512drop:
1513 kfree_skb(skb);
d999297c
JPM
1514 return rc;
1515}
1516
426cc2b8 1517static void tipc_link_build_proto_msg(struct tipc_link *l, int mtyp, bool probe,
8d6e79d3
JM
1518 bool probe_reply, u16 rcvgap,
1519 int tolerance, int priority,
426cc2b8
JPM
1520 struct sk_buff_head *xmitq)
1521{
02d11ca2 1522 struct tipc_link *bcl = l->bc_rcvlink;
e74a386d
JPM
1523 struct sk_buff *skb;
1524 struct tipc_msg *hdr;
1525 struct sk_buff_head *dfq = &l->deferdq;
02d11ca2 1526 bool node_up = link_is_up(bcl);
35c55c98
JPM
1527 struct tipc_mon_state *mstate = &l->mon_state;
1528 int dlen = 0;
1529 void *data;
9195948f 1530 u16 glen = 0;
426cc2b8
JPM
1531
1532 /* Don't send protocol message during reset or link failover */
662921cd 1533 if (tipc_link_is_blocked(l))
426cc2b8
JPM
1534 return;
1535
e74a386d
JPM
1536 if (!tipc_link_is_up(l) && (mtyp == STATE_MSG))
1537 return;
1538
1539 if (!skb_queue_empty(dfq))
1540 rcvgap = buf_seqno(skb_peek(dfq)) - l->rcv_nxt;
1541
1542 skb = tipc_msg_create(LINK_PROTOCOL, mtyp, INT_H_SIZE,
9195948f
TL
1543 tipc_max_domain_size + MAX_GAP_ACK_BLKS_SZ,
1544 l->addr, tipc_own_addr(l->net), 0, 0, 0);
e74a386d
JPM
1545 if (!skb)
1546 return;
1547
1548 hdr = buf_msg(skb);
35c55c98 1549 data = msg_data(hdr);
e74a386d
JPM
1550 msg_set_session(hdr, l->session);
1551 msg_set_bearer_id(hdr, l->bearer_id);
426cc2b8 1552 msg_set_net_plane(hdr, l->net_plane);
52666986
JPM
1553 msg_set_next_sent(hdr, l->snd_nxt);
1554 msg_set_ack(hdr, l->rcv_nxt - 1);
02d11ca2 1555 msg_set_bcast_ack(hdr, bcl->rcv_nxt - 1);
06bd2b1e 1556 msg_set_bc_ack_invalid(hdr, !node_up);
52666986 1557 msg_set_last_bcast(hdr, l->bc_sndlink->snd_nxt - 1);
426cc2b8
JPM
1558 msg_set_link_tolerance(hdr, tolerance);
1559 msg_set_linkprio(hdr, priority);
1560 msg_set_redundant_link(hdr, node_up);
1561 msg_set_seq_gap(hdr, 0);
52666986 1562 msg_set_seqno(hdr, l->snd_nxt + U16_MAX / 2);
426cc2b8
JPM
1563
1564 if (mtyp == STATE_MSG) {
9012de50
JM
1565 if (l->peer_caps & TIPC_LINK_PROTO_SEQNO)
1566 msg_set_seqno(hdr, l->snd_nxt_state++);
e74a386d 1567 msg_set_seq_gap(hdr, rcvgap);
02d11ca2 1568 msg_set_bc_gap(hdr, link_bc_rcv_gap(bcl));
426cc2b8 1569 msg_set_probe(hdr, probe);
8d6e79d3 1570 msg_set_is_keepalive(hdr, probe || probe_reply);
9195948f
TL
1571 if (l->peer_caps & TIPC_GAP_ACK_BLOCK)
1572 glen = tipc_build_gap_ack_blks(l, data);
1573 tipc_mon_prep(l->net, data + glen, &dlen, mstate, l->bearer_id);
1574 msg_set_size(hdr, INT_H_SIZE + glen + dlen);
1575 skb_trim(skb, INT_H_SIZE + glen + dlen);
426cc2b8 1576 l->stats.sent_states++;
52666986 1577 l->rcv_unacked = 0;
426cc2b8
JPM
1578 } else {
1579 /* RESET_MSG or ACTIVATE_MSG */
91986ee1
TL
1580 if (mtyp == ACTIVATE_MSG) {
1581 msg_set_dest_session_valid(hdr, 1);
1582 msg_set_dest_session(hdr, l->peer_session);
1583 }
426cc2b8 1584 msg_set_max_pkt(hdr, l->advertised_mtu);
35c55c98
JPM
1585 strcpy(data, l->if_name);
1586 msg_set_size(hdr, INT_H_SIZE + TIPC_MAX_IF_NAME);
1587 skb_trim(skb, INT_H_SIZE + TIPC_MAX_IF_NAME);
426cc2b8 1588 }
e74a386d
JPM
1589 if (probe)
1590 l->stats.sent_probes++;
1591 if (rcvgap)
1592 l->stats.sent_nacks++;
426cc2b8 1593 skb->priority = TC_PRIO_CONTROL;
6e498158 1594 __skb_queue_tail(xmitq, skb);
26574db0 1595 trace_tipc_proto_build(skb, false, l->name);
b97bf3fd
PL
1596}
1597
c140eb16
LDC
1598void tipc_link_create_dummy_tnl_msg(struct tipc_link *l,
1599 struct sk_buff_head *xmitq)
1600{
1601 u32 onode = tipc_own_addr(l->net);
1602 struct tipc_msg *hdr, *ihdr;
1603 struct sk_buff_head tnlq;
1604 struct sk_buff *skb;
1605 u32 dnode = l->addr;
1606
1607 skb_queue_head_init(&tnlq);
1608 skb = tipc_msg_create(TUNNEL_PROTOCOL, FAILOVER_MSG,
1609 INT_H_SIZE, BASIC_H_SIZE,
1610 dnode, onode, 0, 0, 0);
1611 if (!skb) {
1612 pr_warn("%sunable to create tunnel packet\n", link_co_err);
1613 return;
1614 }
1615
1616 hdr = buf_msg(skb);
1617 msg_set_msgcnt(hdr, 1);
1618 msg_set_bearer_id(hdr, l->peer_bearer_id);
1619
1620 ihdr = (struct tipc_msg *)msg_data(hdr);
1621 tipc_msg_init(onode, ihdr, TIPC_LOW_IMPORTANCE, TIPC_DIRECT_MSG,
1622 BASIC_H_SIZE, dnode);
1623 msg_set_errcode(ihdr, TIPC_ERR_NO_PORT);
1624 __skb_queue_tail(&tnlq, skb);
1625 tipc_link_xmit(l, &tnlq, xmitq);
1626}
1627
6e498158 1628/* tipc_link_tnl_prepare(): prepare and return a list of tunnel packets
f9aa358a 1629 * with contents of the link's transmit and backlog queues.
b97bf3fd 1630 */
6e498158
JPM
1631void tipc_link_tnl_prepare(struct tipc_link *l, struct tipc_link *tnl,
1632 int mtyp, struct sk_buff_head *xmitq)
b97bf3fd 1633{
58ee86b8 1634 struct sk_buff_head *fdefq = &tnl->failover_deferdq;
6e498158
JPM
1635 struct sk_buff *skb, *tnlskb;
1636 struct tipc_msg *hdr, tnlhdr;
1637 struct sk_buff_head *queue = &l->transmq;
1638 struct sk_buff_head tmpxq, tnlq;
1639 u16 pktlen, pktcnt, seqno = l->snd_nxt;
b97bf3fd 1640
6e498158 1641 if (!tnl)
b97bf3fd
PL
1642 return;
1643
6e498158
JPM
1644 skb_queue_head_init(&tnlq);
1645 skb_queue_head_init(&tmpxq);
dd3f9e70 1646
6e498158
JPM
1647 /* At least one packet required for safe algorithm => add dummy */
1648 skb = tipc_msg_create(TIPC_LOW_IMPORTANCE, TIPC_DIRECT_MSG,
e74a386d 1649 BASIC_H_SIZE, 0, l->addr, tipc_own_addr(l->net),
6e498158
JPM
1650 0, 0, TIPC_ERR_NO_PORT);
1651 if (!skb) {
1652 pr_warn("%sunable to create tunnel packet\n", link_co_err);
b97bf3fd
PL
1653 return;
1654 }
6e498158
JPM
1655 skb_queue_tail(&tnlq, skb);
1656 tipc_link_xmit(l, &tnlq, &tmpxq);
1657 __skb_queue_purge(&tmpxq);
1658
1659 /* Initialize reusable tunnel packet header */
e74a386d 1660 tipc_msg_init(tipc_own_addr(l->net), &tnlhdr, TUNNEL_PROTOCOL,
6e498158 1661 mtyp, INT_H_SIZE, l->addr);
58ee86b8
TL
1662 if (mtyp == SYNCH_MSG)
1663 pktcnt = l->snd_nxt - buf_seqno(skb_peek(&l->transmq));
1664 else
1665 pktcnt = skb_queue_len(&l->transmq);
1666 pktcnt += skb_queue_len(&l->backlogq);
6e498158
JPM
1667 msg_set_msgcnt(&tnlhdr, pktcnt);
1668 msg_set_bearer_id(&tnlhdr, l->peer_bearer_id);
1669tnl:
1670 /* Wrap each packet into a tunnel packet */
05dcc5aa 1671 skb_queue_walk(queue, skb) {
6e498158
JPM
1672 hdr = buf_msg(skb);
1673 if (queue == &l->backlogq)
1674 msg_set_seqno(hdr, seqno++);
1675 pktlen = msg_size(hdr);
1676 msg_set_size(&tnlhdr, pktlen + INT_H_SIZE);
57d5f64d 1677 tnlskb = tipc_buf_acquire(pktlen + INT_H_SIZE, GFP_ATOMIC);
6e498158
JPM
1678 if (!tnlskb) {
1679 pr_warn("%sunable to send packet\n", link_co_err);
b97bf3fd
PL
1680 return;
1681 }
6e498158
JPM
1682 skb_copy_to_linear_data(tnlskb, &tnlhdr, INT_H_SIZE);
1683 skb_copy_to_linear_data_offset(tnlskb, INT_H_SIZE, hdr, pktlen);
1684 __skb_queue_tail(&tnlq, tnlskb);
b97bf3fd 1685 }
6e498158
JPM
1686 if (queue != &l->backlogq) {
1687 queue = &l->backlogq;
1688 goto tnl;
f006c9c7 1689 }
1dab3d5a 1690
6e498158 1691 tipc_link_xmit(tnl, &tnlq, xmitq);
b97bf3fd 1692
6e498158
JPM
1693 if (mtyp == FAILOVER_MSG) {
1694 tnl->drop_point = l->rcv_nxt;
1695 tnl->failover_reasm_skb = l->reasm_buf;
1696 l->reasm_buf = NULL;
58ee86b8
TL
1697
1698 /* Failover the link's deferdq */
1699 if (unlikely(!skb_queue_empty(fdefq))) {
1700 pr_warn("Link failover deferdq not empty: %d!\n",
1701 skb_queue_len(fdefq));
1702 __skb_queue_purge(fdefq);
1703 }
1704 skb_queue_splice_init(&l->deferdq, fdefq);
2da71425 1705 }
b97bf3fd
PL
1706}
1707
7ea817f4
JM
1708/* tipc_link_validate_msg(): validate message against current link state
1709 * Returns true if message should be accepted, otherwise false
1710 */
1711bool tipc_link_validate_msg(struct tipc_link *l, struct tipc_msg *hdr)
1712{
1713 u16 curr_session = l->peer_session;
1714 u16 session = msg_session(hdr);
1715 int mtyp = msg_type(hdr);
1716
1717 if (msg_user(hdr) != LINK_PROTOCOL)
1718 return true;
1719
1720 switch (mtyp) {
1721 case RESET_MSG:
1722 if (!l->in_session)
1723 return true;
1724 /* Accept only RESET with new session number */
1725 return more(session, curr_session);
1726 case ACTIVATE_MSG:
1727 if (!l->in_session)
1728 return true;
1729 /* Accept only ACTIVATE with new or current session number */
1730 return !less(session, curr_session);
1731 case STATE_MSG:
1732 /* Accept only STATE with current session number */
1733 if (!l->in_session)
1734 return false;
1735 if (session != curr_session)
1736 return false;
d949cfed
LDC
1737 /* Extra sanity check */
1738 if (!link_is_up(l) && msg_ack(hdr))
1739 return false;
7ea817f4
JM
1740 if (!(l->peer_caps & TIPC_LINK_PROTO_SEQNO))
1741 return true;
1742 /* Accept only STATE with new sequence number */
1743 return !less(msg_seqno(hdr), l->rcv_nxt_state);
1744 default:
1745 return false;
1746 }
1747}
1748
d999297c
JPM
1749/* tipc_link_proto_rcv(): receive link level protocol message :
1750 * Note that network plane id propagates through the network, and may
1751 * change at any time. The node with lowest numerical id determines
1752 * network plane
1753 */
1754static int tipc_link_proto_rcv(struct tipc_link *l, struct sk_buff *skb,
1755 struct sk_buff_head *xmitq)
1756{
1757 struct tipc_msg *hdr = buf_msg(skb);
9195948f 1758 struct tipc_gap_ack_blks *ga = NULL;
d999297c 1759 u16 rcvgap = 0;
c1ab3f1d
JPM
1760 u16 ack = msg_ack(hdr);
1761 u16 gap = msg_seq_gap(hdr);
d999297c
JPM
1762 u16 peers_snd_nxt = msg_next_sent(hdr);
1763 u16 peers_tol = msg_link_tolerance(hdr);
1764 u16 peers_prio = msg_linkprio(hdr);
2be80c2d 1765 u16 rcv_nxt = l->rcv_nxt;
35c55c98 1766 u16 dlen = msg_data_sz(hdr);
73f646ce 1767 int mtyp = msg_type(hdr);
8d6e79d3 1768 bool reply = msg_probe(hdr);
9195948f 1769 u16 glen = 0;
35c55c98 1770 void *data;
d999297c
JPM
1771 char *if_name;
1772 int rc = 0;
1773
26574db0 1774 trace_tipc_proto_rcv(skb, false, l->name);
52666986 1775 if (tipc_link_is_blocked(l) || !xmitq)
d999297c
JPM
1776 goto exit;
1777
e74a386d 1778 if (tipc_own_addr(l->net) > msg_prevnode(hdr))
d999297c
JPM
1779 l->net_plane = msg_net_plane(hdr);
1780
35c55c98
JPM
1781 skb_linearize(skb);
1782 hdr = buf_msg(skb);
1783 data = msg_data(hdr);
1784
26574db0
TL
1785 if (!tipc_link_validate_msg(l, hdr)) {
1786 trace_tipc_skb_dump(skb, false, "PROTO invalid (1)!");
1787 trace_tipc_link_dump(l, TIPC_DUMP_NONE, "PROTO invalid (1)!");
7ea817f4 1788 goto exit;
26574db0 1789 }
7ea817f4 1790
73f646ce 1791 switch (mtyp) {
d999297c 1792 case RESET_MSG:
d999297c 1793 case ACTIVATE_MSG:
d999297c
JPM
1794 /* Complete own link name with peer's interface name */
1795 if_name = strrchr(l->name, ':') + 1;
1796 if (sizeof(l->name) - (if_name - l->name) <= TIPC_MAX_IF_NAME)
1797 break;
1798 if (msg_data_sz(hdr) < TIPC_MAX_IF_NAME)
1799 break;
35c55c98 1800 strncpy(if_name, data, TIPC_MAX_IF_NAME);
d999297c
JPM
1801
1802 /* Update own tolerance if peer indicates a non-zero value */
047491ea 1803 if (in_range(peers_tol, TIPC_MIN_LINK_TOL, TIPC_MAX_LINK_TOL)) {
d999297c 1804 l->tolerance = peers_tol;
047491ea
JM
1805 l->bc_rcvlink->tolerance = peers_tol;
1806 }
d999297c
JPM
1807 /* Update own priority if peer's priority is higher */
1808 if (in_range(peers_prio, l->priority + 1, TIPC_MAX_LINK_PRI))
1809 l->priority = peers_prio;
1810
7ab412d3
JM
1811 /* If peer is going down we want full re-establish cycle */
1812 if (msg_peer_stopping(hdr)) {
634696b1 1813 rc = tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
7ab412d3
JM
1814 break;
1815 }
91986ee1
TL
1816
1817 /* If this endpoint was re-created while peer was ESTABLISHING
1818 * it doesn't know current session number. Force re-synch.
1819 */
1820 if (mtyp == ACTIVATE_MSG && msg_dest_session_valid(hdr) &&
1821 l->session != msg_dest_session(hdr)) {
1822 if (less(l->session, msg_dest_session(hdr)))
1823 l->session = msg_dest_session(hdr) + 1;
1824 break;
1825 }
1826
7ab412d3
JM
1827 /* ACTIVATE_MSG serves as PEER_RESET if link is already down */
1828 if (mtyp == RESET_MSG || !link_is_up(l))
73f646ce
JPM
1829 rc = tipc_link_fsm_evt(l, LINK_PEER_RESET_EVT);
1830
1831 /* ACTIVATE_MSG takes up link if it was already locally reset */
7ab412d3 1832 if (mtyp == ACTIVATE_MSG && l->state == LINK_ESTABLISHING)
73f646ce
JPM
1833 rc = TIPC_LINK_UP_EVT;
1834
d999297c 1835 l->peer_session = msg_session(hdr);
7ea817f4 1836 l->in_session = true;
d999297c 1837 l->peer_bearer_id = msg_bearer_id(hdr);
d999297c
JPM
1838 if (l->mtu > msg_max_pkt(hdr))
1839 l->mtu = msg_max_pkt(hdr);
1840 break;
662921cd 1841
d999297c 1842 case STATE_MSG:
9012de50
JM
1843 l->rcv_nxt_state = msg_seqno(hdr) + 1;
1844
d999297c 1845 /* Update own tolerance if peer indicates a non-zero value */
047491ea 1846 if (in_range(peers_tol, TIPC_MIN_LINK_TOL, TIPC_MAX_LINK_TOL)) {
d999297c 1847 l->tolerance = peers_tol;
047491ea
JM
1848 l->bc_rcvlink->tolerance = peers_tol;
1849 }
f7967556
JPM
1850 /* Update own prio if peer indicates a different value */
1851 if ((peers_prio != l->priority) &&
1852 in_range(peers_prio, 1, TIPC_MAX_LINK_PRI)) {
81729810
RA
1853 l->priority = peers_prio;
1854 rc = tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
1855 }
1856
d999297c
JPM
1857 l->silent_intv_cnt = 0;
1858 l->stats.recv_states++;
1859 if (msg_probe(hdr))
1860 l->stats.recv_probes++;
73f646ce
JPM
1861
1862 if (!link_is_up(l)) {
1863 if (l->state == LINK_ESTABLISHING)
1864 rc = TIPC_LINK_UP_EVT;
d999297c 1865 break;
73f646ce 1866 }
9195948f
TL
1867
1868 /* Receive Gap ACK blocks from peer if any */
1869 if (l->peer_caps & TIPC_GAP_ACK_BLOCK) {
1870 ga = (struct tipc_gap_ack_blks *)data;
1871 glen = ntohs(ga->len);
1872 /* sanity check: if failed, ignore Gap ACK blocks */
1873 if (glen != tipc_gap_ack_blks_sz(ga->gack_cnt))
1874 ga = NULL;
1875 }
1876
1877 tipc_mon_rcv(l->net, data + glen, dlen - glen, l->addr,
35c55c98 1878 &l->mon_state, l->bearer_id);
d999297c 1879
662921cd 1880 /* Send NACK if peer has sent pkts we haven't received yet */
2be80c2d 1881 if (more(peers_snd_nxt, rcv_nxt) && !tipc_link_is_synching(l))
d999297c 1882 rcvgap = peers_snd_nxt - l->rcv_nxt;
8d6e79d3
JM
1883 if (rcvgap || reply)
1884 tipc_link_build_proto_msg(l, STATE_MSG, 0, reply,
1885 rcvgap, 0, 0, xmitq);
9195948f
TL
1886
1887 tipc_link_advance_transmq(l, ack, gap, ga, xmitq);
d999297c
JPM
1888
1889 /* If NACK, retransmit will now start at right position */
9195948f 1890 if (gap)
d999297c 1891 l->stats.recv_nacks++;
662921cd 1892
d999297c
JPM
1893 tipc_link_advance_backlog(l, xmitq);
1894 if (unlikely(!skb_queue_empty(&l->wakeupq)))
1895 link_prepare_wakeup(l);
1896 }
1897exit:
1898 kfree_skb(skb);
1899 return rc;
1900}
1901
52666986
JPM
1902/* tipc_link_build_bc_proto_msg() - create broadcast protocol message
1903 */
1904static bool tipc_link_build_bc_proto_msg(struct tipc_link *l, bool bcast,
1905 u16 peers_snd_nxt,
1906 struct sk_buff_head *xmitq)
1907{
1908 struct sk_buff *skb;
1909 struct tipc_msg *hdr;
1910 struct sk_buff *dfrd_skb = skb_peek(&l->deferdq);
1911 u16 ack = l->rcv_nxt - 1;
1912 u16 gap_to = peers_snd_nxt - 1;
1913
1914 skb = tipc_msg_create(BCAST_PROTOCOL, STATE_MSG, INT_H_SIZE,
e74a386d 1915 0, l->addr, tipc_own_addr(l->net), 0, 0, 0);
52666986
JPM
1916 if (!skb)
1917 return false;
1918 hdr = buf_msg(skb);
1919 msg_set_last_bcast(hdr, l->bc_sndlink->snd_nxt - 1);
1920 msg_set_bcast_ack(hdr, ack);
1921 msg_set_bcgap_after(hdr, ack);
1922 if (dfrd_skb)
1923 gap_to = buf_seqno(dfrd_skb) - 1;
1924 msg_set_bcgap_to(hdr, gap_to);
1925 msg_set_non_seq(hdr, bcast);
1926 __skb_queue_tail(xmitq, skb);
1927 return true;
1928}
1929
1930/* tipc_link_build_bc_init_msg() - synchronize broadcast link endpoints.
1931 *
1932 * Give a newly added peer node the sequence number where it should
1933 * start receiving and acking broadcast packets.
1934 */
742e0383
WF
1935static void tipc_link_build_bc_init_msg(struct tipc_link *l,
1936 struct sk_buff_head *xmitq)
52666986
JPM
1937{
1938 struct sk_buff_head list;
1939
1940 __skb_queue_head_init(&list);
1941 if (!tipc_link_build_bc_proto_msg(l->bc_rcvlink, false, 0, &list))
1942 return;
06bd2b1e 1943 msg_set_bc_ack_invalid(buf_msg(skb_peek(&list)), true);
52666986
JPM
1944 tipc_link_xmit(l, &list, xmitq);
1945}
1946
1947/* tipc_link_bc_init_rcv - receive initial broadcast synch data from peer
1948 */
1949void tipc_link_bc_init_rcv(struct tipc_link *l, struct tipc_msg *hdr)
1950{
1951 int mtyp = msg_type(hdr);
1952 u16 peers_snd_nxt = msg_bc_snd_nxt(hdr);
1953
1954 if (link_is_up(l))
1955 return;
1956
1957 if (msg_user(hdr) == BCAST_PROTOCOL) {
1958 l->rcv_nxt = peers_snd_nxt;
1959 l->state = LINK_ESTABLISHED;
1960 return;
1961 }
1962
1963 if (l->peer_caps & TIPC_BCAST_SYNCH)
1964 return;
1965
1966 if (msg_peer_node_is_up(hdr))
1967 return;
1968
1969 /* Compatibility: accept older, less safe initial synch data */
1970 if ((mtyp == RESET_MSG) || (mtyp == ACTIVATE_MSG))
1971 l->rcv_nxt = peers_snd_nxt;
1972}
1973
1974/* tipc_link_bc_sync_rcv - update rcv link according to peer's send state
1975 */
02d11ca2
JPM
1976int tipc_link_bc_sync_rcv(struct tipc_link *l, struct tipc_msg *hdr,
1977 struct sk_buff_head *xmitq)
52666986 1978{
7c4a54b9 1979 struct tipc_link *snd_l = l->bc_sndlink;
52666986 1980 u16 peers_snd_nxt = msg_bc_snd_nxt(hdr);
02d11ca2
JPM
1981 u16 from = msg_bcast_ack(hdr) + 1;
1982 u16 to = from + msg_bc_gap(hdr) - 1;
1983 int rc = 0;
52666986
JPM
1984
1985 if (!link_is_up(l))
02d11ca2 1986 return rc;
52666986
JPM
1987
1988 if (!msg_peer_node_is_up(hdr))
02d11ca2 1989 return rc;
52666986 1990
2d18ac4b
JPM
1991 /* Open when peer ackowledges our bcast init msg (pkt #1) */
1992 if (msg_ack(hdr))
1993 l->bc_peer_is_up = true;
1994
1995 if (!l->bc_peer_is_up)
02d11ca2 1996 return rc;
52666986 1997
7c4a54b9
JPM
1998 l->stats.recv_nacks++;
1999
52666986
JPM
2000 /* Ignore if peers_snd_nxt goes beyond receive window */
2001 if (more(peers_snd_nxt, l->rcv_nxt + l->window))
02d11ca2
JPM
2002 return rc;
2003
31c4f4cc 2004 rc = tipc_link_retrans(snd_l, l, from, to, xmitq);
02d11ca2
JPM
2005
2006 l->snd_nxt = peers_snd_nxt;
2007 if (link_bc_rcv_gap(l))
2008 rc |= TIPC_LINK_SND_STATE;
2009
2010 /* Return now if sender supports nack via STATE messages */
2011 if (l->peer_caps & TIPC_BCAST_STATE_NACK)
2012 return rc;
2013
2014 /* Otherwise, be backwards compatible */
52666986
JPM
2015
2016 if (!more(peers_snd_nxt, l->rcv_nxt)) {
2017 l->nack_state = BC_NACK_SND_CONDITIONAL;
02d11ca2 2018 return 0;
52666986
JPM
2019 }
2020
2021 /* Don't NACK if one was recently sent or peeked */
2022 if (l->nack_state == BC_NACK_SND_SUPPRESS) {
2023 l->nack_state = BC_NACK_SND_UNCONDITIONAL;
02d11ca2 2024 return 0;
52666986
JPM
2025 }
2026
2027 /* Conditionally delay NACK sending until next synch rcv */
2028 if (l->nack_state == BC_NACK_SND_CONDITIONAL) {
2029 l->nack_state = BC_NACK_SND_UNCONDITIONAL;
2030 if ((peers_snd_nxt - l->rcv_nxt) < TIPC_MIN_LINK_WIN)
02d11ca2 2031 return 0;
52666986
JPM
2032 }
2033
2034 /* Send NACK now but suppress next one */
2035 tipc_link_build_bc_proto_msg(l, true, peers_snd_nxt, xmitq);
2036 l->nack_state = BC_NACK_SND_SUPPRESS;
02d11ca2 2037 return 0;
52666986
JPM
2038}
2039
2040void tipc_link_bc_ack_rcv(struct tipc_link *l, u16 acked,
2041 struct sk_buff_head *xmitq)
2042{
2043 struct sk_buff *skb, *tmp;
2044 struct tipc_link *snd_l = l->bc_sndlink;
2045
2046 if (!link_is_up(l) || !l->bc_peer_is_up)
2047 return;
2048
2049 if (!more(acked, l->acked))
2050 return;
2051
26574db0 2052 trace_tipc_link_bc_ack(l, l->acked, acked, &snd_l->transmq);
52666986
JPM
2053 /* Skip over packets peer has already acked */
2054 skb_queue_walk(&snd_l->transmq, skb) {
2055 if (more(buf_seqno(skb), l->acked))
2056 break;
2057 }
2058
2059 /* Update/release the packets peer is acking now */
2060 skb_queue_walk_from_safe(&snd_l->transmq, skb, tmp) {
2061 if (more(buf_seqno(skb), acked))
2062 break;
2063 if (!--TIPC_SKB_CB(skb)->ackers) {
2064 __skb_unlink(skb, &snd_l->transmq);
2065 kfree_skb(skb);
2066 }
2067 }
2068 l->acked = acked;
2069 tipc_link_advance_backlog(snd_l, xmitq);
2070 if (unlikely(!skb_queue_empty(&snd_l->wakeupq)))
2071 link_prepare_wakeup(snd_l);
2072}
2073
2074/* tipc_link_bc_nack_rcv(): receive broadcast nack message
02d11ca2
JPM
2075 * This function is here for backwards compatibility, since
2076 * no BCAST_PROTOCOL/STATE messages occur from TIPC v2.5.
52666986
JPM
2077 */
2078int tipc_link_bc_nack_rcv(struct tipc_link *l, struct sk_buff *skb,
2079 struct sk_buff_head *xmitq)
2080{
2081 struct tipc_msg *hdr = buf_msg(skb);
2082 u32 dnode = msg_destnode(hdr);
2083 int mtyp = msg_type(hdr);
2084 u16 acked = msg_bcast_ack(hdr);
2085 u16 from = acked + 1;
2086 u16 to = msg_bcgap_to(hdr);
2087 u16 peers_snd_nxt = to + 1;
2088 int rc = 0;
2089
2090 kfree_skb(skb);
2091
2092 if (!tipc_link_is_up(l) || !l->bc_peer_is_up)
2093 return 0;
2094
2095 if (mtyp != STATE_MSG)
2096 return 0;
2097
e74a386d 2098 if (dnode == tipc_own_addr(l->net)) {
52666986 2099 tipc_link_bc_ack_rcv(l, acked, xmitq);
40501f90 2100 rc = tipc_link_retrans(l->bc_sndlink, l, from, to, xmitq);
52666986
JPM
2101 l->stats.recv_nacks++;
2102 return rc;
2103 }
2104
2105 /* Msg for other node => suppress own NACK at next sync if applicable */
2106 if (more(peers_snd_nxt, l->rcv_nxt) && !less(l->rcv_nxt, from))
2107 l->nack_state = BC_NACK_SND_SUPPRESS;
2108
2109 return 0;
2110}
2111
e3eea1eb 2112void tipc_link_set_queue_limits(struct tipc_link *l, u32 win)
b97bf3fd 2113{
218527fe 2114 int max_bulk = TIPC_MAX_PUBL / (l->mtu / ITEM_SIZE);
e3eea1eb
JPM
2115
2116 l->window = win;
5a0950c2
JPM
2117 l->backlog[TIPC_LOW_IMPORTANCE].limit = max_t(u16, 50, win);
2118 l->backlog[TIPC_MEDIUM_IMPORTANCE].limit = max_t(u16, 100, win * 2);
2119 l->backlog[TIPC_HIGH_IMPORTANCE].limit = max_t(u16, 150, win * 3);
2120 l->backlog[TIPC_CRITICAL_IMPORTANCE].limit = max_t(u16, 200, win * 4);
1f66d161 2121 l->backlog[TIPC_SYSTEM_IMPORTANCE].limit = max_bulk;
b97bf3fd
PL
2122}
2123
b97bf3fd 2124/**
38206d59 2125 * link_reset_stats - reset link statistics
1a90632d 2126 * @l: pointer to link
b97bf3fd 2127 */
38206d59 2128void tipc_link_reset_stats(struct tipc_link *l)
b97bf3fd 2129{
38206d59 2130 memset(&l->stats, 0, sizeof(l->stats));
b97bf3fd
PL
2131}
2132
1a20cc25 2133static void link_print(struct tipc_link *l, const char *str)
b97bf3fd 2134{
1a20cc25 2135 struct sk_buff *hskb = skb_peek(&l->transmq);
c1ab3f1d 2136 u16 head = hskb ? msg_seqno(buf_msg(hskb)) : l->snd_nxt - 1;
1a20cc25 2137 u16 tail = l->snd_nxt - 1;
7a2f7d18 2138
662921cd 2139 pr_info("%s Link <%s> state %x\n", str, l->name, l->state);
1a20cc25
JPM
2140 pr_info("XMTQ: %u [%u-%u], BKLGQ: %u, SNDNX: %u, RCVNX: %u\n",
2141 skb_queue_len(&l->transmq), head, tail,
2142 skb_queue_len(&l->backlogq), l->snd_nxt, l->rcv_nxt);
b97bf3fd 2143}
0655f6a8
RA
2144
2145/* Parse and validate nested (link) properties valid for media, bearer and link
2146 */
2147int tipc_nl_parse_link_prop(struct nlattr *prop, struct nlattr *props[])
2148{
2149 int err;
2150
2151 err = nla_parse_nested(props, TIPC_NLA_PROP_MAX, prop,
fceb6435 2152 tipc_nl_prop_policy, NULL);
0655f6a8
RA
2153 if (err)
2154 return err;
2155
2156 if (props[TIPC_NLA_PROP_PRIO]) {
2157 u32 prio;
2158
2159 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
2160 if (prio > TIPC_MAX_LINK_PRI)
2161 return -EINVAL;
2162 }
2163
2164 if (props[TIPC_NLA_PROP_TOL]) {
2165 u32 tol;
2166
2167 tol = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
2168 if ((tol < TIPC_MIN_LINK_TOL) || (tol > TIPC_MAX_LINK_TOL))
2169 return -EINVAL;
2170 }
2171
2172 if (props[TIPC_NLA_PROP_WIN]) {
2173 u32 win;
2174
2175 win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
2176 if ((win < TIPC_MIN_LINK_WIN) || (win > TIPC_MAX_LINK_WIN))
2177 return -EINVAL;
2178 }
2179
2180 return 0;
2181}
7be57fc6 2182
d8182804 2183static int __tipc_nl_add_stats(struct sk_buff *skb, struct tipc_stats *s)
7be57fc6
RA
2184{
2185 int i;
2186 struct nlattr *stats;
2187
2188 struct nla_map {
2189 u32 key;
2190 u32 val;
2191 };
2192
2193 struct nla_map map[] = {
95901122 2194 {TIPC_NLA_STATS_RX_INFO, 0},
7be57fc6
RA
2195 {TIPC_NLA_STATS_RX_FRAGMENTS, s->recv_fragments},
2196 {TIPC_NLA_STATS_RX_FRAGMENTED, s->recv_fragmented},
2197 {TIPC_NLA_STATS_RX_BUNDLES, s->recv_bundles},
2198 {TIPC_NLA_STATS_RX_BUNDLED, s->recv_bundled},
95901122 2199 {TIPC_NLA_STATS_TX_INFO, 0},
7be57fc6
RA
2200 {TIPC_NLA_STATS_TX_FRAGMENTS, s->sent_fragments},
2201 {TIPC_NLA_STATS_TX_FRAGMENTED, s->sent_fragmented},
2202 {TIPC_NLA_STATS_TX_BUNDLES, s->sent_bundles},
2203 {TIPC_NLA_STATS_TX_BUNDLED, s->sent_bundled},
2204 {TIPC_NLA_STATS_MSG_PROF_TOT, (s->msg_length_counts) ?
2205 s->msg_length_counts : 1},
2206 {TIPC_NLA_STATS_MSG_LEN_CNT, s->msg_length_counts},
2207 {TIPC_NLA_STATS_MSG_LEN_TOT, s->msg_lengths_total},
2208 {TIPC_NLA_STATS_MSG_LEN_P0, s->msg_length_profile[0]},
2209 {TIPC_NLA_STATS_MSG_LEN_P1, s->msg_length_profile[1]},
2210 {TIPC_NLA_STATS_MSG_LEN_P2, s->msg_length_profile[2]},
2211 {TIPC_NLA_STATS_MSG_LEN_P3, s->msg_length_profile[3]},
2212 {TIPC_NLA_STATS_MSG_LEN_P4, s->msg_length_profile[4]},
2213 {TIPC_NLA_STATS_MSG_LEN_P5, s->msg_length_profile[5]},
2214 {TIPC_NLA_STATS_MSG_LEN_P6, s->msg_length_profile[6]},
2215 {TIPC_NLA_STATS_RX_STATES, s->recv_states},
2216 {TIPC_NLA_STATS_RX_PROBES, s->recv_probes},
2217 {TIPC_NLA_STATS_RX_NACKS, s->recv_nacks},
2218 {TIPC_NLA_STATS_RX_DEFERRED, s->deferred_recv},
2219 {TIPC_NLA_STATS_TX_STATES, s->sent_states},
2220 {TIPC_NLA_STATS_TX_PROBES, s->sent_probes},
2221 {TIPC_NLA_STATS_TX_NACKS, s->sent_nacks},
2222 {TIPC_NLA_STATS_TX_ACKS, s->sent_acks},
2223 {TIPC_NLA_STATS_RETRANSMITTED, s->retransmitted},
2224 {TIPC_NLA_STATS_DUPLICATES, s->duplicates},
2225 {TIPC_NLA_STATS_LINK_CONGS, s->link_congs},
2226 {TIPC_NLA_STATS_MAX_QUEUE, s->max_queue_sz},
2227 {TIPC_NLA_STATS_AVG_QUEUE, s->queue_sz_counts ?
2228 (s->accu_queue_sz / s->queue_sz_counts) : 0}
2229 };
2230
2231 stats = nla_nest_start(skb, TIPC_NLA_LINK_STATS);
2232 if (!stats)
2233 return -EMSGSIZE;
2234
2235 for (i = 0; i < ARRAY_SIZE(map); i++)
2236 if (nla_put_u32(skb, map[i].key, map[i].val))
2237 goto msg_full;
2238
2239 nla_nest_end(skb, stats);
2240
2241 return 0;
2242msg_full:
2243 nla_nest_cancel(skb, stats);
2244
2245 return -EMSGSIZE;
2246}
2247
2248/* Caller should hold appropriate locks to protect the link */
5be9c086
JPM
2249int __tipc_nl_add_link(struct net *net, struct tipc_nl_msg *msg,
2250 struct tipc_link *link, int nlflags)
7be57fc6 2251{
23fd3eac 2252 u32 self = tipc_own_addr(net);
7be57fc6
RA
2253 struct nlattr *attrs;
2254 struct nlattr *prop;
23fd3eac
JM
2255 void *hdr;
2256 int err;
7be57fc6 2257
bfb3e5dd 2258 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
f2f67390 2259 nlflags, TIPC_NL_LINK_GET);
7be57fc6
RA
2260 if (!hdr)
2261 return -EMSGSIZE;
2262
2263 attrs = nla_nest_start(msg->skb, TIPC_NLA_LINK);
2264 if (!attrs)
2265 goto msg_full;
2266
2267 if (nla_put_string(msg->skb, TIPC_NLA_LINK_NAME, link->name))
2268 goto attr_msg_full;
23fd3eac 2269 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_DEST, tipc_cluster_mask(self)))
7be57fc6 2270 goto attr_msg_full;
ed193ece 2271 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_MTU, link->mtu))
7be57fc6 2272 goto attr_msg_full;
95901122 2273 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_RX, link->stats.recv_pkts))
7be57fc6 2274 goto attr_msg_full;
95901122 2275 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_TX, link->stats.sent_pkts))
7be57fc6
RA
2276 goto attr_msg_full;
2277
2278 if (tipc_link_is_up(link))
2279 if (nla_put_flag(msg->skb, TIPC_NLA_LINK_UP))
2280 goto attr_msg_full;
c72fa872 2281 if (link->active)
7be57fc6
RA
2282 if (nla_put_flag(msg->skb, TIPC_NLA_LINK_ACTIVE))
2283 goto attr_msg_full;
2284
2285 prop = nla_nest_start(msg->skb, TIPC_NLA_LINK_PROP);
2286 if (!prop)
2287 goto attr_msg_full;
2288 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, link->priority))
2289 goto prop_msg_full;
2290 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, link->tolerance))
2291 goto prop_msg_full;
2292 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN,
1f66d161 2293 link->window))
7be57fc6
RA
2294 goto prop_msg_full;
2295 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, link->priority))
2296 goto prop_msg_full;
2297 nla_nest_end(msg->skb, prop);
2298
2299 err = __tipc_nl_add_stats(msg->skb, &link->stats);
2300 if (err)
2301 goto attr_msg_full;
2302
2303 nla_nest_end(msg->skb, attrs);
2304 genlmsg_end(msg->skb, hdr);
2305
2306 return 0;
2307
2308prop_msg_full:
2309 nla_nest_cancel(msg->skb, prop);
2310attr_msg_full:
2311 nla_nest_cancel(msg->skb, attrs);
2312msg_full:
2313 genlmsg_cancel(msg->skb, hdr);
2314
2315 return -EMSGSIZE;
2316}
38206d59
JPM
2317
2318static int __tipc_nl_add_bc_link_stat(struct sk_buff *skb,
2319 struct tipc_stats *stats)
2320{
2321 int i;
2322 struct nlattr *nest;
2323
2324 struct nla_map {
2325 __u32 key;
2326 __u32 val;
2327 };
2328
2329 struct nla_map map[] = {
95901122 2330 {TIPC_NLA_STATS_RX_INFO, stats->recv_pkts},
38206d59
JPM
2331 {TIPC_NLA_STATS_RX_FRAGMENTS, stats->recv_fragments},
2332 {TIPC_NLA_STATS_RX_FRAGMENTED, stats->recv_fragmented},
2333 {TIPC_NLA_STATS_RX_BUNDLES, stats->recv_bundles},
2334 {TIPC_NLA_STATS_RX_BUNDLED, stats->recv_bundled},
95901122 2335 {TIPC_NLA_STATS_TX_INFO, stats->sent_pkts},
38206d59
JPM
2336 {TIPC_NLA_STATS_TX_FRAGMENTS, stats->sent_fragments},
2337 {TIPC_NLA_STATS_TX_FRAGMENTED, stats->sent_fragmented},
2338 {TIPC_NLA_STATS_TX_BUNDLES, stats->sent_bundles},
2339 {TIPC_NLA_STATS_TX_BUNDLED, stats->sent_bundled},
2340 {TIPC_NLA_STATS_RX_NACKS, stats->recv_nacks},
2341 {TIPC_NLA_STATS_RX_DEFERRED, stats->deferred_recv},
2342 {TIPC_NLA_STATS_TX_NACKS, stats->sent_nacks},
2343 {TIPC_NLA_STATS_TX_ACKS, stats->sent_acks},
2344 {TIPC_NLA_STATS_RETRANSMITTED, stats->retransmitted},
2345 {TIPC_NLA_STATS_DUPLICATES, stats->duplicates},
2346 {TIPC_NLA_STATS_LINK_CONGS, stats->link_congs},
2347 {TIPC_NLA_STATS_MAX_QUEUE, stats->max_queue_sz},
2348 {TIPC_NLA_STATS_AVG_QUEUE, stats->queue_sz_counts ?
2349 (stats->accu_queue_sz / stats->queue_sz_counts) : 0}
2350 };
2351
2352 nest = nla_nest_start(skb, TIPC_NLA_LINK_STATS);
2353 if (!nest)
2354 return -EMSGSIZE;
2355
2356 for (i = 0; i < ARRAY_SIZE(map); i++)
2357 if (nla_put_u32(skb, map[i].key, map[i].val))
2358 goto msg_full;
2359
2360 nla_nest_end(skb, nest);
2361
2362 return 0;
2363msg_full:
2364 nla_nest_cancel(skb, nest);
2365
2366 return -EMSGSIZE;
2367}
2368
2369int tipc_nl_add_bc_link(struct net *net, struct tipc_nl_msg *msg)
2370{
2371 int err;
2372 void *hdr;
2373 struct nlattr *attrs;
2374 struct nlattr *prop;
2375 struct tipc_net *tn = net_generic(net, tipc_net_id);
02ec6caf
HL
2376 u32 bc_mode = tipc_bcast_get_broadcast_mode(net);
2377 u32 bc_ratio = tipc_bcast_get_broadcast_ratio(net);
38206d59
JPM
2378 struct tipc_link *bcl = tn->bcl;
2379
2380 if (!bcl)
2381 return 0;
2382
2383 tipc_bcast_lock(net);
2384
2385 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
2386 NLM_F_MULTI, TIPC_NL_LINK_GET);
b53ce3e7
IY
2387 if (!hdr) {
2388 tipc_bcast_unlock(net);
38206d59 2389 return -EMSGSIZE;
b53ce3e7 2390 }
38206d59
JPM
2391
2392 attrs = nla_nest_start(msg->skb, TIPC_NLA_LINK);
2393 if (!attrs)
2394 goto msg_full;
2395
2396 /* The broadcast link is always up */
2397 if (nla_put_flag(msg->skb, TIPC_NLA_LINK_UP))
2398 goto attr_msg_full;
2399
2400 if (nla_put_flag(msg->skb, TIPC_NLA_LINK_BROADCAST))
2401 goto attr_msg_full;
2402 if (nla_put_string(msg->skb, TIPC_NLA_LINK_NAME, bcl->name))
2403 goto attr_msg_full;
95901122 2404 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_RX, 0))
38206d59 2405 goto attr_msg_full;
95901122 2406 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_TX, 0))
38206d59
JPM
2407 goto attr_msg_full;
2408
2409 prop = nla_nest_start(msg->skb, TIPC_NLA_LINK_PROP);
2410 if (!prop)
2411 goto attr_msg_full;
2412 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, bcl->window))
2413 goto prop_msg_full;
02ec6caf
HL
2414 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_BROADCAST, bc_mode))
2415 goto prop_msg_full;
2416 if (bc_mode & BCLINK_MODE_SEL)
2417 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_BROADCAST_RATIO,
2418 bc_ratio))
2419 goto prop_msg_full;
38206d59
JPM
2420 nla_nest_end(msg->skb, prop);
2421
2422 err = __tipc_nl_add_bc_link_stat(msg->skb, &bcl->stats);
2423 if (err)
2424 goto attr_msg_full;
2425
2426 tipc_bcast_unlock(net);
2427 nla_nest_end(msg->skb, attrs);
2428 genlmsg_end(msg->skb, hdr);
2429
2430 return 0;
2431
2432prop_msg_full:
2433 nla_nest_cancel(msg->skb, prop);
2434attr_msg_full:
2435 nla_nest_cancel(msg->skb, attrs);
2436msg_full:
2437 tipc_bcast_unlock(net);
2438 genlmsg_cancel(msg->skb, hdr);
2439
2440 return -EMSGSIZE;
2441}
2442
d01332f1
RA
2443void tipc_link_set_tolerance(struct tipc_link *l, u32 tol,
2444 struct sk_buff_head *xmitq)
38206d59
JPM
2445{
2446 l->tolerance = tol;
047491ea
JM
2447 if (l->bc_rcvlink)
2448 l->bc_rcvlink->tolerance = tol;
37c64cf6
JM
2449 if (link_is_up(l))
2450 tipc_link_build_proto_msg(l, STATE_MSG, 0, 0, 0, tol, 0, xmitq);
38206d59
JPM
2451}
2452
d01332f1
RA
2453void tipc_link_set_prio(struct tipc_link *l, u32 prio,
2454 struct sk_buff_head *xmitq)
38206d59
JPM
2455{
2456 l->priority = prio;
8d6e79d3 2457 tipc_link_build_proto_msg(l, STATE_MSG, 0, 0, 0, 0, prio, xmitq);
38206d59
JPM
2458}
2459
2460void tipc_link_set_abort_limit(struct tipc_link *l, u32 limit)
2461{
2462 l->abort_limit = limit;
2463}
b4b9771b
TL
2464
2465char *tipc_link_name_ext(struct tipc_link *l, char *buf)
2466{
2467 if (!l)
2468 scnprintf(buf, TIPC_MAX_LINK_NAME, "null");
2469 else if (link_is_bc_sndlink(l))
2470 scnprintf(buf, TIPC_MAX_LINK_NAME, "broadcast-sender");
2471 else if (link_is_bc_rcvlink(l))
2472 scnprintf(buf, TIPC_MAX_LINK_NAME,
2473 "broadcast-receiver, peer %x", l->addr);
2474 else
2475 memcpy(buf, l->name, TIPC_MAX_LINK_NAME);
2476
2477 return buf;
2478}
2479
2480/**
2481 * tipc_link_dump - dump TIPC link data
2482 * @l: tipc link to be dumped
2483 * @dqueues: bitmask to decide if any link queue to be dumped?
2484 * - TIPC_DUMP_NONE: don't dump link queues
2485 * - TIPC_DUMP_TRANSMQ: dump link transmq queue
2486 * - TIPC_DUMP_BACKLOGQ: dump link backlog queue
2487 * - TIPC_DUMP_DEFERDQ: dump link deferd queue
2488 * - TIPC_DUMP_INPUTQ: dump link input queue
2489 * - TIPC_DUMP_WAKEUP: dump link wakeup queue
2490 * - TIPC_DUMP_ALL: dump all the link queues above
2491 * @buf: returned buffer of dump data in format
2492 */
2493int tipc_link_dump(struct tipc_link *l, u16 dqueues, char *buf)
2494{
2495 int i = 0;
2496 size_t sz = (dqueues) ? LINK_LMAX : LINK_LMIN;
2497 struct sk_buff_head *list;
2498 struct sk_buff *hskb, *tskb;
2499 u32 len;
2500
2501 if (!l) {
2502 i += scnprintf(buf, sz, "link data: (null)\n");
2503 return i;
2504 }
2505
2506 i += scnprintf(buf, sz, "link data: %x", l->addr);
2507 i += scnprintf(buf + i, sz - i, " %x", l->state);
2508 i += scnprintf(buf + i, sz - i, " %u", l->in_session);
2509 i += scnprintf(buf + i, sz - i, " %u", l->session);
2510 i += scnprintf(buf + i, sz - i, " %u", l->peer_session);
2511 i += scnprintf(buf + i, sz - i, " %u", l->snd_nxt);
2512 i += scnprintf(buf + i, sz - i, " %u", l->rcv_nxt);
2513 i += scnprintf(buf + i, sz - i, " %u", l->snd_nxt_state);
2514 i += scnprintf(buf + i, sz - i, " %u", l->rcv_nxt_state);
2515 i += scnprintf(buf + i, sz - i, " %x", l->peer_caps);
2516 i += scnprintf(buf + i, sz - i, " %u", l->silent_intv_cnt);
2517 i += scnprintf(buf + i, sz - i, " %u", l->rst_cnt);
2518 i += scnprintf(buf + i, sz - i, " %u", l->prev_from);
2519 i += scnprintf(buf + i, sz - i, " %u", l->stale_cnt);
2520 i += scnprintf(buf + i, sz - i, " %u", l->acked);
2521
2522 list = &l->transmq;
2523 len = skb_queue_len(list);
2524 hskb = skb_peek(list);
2525 tskb = skb_peek_tail(list);
2526 i += scnprintf(buf + i, sz - i, " | %u %u %u", len,
2527 (hskb) ? msg_seqno(buf_msg(hskb)) : 0,
2528 (tskb) ? msg_seqno(buf_msg(tskb)) : 0);
2529
2530 list = &l->deferdq;
2531 len = skb_queue_len(list);
2532 hskb = skb_peek(list);
2533 tskb = skb_peek_tail(list);
2534 i += scnprintf(buf + i, sz - i, " | %u %u %u", len,
2535 (hskb) ? msg_seqno(buf_msg(hskb)) : 0,
2536 (tskb) ? msg_seqno(buf_msg(tskb)) : 0);
2537
2538 list = &l->backlogq;
2539 len = skb_queue_len(list);
2540 hskb = skb_peek(list);
2541 tskb = skb_peek_tail(list);
2542 i += scnprintf(buf + i, sz - i, " | %u %u %u", len,
2543 (hskb) ? msg_seqno(buf_msg(hskb)) : 0,
2544 (tskb) ? msg_seqno(buf_msg(tskb)) : 0);
2545
2546 list = l->inputq;
2547 len = skb_queue_len(list);
2548 hskb = skb_peek(list);
2549 tskb = skb_peek_tail(list);
2550 i += scnprintf(buf + i, sz - i, " | %u %u %u\n", len,
2551 (hskb) ? msg_seqno(buf_msg(hskb)) : 0,
2552 (tskb) ? msg_seqno(buf_msg(tskb)) : 0);
2553
2554 if (dqueues & TIPC_DUMP_TRANSMQ) {
2555 i += scnprintf(buf + i, sz - i, "transmq: ");
2556 i += tipc_list_dump(&l->transmq, false, buf + i);
2557 }
2558 if (dqueues & TIPC_DUMP_BACKLOGQ) {
2559 i += scnprintf(buf + i, sz - i,
2560 "backlogq: <%u %u %u %u %u>, ",
2561 l->backlog[TIPC_LOW_IMPORTANCE].len,
2562 l->backlog[TIPC_MEDIUM_IMPORTANCE].len,
2563 l->backlog[TIPC_HIGH_IMPORTANCE].len,
2564 l->backlog[TIPC_CRITICAL_IMPORTANCE].len,
2565 l->backlog[TIPC_SYSTEM_IMPORTANCE].len);
2566 i += tipc_list_dump(&l->backlogq, false, buf + i);
2567 }
2568 if (dqueues & TIPC_DUMP_DEFERDQ) {
2569 i += scnprintf(buf + i, sz - i, "deferdq: ");
2570 i += tipc_list_dump(&l->deferdq, false, buf + i);
2571 }
2572 if (dqueues & TIPC_DUMP_INPUTQ) {
2573 i += scnprintf(buf + i, sz - i, "inputq: ");
2574 i += tipc_list_dump(l->inputq, false, buf + i);
2575 }
2576 if (dqueues & TIPC_DUMP_WAKEUP) {
2577 i += scnprintf(buf + i, sz - i, "wakeup: ");
2578 i += tipc_list_dump(&l->wakeupq, false, buf + i);
2579 }
2580
2581 return i;
2582}