]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - net/tipc/link.c
tipc: eliminate redundant buffer cloning at transmission
[mirror_ubuntu-jammy-kernel.git] / net / tipc / link.c
CommitLineData
b97bf3fd
PL
1/*
2 * net/tipc/link.c: TIPC link code
c4307285 3 *
c1336ee4 4 * Copyright (c) 1996-2007, 2012-2015, 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"
b97bf3fd 45
796c75d0
YX
46#include <linux/pkt_sched.h>
47
2cf8aa19
EH
48/*
49 * Error message prefixes
50 */
6e498158 51static const char *link_co_err = "Link tunneling error, ";
2cf8aa19 52static const char *link_rst_msg = "Resetting link ";
32301906 53static const char tipc_bclink_name[] = "broadcast-link";
b97bf3fd 54
7be57fc6
RA
55static const struct nla_policy tipc_nl_link_policy[TIPC_NLA_LINK_MAX + 1] = {
56 [TIPC_NLA_LINK_UNSPEC] = { .type = NLA_UNSPEC },
57 [TIPC_NLA_LINK_NAME] = {
58 .type = NLA_STRING,
59 .len = TIPC_MAX_LINK_NAME
60 },
61 [TIPC_NLA_LINK_MTU] = { .type = NLA_U32 },
62 [TIPC_NLA_LINK_BROADCAST] = { .type = NLA_FLAG },
63 [TIPC_NLA_LINK_UP] = { .type = NLA_FLAG },
64 [TIPC_NLA_LINK_ACTIVE] = { .type = NLA_FLAG },
65 [TIPC_NLA_LINK_PROP] = { .type = NLA_NESTED },
66 [TIPC_NLA_LINK_STATS] = { .type = NLA_NESTED },
67 [TIPC_NLA_LINK_RX] = { .type = NLA_U32 },
68 [TIPC_NLA_LINK_TX] = { .type = NLA_U32 }
69};
70
0655f6a8
RA
71/* Properties valid for media, bearar and link */
72static const struct nla_policy tipc_nl_prop_policy[TIPC_NLA_PROP_MAX + 1] = {
73 [TIPC_NLA_PROP_UNSPEC] = { .type = NLA_UNSPEC },
74 [TIPC_NLA_PROP_PRIO] = { .type = NLA_U32 },
75 [TIPC_NLA_PROP_TOL] = { .type = NLA_U32 },
76 [TIPC_NLA_PROP_WIN] = { .type = NLA_U32 }
77};
78
52666986
JPM
79/* Send states for broadcast NACKs
80 */
81enum {
82 BC_NACK_SND_CONDITIONAL,
83 BC_NACK_SND_UNCONDITIONAL,
84 BC_NACK_SND_SUPPRESS,
85};
86
d999297c
JPM
87/*
88 * Interval between NACKs when packets arrive out of order
89 */
90#define TIPC_NACK_INTV (TIPC_MIN_LINK_WIN * 2)
a686e685
AS
91/*
92 * Out-of-range value for link session numbers
93 */
d3504c34 94#define WILDCARD_SESSION 0x10000
a686e685 95
662921cd 96/* Link FSM states:
b97bf3fd 97 */
d3504c34 98enum {
662921cd
JPM
99 LINK_ESTABLISHED = 0xe,
100 LINK_ESTABLISHING = 0xe << 4,
101 LINK_RESET = 0x1 << 8,
102 LINK_RESETTING = 0x2 << 12,
103 LINK_PEER_RESET = 0xd << 16,
104 LINK_FAILINGOVER = 0xf << 20,
105 LINK_SYNCHING = 0xc << 24
d3504c34
JPM
106};
107
108/* Link FSM state checking routines
109 */
662921cd 110static int link_is_up(struct tipc_link *l)
d3504c34 111{
662921cd 112 return l->state & (LINK_ESTABLISHED | LINK_SYNCHING);
d3504c34 113}
b97bf3fd 114
d999297c
JPM
115static int tipc_link_proto_rcv(struct tipc_link *l, struct sk_buff *skb,
116 struct sk_buff_head *xmitq);
426cc2b8
JPM
117static void tipc_link_build_proto_msg(struct tipc_link *l, int mtyp, bool probe,
118 u16 rcvgap, int tolerance, int priority,
119 struct sk_buff_head *xmitq);
a18c4bc3
PG
120static void link_reset_statistics(struct tipc_link *l_ptr);
121static void link_print(struct tipc_link *l_ptr, const char *str);
52666986
JPM
122static void tipc_link_build_nack_msg(struct tipc_link *l,
123 struct sk_buff_head *xmitq);
124static void tipc_link_build_bc_init_msg(struct tipc_link *l,
125 struct sk_buff_head *xmitq);
126static bool tipc_link_release_pkts(struct tipc_link *l, u16 to);
8b4ed863 127
b97bf3fd 128/*
05790c64 129 * Simple non-static link routines (i.e. referenced outside this file)
b97bf3fd 130 */
662921cd 131bool tipc_link_is_up(struct tipc_link *l)
b97bf3fd 132{
662921cd
JPM
133 return link_is_up(l);
134}
135
c8199300
JPM
136bool tipc_link_peer_is_down(struct tipc_link *l)
137{
138 return l->state == LINK_PEER_RESET;
139}
140
662921cd
JPM
141bool tipc_link_is_reset(struct tipc_link *l)
142{
143 return l->state & (LINK_RESET | LINK_FAILINGOVER | LINK_ESTABLISHING);
144}
145
73f646ce
JPM
146bool tipc_link_is_establishing(struct tipc_link *l)
147{
148 return l->state == LINK_ESTABLISHING;
149}
150
662921cd
JPM
151bool tipc_link_is_synching(struct tipc_link *l)
152{
153 return l->state == LINK_SYNCHING;
154}
155
156bool tipc_link_is_failingover(struct tipc_link *l)
157{
158 return l->state == LINK_FAILINGOVER;
159}
160
161bool tipc_link_is_blocked(struct tipc_link *l)
162{
163 return l->state & (LINK_RESETTING | LINK_PEER_RESET | LINK_FAILINGOVER);
b97bf3fd
PL
164}
165
52666986
JPM
166bool link_is_bc_sndlink(struct tipc_link *l)
167{
168 return !l->bc_sndlink;
169}
170
171bool link_is_bc_rcvlink(struct tipc_link *l)
172{
173 return ((l->bc_rcvlink == l) && !link_is_bc_sndlink(l));
174}
175
9d13ec65 176int tipc_link_is_active(struct tipc_link *l)
b97bf3fd 177{
9d13ec65
JPM
178 struct tipc_node *n = l->owner;
179
180 return (node_active_link(n, 0) == l) || (node_active_link(n, 1) == l);
b97bf3fd
PL
181}
182
52666986
JPM
183void tipc_link_add_bc_peer(struct tipc_link *snd_l,
184 struct tipc_link *uc_l,
185 struct sk_buff_head *xmitq)
2f566124 186{
52666986
JPM
187 struct tipc_link *rcv_l = uc_l->bc_rcvlink;
188
189 snd_l->ackers++;
190 rcv_l->acked = snd_l->snd_nxt - 1;
191 tipc_link_build_bc_init_msg(uc_l, xmitq);
2f566124
JPM
192}
193
52666986
JPM
194void tipc_link_remove_bc_peer(struct tipc_link *snd_l,
195 struct tipc_link *rcv_l,
196 struct sk_buff_head *xmitq)
2f566124 197{
52666986
JPM
198 u16 ack = snd_l->snd_nxt - 1;
199
200 snd_l->ackers--;
201 tipc_link_bc_ack_rcv(rcv_l, ack, xmitq);
202 tipc_link_reset(rcv_l);
203 rcv_l->state = LINK_RESET;
204 if (!snd_l->ackers) {
205 tipc_link_reset(snd_l);
206 __skb_queue_purge(xmitq);
207 }
2f566124
JPM
208}
209
210int tipc_link_bc_peers(struct tipc_link *l)
211{
212 return l->ackers;
213}
214
959e1781
JPM
215void tipc_link_set_mtu(struct tipc_link *l, int mtu)
216{
217 l->mtu = mtu;
218}
219
220int tipc_link_mtu(struct tipc_link *l)
221{
222 return l->mtu;
223}
224
440d8963
JPM
225static u32 link_own_addr(struct tipc_link *l)
226{
227 return msg_prevnode(l->pmsg);
228}
229
b97bf3fd 230/**
4323add6 231 * tipc_link_create - create a new link
440d8963 232 * @n: pointer to associated node
0e05498e
JPM
233 * @if_name: associated interface name
234 * @bearer_id: id (index) of associated bearer
235 * @tolerance: link tolerance to be used by link
236 * @net_plane: network plane (A,B,c..) this link belongs to
237 * @mtu: mtu to be advertised by link
238 * @priority: priority to be used by link
239 * @window: send window to be used by link
240 * @session: session to be used by link
440d8963 241 * @ownnode: identity of own node
0e05498e 242 * @peer: node id of peer node
fd556f20 243 * @peer_caps: bitmap describing peer node capabilities
440d8963 244 * @maddr: media address to be used
52666986
JPM
245 * @bc_sndlink: the namespace global link used for broadcast sending
246 * @bc_rcvlink: the peer specific link used for broadcast reception
440d8963
JPM
247 * @inputq: queue to put messages ready for delivery
248 * @namedq: queue to put binding table update messages ready for delivery
249 * @link: return value, pointer to put the created link
c4307285 250 *
440d8963 251 * Returns true if link was created, otherwise false
b97bf3fd 252 */
0e05498e
JPM
253bool tipc_link_create(struct tipc_node *n, char *if_name, int bearer_id,
254 int tolerance, char net_plane, u32 mtu, int priority,
255 int window, u32 session, u32 ownnode, u32 peer,
52666986
JPM
256 u16 peer_caps,
257 struct tipc_media_addr *maddr,
258 struct tipc_link *bc_sndlink,
259 struct tipc_link *bc_rcvlink,
260 struct sk_buff_head *inputq,
261 struct sk_buff_head *namedq,
440d8963 262 struct tipc_link **link)
b97bf3fd 263{
440d8963
JPM
264 struct tipc_link *l;
265 struct tipc_msg *hdr;
37b9c08a 266
440d8963
JPM
267 l = kzalloc(sizeof(*l), GFP_ATOMIC);
268 if (!l)
269 return false;
270 *link = l;
0e05498e
JPM
271 l->pmsg = (struct tipc_msg *)&l->proto_msg;
272 hdr = l->pmsg;
273 tipc_msg_init(ownnode, hdr, LINK_PROTOCOL, RESET_MSG, INT_H_SIZE, peer);
274 msg_set_size(hdr, sizeof(l->proto_msg));
275 msg_set_session(hdr, session);
276 msg_set_bearer_id(hdr, l->bearer_id);
37b9c08a 277
440d8963 278 /* Note: peer i/f name is completed by reset/activate message */
440d8963
JPM
279 sprintf(l->name, "%u.%u.%u:%s-%u.%u.%u:unknown",
280 tipc_zone(ownnode), tipc_cluster(ownnode), tipc_node(ownnode),
281 if_name, tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
0e05498e 282 strcpy((char *)msg_data(hdr), if_name);
b97bf3fd 283
440d8963 284 l->addr = peer;
fd556f20 285 l->peer_caps = peer_caps;
440d8963
JPM
286 l->media_addr = maddr;
287 l->owner = n;
288 l->peer_session = WILDCARD_SESSION;
0e05498e
JPM
289 l->bearer_id = bearer_id;
290 l->tolerance = tolerance;
291 l->net_plane = net_plane;
292 l->advertised_mtu = mtu;
293 l->mtu = mtu;
294 l->priority = priority;
295 tipc_link_set_queue_limits(l, window);
c1ab3f1d 296 l->ackers = 1;
52666986
JPM
297 l->bc_sndlink = bc_sndlink;
298 l->bc_rcvlink = bc_rcvlink;
440d8963
JPM
299 l->inputq = inputq;
300 l->namedq = namedq;
301 l->state = LINK_RESETTING;
440d8963
JPM
302 __skb_queue_head_init(&l->transmq);
303 __skb_queue_head_init(&l->backlogq);
304 __skb_queue_head_init(&l->deferdq);
305 skb_queue_head_init(&l->wakeupq);
306 skb_queue_head_init(l->inputq);
307 return true;
b97bf3fd
PL
308}
309
32301906
JPM
310/**
311 * tipc_link_bc_create - create new link to be used for broadcast
312 * @n: pointer to associated node
313 * @mtu: mtu to be used
314 * @window: send window to be used
315 * @inputq: queue to put messages ready for delivery
316 * @namedq: queue to put binding table update messages ready for delivery
317 * @link: return value, pointer to put the created link
318 *
319 * Returns true if link was created, otherwise false
320 */
52666986
JPM
321bool tipc_link_bc_create(struct tipc_node *n, u32 ownnode, u32 peer,
322 int mtu, int window, u16 peer_caps,
32301906
JPM
323 struct sk_buff_head *inputq,
324 struct sk_buff_head *namedq,
52666986 325 struct tipc_link *bc_sndlink,
32301906
JPM
326 struct tipc_link **link)
327{
328 struct tipc_link *l;
329
330 if (!tipc_link_create(n, "", MAX_BEARERS, 0, 'Z', mtu, 0, window,
52666986
JPM
331 0, ownnode, peer, peer_caps, NULL, bc_sndlink,
332 NULL, inputq, namedq, link))
32301906
JPM
333 return false;
334
335 l = *link;
336 strcpy(l->name, tipc_bclink_name);
337 tipc_link_reset(l);
52666986 338 l->state = LINK_RESET;
2f566124 339 l->ackers = 0;
52666986 340 l->bc_rcvlink = l;
32301906 341
52666986
JPM
342 /* Broadcast send link is always up */
343 if (link_is_bc_sndlink(l))
344 l->state = LINK_ESTABLISHED;
d999297c 345
52666986 346 return true;
d999297c
JPM
347}
348
6ab30f9c
JPM
349/**
350 * tipc_link_fsm_evt - link finite state machine
351 * @l: pointer to link
352 * @evt: state machine event to be processed
6ab30f9c 353 */
662921cd 354int tipc_link_fsm_evt(struct tipc_link *l, int evt)
6ab30f9c 355{
5045f7b9 356 int rc = 0;
6ab30f9c
JPM
357
358 switch (l->state) {
662921cd 359 case LINK_RESETTING:
6ab30f9c 360 switch (evt) {
662921cd
JPM
361 case LINK_PEER_RESET_EVT:
362 l->state = LINK_PEER_RESET;
6ab30f9c 363 break;
662921cd
JPM
364 case LINK_RESET_EVT:
365 l->state = LINK_RESET;
366 break;
367 case LINK_FAILURE_EVT:
368 case LINK_FAILOVER_BEGIN_EVT:
369 case LINK_ESTABLISH_EVT:
370 case LINK_FAILOVER_END_EVT:
371 case LINK_SYNCH_BEGIN_EVT:
372 case LINK_SYNCH_END_EVT:
373 default:
374 goto illegal_evt;
375 }
376 break;
377 case LINK_RESET:
378 switch (evt) {
379 case LINK_PEER_RESET_EVT:
380 l->state = LINK_ESTABLISHING;
6ab30f9c 381 break;
662921cd
JPM
382 case LINK_FAILOVER_BEGIN_EVT:
383 l->state = LINK_FAILINGOVER;
384 case LINK_FAILURE_EVT:
385 case LINK_RESET_EVT:
386 case LINK_ESTABLISH_EVT:
387 case LINK_FAILOVER_END_EVT:
6ab30f9c 388 break;
662921cd
JPM
389 case LINK_SYNCH_BEGIN_EVT:
390 case LINK_SYNCH_END_EVT:
6ab30f9c 391 default:
662921cd 392 goto illegal_evt;
6ab30f9c
JPM
393 }
394 break;
662921cd 395 case LINK_PEER_RESET:
6ab30f9c 396 switch (evt) {
662921cd
JPM
397 case LINK_RESET_EVT:
398 l->state = LINK_ESTABLISHING;
6ab30f9c 399 break;
662921cd
JPM
400 case LINK_PEER_RESET_EVT:
401 case LINK_ESTABLISH_EVT:
402 case LINK_FAILURE_EVT:
6ab30f9c 403 break;
662921cd
JPM
404 case LINK_SYNCH_BEGIN_EVT:
405 case LINK_SYNCH_END_EVT:
406 case LINK_FAILOVER_BEGIN_EVT:
407 case LINK_FAILOVER_END_EVT:
408 default:
409 goto illegal_evt;
410 }
411 break;
412 case LINK_FAILINGOVER:
413 switch (evt) {
414 case LINK_FAILOVER_END_EVT:
415 l->state = LINK_RESET;
6ab30f9c 416 break;
662921cd
JPM
417 case LINK_PEER_RESET_EVT:
418 case LINK_RESET_EVT:
419 case LINK_ESTABLISH_EVT:
420 case LINK_FAILURE_EVT:
421 break;
422 case LINK_FAILOVER_BEGIN_EVT:
423 case LINK_SYNCH_BEGIN_EVT:
424 case LINK_SYNCH_END_EVT:
6ab30f9c 425 default:
662921cd 426 goto illegal_evt;
6ab30f9c
JPM
427 }
428 break;
662921cd 429 case LINK_ESTABLISHING:
6ab30f9c 430 switch (evt) {
662921cd
JPM
431 case LINK_ESTABLISH_EVT:
432 l->state = LINK_ESTABLISHED;
6ab30f9c 433 break;
662921cd
JPM
434 case LINK_FAILOVER_BEGIN_EVT:
435 l->state = LINK_FAILINGOVER;
436 break;
662921cd 437 case LINK_RESET_EVT:
73f646ce
JPM
438 l->state = LINK_RESET;
439 break;
662921cd 440 case LINK_FAILURE_EVT:
73f646ce 441 case LINK_PEER_RESET_EVT:
662921cd
JPM
442 case LINK_SYNCH_BEGIN_EVT:
443 case LINK_FAILOVER_END_EVT:
444 break;
445 case LINK_SYNCH_END_EVT:
446 default:
447 goto illegal_evt;
448 }
449 break;
450 case LINK_ESTABLISHED:
451 switch (evt) {
452 case LINK_PEER_RESET_EVT:
453 l->state = LINK_PEER_RESET;
454 rc |= TIPC_LINK_DOWN_EVT;
455 break;
456 case LINK_FAILURE_EVT:
457 l->state = LINK_RESETTING;
458 rc |= TIPC_LINK_DOWN_EVT;
6ab30f9c 459 break;
662921cd
JPM
460 case LINK_RESET_EVT:
461 l->state = LINK_RESET;
6ab30f9c 462 break;
662921cd 463 case LINK_ESTABLISH_EVT:
5ae2f8e6 464 case LINK_SYNCH_END_EVT:
6ab30f9c 465 break;
662921cd
JPM
466 case LINK_SYNCH_BEGIN_EVT:
467 l->state = LINK_SYNCHING;
468 break;
662921cd
JPM
469 case LINK_FAILOVER_BEGIN_EVT:
470 case LINK_FAILOVER_END_EVT:
6ab30f9c 471 default:
662921cd 472 goto illegal_evt;
6ab30f9c
JPM
473 }
474 break;
662921cd 475 case LINK_SYNCHING:
6ab30f9c 476 switch (evt) {
662921cd
JPM
477 case LINK_PEER_RESET_EVT:
478 l->state = LINK_PEER_RESET;
479 rc |= TIPC_LINK_DOWN_EVT;
480 break;
481 case LINK_FAILURE_EVT:
482 l->state = LINK_RESETTING;
483 rc |= TIPC_LINK_DOWN_EVT;
6ab30f9c 484 break;
662921cd
JPM
485 case LINK_RESET_EVT:
486 l->state = LINK_RESET;
6ab30f9c 487 break;
662921cd
JPM
488 case LINK_ESTABLISH_EVT:
489 case LINK_SYNCH_BEGIN_EVT:
6ab30f9c 490 break;
662921cd
JPM
491 case LINK_SYNCH_END_EVT:
492 l->state = LINK_ESTABLISHED;
493 break;
494 case LINK_FAILOVER_BEGIN_EVT:
495 case LINK_FAILOVER_END_EVT:
6ab30f9c 496 default:
662921cd 497 goto illegal_evt;
6ab30f9c
JPM
498 }
499 break;
500 default:
662921cd 501 pr_err("Unknown FSM state %x in %s\n", l->state, l->name);
6ab30f9c 502 }
662921cd
JPM
503 return rc;
504illegal_evt:
505 pr_err("Illegal FSM event %x in state %x on link %s\n",
506 evt, l->state, l->name);
6ab30f9c
JPM
507 return rc;
508}
509
333ef69e
JPM
510/* link_profile_stats - update statistical profiling of traffic
511 */
512static void link_profile_stats(struct tipc_link *l)
513{
514 struct sk_buff *skb;
515 struct tipc_msg *msg;
516 int length;
517
518 /* Update counters used in statistical profiling of send traffic */
519 l->stats.accu_queue_sz += skb_queue_len(&l->transmq);
520 l->stats.queue_sz_counts++;
521
522 skb = skb_peek(&l->transmq);
523 if (!skb)
524 return;
525 msg = buf_msg(skb);
526 length = msg_size(msg);
527
528 if (msg_user(msg) == MSG_FRAGMENTER) {
529 if (msg_type(msg) != FIRST_FRAGMENT)
530 return;
531 length = msg_size(msg_get_wrapped(msg));
532 }
533 l->stats.msg_lengths_total += length;
534 l->stats.msg_length_counts++;
535 if (length <= 64)
536 l->stats.msg_length_profile[0]++;
537 else if (length <= 256)
538 l->stats.msg_length_profile[1]++;
539 else if (length <= 1024)
540 l->stats.msg_length_profile[2]++;
541 else if (length <= 4096)
542 l->stats.msg_length_profile[3]++;
543 else if (length <= 16384)
544 l->stats.msg_length_profile[4]++;
545 else if (length <= 32768)
546 l->stats.msg_length_profile[5]++;
547 else
548 l->stats.msg_length_profile[6]++;
549}
550
52666986
JPM
551/* tipc_link_timeout - perform periodic task as instructed from node timeout
552 */
333ef69e
JPM
553/* tipc_link_timeout - perform periodic task as instructed from node timeout
554 */
555int tipc_link_timeout(struct tipc_link *l, struct sk_buff_head *xmitq)
556{
557 int rc = 0;
5045f7b9
JPM
558 int mtyp = STATE_MSG;
559 bool xmit = false;
560 bool prb = false;
52666986
JPM
561 u16 bc_snt = l->bc_sndlink->snd_nxt - 1;
562 u16 bc_acked = l->bc_rcvlink->acked;
563 bool bc_up = link_is_up(l->bc_rcvlink);
333ef69e
JPM
564
565 link_profile_stats(l);
5045f7b9 566
662921cd
JPM
567 switch (l->state) {
568 case LINK_ESTABLISHED:
569 case LINK_SYNCHING:
5045f7b9 570 if (!l->silent_intv_cnt) {
52666986 571 if (bc_up && (bc_acked != bc_snt))
5045f7b9
JPM
572 xmit = true;
573 } else if (l->silent_intv_cnt <= l->abort_limit) {
574 xmit = true;
575 prb = true;
576 } else {
662921cd 577 rc |= tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
5045f7b9
JPM
578 }
579 l->silent_intv_cnt++;
662921cd
JPM
580 break;
581 case LINK_RESET:
5045f7b9
JPM
582 xmit = true;
583 mtyp = RESET_MSG;
662921cd
JPM
584 break;
585 case LINK_ESTABLISHING:
5045f7b9
JPM
586 xmit = true;
587 mtyp = ACTIVATE_MSG;
662921cd 588 break;
662921cd 589 case LINK_PEER_RESET:
598411d7 590 case LINK_RESETTING:
662921cd
JPM
591 case LINK_FAILINGOVER:
592 break;
593 default:
594 break;
5045f7b9 595 }
662921cd 596
5045f7b9
JPM
597 if (xmit)
598 tipc_link_build_proto_msg(l, mtyp, prb, 0, 0, 0, xmitq);
599
333ef69e
JPM
600 return rc;
601}
602
b97bf3fd 603/**
3127a020 604 * link_schedule_user - schedule a message sender for wakeup after congestion
50100a5e 605 * @link: congested link
3127a020 606 * @list: message that was attempted sent
50100a5e 607 * Create pseudo msg to send back to user when congestion abates
22d85c79 608 * Does not consume buffer list
b97bf3fd 609 */
3127a020 610static int link_schedule_user(struct tipc_link *link, struct sk_buff_head *list)
b97bf3fd 611{
3127a020
JPM
612 struct tipc_msg *msg = buf_msg(skb_peek(list));
613 int imp = msg_importance(msg);
614 u32 oport = msg_origport(msg);
615 u32 addr = link_own_addr(link);
616 struct sk_buff *skb;
617
618 /* This really cannot happen... */
619 if (unlikely(imp > TIPC_CRITICAL_IMPORTANCE)) {
620 pr_warn("%s<%s>, send queue full", link_rst_msg, link->name);
22d85c79 621 return -ENOBUFS;
3127a020
JPM
622 }
623 /* Non-blocking sender: */
624 if (TIPC_SKB_CB(skb_peek(list))->wakeup_pending)
625 return -ELINKCONG;
626
627 /* Create and schedule wakeup pseudo message */
628 skb = tipc_msg_create(SOCK_WAKEUP, 0, INT_H_SIZE, 0,
629 addr, addr, oport, 0, 0);
630 if (!skb)
22d85c79 631 return -ENOBUFS;
3127a020
JPM
632 TIPC_SKB_CB(skb)->chain_sz = skb_queue_len(list);
633 TIPC_SKB_CB(skb)->chain_imp = imp;
634 skb_queue_tail(&link->wakeupq, skb);
50100a5e 635 link->stats.link_congs++;
3127a020 636 return -ELINKCONG;
b97bf3fd
PL
637}
638
50100a5e
JPM
639/**
640 * link_prepare_wakeup - prepare users for wakeup after congestion
641 * @link: congested link
642 * Move a number of waiting users, as permitted by available space in
643 * the send queue, from link wait queue to node wait queue for wakeup
644 */
1f66d161 645void link_prepare_wakeup(struct tipc_link *l)
b97bf3fd 646{
1f66d161
JPM
647 int pnd[TIPC_SYSTEM_IMPORTANCE + 1] = {0,};
648 int imp, lim;
58d78b32 649 struct sk_buff *skb, *tmp;
50100a5e 650
1f66d161
JPM
651 skb_queue_walk_safe(&l->wakeupq, skb, tmp) {
652 imp = TIPC_SKB_CB(skb)->chain_imp;
653 lim = l->window + l->backlog[imp].limit;
654 pnd[imp] += TIPC_SKB_CB(skb)->chain_sz;
655 if ((pnd[imp] + l->backlog[imp].len) >= lim)
b97bf3fd 656 break;
1f66d161 657 skb_unlink(skb, &l->wakeupq);
d39bbd44 658 skb_queue_tail(l->inputq, skb);
b97bf3fd 659 }
b97bf3fd
PL
660}
661
b97bf3fd 662/**
4323add6 663 * tipc_link_reset_fragments - purge link's inbound message fragments queue
b97bf3fd
PL
664 * @l_ptr: pointer to link
665 */
a18c4bc3 666void tipc_link_reset_fragments(struct tipc_link *l_ptr)
b97bf3fd 667{
37e22164
JPM
668 kfree_skb(l_ptr->reasm_buf);
669 l_ptr->reasm_buf = NULL;
b97bf3fd
PL
670}
671
7d967b67 672void tipc_link_purge_backlog(struct tipc_link *l)
1f66d161
JPM
673{
674 __skb_queue_purge(&l->backlogq);
675 l->backlog[TIPC_LOW_IMPORTANCE].len = 0;
676 l->backlog[TIPC_MEDIUM_IMPORTANCE].len = 0;
677 l->backlog[TIPC_HIGH_IMPORTANCE].len = 0;
678 l->backlog[TIPC_CRITICAL_IMPORTANCE].len = 0;
679 l->backlog[TIPC_SYSTEM_IMPORTANCE].len = 0;
680}
681
c4307285 682/**
581465fa 683 * tipc_link_purge_queues - purge all pkt queues associated with link
b97bf3fd
PL
684 * @l_ptr: pointer to link
685 */
581465fa 686void tipc_link_purge_queues(struct tipc_link *l_ptr)
b97bf3fd 687{
05dcc5aa
JPM
688 __skb_queue_purge(&l_ptr->deferdq);
689 __skb_queue_purge(&l_ptr->transmq);
1f66d161 690 tipc_link_purge_backlog(l_ptr);
4323add6 691 tipc_link_reset_fragments(l_ptr);
b97bf3fd
PL
692}
693
6e498158 694void tipc_link_reset(struct tipc_link *l)
b97bf3fd 695{
a686e685 696 /* Link is down, accept any session */
6e498158 697 l->peer_session = WILDCARD_SESSION;
b97bf3fd 698
6e498158
JPM
699 /* If peer is up, it only accepts an incremented session number */
700 msg_set_session(l->pmsg, msg_session(l->pmsg) + 1);
b97bf3fd 701
6e498158
JPM
702 /* Prepare for renewed mtu size negotiation */
703 l->mtu = l->advertised_mtu;
b97bf3fd 704
23d8335d 705 /* Clean up all queues: */
6e498158
JPM
706 __skb_queue_purge(&l->transmq);
707 __skb_queue_purge(&l->deferdq);
23d8335d 708 skb_queue_splice_init(&l->wakeupq, l->inputq);
6e498158
JPM
709
710 tipc_link_purge_backlog(l);
711 kfree_skb(l->reasm_buf);
712 kfree_skb(l->failover_reasm_skb);
713 l->reasm_buf = NULL;
714 l->failover_reasm_skb = NULL;
715 l->rcv_unacked = 0;
716 l->snd_nxt = 1;
717 l->rcv_nxt = 1;
c1ab3f1d 718 l->acked = 0;
6e498158
JPM
719 l->silent_intv_cnt = 0;
720 l->stats.recv_info = 0;
721 l->stale_count = 0;
52666986 722 l->bc_peer_is_up = false;
6e498158 723 link_reset_statistics(l);
b97bf3fd
PL
724}
725
4f1688b2 726/**
9fbfb8b1 727 * __tipc_link_xmit(): same as tipc_link_xmit, but destlink is known & locked
4f1688b2 728 * @link: link to use
a6ca1094
YX
729 * @list: chain of buffers containing message
730 *
22d85c79 731 * Consumes the buffer chain, except when returning an error code,
3127a020
JPM
732 * Returns 0 if success, or errno: -ELINKCONG, -EMSGSIZE or -ENOBUFS
733 * Messages at TIPC_SYSTEM_IMPORTANCE are always accepted
4f1688b2 734 */
7f9f95d9
YX
735int __tipc_link_xmit(struct net *net, struct tipc_link *link,
736 struct sk_buff_head *list)
4f1688b2 737{
a6ca1094 738 struct tipc_msg *msg = buf_msg(skb_peek(list));
05dcc5aa 739 unsigned int maxwin = link->window;
f21e897e 740 unsigned int i, imp = msg_importance(msg);
ed193ece 741 uint mtu = link->mtu;
a97b9d3f
JPM
742 u16 ack = mod(link->rcv_nxt - 1);
743 u16 seqno = link->snd_nxt;
52666986 744 u16 bc_ack = link->bc_rcvlink->rcv_nxt - 1;
440d8963 745 struct tipc_media_addr *addr = link->media_addr;
05dcc5aa
JPM
746 struct sk_buff_head *transmq = &link->transmq;
747 struct sk_buff_head *backlogq = &link->backlogq;
dd3f9e70 748 struct sk_buff *skb, *bskb;
4f1688b2 749
f21e897e
JPM
750 /* Match msg importance against this and all higher backlog limits: */
751 for (i = imp; i <= TIPC_SYSTEM_IMPORTANCE; i++) {
752 if (unlikely(link->backlog[i].len >= link->backlog[i].limit))
753 return link_schedule_user(link, list);
754 }
22d85c79 755 if (unlikely(msg_size(msg) > mtu))
4f1688b2 756 return -EMSGSIZE;
22d85c79 757
05dcc5aa 758 /* Prepare each packet for sending, and add to relevant queue: */
dd3f9e70
JPM
759 while (skb_queue_len(list)) {
760 skb = skb_peek(list);
58dc55f2 761 msg = buf_msg(skb);
05dcc5aa
JPM
762 msg_set_seqno(msg, seqno);
763 msg_set_ack(msg, ack);
52666986 764 msg_set_bcast_ack(msg, bc_ack);
4f1688b2 765
05dcc5aa 766 if (likely(skb_queue_len(transmq) < maxwin)) {
dd3f9e70 767 __skb_dequeue(list);
05dcc5aa
JPM
768 __skb_queue_tail(transmq, skb);
769 tipc_bearer_send(net, link->bearer_id, skb, addr);
770 link->rcv_unacked = 0;
771 seqno++;
772 continue;
773 }
dd3f9e70
JPM
774 if (tipc_msg_bundle(skb_peek_tail(backlogq), msg, mtu)) {
775 kfree_skb(__skb_dequeue(list));
4f1688b2 776 link->stats.sent_bundled++;
4f1688b2 777 continue;
05dcc5aa 778 }
dd3f9e70
JPM
779 if (tipc_msg_make_bundle(&bskb, msg, mtu, link->addr)) {
780 kfree_skb(__skb_dequeue(list));
781 __skb_queue_tail(backlogq, bskb);
782 link->backlog[msg_importance(buf_msg(bskb))].len++;
4f1688b2
JPM
783 link->stats.sent_bundled++;
784 link->stats.sent_bundles++;
dd3f9e70 785 continue;
4f1688b2 786 }
dd3f9e70
JPM
787 link->backlog[imp].len += skb_queue_len(list);
788 skb_queue_splice_tail_init(list, backlogq);
4f1688b2 789 }
a97b9d3f 790 link->snd_nxt = seqno;
4f1688b2
JPM
791 return 0;
792}
793
af9b028e
JPM
794/**
795 * tipc_link_xmit(): enqueue buffer list according to queue situation
796 * @link: link to use
797 * @list: chain of buffers containing message
798 * @xmitq: returned list of packets to be sent by caller
799 *
800 * Consumes the buffer chain, except when returning -ELINKCONG,
801 * since the caller then may want to make more send attempts.
802 * Returns 0 if success, or errno: -ELINKCONG, -EMSGSIZE or -ENOBUFS
803 * Messages at TIPC_SYSTEM_IMPORTANCE are always accepted
804 */
805int tipc_link_xmit(struct tipc_link *l, struct sk_buff_head *list,
806 struct sk_buff_head *xmitq)
807{
808 struct tipc_msg *hdr = buf_msg(skb_peek(list));
809 unsigned int maxwin = l->window;
810 unsigned int i, imp = msg_importance(hdr);
811 unsigned int mtu = l->mtu;
812 u16 ack = l->rcv_nxt - 1;
813 u16 seqno = l->snd_nxt;
52666986 814 u16 bc_ack = l->bc_rcvlink->rcv_nxt - 1;
af9b028e
JPM
815 struct sk_buff_head *transmq = &l->transmq;
816 struct sk_buff_head *backlogq = &l->backlogq;
817 struct sk_buff *skb, *_skb, *bskb;
818
819 /* Match msg importance against this and all higher backlog limits: */
820 for (i = imp; i <= TIPC_SYSTEM_IMPORTANCE; i++) {
821 if (unlikely(l->backlog[i].len >= l->backlog[i].limit))
822 return link_schedule_user(l, list);
823 }
824 if (unlikely(msg_size(hdr) > mtu))
825 return -EMSGSIZE;
826
827 /* Prepare each packet for sending, and add to relevant queue: */
828 while (skb_queue_len(list)) {
829 skb = skb_peek(list);
830 hdr = buf_msg(skb);
831 msg_set_seqno(hdr, seqno);
832 msg_set_ack(hdr, ack);
52666986 833 msg_set_bcast_ack(hdr, bc_ack);
af9b028e
JPM
834
835 if (likely(skb_queue_len(transmq) < maxwin)) {
836 _skb = skb_clone(skb, GFP_ATOMIC);
837 if (!_skb)
838 return -ENOBUFS;
839 __skb_dequeue(list);
840 __skb_queue_tail(transmq, skb);
841 __skb_queue_tail(xmitq, _skb);
c1ab3f1d 842 TIPC_SKB_CB(skb)->ackers = l->ackers;
af9b028e
JPM
843 l->rcv_unacked = 0;
844 seqno++;
845 continue;
846 }
847 if (tipc_msg_bundle(skb_peek_tail(backlogq), hdr, mtu)) {
848 kfree_skb(__skb_dequeue(list));
849 l->stats.sent_bundled++;
850 continue;
851 }
852 if (tipc_msg_make_bundle(&bskb, hdr, mtu, l->addr)) {
853 kfree_skb(__skb_dequeue(list));
854 __skb_queue_tail(backlogq, bskb);
855 l->backlog[msg_importance(buf_msg(bskb))].len++;
856 l->stats.sent_bundled++;
857 l->stats.sent_bundles++;
858 continue;
859 }
860 l->backlog[imp].len += skb_queue_len(list);
861 skb_queue_splice_tail_init(list, backlogq);
862 }
863 l->snd_nxt = seqno;
864 return 0;
865}
866
c4307285 867/*
47b4c9a8
YX
868 * tipc_link_push_packets - push unsent packets to bearer
869 *
870 * Push out the unsent messages of a link where congestion
871 * has abated. Node is locked.
872 *
873 * Called with node locked
b97bf3fd 874 */
05dcc5aa 875void tipc_link_push_packets(struct tipc_link *link)
b97bf3fd 876{
05dcc5aa 877 struct sk_buff *skb;
47b4c9a8 878 struct tipc_msg *msg;
dd3f9e70 879 u16 seqno = link->snd_nxt;
a97b9d3f 880 u16 ack = mod(link->rcv_nxt - 1);
b97bf3fd 881
05dcc5aa
JPM
882 while (skb_queue_len(&link->transmq) < link->window) {
883 skb = __skb_dequeue(&link->backlogq);
884 if (!skb)
47b4c9a8 885 break;
c1ab3f1d 886 TIPC_SKB_CB(skb)->ackers = link->ackers;
05dcc5aa 887 msg = buf_msg(skb);
1f66d161 888 link->backlog[msg_importance(msg)].len--;
05dcc5aa 889 msg_set_ack(msg, ack);
dd3f9e70
JPM
890 msg_set_seqno(msg, seqno);
891 seqno = mod(seqno + 1);
05dcc5aa
JPM
892 msg_set_bcast_ack(msg, link->owner->bclink.last_in);
893 link->rcv_unacked = 0;
894 __skb_queue_tail(&link->transmq, skb);
895 tipc_bearer_send(link->owner->net, link->bearer_id,
440d8963 896 skb, link->media_addr);
b97bf3fd 897 }
dd3f9e70 898 link->snd_nxt = seqno;
b97bf3fd
PL
899}
900
d999297c
JPM
901void tipc_link_advance_backlog(struct tipc_link *l, struct sk_buff_head *xmitq)
902{
903 struct sk_buff *skb, *_skb;
904 struct tipc_msg *hdr;
905 u16 seqno = l->snd_nxt;
906 u16 ack = l->rcv_nxt - 1;
52666986 907 u16 bc_ack = l->bc_rcvlink->rcv_nxt - 1;
d999297c
JPM
908
909 while (skb_queue_len(&l->transmq) < l->window) {
910 skb = skb_peek(&l->backlogq);
911 if (!skb)
912 break;
913 _skb = skb_clone(skb, GFP_ATOMIC);
914 if (!_skb)
915 break;
916 __skb_dequeue(&l->backlogq);
917 hdr = buf_msg(skb);
918 l->backlog[msg_importance(hdr)].len--;
919 __skb_queue_tail(&l->transmq, skb);
920 __skb_queue_tail(xmitq, _skb);
c1ab3f1d 921 TIPC_SKB_CB(skb)->ackers = l->ackers;
d999297c 922 msg_set_seqno(hdr, seqno);
52666986
JPM
923 msg_set_ack(hdr, ack);
924 msg_set_bcast_ack(hdr, bc_ack);
d999297c
JPM
925 l->rcv_unacked = 0;
926 seqno++;
927 }
928 l->snd_nxt = seqno;
929}
930
52666986 931static void link_retransmit_failure(struct tipc_link *l, struct sk_buff *skb)
d356eeba 932{
52666986
JPM
933 struct tipc_msg *hdr = buf_msg(skb);
934
935 pr_warn("Retransmission failure on link <%s>\n", l->name);
936 link_print(l, "Resetting link ");
937 pr_info("Failed msg: usr %u, typ %u, len %u, err %u\n",
938 msg_user(hdr), msg_type(hdr), msg_size(hdr), msg_errcode(hdr));
939 pr_info("sqno %u, prev: %x, src: %x\n",
940 msg_seqno(hdr), msg_prevnode(hdr), msg_orignode(hdr));
d356eeba
AS
941}
942
58dc55f2 943void tipc_link_retransmit(struct tipc_link *l_ptr, struct sk_buff *skb,
4323add6 944 u32 retransmits)
b97bf3fd
PL
945{
946 struct tipc_msg *msg;
947
58dc55f2 948 if (!skb)
d356eeba
AS
949 return;
950
58dc55f2 951 msg = buf_msg(skb);
c4307285 952
512137ee 953 /* Detect repeated retransmit failures */
a97b9d3f 954 if (l_ptr->last_retransm == msg_seqno(msg)) {
512137ee 955 if (++l_ptr->stale_count > 100) {
58dc55f2 956 link_retransmit_failure(l_ptr, skb);
512137ee 957 return;
d356eeba
AS
958 }
959 } else {
a97b9d3f 960 l_ptr->last_retransm = msg_seqno(msg);
512137ee 961 l_ptr->stale_count = 1;
b97bf3fd 962 }
d356eeba 963
05dcc5aa
JPM
964 skb_queue_walk_from(&l_ptr->transmq, skb) {
965 if (!retransmits)
58dc55f2
YX
966 break;
967 msg = buf_msg(skb);
a97b9d3f 968 msg_set_ack(msg, mod(l_ptr->rcv_nxt - 1));
c4307285 969 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
7f9f95d9 970 tipc_bearer_send(l_ptr->owner->net, l_ptr->bearer_id, skb,
440d8963 971 l_ptr->media_addr);
3c294cb3
YX
972 retransmits--;
973 l_ptr->stats.retransmitted++;
b97bf3fd 974 }
b97bf3fd
PL
975}
976
c1ab3f1d
JPM
977int tipc_link_retrans(struct tipc_link *l, u16 from, u16 to,
978 struct sk_buff_head *xmitq)
d999297c
JPM
979{
980 struct sk_buff *_skb, *skb = skb_peek(&l->transmq);
981 struct tipc_msg *hdr;
c1ab3f1d 982 u16 ack = l->rcv_nxt - 1;
52666986 983 u16 bc_ack = l->bc_rcvlink->rcv_nxt - 1;
d999297c
JPM
984
985 if (!skb)
986 return 0;
987
988 /* Detect repeated retransmit failures on same packet */
989 if (likely(l->last_retransm != buf_seqno(skb))) {
990 l->last_retransm = buf_seqno(skb);
991 l->stale_count = 1;
992 } else if (++l->stale_count > 100) {
993 link_retransmit_failure(l, skb);
662921cd 994 return tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
d999297c 995 }
c1ab3f1d
JPM
996
997 /* Move forward to where retransmission should start */
d999297c 998 skb_queue_walk(&l->transmq, skb) {
c1ab3f1d
JPM
999 if (!less(buf_seqno(skb), from))
1000 break;
1001 }
1002
1003 skb_queue_walk_from(&l->transmq, skb) {
1004 if (more(buf_seqno(skb), to))
1005 break;
d999297c
JPM
1006 hdr = buf_msg(skb);
1007 _skb = __pskb_copy(skb, MIN_H_SIZE, GFP_ATOMIC);
1008 if (!_skb)
1009 return 0;
1010 hdr = buf_msg(_skb);
c1ab3f1d
JPM
1011 msg_set_ack(hdr, ack);
1012 msg_set_bcast_ack(hdr, bc_ack);
d999297c
JPM
1013 _skb->priority = TC_PRIO_CONTROL;
1014 __skb_queue_tail(xmitq, _skb);
d999297c
JPM
1015 l->stats.retransmitted++;
1016 }
1017 return 0;
1018}
1019
c637c103 1020/* tipc_data_input - deliver data and name distr msgs to upper layer
7ae934be 1021 *
c637c103 1022 * Consumes buffer if message is of right type
7ae934be
EH
1023 * Node lock must be held
1024 */
52666986 1025static bool tipc_data_input(struct tipc_link *l, struct sk_buff *skb,
9073fb8b 1026 struct sk_buff_head *inputq)
7ae934be 1027{
9073fb8b 1028 switch (msg_user(buf_msg(skb))) {
c637c103
JPM
1029 case TIPC_LOW_IMPORTANCE:
1030 case TIPC_MEDIUM_IMPORTANCE:
1031 case TIPC_HIGH_IMPORTANCE:
1032 case TIPC_CRITICAL_IMPORTANCE:
1033 case CONN_MANAGER:
9945e804 1034 skb_queue_tail(inputq, skb);
c637c103 1035 return true;
7ae934be 1036 case NAME_DISTRIBUTOR:
52666986
JPM
1037 l->bc_rcvlink->state = LINK_ESTABLISHED;
1038 skb_queue_tail(l->namedq, skb);
c637c103
JPM
1039 return true;
1040 case MSG_BUNDLER:
dff29b1a 1041 case TUNNEL_PROTOCOL:
c637c103 1042 case MSG_FRAGMENTER:
7ae934be 1043 case BCAST_PROTOCOL:
c637c103 1044 return false;
7ae934be 1045 default:
c637c103
JPM
1046 pr_warn("Dropping received illegal msg type\n");
1047 kfree_skb(skb);
1048 return false;
1049 };
7ae934be 1050}
c637c103
JPM
1051
1052/* tipc_link_input - process packet that has passed link protocol check
1053 *
1054 * Consumes buffer
7ae934be 1055 */
9073fb8b
JPM
1056static int tipc_link_input(struct tipc_link *l, struct sk_buff *skb,
1057 struct sk_buff_head *inputq)
7ae934be 1058{
6e498158
JPM
1059 struct tipc_msg *hdr = buf_msg(skb);
1060 struct sk_buff **reasm_skb = &l->reasm_buf;
c637c103 1061 struct sk_buff *iskb;
9945e804 1062 struct sk_buff_head tmpq;
6e498158 1063 int usr = msg_user(hdr);
6144a996 1064 int rc = 0;
6e498158
JPM
1065 int pos = 0;
1066 int ipos = 0;
c637c103 1067
6e498158
JPM
1068 if (unlikely(usr == TUNNEL_PROTOCOL)) {
1069 if (msg_type(hdr) == SYNCH_MSG) {
1070 __skb_queue_purge(&l->deferdq);
1071 goto drop;
8b4ed863 1072 }
6e498158
JPM
1073 if (!tipc_msg_extract(skb, &iskb, &ipos))
1074 return rc;
1075 kfree_skb(skb);
1076 skb = iskb;
1077 hdr = buf_msg(skb);
1078 if (less(msg_seqno(hdr), l->drop_point))
1079 goto drop;
9073fb8b 1080 if (tipc_data_input(l, skb, inputq))
6e498158
JPM
1081 return rc;
1082 usr = msg_user(hdr);
1083 reasm_skb = &l->failover_reasm_skb;
1084 }
c637c103 1085
6e498158 1086 if (usr == MSG_BUNDLER) {
9945e804 1087 skb_queue_head_init(&tmpq);
6e498158
JPM
1088 l->stats.recv_bundles++;
1089 l->stats.recv_bundled += msg_msgcnt(hdr);
c637c103 1090 while (tipc_msg_extract(skb, &iskb, &pos))
9945e804
JPM
1091 tipc_data_input(l, iskb, &tmpq);
1092 tipc_skb_queue_splice_tail(&tmpq, inputq);
662921cd 1093 return 0;
6e498158
JPM
1094 } else if (usr == MSG_FRAGMENTER) {
1095 l->stats.recv_fragments++;
1096 if (tipc_buf_append(reasm_skb, &skb)) {
1097 l->stats.recv_fragmented++;
9073fb8b 1098 tipc_data_input(l, skb, inputq);
52666986
JPM
1099 } else if (!*reasm_skb && !link_is_bc_rcvlink(l)) {
1100 pr_warn_ratelimited("Unable to build fragment list\n");
662921cd 1101 return tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
c637c103 1102 }
662921cd 1103 return 0;
6e498158 1104 } else if (usr == BCAST_PROTOCOL) {
52666986
JPM
1105 tipc_bcast_lock(l->owner->net);
1106 tipc_link_bc_init_rcv(l->bc_rcvlink, hdr);
1107 tipc_bcast_unlock(l->owner->net);
6e498158
JPM
1108 }
1109drop:
1110 kfree_skb(skb);
662921cd 1111 return 0;
7ae934be
EH
1112}
1113
d999297c
JPM
1114static bool tipc_link_release_pkts(struct tipc_link *l, u16 acked)
1115{
1116 bool released = false;
1117 struct sk_buff *skb, *tmp;
1118
1119 skb_queue_walk_safe(&l->transmq, skb, tmp) {
1120 if (more(buf_seqno(skb), acked))
1121 break;
1122 __skb_unlink(skb, &l->transmq);
1123 kfree_skb(skb);
1124 released = true;
1125 }
1126 return released;
1127}
1128
f9aa358a 1129/* tipc_link_build_ack_msg: prepare link acknowledge message for transmission
52666986
JPM
1130 *
1131 * Note that sending of broadcast ack is coordinated among nodes, to reduce
1132 * risk of ack storms towards the sender
f9aa358a 1133 */
52666986 1134int tipc_link_build_ack_msg(struct tipc_link *l, struct sk_buff_head *xmitq)
f9aa358a 1135{
52666986
JPM
1136 if (!l)
1137 return 0;
1138
1139 /* Broadcast ACK must be sent via a unicast link => defer to caller */
1140 if (link_is_bc_rcvlink(l)) {
1141 if (((l->rcv_nxt ^ link_own_addr(l)) & 0xf) != 0xf)
1142 return 0;
1143 l->rcv_unacked = 0;
1144 return TIPC_LINK_SND_BC_ACK;
1145 }
1146
1147 /* Unicast ACK */
f9aa358a
JPM
1148 l->rcv_unacked = 0;
1149 l->stats.sent_acks++;
1150 tipc_link_build_proto_msg(l, STATE_MSG, 0, 0, 0, 0, xmitq);
52666986 1151 return 0;
f9aa358a
JPM
1152}
1153
282b3a05
JPM
1154/* tipc_link_build_reset_msg: prepare link RESET or ACTIVATE message
1155 */
1156void tipc_link_build_reset_msg(struct tipc_link *l, struct sk_buff_head *xmitq)
1157{
1158 int mtyp = RESET_MSG;
1159
1160 if (l->state == LINK_ESTABLISHING)
1161 mtyp = ACTIVATE_MSG;
1162
1163 tipc_link_build_proto_msg(l, mtyp, 0, 0, 0, 0, xmitq);
1164}
1165
f9aa358a
JPM
1166/* tipc_link_build_nack_msg: prepare link nack message for transmission
1167 */
1168static void tipc_link_build_nack_msg(struct tipc_link *l,
1169 struct sk_buff_head *xmitq)
1170{
1171 u32 def_cnt = ++l->stats.deferred_recv;
1172
52666986
JPM
1173 if (link_is_bc_rcvlink(l))
1174 return;
1175
f9aa358a
JPM
1176 if ((skb_queue_len(&l->deferdq) == 1) || !(def_cnt % TIPC_NACK_INTV))
1177 tipc_link_build_proto_msg(l, STATE_MSG, 0, 0, 0, 0, xmitq);
1178}
1179
d999297c 1180/* tipc_link_rcv - process TIPC packets/messages arriving from off-node
f9aa358a 1181 * @l: the link that should handle the message
d999297c
JPM
1182 * @skb: TIPC packet
1183 * @xmitq: queue to place packets to be sent after this call
1184 */
1185int tipc_link_rcv(struct tipc_link *l, struct sk_buff *skb,
1186 struct sk_buff_head *xmitq)
1187{
f9aa358a 1188 struct sk_buff_head *defq = &l->deferdq;
d999297c 1189 struct tipc_msg *hdr;
81204c49 1190 u16 seqno, rcv_nxt, win_lim;
d999297c
JPM
1191 int rc = 0;
1192
f9aa358a 1193 do {
d999297c 1194 hdr = buf_msg(skb);
f9aa358a
JPM
1195 seqno = msg_seqno(hdr);
1196 rcv_nxt = l->rcv_nxt;
81204c49 1197 win_lim = rcv_nxt + TIPC_MAX_LINK_WIN;
d999297c
JPM
1198
1199 /* Verify and update link state */
f9aa358a
JPM
1200 if (unlikely(msg_user(hdr) == LINK_PROTOCOL))
1201 return tipc_link_proto_rcv(l, skb, xmitq);
d999297c 1202
662921cd 1203 if (unlikely(!link_is_up(l))) {
73f646ce
JPM
1204 if (l->state == LINK_ESTABLISHING)
1205 rc = TIPC_LINK_UP_EVT;
1206 goto drop;
d999297c
JPM
1207 }
1208
f9aa358a 1209 /* Don't send probe at next timeout expiration */
d999297c
JPM
1210 l->silent_intv_cnt = 0;
1211
81204c49
JPM
1212 /* Drop if outside receive window */
1213 if (unlikely(less(seqno, rcv_nxt) || more(seqno, win_lim))) {
1214 l->stats.duplicates++;
1215 goto drop;
1216 }
1217
d999297c
JPM
1218 /* Forward queues and wake up waiting users */
1219 if (likely(tipc_link_release_pkts(l, msg_ack(hdr)))) {
1220 tipc_link_advance_backlog(l, xmitq);
1221 if (unlikely(!skb_queue_empty(&l->wakeupq)))
1222 link_prepare_wakeup(l);
1223 }
1224
81204c49
JPM
1225 /* Defer delivery if sequence gap */
1226 if (unlikely(seqno != rcv_nxt)) {
8306f99a 1227 __tipc_skb_queue_sorted(defq, seqno, skb);
f9aa358a
JPM
1228 tipc_link_build_nack_msg(l, xmitq);
1229 break;
d999297c
JPM
1230 }
1231
81204c49 1232 /* Deliver packet */
d999297c
JPM
1233 l->rcv_nxt++;
1234 l->stats.recv_info++;
f9aa358a 1235 if (!tipc_data_input(l, skb, l->inputq))
52666986 1236 rc |= tipc_link_input(l, skb, l->inputq);
f9aa358a 1237 if (unlikely(++l->rcv_unacked >= TIPC_MIN_LINK_WIN))
52666986
JPM
1238 rc |= tipc_link_build_ack_msg(l, xmitq);
1239 if (unlikely(rc & ~TIPC_LINK_SND_BC_ACK))
1240 break;
f9aa358a
JPM
1241 } while ((skb = __skb_dequeue(defq)));
1242
1243 return rc;
1244drop:
1245 kfree_skb(skb);
d999297c
JPM
1246 return rc;
1247}
1248
2c53040f 1249/**
8809b255
AS
1250 * tipc_link_defer_pkt - Add out-of-sequence message to deferred reception queue
1251 *
1252 * Returns increase in queue length (i.e. 0 or 1)
b97bf3fd 1253 */
bc6fecd4 1254u32 tipc_link_defer_pkt(struct sk_buff_head *list, struct sk_buff *skb)
b97bf3fd 1255{
bc6fecd4 1256 struct sk_buff *skb1;
e4bf4f76 1257 u16 seq_no = buf_seqno(skb);
b97bf3fd
PL
1258
1259 /* Empty queue ? */
bc6fecd4
YX
1260 if (skb_queue_empty(list)) {
1261 __skb_queue_tail(list, skb);
b97bf3fd
PL
1262 return 1;
1263 }
1264
1265 /* Last ? */
bc6fecd4
YX
1266 if (less(buf_seqno(skb_peek_tail(list)), seq_no)) {
1267 __skb_queue_tail(list, skb);
b97bf3fd
PL
1268 return 1;
1269 }
1270
8809b255 1271 /* Locate insertion point in queue, then insert; discard if duplicate */
bc6fecd4 1272 skb_queue_walk(list, skb1) {
e4bf4f76 1273 u16 curr_seqno = buf_seqno(skb1);
b97bf3fd 1274
8809b255 1275 if (seq_no == curr_seqno) {
bc6fecd4 1276 kfree_skb(skb);
8809b255 1277 return 0;
b97bf3fd 1278 }
8809b255
AS
1279
1280 if (less(seq_no, curr_seqno))
b97bf3fd 1281 break;
8809b255 1282 }
b97bf3fd 1283
bc6fecd4 1284 __skb_queue_before(list, skb1, skb);
8809b255 1285 return 1;
b97bf3fd
PL
1286}
1287
b97bf3fd
PL
1288/*
1289 * Send protocol message to the other endpoint.
1290 */
426cc2b8 1291void tipc_link_proto_xmit(struct tipc_link *l, u32 msg_typ, int probe_msg,
ed193ece 1292 u32 gap, u32 tolerance, u32 priority)
b97bf3fd 1293{
426cc2b8
JPM
1294 struct sk_buff *skb = NULL;
1295 struct sk_buff_head xmitq;
b97bf3fd 1296
426cc2b8
JPM
1297 __skb_queue_head_init(&xmitq);
1298 tipc_link_build_proto_msg(l, msg_typ, probe_msg, gap,
1299 tolerance, priority, &xmitq);
1300 skb = __skb_dequeue(&xmitq);
1301 if (!skb)
b97bf3fd 1302 return;
60852d67 1303 tipc_bearer_xmit_skb(l->owner->net, l->bearer_id, skb, l->media_addr);
426cc2b8 1304 l->rcv_unacked = 0;
b97bf3fd
PL
1305}
1306
426cc2b8
JPM
1307static void tipc_link_build_proto_msg(struct tipc_link *l, int mtyp, bool probe,
1308 u16 rcvgap, int tolerance, int priority,
1309 struct sk_buff_head *xmitq)
1310{
1311 struct sk_buff *skb = NULL;
1312 struct tipc_msg *hdr = l->pmsg;
52666986 1313 bool node_up = link_is_up(l->bc_rcvlink);
426cc2b8
JPM
1314
1315 /* Don't send protocol message during reset or link failover */
662921cd 1316 if (tipc_link_is_blocked(l))
426cc2b8
JPM
1317 return;
1318
426cc2b8
JPM
1319 msg_set_type(hdr, mtyp);
1320 msg_set_net_plane(hdr, l->net_plane);
52666986
JPM
1321 msg_set_next_sent(hdr, l->snd_nxt);
1322 msg_set_ack(hdr, l->rcv_nxt - 1);
1323 msg_set_bcast_ack(hdr, l->bc_rcvlink->rcv_nxt - 1);
1324 msg_set_last_bcast(hdr, l->bc_sndlink->snd_nxt - 1);
426cc2b8
JPM
1325 msg_set_link_tolerance(hdr, tolerance);
1326 msg_set_linkprio(hdr, priority);
1327 msg_set_redundant_link(hdr, node_up);
1328 msg_set_seq_gap(hdr, 0);
1329
1330 /* Compatibility: created msg must not be in sequence with pkt flow */
52666986 1331 msg_set_seqno(hdr, l->snd_nxt + U16_MAX / 2);
426cc2b8
JPM
1332
1333 if (mtyp == STATE_MSG) {
1334 if (!tipc_link_is_up(l))
1335 return;
426cc2b8
JPM
1336
1337 /* Override rcvgap if there are packets in deferred queue */
1338 if (!skb_queue_empty(&l->deferdq))
52666986 1339 rcvgap = buf_seqno(skb_peek(&l->deferdq)) - l->rcv_nxt;
426cc2b8
JPM
1340 if (rcvgap) {
1341 msg_set_seq_gap(hdr, rcvgap);
1342 l->stats.sent_nacks++;
1343 }
426cc2b8
JPM
1344 msg_set_probe(hdr, probe);
1345 if (probe)
1346 l->stats.sent_probes++;
1347 l->stats.sent_states++;
52666986 1348 l->rcv_unacked = 0;
426cc2b8
JPM
1349 } else {
1350 /* RESET_MSG or ACTIVATE_MSG */
1351 msg_set_max_pkt(hdr, l->advertised_mtu);
6e498158 1352 msg_set_ack(hdr, l->rcv_nxt - 1);
426cc2b8
JPM
1353 msg_set_next_sent(hdr, 1);
1354 }
1355 skb = tipc_buf_acquire(msg_size(hdr));
1356 if (!skb)
1357 return;
1358 skb_copy_to_linear_data(skb, hdr, msg_size(hdr));
1359 skb->priority = TC_PRIO_CONTROL;
6e498158 1360 __skb_queue_tail(xmitq, skb);
b97bf3fd
PL
1361}
1362
6e498158 1363/* tipc_link_tnl_prepare(): prepare and return a list of tunnel packets
f9aa358a 1364 * with contents of the link's transmit and backlog queues.
b97bf3fd 1365 */
6e498158
JPM
1366void tipc_link_tnl_prepare(struct tipc_link *l, struct tipc_link *tnl,
1367 int mtyp, struct sk_buff_head *xmitq)
b97bf3fd 1368{
6e498158
JPM
1369 struct sk_buff *skb, *tnlskb;
1370 struct tipc_msg *hdr, tnlhdr;
1371 struct sk_buff_head *queue = &l->transmq;
1372 struct sk_buff_head tmpxq, tnlq;
1373 u16 pktlen, pktcnt, seqno = l->snd_nxt;
b97bf3fd 1374
6e498158 1375 if (!tnl)
b97bf3fd
PL
1376 return;
1377
6e498158
JPM
1378 skb_queue_head_init(&tnlq);
1379 skb_queue_head_init(&tmpxq);
dd3f9e70 1380
6e498158
JPM
1381 /* At least one packet required for safe algorithm => add dummy */
1382 skb = tipc_msg_create(TIPC_LOW_IMPORTANCE, TIPC_DIRECT_MSG,
1383 BASIC_H_SIZE, 0, l->addr, link_own_addr(l),
1384 0, 0, TIPC_ERR_NO_PORT);
1385 if (!skb) {
1386 pr_warn("%sunable to create tunnel packet\n", link_co_err);
b97bf3fd
PL
1387 return;
1388 }
6e498158
JPM
1389 skb_queue_tail(&tnlq, skb);
1390 tipc_link_xmit(l, &tnlq, &tmpxq);
1391 __skb_queue_purge(&tmpxq);
1392
1393 /* Initialize reusable tunnel packet header */
1394 tipc_msg_init(link_own_addr(l), &tnlhdr, TUNNEL_PROTOCOL,
1395 mtyp, INT_H_SIZE, l->addr);
1396 pktcnt = skb_queue_len(&l->transmq) + skb_queue_len(&l->backlogq);
1397 msg_set_msgcnt(&tnlhdr, pktcnt);
1398 msg_set_bearer_id(&tnlhdr, l->peer_bearer_id);
1399tnl:
1400 /* Wrap each packet into a tunnel packet */
05dcc5aa 1401 skb_queue_walk(queue, skb) {
6e498158
JPM
1402 hdr = buf_msg(skb);
1403 if (queue == &l->backlogq)
1404 msg_set_seqno(hdr, seqno++);
1405 pktlen = msg_size(hdr);
1406 msg_set_size(&tnlhdr, pktlen + INT_H_SIZE);
1407 tnlskb = tipc_buf_acquire(pktlen + INT_H_SIZE);
1408 if (!tnlskb) {
1409 pr_warn("%sunable to send packet\n", link_co_err);
b97bf3fd
PL
1410 return;
1411 }
6e498158
JPM
1412 skb_copy_to_linear_data(tnlskb, &tnlhdr, INT_H_SIZE);
1413 skb_copy_to_linear_data_offset(tnlskb, INT_H_SIZE, hdr, pktlen);
1414 __skb_queue_tail(&tnlq, tnlskb);
b97bf3fd 1415 }
6e498158
JPM
1416 if (queue != &l->backlogq) {
1417 queue = &l->backlogq;
1418 goto tnl;
f006c9c7 1419 }
1dab3d5a 1420
6e498158 1421 tipc_link_xmit(tnl, &tnlq, xmitq);
b97bf3fd 1422
6e498158
JPM
1423 if (mtyp == FAILOVER_MSG) {
1424 tnl->drop_point = l->rcv_nxt;
1425 tnl->failover_reasm_skb = l->reasm_buf;
1426 l->reasm_buf = NULL;
2da71425 1427 }
b97bf3fd
PL
1428}
1429
d999297c
JPM
1430/* tipc_link_proto_rcv(): receive link level protocol message :
1431 * Note that network plane id propagates through the network, and may
1432 * change at any time. The node with lowest numerical id determines
1433 * network plane
1434 */
1435static int tipc_link_proto_rcv(struct tipc_link *l, struct sk_buff *skb,
1436 struct sk_buff_head *xmitq)
1437{
1438 struct tipc_msg *hdr = buf_msg(skb);
1439 u16 rcvgap = 0;
c1ab3f1d
JPM
1440 u16 ack = msg_ack(hdr);
1441 u16 gap = msg_seq_gap(hdr);
d999297c
JPM
1442 u16 peers_snd_nxt = msg_next_sent(hdr);
1443 u16 peers_tol = msg_link_tolerance(hdr);
1444 u16 peers_prio = msg_linkprio(hdr);
2be80c2d 1445 u16 rcv_nxt = l->rcv_nxt;
73f646ce 1446 int mtyp = msg_type(hdr);
d999297c
JPM
1447 char *if_name;
1448 int rc = 0;
1449
52666986 1450 if (tipc_link_is_blocked(l) || !xmitq)
d999297c
JPM
1451 goto exit;
1452
1453 if (link_own_addr(l) > msg_prevnode(hdr))
1454 l->net_plane = msg_net_plane(hdr);
1455
73f646ce 1456 switch (mtyp) {
d999297c
JPM
1457 case RESET_MSG:
1458
1459 /* Ignore duplicate RESET with old session number */
1460 if ((less_eq(msg_session(hdr), l->peer_session)) &&
1461 (l->peer_session != WILDCARD_SESSION))
1462 break;
1463 /* fall thru' */
662921cd 1464
d999297c
JPM
1465 case ACTIVATE_MSG:
1466
1467 /* Complete own link name with peer's interface name */
1468 if_name = strrchr(l->name, ':') + 1;
1469 if (sizeof(l->name) - (if_name - l->name) <= TIPC_MAX_IF_NAME)
1470 break;
1471 if (msg_data_sz(hdr) < TIPC_MAX_IF_NAME)
1472 break;
1473 strncpy(if_name, msg_data(hdr), TIPC_MAX_IF_NAME);
1474
1475 /* Update own tolerance if peer indicates a non-zero value */
1476 if (in_range(peers_tol, TIPC_MIN_LINK_TOL, TIPC_MAX_LINK_TOL))
1477 l->tolerance = peers_tol;
1478
1479 /* Update own priority if peer's priority is higher */
1480 if (in_range(peers_prio, l->priority + 1, TIPC_MAX_LINK_PRI))
1481 l->priority = peers_prio;
1482
73f646ce
JPM
1483 /* ACTIVATE_MSG serves as PEER_RESET if link is already down */
1484 if ((mtyp == RESET_MSG) || !link_is_up(l))
1485 rc = tipc_link_fsm_evt(l, LINK_PEER_RESET_EVT);
1486
1487 /* ACTIVATE_MSG takes up link if it was already locally reset */
1488 if ((mtyp == ACTIVATE_MSG) && (l->state == LINK_ESTABLISHING))
1489 rc = TIPC_LINK_UP_EVT;
1490
d999297c
JPM
1491 l->peer_session = msg_session(hdr);
1492 l->peer_bearer_id = msg_bearer_id(hdr);
d999297c
JPM
1493 if (l->mtu > msg_max_pkt(hdr))
1494 l->mtu = msg_max_pkt(hdr);
1495 break;
662921cd 1496
d999297c 1497 case STATE_MSG:
662921cd 1498
d999297c
JPM
1499 /* Update own tolerance if peer indicates a non-zero value */
1500 if (in_range(peers_tol, TIPC_MIN_LINK_TOL, TIPC_MAX_LINK_TOL))
1501 l->tolerance = peers_tol;
1502
1503 l->silent_intv_cnt = 0;
1504 l->stats.recv_states++;
1505 if (msg_probe(hdr))
1506 l->stats.recv_probes++;
73f646ce
JPM
1507
1508 if (!link_is_up(l)) {
1509 if (l->state == LINK_ESTABLISHING)
1510 rc = TIPC_LINK_UP_EVT;
d999297c 1511 break;
73f646ce 1512 }
d999297c 1513
662921cd 1514 /* Send NACK if peer has sent pkts we haven't received yet */
2be80c2d 1515 if (more(peers_snd_nxt, rcv_nxt) && !tipc_link_is_synching(l))
d999297c
JPM
1516 rcvgap = peers_snd_nxt - l->rcv_nxt;
1517 if (rcvgap || (msg_probe(hdr)))
1518 tipc_link_build_proto_msg(l, STATE_MSG, 0, rcvgap,
16040894 1519 0, 0, xmitq);
c1ab3f1d 1520 tipc_link_release_pkts(l, ack);
d999297c
JPM
1521
1522 /* If NACK, retransmit will now start at right position */
c1ab3f1d
JPM
1523 if (gap) {
1524 rc = tipc_link_retrans(l, ack + 1, ack + gap, xmitq);
d999297c
JPM
1525 l->stats.recv_nacks++;
1526 }
662921cd 1527
d999297c
JPM
1528 tipc_link_advance_backlog(l, xmitq);
1529 if (unlikely(!skb_queue_empty(&l->wakeupq)))
1530 link_prepare_wakeup(l);
1531 }
1532exit:
1533 kfree_skb(skb);
1534 return rc;
1535}
1536
52666986
JPM
1537/* tipc_link_build_bc_proto_msg() - create broadcast protocol message
1538 */
1539static bool tipc_link_build_bc_proto_msg(struct tipc_link *l, bool bcast,
1540 u16 peers_snd_nxt,
1541 struct sk_buff_head *xmitq)
1542{
1543 struct sk_buff *skb;
1544 struct tipc_msg *hdr;
1545 struct sk_buff *dfrd_skb = skb_peek(&l->deferdq);
1546 u16 ack = l->rcv_nxt - 1;
1547 u16 gap_to = peers_snd_nxt - 1;
1548
1549 skb = tipc_msg_create(BCAST_PROTOCOL, STATE_MSG, INT_H_SIZE,
1550 0, l->addr, link_own_addr(l), 0, 0, 0);
1551 if (!skb)
1552 return false;
1553 hdr = buf_msg(skb);
1554 msg_set_last_bcast(hdr, l->bc_sndlink->snd_nxt - 1);
1555 msg_set_bcast_ack(hdr, ack);
1556 msg_set_bcgap_after(hdr, ack);
1557 if (dfrd_skb)
1558 gap_to = buf_seqno(dfrd_skb) - 1;
1559 msg_set_bcgap_to(hdr, gap_to);
1560 msg_set_non_seq(hdr, bcast);
1561 __skb_queue_tail(xmitq, skb);
1562 return true;
1563}
1564
1565/* tipc_link_build_bc_init_msg() - synchronize broadcast link endpoints.
1566 *
1567 * Give a newly added peer node the sequence number where it should
1568 * start receiving and acking broadcast packets.
1569 */
1570void tipc_link_build_bc_init_msg(struct tipc_link *l,
1571 struct sk_buff_head *xmitq)
1572{
1573 struct sk_buff_head list;
1574
1575 __skb_queue_head_init(&list);
1576 if (!tipc_link_build_bc_proto_msg(l->bc_rcvlink, false, 0, &list))
1577 return;
1578 tipc_link_xmit(l, &list, xmitq);
1579}
1580
1581/* tipc_link_bc_init_rcv - receive initial broadcast synch data from peer
1582 */
1583void tipc_link_bc_init_rcv(struct tipc_link *l, struct tipc_msg *hdr)
1584{
1585 int mtyp = msg_type(hdr);
1586 u16 peers_snd_nxt = msg_bc_snd_nxt(hdr);
1587
1588 if (link_is_up(l))
1589 return;
1590
1591 if (msg_user(hdr) == BCAST_PROTOCOL) {
1592 l->rcv_nxt = peers_snd_nxt;
1593 l->state = LINK_ESTABLISHED;
1594 return;
1595 }
1596
1597 if (l->peer_caps & TIPC_BCAST_SYNCH)
1598 return;
1599
1600 if (msg_peer_node_is_up(hdr))
1601 return;
1602
1603 /* Compatibility: accept older, less safe initial synch data */
1604 if ((mtyp == RESET_MSG) || (mtyp == ACTIVATE_MSG))
1605 l->rcv_nxt = peers_snd_nxt;
1606}
1607
1608/* tipc_link_bc_sync_rcv - update rcv link according to peer's send state
1609 */
1610void tipc_link_bc_sync_rcv(struct tipc_link *l, struct tipc_msg *hdr,
1611 struct sk_buff_head *xmitq)
1612{
1613 u16 peers_snd_nxt = msg_bc_snd_nxt(hdr);
1614
1615 if (!link_is_up(l))
1616 return;
1617
1618 if (!msg_peer_node_is_up(hdr))
1619 return;
1620
1621 l->bc_peer_is_up = true;
1622
1623 /* Ignore if peers_snd_nxt goes beyond receive window */
1624 if (more(peers_snd_nxt, l->rcv_nxt + l->window))
1625 return;
1626
1627 if (!more(peers_snd_nxt, l->rcv_nxt)) {
1628 l->nack_state = BC_NACK_SND_CONDITIONAL;
1629 return;
1630 }
1631
1632 /* Don't NACK if one was recently sent or peeked */
1633 if (l->nack_state == BC_NACK_SND_SUPPRESS) {
1634 l->nack_state = BC_NACK_SND_UNCONDITIONAL;
1635 return;
1636 }
1637
1638 /* Conditionally delay NACK sending until next synch rcv */
1639 if (l->nack_state == BC_NACK_SND_CONDITIONAL) {
1640 l->nack_state = BC_NACK_SND_UNCONDITIONAL;
1641 if ((peers_snd_nxt - l->rcv_nxt) < TIPC_MIN_LINK_WIN)
1642 return;
1643 }
1644
1645 /* Send NACK now but suppress next one */
1646 tipc_link_build_bc_proto_msg(l, true, peers_snd_nxt, xmitq);
1647 l->nack_state = BC_NACK_SND_SUPPRESS;
1648}
1649
1650void tipc_link_bc_ack_rcv(struct tipc_link *l, u16 acked,
1651 struct sk_buff_head *xmitq)
1652{
1653 struct sk_buff *skb, *tmp;
1654 struct tipc_link *snd_l = l->bc_sndlink;
1655
1656 if (!link_is_up(l) || !l->bc_peer_is_up)
1657 return;
1658
1659 if (!more(acked, l->acked))
1660 return;
1661
1662 /* Skip over packets peer has already acked */
1663 skb_queue_walk(&snd_l->transmq, skb) {
1664 if (more(buf_seqno(skb), l->acked))
1665 break;
1666 }
1667
1668 /* Update/release the packets peer is acking now */
1669 skb_queue_walk_from_safe(&snd_l->transmq, skb, tmp) {
1670 if (more(buf_seqno(skb), acked))
1671 break;
1672 if (!--TIPC_SKB_CB(skb)->ackers) {
1673 __skb_unlink(skb, &snd_l->transmq);
1674 kfree_skb(skb);
1675 }
1676 }
1677 l->acked = acked;
1678 tipc_link_advance_backlog(snd_l, xmitq);
1679 if (unlikely(!skb_queue_empty(&snd_l->wakeupq)))
1680 link_prepare_wakeup(snd_l);
1681}
1682
1683/* tipc_link_bc_nack_rcv(): receive broadcast nack message
1684 */
1685int tipc_link_bc_nack_rcv(struct tipc_link *l, struct sk_buff *skb,
1686 struct sk_buff_head *xmitq)
1687{
1688 struct tipc_msg *hdr = buf_msg(skb);
1689 u32 dnode = msg_destnode(hdr);
1690 int mtyp = msg_type(hdr);
1691 u16 acked = msg_bcast_ack(hdr);
1692 u16 from = acked + 1;
1693 u16 to = msg_bcgap_to(hdr);
1694 u16 peers_snd_nxt = to + 1;
1695 int rc = 0;
1696
1697 kfree_skb(skb);
1698
1699 if (!tipc_link_is_up(l) || !l->bc_peer_is_up)
1700 return 0;
1701
1702 if (mtyp != STATE_MSG)
1703 return 0;
1704
1705 if (dnode == link_own_addr(l)) {
1706 tipc_link_bc_ack_rcv(l, acked, xmitq);
1707 rc = tipc_link_retrans(l->bc_sndlink, from, to, xmitq);
1708 l->stats.recv_nacks++;
1709 return rc;
1710 }
1711
1712 /* Msg for other node => suppress own NACK at next sync if applicable */
1713 if (more(peers_snd_nxt, l->rcv_nxt) && !less(l->rcv_nxt, from))
1714 l->nack_state = BC_NACK_SND_SUPPRESS;
1715
1716 return 0;
1717}
1718
e3eea1eb 1719void tipc_link_set_queue_limits(struct tipc_link *l, u32 win)
b97bf3fd 1720{
ed193ece 1721 int max_bulk = TIPC_MAX_PUBLICATIONS / (l->mtu / ITEM_SIZE);
e3eea1eb
JPM
1722
1723 l->window = win;
1f66d161
JPM
1724 l->backlog[TIPC_LOW_IMPORTANCE].limit = win / 2;
1725 l->backlog[TIPC_MEDIUM_IMPORTANCE].limit = win;
1726 l->backlog[TIPC_HIGH_IMPORTANCE].limit = win / 2 * 3;
1727 l->backlog[TIPC_CRITICAL_IMPORTANCE].limit = win * 2;
1728 l->backlog[TIPC_SYSTEM_IMPORTANCE].limit = max_bulk;
b97bf3fd
PL
1729}
1730
e099e86c 1731/* tipc_link_find_owner - locate owner node of link by link's name
f2f9800d 1732 * @net: the applicable net namespace
e099e86c
JPM
1733 * @name: pointer to link name string
1734 * @bearer_id: pointer to index in 'node->links' array where the link was found.
c4307285 1735 *
e099e86c 1736 * Returns pointer to node owning the link, or 0 if no matching link is found.
b97bf3fd 1737 */
f2f9800d
YX
1738static struct tipc_node *tipc_link_find_owner(struct net *net,
1739 const char *link_name,
e099e86c 1740 unsigned int *bearer_id)
b97bf3fd 1741{
f2f9800d 1742 struct tipc_net *tn = net_generic(net, tipc_net_id);
a18c4bc3 1743 struct tipc_link *l_ptr;
bbfbe47c 1744 struct tipc_node *n_ptr;
886eaa1f 1745 struct tipc_node *found_node = NULL;
bbfbe47c 1746 int i;
b97bf3fd 1747
e099e86c 1748 *bearer_id = 0;
6c7a762e 1749 rcu_read_lock();
f2f9800d 1750 list_for_each_entry_rcu(n_ptr, &tn->node_list, list) {
a11607f5 1751 tipc_node_lock(n_ptr);
bbfbe47c 1752 for (i = 0; i < MAX_BEARERS; i++) {
9d13ec65 1753 l_ptr = n_ptr->links[i].link;
e099e86c
JPM
1754 if (l_ptr && !strcmp(l_ptr->name, link_name)) {
1755 *bearer_id = i;
1756 found_node = n_ptr;
1757 break;
1758 }
bbfbe47c 1759 }
a11607f5 1760 tipc_node_unlock(n_ptr);
e099e86c
JPM
1761 if (found_node)
1762 break;
bbfbe47c 1763 }
6c7a762e
YX
1764 rcu_read_unlock();
1765
e099e86c 1766 return found_node;
b97bf3fd
PL
1767}
1768
b97bf3fd
PL
1769/**
1770 * link_reset_statistics - reset link statistics
1771 * @l_ptr: pointer to link
1772 */
a18c4bc3 1773static void link_reset_statistics(struct tipc_link *l_ptr)
b97bf3fd
PL
1774{
1775 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
a97b9d3f
JPM
1776 l_ptr->stats.sent_info = l_ptr->snd_nxt;
1777 l_ptr->stats.recv_info = l_ptr->rcv_nxt;
b97bf3fd
PL
1778}
1779
1a20cc25 1780static void link_print(struct tipc_link *l, const char *str)
b97bf3fd 1781{
1a20cc25 1782 struct sk_buff *hskb = skb_peek(&l->transmq);
c1ab3f1d 1783 u16 head = hskb ? msg_seqno(buf_msg(hskb)) : l->snd_nxt - 1;
1a20cc25 1784 u16 tail = l->snd_nxt - 1;
7a2f7d18 1785
662921cd 1786 pr_info("%s Link <%s> state %x\n", str, l->name, l->state);
1a20cc25
JPM
1787 pr_info("XMTQ: %u [%u-%u], BKLGQ: %u, SNDNX: %u, RCVNX: %u\n",
1788 skb_queue_len(&l->transmq), head, tail,
1789 skb_queue_len(&l->backlogq), l->snd_nxt, l->rcv_nxt);
b97bf3fd 1790}
0655f6a8
RA
1791
1792/* Parse and validate nested (link) properties valid for media, bearer and link
1793 */
1794int tipc_nl_parse_link_prop(struct nlattr *prop, struct nlattr *props[])
1795{
1796 int err;
1797
1798 err = nla_parse_nested(props, TIPC_NLA_PROP_MAX, prop,
1799 tipc_nl_prop_policy);
1800 if (err)
1801 return err;
1802
1803 if (props[TIPC_NLA_PROP_PRIO]) {
1804 u32 prio;
1805
1806 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
1807 if (prio > TIPC_MAX_LINK_PRI)
1808 return -EINVAL;
1809 }
1810
1811 if (props[TIPC_NLA_PROP_TOL]) {
1812 u32 tol;
1813
1814 tol = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
1815 if ((tol < TIPC_MIN_LINK_TOL) || (tol > TIPC_MAX_LINK_TOL))
1816 return -EINVAL;
1817 }
1818
1819 if (props[TIPC_NLA_PROP_WIN]) {
1820 u32 win;
1821
1822 win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
1823 if ((win < TIPC_MIN_LINK_WIN) || (win > TIPC_MAX_LINK_WIN))
1824 return -EINVAL;
1825 }
1826
1827 return 0;
1828}
7be57fc6 1829
f96ce7a2
RA
1830int tipc_nl_link_set(struct sk_buff *skb, struct genl_info *info)
1831{
1832 int err;
1833 int res = 0;
1834 int bearer_id;
1835 char *name;
1836 struct tipc_link *link;
1837 struct tipc_node *node;
1838 struct nlattr *attrs[TIPC_NLA_LINK_MAX + 1];
37e2d484 1839 struct net *net = sock_net(skb->sk);
f96ce7a2
RA
1840
1841 if (!info->attrs[TIPC_NLA_LINK])
1842 return -EINVAL;
1843
1844 err = nla_parse_nested(attrs, TIPC_NLA_LINK_MAX,
1845 info->attrs[TIPC_NLA_LINK],
1846 tipc_nl_link_policy);
1847 if (err)
1848 return err;
1849
1850 if (!attrs[TIPC_NLA_LINK_NAME])
1851 return -EINVAL;
1852
1853 name = nla_data(attrs[TIPC_NLA_LINK_NAME]);
1854
670f4f88
RA
1855 if (strcmp(name, tipc_bclink_name) == 0)
1856 return tipc_nl_bc_link_set(net, attrs);
1857
f2f9800d 1858 node = tipc_link_find_owner(net, name, &bearer_id);
f96ce7a2
RA
1859 if (!node)
1860 return -EINVAL;
1861
1862 tipc_node_lock(node);
1863
9d13ec65 1864 link = node->links[bearer_id].link;
f96ce7a2
RA
1865 if (!link) {
1866 res = -EINVAL;
1867 goto out;
1868 }
1869
1870 if (attrs[TIPC_NLA_LINK_PROP]) {
1871 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
1872
1873 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_LINK_PROP],
1874 props);
1875 if (err) {
1876 res = err;
1877 goto out;
1878 }
1879
1880 if (props[TIPC_NLA_PROP_TOL]) {
1881 u32 tol;
1882
1883 tol = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
8a1577c9 1884 link->tolerance = tol;
ed193ece 1885 tipc_link_proto_xmit(link, STATE_MSG, 0, 0, tol, 0);
f96ce7a2
RA
1886 }
1887 if (props[TIPC_NLA_PROP_PRIO]) {
1888 u32 prio;
1889
1890 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
1891 link->priority = prio;
ed193ece 1892 tipc_link_proto_xmit(link, STATE_MSG, 0, 0, 0, prio);
f96ce7a2
RA
1893 }
1894 if (props[TIPC_NLA_PROP_WIN]) {
1895 u32 win;
1896
1897 win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
1898 tipc_link_set_queue_limits(link, win);
1899 }
1900 }
1901
1902out:
1903 tipc_node_unlock(node);
1904
1905 return res;
1906}
d8182804
RA
1907
1908static int __tipc_nl_add_stats(struct sk_buff *skb, struct tipc_stats *s)
7be57fc6
RA
1909{
1910 int i;
1911 struct nlattr *stats;
1912
1913 struct nla_map {
1914 u32 key;
1915 u32 val;
1916 };
1917
1918 struct nla_map map[] = {
1919 {TIPC_NLA_STATS_RX_INFO, s->recv_info},
1920 {TIPC_NLA_STATS_RX_FRAGMENTS, s->recv_fragments},
1921 {TIPC_NLA_STATS_RX_FRAGMENTED, s->recv_fragmented},
1922 {TIPC_NLA_STATS_RX_BUNDLES, s->recv_bundles},
1923 {TIPC_NLA_STATS_RX_BUNDLED, s->recv_bundled},
1924 {TIPC_NLA_STATS_TX_INFO, s->sent_info},
1925 {TIPC_NLA_STATS_TX_FRAGMENTS, s->sent_fragments},
1926 {TIPC_NLA_STATS_TX_FRAGMENTED, s->sent_fragmented},
1927 {TIPC_NLA_STATS_TX_BUNDLES, s->sent_bundles},
1928 {TIPC_NLA_STATS_TX_BUNDLED, s->sent_bundled},
1929 {TIPC_NLA_STATS_MSG_PROF_TOT, (s->msg_length_counts) ?
1930 s->msg_length_counts : 1},
1931 {TIPC_NLA_STATS_MSG_LEN_CNT, s->msg_length_counts},
1932 {TIPC_NLA_STATS_MSG_LEN_TOT, s->msg_lengths_total},
1933 {TIPC_NLA_STATS_MSG_LEN_P0, s->msg_length_profile[0]},
1934 {TIPC_NLA_STATS_MSG_LEN_P1, s->msg_length_profile[1]},
1935 {TIPC_NLA_STATS_MSG_LEN_P2, s->msg_length_profile[2]},
1936 {TIPC_NLA_STATS_MSG_LEN_P3, s->msg_length_profile[3]},
1937 {TIPC_NLA_STATS_MSG_LEN_P4, s->msg_length_profile[4]},
1938 {TIPC_NLA_STATS_MSG_LEN_P5, s->msg_length_profile[5]},
1939 {TIPC_NLA_STATS_MSG_LEN_P6, s->msg_length_profile[6]},
1940 {TIPC_NLA_STATS_RX_STATES, s->recv_states},
1941 {TIPC_NLA_STATS_RX_PROBES, s->recv_probes},
1942 {TIPC_NLA_STATS_RX_NACKS, s->recv_nacks},
1943 {TIPC_NLA_STATS_RX_DEFERRED, s->deferred_recv},
1944 {TIPC_NLA_STATS_TX_STATES, s->sent_states},
1945 {TIPC_NLA_STATS_TX_PROBES, s->sent_probes},
1946 {TIPC_NLA_STATS_TX_NACKS, s->sent_nacks},
1947 {TIPC_NLA_STATS_TX_ACKS, s->sent_acks},
1948 {TIPC_NLA_STATS_RETRANSMITTED, s->retransmitted},
1949 {TIPC_NLA_STATS_DUPLICATES, s->duplicates},
1950 {TIPC_NLA_STATS_LINK_CONGS, s->link_congs},
1951 {TIPC_NLA_STATS_MAX_QUEUE, s->max_queue_sz},
1952 {TIPC_NLA_STATS_AVG_QUEUE, s->queue_sz_counts ?
1953 (s->accu_queue_sz / s->queue_sz_counts) : 0}
1954 };
1955
1956 stats = nla_nest_start(skb, TIPC_NLA_LINK_STATS);
1957 if (!stats)
1958 return -EMSGSIZE;
1959
1960 for (i = 0; i < ARRAY_SIZE(map); i++)
1961 if (nla_put_u32(skb, map[i].key, map[i].val))
1962 goto msg_full;
1963
1964 nla_nest_end(skb, stats);
1965
1966 return 0;
1967msg_full:
1968 nla_nest_cancel(skb, stats);
1969
1970 return -EMSGSIZE;
1971}
1972
1973/* Caller should hold appropriate locks to protect the link */
34747539 1974static int __tipc_nl_add_link(struct net *net, struct tipc_nl_msg *msg,
f2f67390 1975 struct tipc_link *link, int nlflags)
7be57fc6
RA
1976{
1977 int err;
1978 void *hdr;
1979 struct nlattr *attrs;
1980 struct nlattr *prop;
34747539 1981 struct tipc_net *tn = net_generic(net, tipc_net_id);
7be57fc6 1982
bfb3e5dd 1983 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
f2f67390 1984 nlflags, TIPC_NL_LINK_GET);
7be57fc6
RA
1985 if (!hdr)
1986 return -EMSGSIZE;
1987
1988 attrs = nla_nest_start(msg->skb, TIPC_NLA_LINK);
1989 if (!attrs)
1990 goto msg_full;
1991
1992 if (nla_put_string(msg->skb, TIPC_NLA_LINK_NAME, link->name))
1993 goto attr_msg_full;
1994 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_DEST,
34747539 1995 tipc_cluster_mask(tn->own_addr)))
7be57fc6 1996 goto attr_msg_full;
ed193ece 1997 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_MTU, link->mtu))
7be57fc6 1998 goto attr_msg_full;
a97b9d3f 1999 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_RX, link->rcv_nxt))
7be57fc6 2000 goto attr_msg_full;
a97b9d3f 2001 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_TX, link->snd_nxt))
7be57fc6
RA
2002 goto attr_msg_full;
2003
2004 if (tipc_link_is_up(link))
2005 if (nla_put_flag(msg->skb, TIPC_NLA_LINK_UP))
2006 goto attr_msg_full;
2007 if (tipc_link_is_active(link))
2008 if (nla_put_flag(msg->skb, TIPC_NLA_LINK_ACTIVE))
2009 goto attr_msg_full;
2010
2011 prop = nla_nest_start(msg->skb, TIPC_NLA_LINK_PROP);
2012 if (!prop)
2013 goto attr_msg_full;
2014 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, link->priority))
2015 goto prop_msg_full;
2016 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, link->tolerance))
2017 goto prop_msg_full;
2018 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN,
1f66d161 2019 link->window))
7be57fc6
RA
2020 goto prop_msg_full;
2021 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, link->priority))
2022 goto prop_msg_full;
2023 nla_nest_end(msg->skb, prop);
2024
2025 err = __tipc_nl_add_stats(msg->skb, &link->stats);
2026 if (err)
2027 goto attr_msg_full;
2028
2029 nla_nest_end(msg->skb, attrs);
2030 genlmsg_end(msg->skb, hdr);
2031
2032 return 0;
2033
2034prop_msg_full:
2035 nla_nest_cancel(msg->skb, prop);
2036attr_msg_full:
2037 nla_nest_cancel(msg->skb, attrs);
2038msg_full:
2039 genlmsg_cancel(msg->skb, hdr);
2040
2041 return -EMSGSIZE;
2042}
2043
2044/* Caller should hold node lock */
34747539
YX
2045static int __tipc_nl_add_node_links(struct net *net, struct tipc_nl_msg *msg,
2046 struct tipc_node *node, u32 *prev_link)
7be57fc6
RA
2047{
2048 u32 i;
2049 int err;
2050
2051 for (i = *prev_link; i < MAX_BEARERS; i++) {
2052 *prev_link = i;
2053
9d13ec65 2054 if (!node->links[i].link)
7be57fc6
RA
2055 continue;
2056
9d13ec65
JPM
2057 err = __tipc_nl_add_link(net, msg,
2058 node->links[i].link, NLM_F_MULTI);
7be57fc6
RA
2059 if (err)
2060 return err;
2061 }
2062 *prev_link = 0;
2063
2064 return 0;
2065}
2066
2067int tipc_nl_link_dump(struct sk_buff *skb, struct netlink_callback *cb)
2068{
f2f9800d
YX
2069 struct net *net = sock_net(skb->sk);
2070 struct tipc_net *tn = net_generic(net, tipc_net_id);
7be57fc6
RA
2071 struct tipc_node *node;
2072 struct tipc_nl_msg msg;
2073 u32 prev_node = cb->args[0];
2074 u32 prev_link = cb->args[1];
2075 int done = cb->args[2];
2076 int err;
2077
2078 if (done)
2079 return 0;
2080
2081 msg.skb = skb;
2082 msg.portid = NETLINK_CB(cb->skb).portid;
2083 msg.seq = cb->nlh->nlmsg_seq;
2084
2085 rcu_read_lock();
7be57fc6 2086 if (prev_node) {
f2f9800d 2087 node = tipc_node_find(net, prev_node);
7be57fc6
RA
2088 if (!node) {
2089 /* We never set seq or call nl_dump_check_consistent()
2090 * this means that setting prev_seq here will cause the
2091 * consistence check to fail in the netlink callback
2092 * handler. Resulting in the last NLMSG_DONE message
2093 * having the NLM_F_DUMP_INTR flag set.
2094 */
2095 cb->prev_seq = 1;
2096 goto out;
2097 }
8a0f6ebe 2098 tipc_node_put(node);
7be57fc6 2099
f2f9800d
YX
2100 list_for_each_entry_continue_rcu(node, &tn->node_list,
2101 list) {
7be57fc6 2102 tipc_node_lock(node);
34747539
YX
2103 err = __tipc_nl_add_node_links(net, &msg, node,
2104 &prev_link);
7be57fc6
RA
2105 tipc_node_unlock(node);
2106 if (err)
2107 goto out;
2108
2109 prev_node = node->addr;
2110 }
2111 } else {
1da46568 2112 err = tipc_nl_add_bc_link(net, &msg);
7be57fc6
RA
2113 if (err)
2114 goto out;
2115
f2f9800d 2116 list_for_each_entry_rcu(node, &tn->node_list, list) {
7be57fc6 2117 tipc_node_lock(node);
34747539
YX
2118 err = __tipc_nl_add_node_links(net, &msg, node,
2119 &prev_link);
7be57fc6
RA
2120 tipc_node_unlock(node);
2121 if (err)
2122 goto out;
2123
2124 prev_node = node->addr;
2125 }
2126 }
2127 done = 1;
2128out:
2129 rcu_read_unlock();
2130
2131 cb->args[0] = prev_node;
2132 cb->args[1] = prev_link;
2133 cb->args[2] = done;
2134
2135 return skb->len;
2136}
2137
2138int tipc_nl_link_get(struct sk_buff *skb, struct genl_info *info)
2139{
f2f9800d 2140 struct net *net = genl_info_net(info);
7be57fc6 2141 struct tipc_nl_msg msg;
7be57fc6 2142 char *name;
7be57fc6
RA
2143 int err;
2144
670f4f88
RA
2145 msg.portid = info->snd_portid;
2146 msg.seq = info->snd_seq;
2147
7be57fc6
RA
2148 if (!info->attrs[TIPC_NLA_LINK_NAME])
2149 return -EINVAL;
7be57fc6 2150 name = nla_data(info->attrs[TIPC_NLA_LINK_NAME]);
7be57fc6 2151
670f4f88
RA
2152 msg.skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
2153 if (!msg.skb)
7be57fc6
RA
2154 return -ENOMEM;
2155
670f4f88
RA
2156 if (strcmp(name, tipc_bclink_name) == 0) {
2157 err = tipc_nl_add_bc_link(net, &msg);
2158 if (err) {
2159 nlmsg_free(msg.skb);
2160 return err;
2161 }
2162 } else {
2163 int bearer_id;
2164 struct tipc_node *node;
2165 struct tipc_link *link;
7be57fc6 2166
670f4f88
RA
2167 node = tipc_link_find_owner(net, name, &bearer_id);
2168 if (!node)
2169 return -EINVAL;
7be57fc6 2170
670f4f88 2171 tipc_node_lock(node);
9d13ec65 2172 link = node->links[bearer_id].link;
670f4f88
RA
2173 if (!link) {
2174 tipc_node_unlock(node);
2175 nlmsg_free(msg.skb);
2176 return -EINVAL;
2177 }
7be57fc6 2178
670f4f88
RA
2179 err = __tipc_nl_add_link(net, &msg, link, 0);
2180 tipc_node_unlock(node);
2181 if (err) {
2182 nlmsg_free(msg.skb);
2183 return err;
2184 }
2185 }
7be57fc6 2186
670f4f88 2187 return genlmsg_reply(msg.skb, info);
7be57fc6 2188}
ae36342b
RA
2189
2190int tipc_nl_link_reset_stats(struct sk_buff *skb, struct genl_info *info)
2191{
2192 int err;
2193 char *link_name;
2194 unsigned int bearer_id;
2195 struct tipc_link *link;
2196 struct tipc_node *node;
2197 struct nlattr *attrs[TIPC_NLA_LINK_MAX + 1];
1817877b 2198 struct net *net = sock_net(skb->sk);
ae36342b
RA
2199
2200 if (!info->attrs[TIPC_NLA_LINK])
2201 return -EINVAL;
2202
2203 err = nla_parse_nested(attrs, TIPC_NLA_LINK_MAX,
2204 info->attrs[TIPC_NLA_LINK],
2205 tipc_nl_link_policy);
2206 if (err)
2207 return err;
2208
2209 if (!attrs[TIPC_NLA_LINK_NAME])
2210 return -EINVAL;
2211
2212 link_name = nla_data(attrs[TIPC_NLA_LINK_NAME]);
2213
2214 if (strcmp(link_name, tipc_bclink_name) == 0) {
1da46568 2215 err = tipc_bclink_reset_stats(net);
ae36342b
RA
2216 if (err)
2217 return err;
2218 return 0;
2219 }
2220
f2f9800d 2221 node = tipc_link_find_owner(net, link_name, &bearer_id);
ae36342b
RA
2222 if (!node)
2223 return -EINVAL;
2224
2225 tipc_node_lock(node);
2226
9d13ec65 2227 link = node->links[bearer_id].link;
ae36342b
RA
2228 if (!link) {
2229 tipc_node_unlock(node);
2230 return -EINVAL;
2231 }
2232
2233 link_reset_statistics(link);
2234
2235 tipc_node_unlock(node);
2236
2237 return 0;
2238}