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