tipc: use RCU to protect media_ptr pointer
[deliverable/linux.git] / net / tipc / link.c
CommitLineData
b97bf3fd
PL
1/*
2 * net/tipc/link.c: TIPC link code
c4307285 3 *
170b3927 4 * Copyright (c) 1996-2007, 2012-2014, 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"
b97bf3fd 38#include "link.h"
b97bf3fd 39#include "port.h"
b97bf3fd 40#include "name_distr.h"
b97bf3fd
PL
41#include "discover.h"
42#include "config.h"
b97bf3fd 43
796c75d0
YX
44#include <linux/pkt_sched.h>
45
2cf8aa19
EH
46/*
47 * Error message prefixes
48 */
49static const char *link_co_err = "Link changeover error, ";
50static const char *link_rst_msg = "Resetting link ";
51static const char *link_unk_evt = "Unknown link event ";
b97bf3fd 52
a686e685
AS
53/*
54 * Out-of-range value for link session numbers
55 */
a686e685
AS
56#define INVALID_SESSION 0x10000
57
c4307285
YH
58/*
59 * Link state events:
b97bf3fd 60 */
b97bf3fd
PL
61#define STARTING_EVT 856384768 /* link processing trigger */
62#define TRAFFIC_MSG_EVT 560815u /* rx'd ??? */
63#define TIMEOUT_EVT 560817u /* link timer expired */
64
c4307285
YH
65/*
66 * The following two 'message types' is really just implementation
67 * data conveniently stored in the message header.
b97bf3fd
PL
68 * They must not be considered part of the protocol
69 */
70#define OPEN_MSG 0
71#define CLOSED_MSG 1
72
c4307285 73/*
b97bf3fd
PL
74 * State value stored in 'exp_msg_count'
75 */
b97bf3fd
PL
76#define START_CHANGEOVER 100000u
77
a18c4bc3 78static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
b97bf3fd 79 struct sk_buff *buf);
247f0f3c 80static void tipc_link_proto_rcv(struct tipc_link *l_ptr, struct sk_buff *buf);
3bb53380 81static int tipc_link_tunnel_rcv(struct tipc_node *n_ptr,
170b3927 82 struct sk_buff **buf);
a18c4bc3 83static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance);
247f0f3c
YX
84static int tipc_link_iovec_long_xmit(struct tipc_port *sender,
85 struct iovec const *msg_sect,
86 unsigned int len, u32 destnode);
a18c4bc3
PG
87static void link_state_event(struct tipc_link *l_ptr, u32 event);
88static void link_reset_statistics(struct tipc_link *l_ptr);
89static void link_print(struct tipc_link *l_ptr, const char *str);
247f0f3c
YX
90static int tipc_link_frag_xmit(struct tipc_link *l_ptr, struct sk_buff *buf);
91static void tipc_link_sync_xmit(struct tipc_link *l);
92static void tipc_link_sync_rcv(struct tipc_node *n, struct sk_buff *buf);
31e3c3f6 93
b97bf3fd 94/*
05790c64 95 * Simple link routines
b97bf3fd 96 */
05790c64 97static unsigned int align(unsigned int i)
b97bf3fd
PL
98{
99 return (i + 3) & ~3u;
100}
101
a18c4bc3 102static void link_init_max_pkt(struct tipc_link *l_ptr)
b97bf3fd 103{
7a2f7d18 104 struct tipc_bearer *b_ptr;
b97bf3fd 105 u32 max_pkt;
c4307285 106
7a2f7d18
YX
107 rcu_read_lock();
108 b_ptr = rcu_dereference_rtnl(bearer_list[l_ptr->bearer_id]);
109 if (!b_ptr) {
110 rcu_read_unlock();
111 return;
112 }
113 max_pkt = (b_ptr->mtu & ~3);
114 rcu_read_unlock();
115
b97bf3fd
PL
116 if (max_pkt > MAX_MSG_SIZE)
117 max_pkt = MAX_MSG_SIZE;
118
c4307285 119 l_ptr->max_pkt_target = max_pkt;
b97bf3fd
PL
120 if (l_ptr->max_pkt_target < MAX_PKT_DEFAULT)
121 l_ptr->max_pkt = l_ptr->max_pkt_target;
c4307285 122 else
b97bf3fd
PL
123 l_ptr->max_pkt = MAX_PKT_DEFAULT;
124
c4307285 125 l_ptr->max_pkt_probes = 0;
b97bf3fd
PL
126}
127
a18c4bc3 128static u32 link_next_sent(struct tipc_link *l_ptr)
b97bf3fd
PL
129{
130 if (l_ptr->next_out)
f905730c 131 return buf_seqno(l_ptr->next_out);
b97bf3fd
PL
132 return mod(l_ptr->next_out_no);
133}
134
a18c4bc3 135static u32 link_last_sent(struct tipc_link *l_ptr)
b97bf3fd
PL
136{
137 return mod(link_next_sent(l_ptr) - 1);
138}
139
140/*
05790c64 141 * Simple non-static link routines (i.e. referenced outside this file)
b97bf3fd 142 */
a18c4bc3 143int tipc_link_is_up(struct tipc_link *l_ptr)
b97bf3fd
PL
144{
145 if (!l_ptr)
146 return 0;
a02cec21 147 return link_working_working(l_ptr) || link_working_unknown(l_ptr);
b97bf3fd
PL
148}
149
a18c4bc3 150int tipc_link_is_active(struct tipc_link *l_ptr)
b97bf3fd 151{
a02cec21
ED
152 return (l_ptr->owner->active_links[0] == l_ptr) ||
153 (l_ptr->owner->active_links[1] == l_ptr);
b97bf3fd
PL
154}
155
b97bf3fd
PL
156/**
157 * link_timeout - handle expiration of link timer
158 * @l_ptr: pointer to link
b97bf3fd 159 */
a18c4bc3 160static void link_timeout(struct tipc_link *l_ptr)
b97bf3fd 161{
4323add6 162 tipc_node_lock(l_ptr->owner);
b97bf3fd
PL
163
164 /* update counters used in statistical profiling of send traffic */
b97bf3fd
PL
165 l_ptr->stats.accu_queue_sz += l_ptr->out_queue_size;
166 l_ptr->stats.queue_sz_counts++;
167
b97bf3fd
PL
168 if (l_ptr->first_out) {
169 struct tipc_msg *msg = buf_msg(l_ptr->first_out);
170 u32 length = msg_size(msg);
171
f64f9e71
JP
172 if ((msg_user(msg) == MSG_FRAGMENTER) &&
173 (msg_type(msg) == FIRST_FRAGMENT)) {
b97bf3fd
PL
174 length = msg_size(msg_get_wrapped(msg));
175 }
176 if (length) {
177 l_ptr->stats.msg_lengths_total += length;
178 l_ptr->stats.msg_length_counts++;
179 if (length <= 64)
180 l_ptr->stats.msg_length_profile[0]++;
181 else if (length <= 256)
182 l_ptr->stats.msg_length_profile[1]++;
183 else if (length <= 1024)
184 l_ptr->stats.msg_length_profile[2]++;
185 else if (length <= 4096)
186 l_ptr->stats.msg_length_profile[3]++;
187 else if (length <= 16384)
188 l_ptr->stats.msg_length_profile[4]++;
189 else if (length <= 32768)
190 l_ptr->stats.msg_length_profile[5]++;
191 else
192 l_ptr->stats.msg_length_profile[6]++;
193 }
194 }
195
196 /* do all other link processing performed on a periodic basis */
b97bf3fd
PL
197
198 link_state_event(l_ptr, TIMEOUT_EVT);
199
200 if (l_ptr->next_out)
4323add6 201 tipc_link_push_queue(l_ptr);
b97bf3fd 202
4323add6 203 tipc_node_unlock(l_ptr->owner);
b97bf3fd
PL
204}
205
a18c4bc3 206static void link_set_timer(struct tipc_link *l_ptr, u32 time)
b97bf3fd
PL
207{
208 k_start_timer(&l_ptr->timer, time);
209}
210
211/**
4323add6 212 * tipc_link_create - create a new link
37b9c08a 213 * @n_ptr: pointer to associated node
b97bf3fd 214 * @b_ptr: pointer to associated bearer
b97bf3fd 215 * @media_addr: media address to use when sending messages over link
c4307285 216 *
b97bf3fd
PL
217 * Returns pointer to link.
218 */
a18c4bc3 219struct tipc_link *tipc_link_create(struct tipc_node *n_ptr,
c61dd61d
YX
220 struct tipc_bearer *b_ptr,
221 const struct tipc_media_addr *media_addr)
b97bf3fd 222{
a18c4bc3 223 struct tipc_link *l_ptr;
b97bf3fd
PL
224 struct tipc_msg *msg;
225 char *if_name;
37b9c08a
AS
226 char addr_string[16];
227 u32 peer = n_ptr->addr;
228
229 if (n_ptr->link_cnt >= 2) {
230 tipc_addr_string_fill(addr_string, n_ptr->addr);
2cf8aa19 231 pr_err("Attempt to establish third link to %s\n", addr_string);
37b9c08a
AS
232 return NULL;
233 }
234
235 if (n_ptr->links[b_ptr->identity]) {
236 tipc_addr_string_fill(addr_string, n_ptr->addr);
2cf8aa19
EH
237 pr_err("Attempt to establish second link on <%s> to %s\n",
238 b_ptr->name, addr_string);
37b9c08a
AS
239 return NULL;
240 }
b97bf3fd 241
0da974f4 242 l_ptr = kzalloc(sizeof(*l_ptr), GFP_ATOMIC);
b97bf3fd 243 if (!l_ptr) {
2cf8aa19 244 pr_warn("Link creation failed, no memory\n");
b97bf3fd
PL
245 return NULL;
246 }
b97bf3fd
PL
247
248 l_ptr->addr = peer;
2d627b92 249 if_name = strchr(b_ptr->name, ':') + 1;
062b4c99 250 sprintf(l_ptr->name, "%u.%u.%u:%s-%u.%u.%u:unknown",
b97bf3fd 251 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
c4307285 252 tipc_node(tipc_own_addr),
b97bf3fd
PL
253 if_name,
254 tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
062b4c99 255 /* note: peer i/f name is updated by reset/activate message */
b97bf3fd 256 memcpy(&l_ptr->media_addr, media_addr, sizeof(*media_addr));
37b9c08a 257 l_ptr->owner = n_ptr;
b97bf3fd 258 l_ptr->checkpoint = 1;
f882cb76 259 l_ptr->peer_session = INVALID_SESSION;
7a2f7d18 260 l_ptr->bearer_id = b_ptr->identity;
5c216e1d 261 link_set_supervision_props(l_ptr, b_ptr->tolerance);
b97bf3fd
PL
262 l_ptr->state = RESET_UNKNOWN;
263
264 l_ptr->pmsg = (struct tipc_msg *)&l_ptr->proto_msg;
265 msg = l_ptr->pmsg;
c68ca7b7 266 tipc_msg_init(msg, LINK_PROTOCOL, RESET_MSG, INT_H_SIZE, l_ptr->addr);
b97bf3fd 267 msg_set_size(msg, sizeof(l_ptr->proto_msg));
a686e685 268 msg_set_session(msg, (tipc_random & 0xffff));
b97bf3fd
PL
269 msg_set_bearer_id(msg, b_ptr->identity);
270 strcpy((char *)msg_data(msg), if_name);
271
272 l_ptr->priority = b_ptr->priority;
5c216e1d 273 tipc_link_set_queue_limits(l_ptr, b_ptr->window);
b97bf3fd 274
7a2f7d18 275 l_ptr->net_plane = b_ptr->net_plane;
b97bf3fd
PL
276 link_init_max_pkt(l_ptr);
277
278 l_ptr->next_out_no = 1;
279 INIT_LIST_HEAD(&l_ptr->waiting_ports);
280
281 link_reset_statistics(l_ptr);
282
37b9c08a 283 tipc_node_attach_link(n_ptr, l_ptr);
b97bf3fd 284
170b3927
JPM
285 k_init_timer(&l_ptr->timer, (Handler)link_timeout,
286 (unsigned long)l_ptr);
581465fa
JPM
287
288 link_state_event(l_ptr, STARTING_EVT);
b97bf3fd 289
b97bf3fd
PL
290 return l_ptr;
291}
292
7d33939f 293void tipc_link_delete_list(unsigned int bearer_id, bool shutting_down)
8d8439b6
YX
294{
295 struct tipc_link *l_ptr;
c61dd61d 296 struct tipc_node *n_ptr;
8d8439b6 297
6c7a762e
YX
298 rcu_read_lock();
299 list_for_each_entry_rcu(n_ptr, &tipc_node_list, list) {
c61dd61d
YX
300 spin_lock_bh(&n_ptr->lock);
301 l_ptr = n_ptr->links[bearer_id];
302 if (l_ptr) {
303 tipc_link_reset(l_ptr);
7d33939f
JPM
304 if (shutting_down || !tipc_node_is_up(n_ptr)) {
305 tipc_node_detach_link(l_ptr->owner, l_ptr);
306 tipc_link_reset_fragments(l_ptr);
307 spin_unlock_bh(&n_ptr->lock);
308
309 /* Nobody else can access this link now: */
310 del_timer_sync(&l_ptr->timer);
311 kfree(l_ptr);
312 } else {
313 /* Detach/delete when failover is finished: */
314 l_ptr->flags |= LINK_STOPPED;
315 spin_unlock_bh(&n_ptr->lock);
316 del_timer_sync(&l_ptr->timer);
317 }
c61dd61d
YX
318 continue;
319 }
320 spin_unlock_bh(&n_ptr->lock);
8d8439b6 321 }
6c7a762e 322 rcu_read_unlock();
8d8439b6 323}
b97bf3fd
PL
324
325/**
c4307285 326 * link_schedule_port - schedule port for deferred sending
b97bf3fd
PL
327 * @l_ptr: pointer to link
328 * @origport: reference to sending port
329 * @sz: amount of data to be sent
c4307285
YH
330 *
331 * Schedules port for renewed sending of messages after link congestion
b97bf3fd
PL
332 * has abated.
333 */
a18c4bc3 334static int link_schedule_port(struct tipc_link *l_ptr, u32 origport, u32 sz)
b97bf3fd 335{
23dd4cce 336 struct tipc_port *p_ptr;
b97bf3fd 337
4323add6
PL
338 spin_lock_bh(&tipc_port_list_lock);
339 p_ptr = tipc_port_lock(origport);
b97bf3fd 340 if (p_ptr) {
b97bf3fd
PL
341 if (!list_empty(&p_ptr->wait_list))
342 goto exit;
23dd4cce 343 p_ptr->congested = 1;
15e979da 344 p_ptr->waiting_pkts = 1 + ((sz - 1) / l_ptr->max_pkt);
b97bf3fd
PL
345 list_add_tail(&p_ptr->wait_list, &l_ptr->waiting_ports);
346 l_ptr->stats.link_congs++;
347exit:
4323add6 348 tipc_port_unlock(p_ptr);
b97bf3fd 349 }
4323add6 350 spin_unlock_bh(&tipc_port_list_lock);
b97bf3fd
PL
351 return -ELINKCONG;
352}
353
a18c4bc3 354void tipc_link_wakeup_ports(struct tipc_link *l_ptr, int all)
b97bf3fd 355{
23dd4cce
AS
356 struct tipc_port *p_ptr;
357 struct tipc_port *temp_p_ptr;
b97bf3fd
PL
358 int win = l_ptr->queue_limit[0] - l_ptr->out_queue_size;
359
360 if (all)
361 win = 100000;
362 if (win <= 0)
363 return;
4323add6 364 if (!spin_trylock_bh(&tipc_port_list_lock))
b97bf3fd
PL
365 return;
366 if (link_congested(l_ptr))
367 goto exit;
c4307285 368 list_for_each_entry_safe(p_ptr, temp_p_ptr, &l_ptr->waiting_ports,
b97bf3fd
PL
369 wait_list) {
370 if (win <= 0)
371 break;
372 list_del_init(&p_ptr->wait_list);
23dd4cce
AS
373 spin_lock_bh(p_ptr->lock);
374 p_ptr->congested = 0;
24be34b5 375 tipc_port_wakeup(p_ptr);
b97bf3fd 376 win -= p_ptr->waiting_pkts;
23dd4cce 377 spin_unlock_bh(p_ptr->lock);
b97bf3fd
PL
378 }
379
380exit:
4323add6 381 spin_unlock_bh(&tipc_port_list_lock);
b97bf3fd
PL
382}
383
c4307285 384/**
b97bf3fd
PL
385 * link_release_outqueue - purge link's outbound message queue
386 * @l_ptr: pointer to link
387 */
a18c4bc3 388static void link_release_outqueue(struct tipc_link *l_ptr)
b97bf3fd 389{
d77b3831 390 kfree_skb_list(l_ptr->first_out);
b97bf3fd
PL
391 l_ptr->first_out = NULL;
392 l_ptr->out_queue_size = 0;
393}
394
395/**
4323add6 396 * tipc_link_reset_fragments - purge link's inbound message fragments queue
b97bf3fd
PL
397 * @l_ptr: pointer to link
398 */
a18c4bc3 399void tipc_link_reset_fragments(struct tipc_link *l_ptr)
b97bf3fd 400{
40ba3cdf
EH
401 kfree_skb(l_ptr->reasm_head);
402 l_ptr->reasm_head = NULL;
403 l_ptr->reasm_tail = NULL;
b97bf3fd
PL
404}
405
c4307285 406/**
581465fa 407 * tipc_link_purge_queues - purge all pkt queues associated with link
b97bf3fd
PL
408 * @l_ptr: pointer to link
409 */
581465fa 410void tipc_link_purge_queues(struct tipc_link *l_ptr)
b97bf3fd 411{
d77b3831
YX
412 kfree_skb_list(l_ptr->oldest_deferred_in);
413 kfree_skb_list(l_ptr->first_out);
4323add6 414 tipc_link_reset_fragments(l_ptr);
5f6d9123 415 kfree_skb(l_ptr->proto_msg_queue);
b97bf3fd
PL
416 l_ptr->proto_msg_queue = NULL;
417}
418
a18c4bc3 419void tipc_link_reset(struct tipc_link *l_ptr)
b97bf3fd 420{
b97bf3fd
PL
421 u32 prev_state = l_ptr->state;
422 u32 checkpoint = l_ptr->next_in_no;
5392d646 423 int was_active_link = tipc_link_is_active(l_ptr);
c4307285 424
a686e685 425 msg_set_session(l_ptr->pmsg, ((msg_session(l_ptr->pmsg) + 1) & 0xffff));
b97bf3fd 426
a686e685
AS
427 /* Link is down, accept any session */
428 l_ptr->peer_session = INVALID_SESSION;
b97bf3fd 429
c4307285 430 /* Prepare for max packet size negotiation */
b97bf3fd 431 link_init_max_pkt(l_ptr);
c4307285 432
b97bf3fd 433 l_ptr->state = RESET_UNKNOWN;
b97bf3fd
PL
434
435 if ((prev_state == RESET_UNKNOWN) || (prev_state == RESET_RESET))
436 return;
437
4323add6 438 tipc_node_link_down(l_ptr->owner, l_ptr);
7a2f7d18 439 tipc_bearer_remove_dest(l_ptr->bearer_id, l_ptr->addr);
7368ddf1 440
b9d4c339 441 if (was_active_link && tipc_node_active_links(l_ptr->owner)) {
b97bf3fd
PL
442 l_ptr->reset_checkpoint = checkpoint;
443 l_ptr->exp_msg_count = START_CHANGEOVER;
444 }
445
446 /* Clean up all queues: */
b97bf3fd 447 link_release_outqueue(l_ptr);
5f6d9123 448 kfree_skb(l_ptr->proto_msg_queue);
b97bf3fd 449 l_ptr->proto_msg_queue = NULL;
d77b3831 450 kfree_skb_list(l_ptr->oldest_deferred_in);
b97bf3fd 451 if (!list_empty(&l_ptr->waiting_ports))
4323add6 452 tipc_link_wakeup_ports(l_ptr, 1);
b97bf3fd
PL
453
454 l_ptr->retransm_queue_head = 0;
455 l_ptr->retransm_queue_size = 0;
456 l_ptr->last_out = NULL;
457 l_ptr->first_out = NULL;
458 l_ptr->next_out = NULL;
459 l_ptr->unacked_window = 0;
460 l_ptr->checkpoint = 1;
461 l_ptr->next_out_no = 1;
462 l_ptr->deferred_inqueue_sz = 0;
463 l_ptr->oldest_deferred_in = NULL;
464 l_ptr->newest_deferred_in = NULL;
465 l_ptr->fsm_msg_cnt = 0;
466 l_ptr->stale_count = 0;
467 link_reset_statistics(l_ptr);
b97bf3fd
PL
468}
469
c61dd61d 470void tipc_link_reset_list(unsigned int bearer_id)
e0ca2c30
YX
471{
472 struct tipc_link *l_ptr;
c61dd61d 473 struct tipc_node *n_ptr;
e0ca2c30 474
6c7a762e
YX
475 rcu_read_lock();
476 list_for_each_entry_rcu(n_ptr, &tipc_node_list, list) {
e0ca2c30 477 spin_lock_bh(&n_ptr->lock);
c61dd61d
YX
478 l_ptr = n_ptr->links[bearer_id];
479 if (l_ptr)
480 tipc_link_reset(l_ptr);
e0ca2c30
YX
481 spin_unlock_bh(&n_ptr->lock);
482 }
6c7a762e 483 rcu_read_unlock();
e0ca2c30 484}
b97bf3fd 485
a18c4bc3 486static void link_activate(struct tipc_link *l_ptr)
b97bf3fd 487{
5392d646 488 l_ptr->next_in_no = l_ptr->stats.recv_info = 1;
4323add6 489 tipc_node_link_up(l_ptr->owner, l_ptr);
7a2f7d18 490 tipc_bearer_add_dest(l_ptr->bearer_id, l_ptr->addr);
b97bf3fd
PL
491}
492
493/**
494 * link_state_event - link finite state machine
495 * @l_ptr: pointer to link
496 * @event: state machine event to process
497 */
95c96174 498static void link_state_event(struct tipc_link *l_ptr, unsigned int event)
b97bf3fd 499{
a18c4bc3 500 struct tipc_link *other;
b97bf3fd
PL
501 u32 cont_intv = l_ptr->continuity_interval;
502
7d33939f
JPM
503 if (l_ptr->flags & LINK_STOPPED)
504 return;
505
135daee6 506 if (!(l_ptr->flags & LINK_STARTED) && (event != STARTING_EVT))
b97bf3fd
PL
507 return; /* Not yet. */
508
77a7e07a
YX
509 /* Check whether changeover is going on */
510 if (l_ptr->exp_msg_count) {
a016892c 511 if (event == TIMEOUT_EVT)
b97bf3fd 512 link_set_timer(l_ptr, cont_intv);
77a7e07a 513 return;
b97bf3fd 514 }
b97bf3fd
PL
515
516 switch (l_ptr->state) {
517 case WORKING_WORKING:
b97bf3fd
PL
518 switch (event) {
519 case TRAFFIC_MSG_EVT:
b97bf3fd 520 case ACTIVATE_MSG:
b97bf3fd
PL
521 break;
522 case TIMEOUT_EVT:
b97bf3fd
PL
523 if (l_ptr->next_in_no != l_ptr->checkpoint) {
524 l_ptr->checkpoint = l_ptr->next_in_no;
4323add6 525 if (tipc_bclink_acks_missing(l_ptr->owner)) {
247f0f3c
YX
526 tipc_link_proto_xmit(l_ptr, STATE_MSG,
527 0, 0, 0, 0, 0);
b97bf3fd
PL
528 l_ptr->fsm_msg_cnt++;
529 } else if (l_ptr->max_pkt < l_ptr->max_pkt_target) {
247f0f3c
YX
530 tipc_link_proto_xmit(l_ptr, STATE_MSG,
531 1, 0, 0, 0, 0);
b97bf3fd
PL
532 l_ptr->fsm_msg_cnt++;
533 }
534 link_set_timer(l_ptr, cont_intv);
535 break;
536 }
b97bf3fd
PL
537 l_ptr->state = WORKING_UNKNOWN;
538 l_ptr->fsm_msg_cnt = 0;
247f0f3c 539 tipc_link_proto_xmit(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
b97bf3fd
PL
540 l_ptr->fsm_msg_cnt++;
541 link_set_timer(l_ptr, cont_intv / 4);
542 break;
543 case RESET_MSG:
2cf8aa19
EH
544 pr_info("%s<%s>, requested by peer\n", link_rst_msg,
545 l_ptr->name);
4323add6 546 tipc_link_reset(l_ptr);
b97bf3fd
PL
547 l_ptr->state = RESET_RESET;
548 l_ptr->fsm_msg_cnt = 0;
247f0f3c
YX
549 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
550 0, 0, 0, 0, 0);
b97bf3fd
PL
551 l_ptr->fsm_msg_cnt++;
552 link_set_timer(l_ptr, cont_intv);
553 break;
554 default:
2cf8aa19 555 pr_err("%s%u in WW state\n", link_unk_evt, event);
b97bf3fd
PL
556 }
557 break;
558 case WORKING_UNKNOWN:
b97bf3fd
PL
559 switch (event) {
560 case TRAFFIC_MSG_EVT:
b97bf3fd 561 case ACTIVATE_MSG:
b97bf3fd
PL
562 l_ptr->state = WORKING_WORKING;
563 l_ptr->fsm_msg_cnt = 0;
564 link_set_timer(l_ptr, cont_intv);
565 break;
566 case RESET_MSG:
2cf8aa19
EH
567 pr_info("%s<%s>, requested by peer while probing\n",
568 link_rst_msg, l_ptr->name);
4323add6 569 tipc_link_reset(l_ptr);
b97bf3fd
PL
570 l_ptr->state = RESET_RESET;
571 l_ptr->fsm_msg_cnt = 0;
247f0f3c
YX
572 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
573 0, 0, 0, 0, 0);
b97bf3fd
PL
574 l_ptr->fsm_msg_cnt++;
575 link_set_timer(l_ptr, cont_intv);
576 break;
577 case TIMEOUT_EVT:
b97bf3fd 578 if (l_ptr->next_in_no != l_ptr->checkpoint) {
b97bf3fd
PL
579 l_ptr->state = WORKING_WORKING;
580 l_ptr->fsm_msg_cnt = 0;
581 l_ptr->checkpoint = l_ptr->next_in_no;
4323add6 582 if (tipc_bclink_acks_missing(l_ptr->owner)) {
247f0f3c
YX
583 tipc_link_proto_xmit(l_ptr, STATE_MSG,
584 0, 0, 0, 0, 0);
b97bf3fd
PL
585 l_ptr->fsm_msg_cnt++;
586 }
587 link_set_timer(l_ptr, cont_intv);
588 } else if (l_ptr->fsm_msg_cnt < l_ptr->abort_limit) {
247f0f3c
YX
589 tipc_link_proto_xmit(l_ptr, STATE_MSG,
590 1, 0, 0, 0, 0);
b97bf3fd
PL
591 l_ptr->fsm_msg_cnt++;
592 link_set_timer(l_ptr, cont_intv / 4);
593 } else { /* Link has failed */
2cf8aa19
EH
594 pr_warn("%s<%s>, peer not responding\n",
595 link_rst_msg, l_ptr->name);
4323add6 596 tipc_link_reset(l_ptr);
b97bf3fd
PL
597 l_ptr->state = RESET_UNKNOWN;
598 l_ptr->fsm_msg_cnt = 0;
247f0f3c
YX
599 tipc_link_proto_xmit(l_ptr, RESET_MSG,
600 0, 0, 0, 0, 0);
b97bf3fd
PL
601 l_ptr->fsm_msg_cnt++;
602 link_set_timer(l_ptr, cont_intv);
603 }
604 break;
605 default:
2cf8aa19 606 pr_err("%s%u in WU state\n", link_unk_evt, event);
b97bf3fd
PL
607 }
608 break;
609 case RESET_UNKNOWN:
b97bf3fd
PL
610 switch (event) {
611 case TRAFFIC_MSG_EVT:
b97bf3fd
PL
612 break;
613 case ACTIVATE_MSG:
614 other = l_ptr->owner->active_links[0];
8d64a5ba 615 if (other && link_working_unknown(other))
b97bf3fd 616 break;
b97bf3fd
PL
617 l_ptr->state = WORKING_WORKING;
618 l_ptr->fsm_msg_cnt = 0;
619 link_activate(l_ptr);
247f0f3c 620 tipc_link_proto_xmit(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
b97bf3fd 621 l_ptr->fsm_msg_cnt++;
c64f7a6a 622 if (l_ptr->owner->working_links == 1)
247f0f3c 623 tipc_link_sync_xmit(l_ptr);
b97bf3fd
PL
624 link_set_timer(l_ptr, cont_intv);
625 break;
626 case RESET_MSG:
b97bf3fd
PL
627 l_ptr->state = RESET_RESET;
628 l_ptr->fsm_msg_cnt = 0;
247f0f3c
YX
629 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
630 1, 0, 0, 0, 0);
b97bf3fd
PL
631 l_ptr->fsm_msg_cnt++;
632 link_set_timer(l_ptr, cont_intv);
633 break;
634 case STARTING_EVT:
135daee6 635 l_ptr->flags |= LINK_STARTED;
b97bf3fd
PL
636 /* fall through */
637 case TIMEOUT_EVT:
247f0f3c 638 tipc_link_proto_xmit(l_ptr, RESET_MSG, 0, 0, 0, 0, 0);
b97bf3fd
PL
639 l_ptr->fsm_msg_cnt++;
640 link_set_timer(l_ptr, cont_intv);
641 break;
642 default:
2cf8aa19 643 pr_err("%s%u in RU state\n", link_unk_evt, event);
b97bf3fd
PL
644 }
645 break;
646 case RESET_RESET:
b97bf3fd
PL
647 switch (event) {
648 case TRAFFIC_MSG_EVT:
b97bf3fd
PL
649 case ACTIVATE_MSG:
650 other = l_ptr->owner->active_links[0];
8d64a5ba 651 if (other && link_working_unknown(other))
b97bf3fd 652 break;
b97bf3fd
PL
653 l_ptr->state = WORKING_WORKING;
654 l_ptr->fsm_msg_cnt = 0;
655 link_activate(l_ptr);
247f0f3c 656 tipc_link_proto_xmit(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
b97bf3fd 657 l_ptr->fsm_msg_cnt++;
c64f7a6a 658 if (l_ptr->owner->working_links == 1)
247f0f3c 659 tipc_link_sync_xmit(l_ptr);
b97bf3fd
PL
660 link_set_timer(l_ptr, cont_intv);
661 break;
662 case RESET_MSG:
b97bf3fd
PL
663 break;
664 case TIMEOUT_EVT:
247f0f3c
YX
665 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
666 0, 0, 0, 0, 0);
b97bf3fd
PL
667 l_ptr->fsm_msg_cnt++;
668 link_set_timer(l_ptr, cont_intv);
b97bf3fd
PL
669 break;
670 default:
2cf8aa19 671 pr_err("%s%u in RR state\n", link_unk_evt, event);
b97bf3fd
PL
672 }
673 break;
674 default:
2cf8aa19 675 pr_err("Unknown link state %u/%u\n", l_ptr->state, event);
b97bf3fd
PL
676 }
677}
678
679/*
680 * link_bundle_buf(): Append contents of a buffer to
c4307285 681 * the tail of an existing one.
b97bf3fd 682 */
ae8509c4 683static int link_bundle_buf(struct tipc_link *l_ptr, struct sk_buff *bundler,
b97bf3fd
PL
684 struct sk_buff *buf)
685{
686 struct tipc_msg *bundler_msg = buf_msg(bundler);
687 struct tipc_msg *msg = buf_msg(buf);
688 u32 size = msg_size(msg);
e49060c7
AS
689 u32 bundle_size = msg_size(bundler_msg);
690 u32 to_pos = align(bundle_size);
691 u32 pad = to_pos - bundle_size;
b97bf3fd
PL
692
693 if (msg_user(bundler_msg) != MSG_BUNDLER)
694 return 0;
695 if (msg_type(bundler_msg) != OPEN_MSG)
696 return 0;
e49060c7 697 if (skb_tailroom(bundler) < (pad + size))
b97bf3fd 698 return 0;
15e979da 699 if (l_ptr->max_pkt < (to_pos + size))
863fae66 700 return 0;
b97bf3fd 701
e49060c7 702 skb_put(bundler, pad + size);
27d7ff46 703 skb_copy_to_linear_data_offset(bundler, to_pos, buf->data, size);
b97bf3fd
PL
704 msg_set_size(bundler_msg, to_pos + size);
705 msg_set_msgcnt(bundler_msg, msg_msgcnt(bundler_msg) + 1);
5f6d9123 706 kfree_skb(buf);
b97bf3fd
PL
707 l_ptr->stats.sent_bundled++;
708 return 1;
709}
710
a18c4bc3 711static void link_add_to_outqueue(struct tipc_link *l_ptr,
05790c64
SR
712 struct sk_buff *buf,
713 struct tipc_msg *msg)
b97bf3fd
PL
714{
715 u32 ack = mod(l_ptr->next_in_no - 1);
716 u32 seqno = mod(l_ptr->next_out_no++);
717
718 msg_set_word(msg, 2, ((ack << 16) | seqno));
719 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
720 buf->next = NULL;
721 if (l_ptr->first_out) {
722 l_ptr->last_out->next = buf;
723 l_ptr->last_out = buf;
724 } else
725 l_ptr->first_out = l_ptr->last_out = buf;
9bd80b60 726
b97bf3fd 727 l_ptr->out_queue_size++;
9bd80b60
AS
728 if (l_ptr->out_queue_size > l_ptr->stats.max_queue_sz)
729 l_ptr->stats.max_queue_sz = l_ptr->out_queue_size;
b97bf3fd
PL
730}
731
a18c4bc3 732static void link_add_chain_to_outqueue(struct tipc_link *l_ptr,
dc63d91e
AS
733 struct sk_buff *buf_chain,
734 u32 long_msgno)
735{
736 struct sk_buff *buf;
737 struct tipc_msg *msg;
738
739 if (!l_ptr->next_out)
740 l_ptr->next_out = buf_chain;
741 while (buf_chain) {
742 buf = buf_chain;
743 buf_chain = buf_chain->next;
744
745 msg = buf_msg(buf);
746 msg_set_long_msgno(msg, long_msgno);
747 link_add_to_outqueue(l_ptr, buf, msg);
748 }
749}
750
c4307285 751/*
247f0f3c
YX
752 * tipc_link_xmit() is the 'full path' for messages, called from
753 * inside TIPC when the 'fast path' in tipc_send_xmit
b97bf3fd
PL
754 * has failed, and from link_send()
755 */
247f0f3c 756int __tipc_link_xmit(struct tipc_link *l_ptr, struct sk_buff *buf)
b97bf3fd
PL
757{
758 struct tipc_msg *msg = buf_msg(buf);
759 u32 size = msg_size(msg);
760 u32 dsz = msg_data_sz(msg);
761 u32 queue_size = l_ptr->out_queue_size;
c68ca7b7 762 u32 imp = tipc_msg_tot_importance(msg);
b97bf3fd 763 u32 queue_limit = l_ptr->queue_limit[imp];
15e979da 764 u32 max_packet = l_ptr->max_pkt;
b97bf3fd 765
b97bf3fd 766 /* Match msg importance against queue limits: */
b97bf3fd
PL
767 if (unlikely(queue_size >= queue_limit)) {
768 if (imp <= TIPC_CRITICAL_IMPORTANCE) {
bebc55ae 769 link_schedule_port(l_ptr, msg_origport(msg), size);
5f6d9123 770 kfree_skb(buf);
bebc55ae 771 return -ELINKCONG;
b97bf3fd 772 }
5f6d9123 773 kfree_skb(buf);
b97bf3fd 774 if (imp > CONN_MANAGER) {
2cf8aa19
EH
775 pr_warn("%s<%s>, send queue full", link_rst_msg,
776 l_ptr->name);
4323add6 777 tipc_link_reset(l_ptr);
b97bf3fd
PL
778 }
779 return dsz;
780 }
781
782 /* Fragmentation needed ? */
b97bf3fd 783 if (size > max_packet)
247f0f3c 784 return tipc_link_frag_xmit(l_ptr, buf);
b97bf3fd 785
617d3c7a 786 /* Packet can be queued or sent. */
512137ee 787 if (likely(!link_congested(l_ptr))) {
b97bf3fd
PL
788 link_add_to_outqueue(l_ptr, buf, msg);
789
7a2f7d18 790 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
3c294cb3 791 l_ptr->unacked_window = 0;
b97bf3fd
PL
792 return dsz;
793 }
617d3c7a 794 /* Congestion: can message be bundled ? */
b97bf3fd
PL
795 if ((msg_user(msg) != CHANGEOVER_PROTOCOL) &&
796 (msg_user(msg) != MSG_FRAGMENTER)) {
797
798 /* Try adding message to an existing bundle */
c4307285 799 if (l_ptr->next_out &&
3c294cb3 800 link_bundle_buf(l_ptr, l_ptr->last_out, buf))
b97bf3fd 801 return dsz;
b97bf3fd
PL
802
803 /* Try creating a new bundle */
b97bf3fd 804 if (size <= max_packet * 2 / 3) {
31e3c3f6 805 struct sk_buff *bundler = tipc_buf_acquire(max_packet);
b97bf3fd
PL
806 struct tipc_msg bundler_hdr;
807
808 if (bundler) {
c68ca7b7 809 tipc_msg_init(&bundler_hdr, MSG_BUNDLER, OPEN_MSG,
75715217 810 INT_H_SIZE, l_ptr->addr);
27d7ff46
ACM
811 skb_copy_to_linear_data(bundler, &bundler_hdr,
812 INT_H_SIZE);
b97bf3fd
PL
813 skb_trim(bundler, INT_H_SIZE);
814 link_bundle_buf(l_ptr, bundler, buf);
815 buf = bundler;
816 msg = buf_msg(buf);
817 l_ptr->stats.sent_bundles++;
818 }
819 }
820 }
821 if (!l_ptr->next_out)
822 l_ptr->next_out = buf;
823 link_add_to_outqueue(l_ptr, buf, msg);
b97bf3fd
PL
824 return dsz;
825}
826
c4307285 827/*
247f0f3c
YX
828 * tipc_link_xmit(): same as __tipc_link_xmit(), but the link to use
829 * has not been selected yet, and the the owner node is not locked
b97bf3fd
PL
830 * Called by TIPC internal users, e.g. the name distributor
831 */
247f0f3c 832int tipc_link_xmit(struct sk_buff *buf, u32 dest, u32 selector)
b97bf3fd 833{
a18c4bc3 834 struct tipc_link *l_ptr;
6c00055a 835 struct tipc_node *n_ptr;
b97bf3fd
PL
836 int res = -ELINKCONG;
837
4323add6 838 read_lock_bh(&tipc_net_lock);
51a8e4de 839 n_ptr = tipc_node_find(dest);
b97bf3fd 840 if (n_ptr) {
4323add6 841 tipc_node_lock(n_ptr);
b97bf3fd 842 l_ptr = n_ptr->active_links[selector & 1];
a016892c 843 if (l_ptr)
247f0f3c 844 res = __tipc_link_xmit(l_ptr, buf);
a016892c 845 else
5f6d9123 846 kfree_skb(buf);
4323add6 847 tipc_node_unlock(n_ptr);
b97bf3fd 848 } else {
5f6d9123 849 kfree_skb(buf);
b97bf3fd 850 }
4323add6 851 read_unlock_bh(&tipc_net_lock);
b97bf3fd
PL
852 return res;
853}
854
c64f7a6a 855/*
247f0f3c 856 * tipc_link_sync_xmit - synchronize broadcast link endpoints.
c64f7a6a
JM
857 *
858 * Give a newly added peer node the sequence number where it should
859 * start receiving and acking broadcast packets.
860 *
861 * Called with node locked
862 */
247f0f3c 863static void tipc_link_sync_xmit(struct tipc_link *l)
c64f7a6a
JM
864{
865 struct sk_buff *buf;
866 struct tipc_msg *msg;
867
868 buf = tipc_buf_acquire(INT_H_SIZE);
869 if (!buf)
870 return;
871
872 msg = buf_msg(buf);
873 tipc_msg_init(msg, BCAST_PROTOCOL, STATE_MSG, INT_H_SIZE, l->addr);
874 msg_set_last_bcast(msg, l->owner->bclink.acked);
875 link_add_chain_to_outqueue(l, buf, 0);
876 tipc_link_push_queue(l);
877}
878
879/*
247f0f3c 880 * tipc_link_sync_rcv - synchronize broadcast link endpoints.
c64f7a6a
JM
881 * Receive the sequence number where we should start receiving and
882 * acking broadcast packets from a newly added peer node, and open
883 * up for reception of such packets.
884 *
885 * Called with node locked
886 */
247f0f3c 887static void tipc_link_sync_rcv(struct tipc_node *n, struct sk_buff *buf)
c64f7a6a
JM
888{
889 struct tipc_msg *msg = buf_msg(buf);
890
891 n->bclink.last_sent = n->bclink.last_in = msg_last_bcast(msg);
892 n->bclink.recv_permitted = true;
893 kfree_skb(buf);
894}
895
896/*
247f0f3c 897 * tipc_link_names_xmit - send name table entries to new neighbor
9aa88c2a
AS
898 *
899 * Send routine for bulk delivery of name table messages when contact
900 * with a new neighbor occurs. No link congestion checking is performed
901 * because name table messages *must* be delivered. The messages must be
902 * small enough not to require fragmentation.
903 * Called without any locks held.
904 */
247f0f3c 905void tipc_link_names_xmit(struct list_head *message_list, u32 dest)
9aa88c2a
AS
906{
907 struct tipc_node *n_ptr;
a18c4bc3 908 struct tipc_link *l_ptr;
9aa88c2a
AS
909 struct sk_buff *buf;
910 struct sk_buff *temp_buf;
911
912 if (list_empty(message_list))
913 return;
914
915 read_lock_bh(&tipc_net_lock);
916 n_ptr = tipc_node_find(dest);
917 if (n_ptr) {
918 tipc_node_lock(n_ptr);
919 l_ptr = n_ptr->active_links[0];
920 if (l_ptr) {
921 /* convert circular list to linear list */
922 ((struct sk_buff *)message_list->prev)->next = NULL;
923 link_add_chain_to_outqueue(l_ptr,
924 (struct sk_buff *)message_list->next, 0);
925 tipc_link_push_queue(l_ptr);
926 INIT_LIST_HEAD(message_list);
927 }
928 tipc_node_unlock(n_ptr);
929 }
930 read_unlock_bh(&tipc_net_lock);
931
932 /* discard the messages if they couldn't be sent */
9aa88c2a
AS
933 list_for_each_safe(buf, temp_buf, ((struct sk_buff *)message_list)) {
934 list_del((struct list_head *)buf);
5f6d9123 935 kfree_skb(buf);
9aa88c2a
AS
936 }
937}
938
c4307285 939/*
247f0f3c 940 * tipc_link_xmit_fast: Entry for data messages where the
b97bf3fd
PL
941 * destination link is known and the header is complete,
942 * inclusive total message length. Very time critical.
943 * Link is locked. Returns user data length.
944 */
247f0f3c
YX
945static int tipc_link_xmit_fast(struct tipc_link *l_ptr, struct sk_buff *buf,
946 u32 *used_max_pkt)
b97bf3fd
PL
947{
948 struct tipc_msg *msg = buf_msg(buf);
949 int res = msg_data_sz(msg);
950
951 if (likely(!link_congested(l_ptr))) {
15e979da 952 if (likely(msg_size(msg) <= l_ptr->max_pkt)) {
512137ee 953 link_add_to_outqueue(l_ptr, buf, msg);
7a2f7d18 954 tipc_bearer_send(l_ptr->bearer_id, buf,
512137ee
EH
955 &l_ptr->media_addr);
956 l_ptr->unacked_window = 0;
957 return res;
958 }
959 else
15e979da 960 *used_max_pkt = l_ptr->max_pkt;
b97bf3fd 961 }
247f0f3c 962 return __tipc_link_xmit(l_ptr, buf); /* All other cases */
b97bf3fd
PL
963}
964
c4307285 965/*
247f0f3c 966 * tipc_link_iovec_xmit_fast: Entry for messages where the
b97bf3fd 967 * destination processor is known and the header is complete,
c4307285 968 * except for total message length.
b97bf3fd
PL
969 * Returns user data length or errno.
970 */
247f0f3c
YX
971int tipc_link_iovec_xmit_fast(struct tipc_port *sender,
972 struct iovec const *msg_sect,
973 unsigned int len, u32 destaddr)
b97bf3fd 974{
23dd4cce 975 struct tipc_msg *hdr = &sender->phdr;
a18c4bc3 976 struct tipc_link *l_ptr;
b97bf3fd 977 struct sk_buff *buf;
6c00055a 978 struct tipc_node *node;
b97bf3fd
PL
979 int res;
980 u32 selector = msg_origport(hdr) & 1;
981
b97bf3fd
PL
982again:
983 /*
984 * Try building message using port's max_pkt hint.
985 * (Must not hold any locks while building message.)
986 */
9446b87a 987 res = tipc_msg_build(hdr, msg_sect, len, sender->max_pkt, &buf);
7410f967
YX
988 /* Exit if build request was invalid */
989 if (unlikely(res < 0))
990 return res;
b97bf3fd 991
4323add6 992 read_lock_bh(&tipc_net_lock);
51a8e4de 993 node = tipc_node_find(destaddr);
b97bf3fd 994 if (likely(node)) {
4323add6 995 tipc_node_lock(node);
b97bf3fd
PL
996 l_ptr = node->active_links[selector];
997 if (likely(l_ptr)) {
998 if (likely(buf)) {
247f0f3c
YX
999 res = tipc_link_xmit_fast(l_ptr, buf,
1000 &sender->max_pkt);
b97bf3fd 1001exit:
4323add6
PL
1002 tipc_node_unlock(node);
1003 read_unlock_bh(&tipc_net_lock);
b97bf3fd
PL
1004 return res;
1005 }
1006
b97bf3fd 1007 /* Exit if link (or bearer) is congested */
512137ee 1008 if (link_congested(l_ptr)) {
b97bf3fd 1009 res = link_schedule_port(l_ptr,
23dd4cce 1010 sender->ref, res);
b97bf3fd
PL
1011 goto exit;
1012 }
1013
c4307285 1014 /*
b97bf3fd
PL
1015 * Message size exceeds max_pkt hint; update hint,
1016 * then re-try fast path or fragment the message
1017 */
23dd4cce 1018 sender->max_pkt = l_ptr->max_pkt;
4323add6
PL
1019 tipc_node_unlock(node);
1020 read_unlock_bh(&tipc_net_lock);
b97bf3fd
PL
1021
1022
23dd4cce 1023 if ((msg_hdr_sz(hdr) + res) <= sender->max_pkt)
b97bf3fd
PL
1024 goto again;
1025
247f0f3c
YX
1026 return tipc_link_iovec_long_xmit(sender, msg_sect,
1027 len, destaddr);
b97bf3fd 1028 }
4323add6 1029 tipc_node_unlock(node);
b97bf3fd 1030 }
4323add6 1031 read_unlock_bh(&tipc_net_lock);
b97bf3fd
PL
1032
1033 /* Couldn't find a link to the destination node */
63fa01c1
EH
1034 kfree_skb(buf);
1035 tipc_port_iovec_reject(sender, hdr, msg_sect, len, TIPC_ERR_NO_NODE);
1036 return -ENETUNREACH;
b97bf3fd
PL
1037}
1038
c4307285 1039/*
247f0f3c 1040 * tipc_link_iovec_long_xmit(): Entry for long messages where the
b97bf3fd 1041 * destination node is known and the header is complete,
c4307285 1042 * inclusive total message length.
b97bf3fd
PL
1043 * Link and bearer congestion status have been checked to be ok,
1044 * and are ignored if they change.
1045 *
1046 * Note that fragments do not use the full link MTU so that they won't have
1047 * to undergo refragmentation if link changeover causes them to be sent
1048 * over another link with an additional tunnel header added as prefix.
1049 * (Refragmentation will still occur if the other link has a smaller MTU.)
1050 *
1051 * Returns user data length or errno.
1052 */
247f0f3c
YX
1053static int tipc_link_iovec_long_xmit(struct tipc_port *sender,
1054 struct iovec const *msg_sect,
1055 unsigned int len, u32 destaddr)
b97bf3fd 1056{
a18c4bc3 1057 struct tipc_link *l_ptr;
6c00055a 1058 struct tipc_node *node;
23dd4cce 1059 struct tipc_msg *hdr = &sender->phdr;
9446b87a 1060 u32 dsz = len;
0e65967e 1061 u32 max_pkt, fragm_sz, rest;
b97bf3fd 1062 struct tipc_msg fragm_hdr;
0e65967e
AS
1063 struct sk_buff *buf, *buf_chain, *prev;
1064 u32 fragm_crs, fragm_rest, hsz, sect_rest;
40682432 1065 const unchar __user *sect_crs;
b97bf3fd
PL
1066 int curr_sect;
1067 u32 fragm_no;
126c0524 1068 int res = 0;
b97bf3fd
PL
1069
1070again:
1071 fragm_no = 1;
23dd4cce 1072 max_pkt = sender->max_pkt - INT_H_SIZE;
b97bf3fd 1073 /* leave room for tunnel header in case of link changeover */
c4307285 1074 fragm_sz = max_pkt - INT_H_SIZE;
b97bf3fd
PL
1075 /* leave room for fragmentation header in each fragment */
1076 rest = dsz;
1077 fragm_crs = 0;
1078 fragm_rest = 0;
1079 sect_rest = 0;
1fc54d8f 1080 sect_crs = NULL;
b97bf3fd
PL
1081 curr_sect = -1;
1082
617d3c7a 1083 /* Prepare reusable fragment header */
c68ca7b7 1084 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
75715217 1085 INT_H_SIZE, msg_destnode(hdr));
b97bf3fd
PL
1086 msg_set_size(&fragm_hdr, max_pkt);
1087 msg_set_fragm_no(&fragm_hdr, 1);
1088
617d3c7a 1089 /* Prepare header of first fragment */
31e3c3f6 1090 buf_chain = buf = tipc_buf_acquire(max_pkt);
b97bf3fd
PL
1091 if (!buf)
1092 return -ENOMEM;
1093 buf->next = NULL;
27d7ff46 1094 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
b97bf3fd 1095 hsz = msg_hdr_sz(hdr);
27d7ff46 1096 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, hdr, hsz);
b97bf3fd 1097
617d3c7a 1098 /* Chop up message */
b97bf3fd
PL
1099 fragm_crs = INT_H_SIZE + hsz;
1100 fragm_rest = fragm_sz - hsz;
1101
1102 do { /* For all sections */
1103 u32 sz;
1104
1105 if (!sect_rest) {
1106 sect_rest = msg_sect[++curr_sect].iov_len;
40682432 1107 sect_crs = msg_sect[curr_sect].iov_base;
b97bf3fd
PL
1108 }
1109
1110 if (sect_rest < fragm_rest)
1111 sz = sect_rest;
1112 else
1113 sz = fragm_rest;
1114
f1733d75 1115 if (copy_from_user(buf->data + fragm_crs, sect_crs, sz)) {
126c0524 1116 res = -EFAULT;
b97bf3fd 1117error:
d77b3831 1118 kfree_skb_list(buf_chain);
126c0524 1119 return res;
f1733d75 1120 }
b97bf3fd
PL
1121 sect_crs += sz;
1122 sect_rest -= sz;
1123 fragm_crs += sz;
1124 fragm_rest -= sz;
1125 rest -= sz;
1126
1127 if (!fragm_rest && rest) {
1128
1129 /* Initiate new fragment: */
1130 if (rest <= fragm_sz) {
1131 fragm_sz = rest;
0e65967e 1132 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
b97bf3fd
PL
1133 } else {
1134 msg_set_type(&fragm_hdr, FRAGMENT);
1135 }
1136 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
1137 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
1138 prev = buf;
31e3c3f6 1139 buf = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
126c0524
YX
1140 if (!buf) {
1141 res = -ENOMEM;
b97bf3fd 1142 goto error;
126c0524 1143 }
b97bf3fd 1144
c4307285 1145 buf->next = NULL;
b97bf3fd 1146 prev->next = buf;
27d7ff46 1147 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
b97bf3fd
PL
1148 fragm_crs = INT_H_SIZE;
1149 fragm_rest = fragm_sz;
b97bf3fd 1150 }
0e65967e 1151 } while (rest > 0);
b97bf3fd 1152
c4307285 1153 /*
b97bf3fd
PL
1154 * Now we have a buffer chain. Select a link and check
1155 * that packet size is still OK
1156 */
51a8e4de 1157 node = tipc_node_find(destaddr);
b97bf3fd 1158 if (likely(node)) {
4323add6 1159 tipc_node_lock(node);
23dd4cce 1160 l_ptr = node->active_links[sender->ref & 1];
b97bf3fd 1161 if (!l_ptr) {
4323add6 1162 tipc_node_unlock(node);
b97bf3fd
PL
1163 goto reject;
1164 }
15e979da 1165 if (l_ptr->max_pkt < max_pkt) {
23dd4cce 1166 sender->max_pkt = l_ptr->max_pkt;
4323add6 1167 tipc_node_unlock(node);
d77b3831 1168 kfree_skb_list(buf_chain);
b97bf3fd
PL
1169 goto again;
1170 }
1171 } else {
1172reject:
d77b3831 1173 kfree_skb_list(buf_chain);
63fa01c1
EH
1174 tipc_port_iovec_reject(sender, hdr, msg_sect, len,
1175 TIPC_ERR_NO_NODE);
1176 return -ENETUNREACH;
b97bf3fd
PL
1177 }
1178
dc63d91e 1179 /* Append chain of fragments to send queue & send them */
e0f08596 1180 l_ptr->long_msg_seq_no++;
dc63d91e
AS
1181 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
1182 l_ptr->stats.sent_fragments += fragm_no;
b97bf3fd 1183 l_ptr->stats.sent_fragmented++;
4323add6
PL
1184 tipc_link_push_queue(l_ptr);
1185 tipc_node_unlock(node);
b97bf3fd
PL
1186 return dsz;
1187}
1188
c4307285 1189/*
4323add6 1190 * tipc_link_push_packet: Push one unsent packet to the media
b97bf3fd 1191 */
98056963 1192static u32 tipc_link_push_packet(struct tipc_link *l_ptr)
b97bf3fd
PL
1193{
1194 struct sk_buff *buf = l_ptr->first_out;
1195 u32 r_q_size = l_ptr->retransm_queue_size;
1196 u32 r_q_head = l_ptr->retransm_queue_head;
1197
1198 /* Step to position where retransmission failed, if any, */
1199 /* consider that buffers may have been released in meantime */
b97bf3fd 1200 if (r_q_size && buf) {
c4307285 1201 u32 last = lesser(mod(r_q_head + r_q_size),
b97bf3fd 1202 link_last_sent(l_ptr));
f905730c 1203 u32 first = buf_seqno(buf);
b97bf3fd
PL
1204
1205 while (buf && less(first, r_q_head)) {
1206 first = mod(first + 1);
1207 buf = buf->next;
1208 }
1209 l_ptr->retransm_queue_head = r_q_head = first;
1210 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1211 }
1212
1213 /* Continue retransmission now, if there is anything: */
ca509101 1214 if (r_q_size && buf) {
b97bf3fd 1215 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
c4307285 1216 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
7a2f7d18 1217 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
3c294cb3
YX
1218 l_ptr->retransm_queue_head = mod(++r_q_head);
1219 l_ptr->retransm_queue_size = --r_q_size;
1220 l_ptr->stats.retransmitted++;
1221 return 0;
b97bf3fd
PL
1222 }
1223
1224 /* Send deferred protocol message, if any: */
b97bf3fd
PL
1225 buf = l_ptr->proto_msg_queue;
1226 if (buf) {
1227 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
0e65967e 1228 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
7a2f7d18 1229 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
3c294cb3
YX
1230 l_ptr->unacked_window = 0;
1231 kfree_skb(buf);
1232 l_ptr->proto_msg_queue = NULL;
1233 return 0;
b97bf3fd
PL
1234 }
1235
1236 /* Send one deferred data message, if send window not full: */
b97bf3fd
PL
1237 buf = l_ptr->next_out;
1238 if (buf) {
1239 struct tipc_msg *msg = buf_msg(buf);
1240 u32 next = msg_seqno(msg);
f905730c 1241 u32 first = buf_seqno(l_ptr->first_out);
b97bf3fd
PL
1242
1243 if (mod(next - first) < l_ptr->queue_limit[0]) {
1244 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
c4307285 1245 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
7a2f7d18
YX
1246 tipc_bearer_send(l_ptr->bearer_id, buf,
1247 &l_ptr->media_addr);
3c294cb3
YX
1248 if (msg_user(msg) == MSG_BUNDLER)
1249 msg_set_type(msg, CLOSED_MSG);
1250 l_ptr->next_out = buf->next;
1251 return 0;
b97bf3fd
PL
1252 }
1253 }
3c294cb3 1254 return 1;
b97bf3fd
PL
1255}
1256
1257/*
1258 * push_queue(): push out the unsent messages of a link where
1259 * congestion has abated. Node is locked
1260 */
a18c4bc3 1261void tipc_link_push_queue(struct tipc_link *l_ptr)
b97bf3fd
PL
1262{
1263 u32 res;
1264
b97bf3fd 1265 do {
4323add6 1266 res = tipc_link_push_packet(l_ptr);
0e35fd5e 1267 } while (!res);
b97bf3fd
PL
1268}
1269
d356eeba
AS
1270static void link_reset_all(unsigned long addr)
1271{
6c00055a 1272 struct tipc_node *n_ptr;
d356eeba
AS
1273 char addr_string[16];
1274 u32 i;
1275
1276 read_lock_bh(&tipc_net_lock);
1277 n_ptr = tipc_node_find((u32)addr);
1278 if (!n_ptr) {
1279 read_unlock_bh(&tipc_net_lock);
1280 return; /* node no longer exists */
1281 }
1282
1283 tipc_node_lock(n_ptr);
1284
2cf8aa19
EH
1285 pr_warn("Resetting all links to %s\n",
1286 tipc_addr_string_fill(addr_string, n_ptr->addr));
d356eeba
AS
1287
1288 for (i = 0; i < MAX_BEARERS; i++) {
1289 if (n_ptr->links[i]) {
8d64a5ba 1290 link_print(n_ptr->links[i], "Resetting link\n");
d356eeba
AS
1291 tipc_link_reset(n_ptr->links[i]);
1292 }
1293 }
1294
1295 tipc_node_unlock(n_ptr);
1296 read_unlock_bh(&tipc_net_lock);
1297}
1298
a18c4bc3 1299static void link_retransmit_failure(struct tipc_link *l_ptr,
ae8509c4 1300 struct sk_buff *buf)
d356eeba
AS
1301{
1302 struct tipc_msg *msg = buf_msg(buf);
1303
2cf8aa19 1304 pr_warn("Retransmission failure on link <%s>\n", l_ptr->name);
d356eeba
AS
1305
1306 if (l_ptr->addr) {
d356eeba 1307 /* Handle failure on standard link */
8d64a5ba 1308 link_print(l_ptr, "Resetting link\n");
d356eeba
AS
1309 tipc_link_reset(l_ptr);
1310
1311 } else {
d356eeba 1312 /* Handle failure on broadcast link */
6c00055a 1313 struct tipc_node *n_ptr;
d356eeba
AS
1314 char addr_string[16];
1315
2cf8aa19
EH
1316 pr_info("Msg seq number: %u, ", msg_seqno(msg));
1317 pr_cont("Outstanding acks: %lu\n",
1318 (unsigned long) TIPC_SKB_CB(buf)->handle);
617dbeaa 1319
01d83edd 1320 n_ptr = tipc_bclink_retransmit_to();
d356eeba
AS
1321 tipc_node_lock(n_ptr);
1322
c68ca7b7 1323 tipc_addr_string_fill(addr_string, n_ptr->addr);
2cf8aa19 1324 pr_info("Broadcast link info for %s\n", addr_string);
389dd9bc
YX
1325 pr_info("Reception permitted: %d, Acked: %u\n",
1326 n_ptr->bclink.recv_permitted,
2cf8aa19
EH
1327 n_ptr->bclink.acked);
1328 pr_info("Last in: %u, Oos state: %u, Last sent: %u\n",
1329 n_ptr->bclink.last_in,
1330 n_ptr->bclink.oos_state,
1331 n_ptr->bclink.last_sent);
d356eeba
AS
1332
1333 tipc_k_signal((Handler)link_reset_all, (unsigned long)n_ptr->addr);
1334
1335 tipc_node_unlock(n_ptr);
1336
1337 l_ptr->stale_count = 0;
1338 }
1339}
1340
a18c4bc3 1341void tipc_link_retransmit(struct tipc_link *l_ptr, struct sk_buff *buf,
4323add6 1342 u32 retransmits)
b97bf3fd
PL
1343{
1344 struct tipc_msg *msg;
1345
d356eeba
AS
1346 if (!buf)
1347 return;
1348
1349 msg = buf_msg(buf);
c4307285 1350
512137ee
EH
1351 /* Detect repeated retransmit failures */
1352 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1353 if (++l_ptr->stale_count > 100) {
1354 link_retransmit_failure(l_ptr, buf);
1355 return;
d356eeba
AS
1356 }
1357 } else {
512137ee
EH
1358 l_ptr->last_retransmitted = msg_seqno(msg);
1359 l_ptr->stale_count = 1;
b97bf3fd 1360 }
d356eeba 1361
ca509101 1362 while (retransmits && (buf != l_ptr->next_out) && buf) {
b97bf3fd
PL
1363 msg = buf_msg(buf);
1364 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
c4307285 1365 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
7a2f7d18 1366 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
3c294cb3
YX
1367 buf = buf->next;
1368 retransmits--;
1369 l_ptr->stats.retransmitted++;
b97bf3fd 1370 }
d356eeba 1371
b97bf3fd
PL
1372 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1373}
1374
c4307285 1375/**
b97bf3fd
PL
1376 * link_insert_deferred_queue - insert deferred messages back into receive chain
1377 */
a18c4bc3 1378static struct sk_buff *link_insert_deferred_queue(struct tipc_link *l_ptr,
b97bf3fd
PL
1379 struct sk_buff *buf)
1380{
1381 u32 seq_no;
1382
1383 if (l_ptr->oldest_deferred_in == NULL)
1384 return buf;
1385
f905730c 1386 seq_no = buf_seqno(l_ptr->oldest_deferred_in);
b97bf3fd
PL
1387 if (seq_no == mod(l_ptr->next_in_no)) {
1388 l_ptr->newest_deferred_in->next = buf;
1389 buf = l_ptr->oldest_deferred_in;
1390 l_ptr->oldest_deferred_in = NULL;
1391 l_ptr->deferred_inqueue_sz = 0;
1392 }
1393 return buf;
1394}
1395
85035568
AS
1396/**
1397 * link_recv_buf_validate - validate basic format of received message
1398 *
1399 * This routine ensures a TIPC message has an acceptable header, and at least
1400 * as much data as the header indicates it should. The routine also ensures
1401 * that the entire message header is stored in the main fragment of the message
1402 * buffer, to simplify future access to message header fields.
1403 *
1404 * Note: Having extra info present in the message header or data areas is OK.
1405 * TIPC will ignore the excess, under the assumption that it is optional info
1406 * introduced by a later release of the protocol.
1407 */
85035568
AS
1408static int link_recv_buf_validate(struct sk_buff *buf)
1409{
1410 static u32 min_data_hdr_size[8] = {
741d9eb7 1411 SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,
85035568
AS
1412 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1413 };
1414
1415 struct tipc_msg *msg;
1416 u32 tipc_hdr[2];
1417 u32 size;
1418 u32 hdr_size;
1419 u32 min_hdr_size;
1420
64380a04
EH
1421 /* If this packet comes from the defer queue, the skb has already
1422 * been validated
1423 */
1424 if (unlikely(TIPC_SKB_CB(buf)->deferred))
1425 return 1;
1426
85035568
AS
1427 if (unlikely(buf->len < MIN_H_SIZE))
1428 return 0;
1429
1430 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1431 if (msg == NULL)
1432 return 0;
1433
1434 if (unlikely(msg_version(msg) != TIPC_VERSION))
1435 return 0;
1436
1437 size = msg_size(msg);
1438 hdr_size = msg_hdr_sz(msg);
1439 min_hdr_size = msg_isdata(msg) ?
1440 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1441
1442 if (unlikely((hdr_size < min_hdr_size) ||
1443 (size < hdr_size) ||
1444 (buf->len < size) ||
1445 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1446 return 0;
1447
1448 return pskb_may_pull(buf, hdr_size);
1449}
1450
b02b69c8 1451/**
170b3927 1452 * tipc_rcv - process TIPC packets/messages arriving from off-node
b02b69c8 1453 * @head: pointer to message buffer chain
7a2f7d18 1454 * @b_ptr: pointer to bearer message arrived on
b02b69c8
AS
1455 *
1456 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1457 * structure (i.e. cannot be NULL), but bearer can be inactive.
1458 */
170b3927 1459void tipc_rcv(struct sk_buff *head, struct tipc_bearer *b_ptr)
b97bf3fd 1460{
4323add6 1461 read_lock_bh(&tipc_net_lock);
b97bf3fd 1462 while (head) {
6c00055a 1463 struct tipc_node *n_ptr;
a18c4bc3 1464 struct tipc_link *l_ptr;
b97bf3fd
PL
1465 struct sk_buff *crs;
1466 struct sk_buff *buf = head;
85035568
AS
1467 struct tipc_msg *msg;
1468 u32 seq_no;
1469 u32 ackd;
b97bf3fd 1470 u32 released = 0;
b97bf3fd 1471
b97bf3fd 1472 head = head->next;
732256b9 1473 buf->next = NULL;
85035568
AS
1474
1475 /* Ensure message is well-formed */
85035568 1476 if (unlikely(!link_recv_buf_validate(buf)))
3af390e2 1477 goto discard;
b97bf3fd 1478
fe13dda2 1479 /* Ensure message data is a single contiguous unit */
5f6d9123 1480 if (unlikely(skb_linearize(buf)))
3af390e2 1481 goto discard;
fe13dda2 1482
85035568 1483 /* Handle arrival of a non-unicast link message */
85035568
AS
1484 msg = buf_msg(buf);
1485
b97bf3fd 1486 if (unlikely(msg_non_seq(msg))) {
1265a021 1487 if (msg_user(msg) == LINK_CONFIG)
247f0f3c 1488 tipc_disc_rcv(buf, b_ptr);
1265a021 1489 else
247f0f3c 1490 tipc_bclink_rcv(buf);
b97bf3fd
PL
1491 continue;
1492 }
c4307285 1493
ed33a9c4 1494 /* Discard unicast link messages destined for another node */
26008247
AS
1495 if (unlikely(!msg_short(msg) &&
1496 (msg_destnode(msg) != tipc_own_addr)))
3af390e2 1497 goto discard;
c4307285 1498
5a68d5ee 1499 /* Locate neighboring node that sent message */
4323add6 1500 n_ptr = tipc_node_find(msg_prevnode(msg));
b97bf3fd 1501 if (unlikely(!n_ptr))
3af390e2 1502 goto discard;
4323add6 1503 tipc_node_lock(n_ptr);
85035568 1504
b4b56102 1505 /* Locate unicast link endpoint that should handle message */
b4b56102 1506 l_ptr = n_ptr->links[b_ptr->identity];
3af390e2
YX
1507 if (unlikely(!l_ptr))
1508 goto unlock_discard;
5a68d5ee 1509
b4b56102 1510 /* Verify that communication with node is currently allowed */
b4b56102
AS
1511 if ((n_ptr->block_setup & WAIT_PEER_DOWN) &&
1512 msg_user(msg) == LINK_PROTOCOL &&
1513 (msg_type(msg) == RESET_MSG ||
a5377831 1514 msg_type(msg) == ACTIVATE_MSG) &&
b4b56102
AS
1515 !msg_redundant_link(msg))
1516 n_ptr->block_setup &= ~WAIT_PEER_DOWN;
1517
3af390e2
YX
1518 if (n_ptr->block_setup)
1519 goto unlock_discard;
85035568
AS
1520
1521 /* Validate message sequence number info */
85035568
AS
1522 seq_no = msg_seqno(msg);
1523 ackd = msg_ack(msg);
1524
1525 /* Release acked messages */
389dd9bc 1526 if (n_ptr->bclink.recv_permitted)
36559591 1527 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
b97bf3fd
PL
1528
1529 crs = l_ptr->first_out;
c4307285 1530 while ((crs != l_ptr->next_out) &&
f905730c 1531 less_eq(buf_seqno(crs), ackd)) {
b97bf3fd 1532 struct sk_buff *next = crs->next;
5f6d9123 1533 kfree_skb(crs);
b97bf3fd
PL
1534 crs = next;
1535 released++;
1536 }
1537 if (released) {
1538 l_ptr->first_out = crs;
1539 l_ptr->out_queue_size -= released;
1540 }
85035568
AS
1541
1542 /* Try sending any messages link endpoint has pending */
b97bf3fd 1543 if (unlikely(l_ptr->next_out))
4323add6 1544 tipc_link_push_queue(l_ptr);
a5377831 1545
b97bf3fd 1546 if (unlikely(!list_empty(&l_ptr->waiting_ports)))
4323add6 1547 tipc_link_wakeup_ports(l_ptr, 0);
a5377831 1548
b97bf3fd
PL
1549 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1550 l_ptr->stats.sent_acks++;
247f0f3c 1551 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
b97bf3fd
PL
1552 }
1553
a5377831 1554 /* Process the incoming packet */
3af390e2
YX
1555 if (unlikely(!link_working_working(l_ptr))) {
1556 if (msg_user(msg) == LINK_PROTOCOL) {
247f0f3c 1557 tipc_link_proto_rcv(l_ptr, buf);
3af390e2 1558 head = link_insert_deferred_queue(l_ptr, head);
4323add6 1559 tipc_node_unlock(n_ptr);
b97bf3fd
PL
1560 continue;
1561 }
3af390e2
YX
1562
1563 /* Traffic message. Conditionally activate link */
1564 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1565
1566 if (link_working_working(l_ptr)) {
1567 /* Re-insert buffer in front of queue */
1568 buf->next = head;
1569 head = buf;
1570 tipc_node_unlock(n_ptr);
1571 continue;
1572 }
1573 goto unlock_discard;
1574 }
1575
1576 /* Link is now in state WORKING_WORKING */
1577 if (unlikely(seq_no != mod(l_ptr->next_in_no))) {
b97bf3fd
PL
1578 link_handle_out_of_seq_msg(l_ptr, buf);
1579 head = link_insert_deferred_queue(l_ptr, head);
4323add6 1580 tipc_node_unlock(n_ptr);
b97bf3fd
PL
1581 continue;
1582 }
3af390e2
YX
1583 l_ptr->next_in_no++;
1584 if (unlikely(l_ptr->oldest_deferred_in))
b97bf3fd 1585 head = link_insert_deferred_queue(l_ptr, head);
a5377831
JPM
1586
1587 /* Deliver packet/message to correct user: */
1588 if (unlikely(msg_user(msg) == CHANGEOVER_PROTOCOL)) {
1589 if (!tipc_link_tunnel_rcv(n_ptr, &buf)) {
1590 tipc_node_unlock(n_ptr);
1591 continue;
1592 }
1593 msg = buf_msg(buf);
1594 } else if (msg_user(msg) == MSG_FRAGMENTER) {
1595 int rc;
1596
1597 l_ptr->stats.recv_fragments++;
1598 rc = tipc_link_frag_rcv(&l_ptr->reasm_head,
1599 &l_ptr->reasm_tail,
1600 &buf);
1601 if (rc == LINK_REASM_COMPLETE) {
1602 l_ptr->stats.recv_fragmented++;
1603 msg = buf_msg(buf);
1604 } else {
1605 if (rc == LINK_REASM_ERROR)
1606 tipc_link_reset(l_ptr);
1607 tipc_node_unlock(n_ptr);
1608 continue;
1609 }
1610 }
1611
1612 switch (msg_user(msg)) {
1613 case TIPC_LOW_IMPORTANCE:
1614 case TIPC_MEDIUM_IMPORTANCE:
1615 case TIPC_HIGH_IMPORTANCE:
1616 case TIPC_CRITICAL_IMPORTANCE:
4323add6 1617 tipc_node_unlock(n_ptr);
247f0f3c 1618 tipc_port_rcv(buf);
b97bf3fd 1619 continue;
3af390e2
YX
1620 case MSG_BUNDLER:
1621 l_ptr->stats.recv_bundles++;
1622 l_ptr->stats.recv_bundled += msg_msgcnt(msg);
1623 tipc_node_unlock(n_ptr);
247f0f3c 1624 tipc_link_bundle_rcv(buf);
3af390e2
YX
1625 continue;
1626 case NAME_DISTRIBUTOR:
1627 n_ptr->bclink.recv_permitted = true;
1628 tipc_node_unlock(n_ptr);
247f0f3c 1629 tipc_named_rcv(buf);
3af390e2 1630 continue;
3af390e2
YX
1631 case CONN_MANAGER:
1632 tipc_node_unlock(n_ptr);
247f0f3c 1633 tipc_port_proto_rcv(buf);
3af390e2 1634 continue;
a5377831 1635 case BCAST_PROTOCOL:
247f0f3c 1636 tipc_link_sync_rcv(n_ptr, buf);
a5377831 1637 break;
3af390e2
YX
1638 default:
1639 kfree_skb(buf);
3af390e2 1640 break;
b97bf3fd 1641 }
4323add6 1642 tipc_node_unlock(n_ptr);
3af390e2
YX
1643 continue;
1644unlock_discard:
3af390e2
YX
1645 tipc_node_unlock(n_ptr);
1646discard:
5f6d9123 1647 kfree_skb(buf);
b97bf3fd 1648 }
4323add6 1649 read_unlock_bh(&tipc_net_lock);
b97bf3fd
PL
1650}
1651
2c53040f 1652/**
8809b255
AS
1653 * tipc_link_defer_pkt - Add out-of-sequence message to deferred reception queue
1654 *
1655 * Returns increase in queue length (i.e. 0 or 1)
b97bf3fd 1656 */
8809b255 1657u32 tipc_link_defer_pkt(struct sk_buff **head, struct sk_buff **tail,
4323add6 1658 struct sk_buff *buf)
b97bf3fd 1659{
8809b255
AS
1660 struct sk_buff *queue_buf;
1661 struct sk_buff **prev;
f905730c 1662 u32 seq_no = buf_seqno(buf);
b97bf3fd
PL
1663
1664 buf->next = NULL;
1665
1666 /* Empty queue ? */
1667 if (*head == NULL) {
1668 *head = *tail = buf;
1669 return 1;
1670 }
1671
1672 /* Last ? */
f905730c 1673 if (less(buf_seqno(*tail), seq_no)) {
b97bf3fd
PL
1674 (*tail)->next = buf;
1675 *tail = buf;
1676 return 1;
1677 }
1678
8809b255
AS
1679 /* Locate insertion point in queue, then insert; discard if duplicate */
1680 prev = head;
1681 queue_buf = *head;
1682 for (;;) {
1683 u32 curr_seqno = buf_seqno(queue_buf);
b97bf3fd 1684
8809b255 1685 if (seq_no == curr_seqno) {
5f6d9123 1686 kfree_skb(buf);
8809b255 1687 return 0;
b97bf3fd 1688 }
8809b255
AS
1689
1690 if (less(seq_no, curr_seqno))
b97bf3fd 1691 break;
b97bf3fd 1692
8809b255
AS
1693 prev = &queue_buf->next;
1694 queue_buf = queue_buf->next;
1695 }
b97bf3fd 1696
8809b255
AS
1697 buf->next = queue_buf;
1698 *prev = buf;
1699 return 1;
b97bf3fd
PL
1700}
1701
8809b255 1702/*
b97bf3fd
PL
1703 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1704 */
a18c4bc3 1705static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
b97bf3fd
PL
1706 struct sk_buff *buf)
1707{
f905730c 1708 u32 seq_no = buf_seqno(buf);
b97bf3fd
PL
1709
1710 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
247f0f3c 1711 tipc_link_proto_rcv(l_ptr, buf);
b97bf3fd
PL
1712 return;
1713 }
1714
b97bf3fd 1715 /* Record OOS packet arrival (force mismatch on next timeout) */
b97bf3fd
PL
1716 l_ptr->checkpoint--;
1717
c4307285 1718 /*
b97bf3fd
PL
1719 * Discard packet if a duplicate; otherwise add it to deferred queue
1720 * and notify peer of gap as per protocol specification
1721 */
b97bf3fd
PL
1722 if (less(seq_no, mod(l_ptr->next_in_no))) {
1723 l_ptr->stats.duplicates++;
5f6d9123 1724 kfree_skb(buf);
b97bf3fd
PL
1725 return;
1726 }
1727
4323add6
PL
1728 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1729 &l_ptr->newest_deferred_in, buf)) {
b97bf3fd
PL
1730 l_ptr->deferred_inqueue_sz++;
1731 l_ptr->stats.deferred_recv++;
64380a04 1732 TIPC_SKB_CB(buf)->deferred = true;
b97bf3fd 1733 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
247f0f3c 1734 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
b97bf3fd
PL
1735 } else
1736 l_ptr->stats.duplicates++;
1737}
1738
1739/*
1740 * Send protocol message to the other endpoint.
1741 */
247f0f3c
YX
1742void tipc_link_proto_xmit(struct tipc_link *l_ptr, u32 msg_typ, int probe_msg,
1743 u32 gap, u32 tolerance, u32 priority, u32 ack_mtu)
b97bf3fd 1744{
1fc54d8f 1745 struct sk_buff *buf = NULL;
b97bf3fd 1746 struct tipc_msg *msg = l_ptr->pmsg;
c4307285 1747 u32 msg_size = sizeof(l_ptr->proto_msg);
75f0aa49 1748 int r_flag;
b97bf3fd 1749
92d2c905 1750 /* Discard any previous message that was deferred due to congestion */
92d2c905 1751 if (l_ptr->proto_msg_queue) {
5f6d9123 1752 kfree_skb(l_ptr->proto_msg_queue);
92d2c905
AS
1753 l_ptr->proto_msg_queue = NULL;
1754 }
1755
77a7e07a
YX
1756 /* Don't send protocol message during link changeover */
1757 if (l_ptr->exp_msg_count)
b97bf3fd 1758 return;
b4b56102
AS
1759
1760 /* Abort non-RESET send if communication with node is prohibited */
b4b56102
AS
1761 if ((l_ptr->owner->block_setup) && (msg_typ != RESET_MSG))
1762 return;
1763
92d2c905 1764 /* Create protocol message with "out-of-sequence" sequence number */
b97bf3fd 1765 msg_set_type(msg, msg_typ);
7a2f7d18 1766 msg_set_net_plane(msg, l_ptr->net_plane);
7a54d4a9 1767 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
4323add6 1768 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
b97bf3fd
PL
1769
1770 if (msg_typ == STATE_MSG) {
1771 u32 next_sent = mod(l_ptr->next_out_no);
1772
4323add6 1773 if (!tipc_link_is_up(l_ptr))
b97bf3fd
PL
1774 return;
1775 if (l_ptr->next_out)
f905730c 1776 next_sent = buf_seqno(l_ptr->next_out);
b97bf3fd
PL
1777 msg_set_next_sent(msg, next_sent);
1778 if (l_ptr->oldest_deferred_in) {
f905730c 1779 u32 rec = buf_seqno(l_ptr->oldest_deferred_in);
b97bf3fd
PL
1780 gap = mod(rec - mod(l_ptr->next_in_no));
1781 }
1782 msg_set_seq_gap(msg, gap);
1783 if (gap)
1784 l_ptr->stats.sent_nacks++;
1785 msg_set_link_tolerance(msg, tolerance);
1786 msg_set_linkprio(msg, priority);
1787 msg_set_max_pkt(msg, ack_mtu);
1788 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1789 msg_set_probe(msg, probe_msg != 0);
c4307285 1790 if (probe_msg) {
b97bf3fd
PL
1791 u32 mtu = l_ptr->max_pkt;
1792
c4307285 1793 if ((mtu < l_ptr->max_pkt_target) &&
b97bf3fd
PL
1794 link_working_working(l_ptr) &&
1795 l_ptr->fsm_msg_cnt) {
1796 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
c4307285
YH
1797 if (l_ptr->max_pkt_probes == 10) {
1798 l_ptr->max_pkt_target = (msg_size - 4);
1799 l_ptr->max_pkt_probes = 0;
b97bf3fd 1800 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
c4307285 1801 }
b97bf3fd 1802 l_ptr->max_pkt_probes++;
c4307285 1803 }
b97bf3fd
PL
1804
1805 l_ptr->stats.sent_probes++;
c4307285 1806 }
b97bf3fd
PL
1807 l_ptr->stats.sent_states++;
1808 } else { /* RESET_MSG or ACTIVATE_MSG */
1809 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
1810 msg_set_seq_gap(msg, 0);
1811 msg_set_next_sent(msg, 1);
f23d9bf2 1812 msg_set_probe(msg, 0);
b97bf3fd
PL
1813 msg_set_link_tolerance(msg, l_ptr->tolerance);
1814 msg_set_linkprio(msg, l_ptr->priority);
1815 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
1816 }
1817
75f0aa49
AS
1818 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
1819 msg_set_redundant_link(msg, r_flag);
b97bf3fd 1820 msg_set_linkprio(msg, l_ptr->priority);
92d2c905 1821 msg_set_size(msg, msg_size);
b97bf3fd
PL
1822
1823 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
1824
31e3c3f6 1825 buf = tipc_buf_acquire(msg_size);
b97bf3fd
PL
1826 if (!buf)
1827 return;
1828
27d7ff46 1829 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
796c75d0 1830 buf->priority = TC_PRIO_CONTROL;
b97bf3fd 1831
7a2f7d18 1832 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
92d2c905 1833 l_ptr->unacked_window = 0;
5f6d9123 1834 kfree_skb(buf);
b97bf3fd
PL
1835}
1836
1837/*
1838 * Receive protocol message :
c4307285
YH
1839 * Note that network plane id propagates through the network, and may
1840 * change at any time. The node with lowest address rules
b97bf3fd 1841 */
247f0f3c 1842static void tipc_link_proto_rcv(struct tipc_link *l_ptr, struct sk_buff *buf)
b97bf3fd
PL
1843{
1844 u32 rec_gap = 0;
1845 u32 max_pkt_info;
c4307285 1846 u32 max_pkt_ack;
b97bf3fd
PL
1847 u32 msg_tol;
1848 struct tipc_msg *msg = buf_msg(buf);
1849
77a7e07a
YX
1850 /* Discard protocol message during link changeover */
1851 if (l_ptr->exp_msg_count)
b97bf3fd
PL
1852 goto exit;
1853
1854 /* record unnumbered packet arrival (force mismatch on next timeout) */
b97bf3fd
PL
1855 l_ptr->checkpoint--;
1856
7a2f7d18 1857 if (l_ptr->net_plane != msg_net_plane(msg))
b97bf3fd 1858 if (tipc_own_addr > msg_prevnode(msg))
7a2f7d18 1859 l_ptr->net_plane = msg_net_plane(msg);
b97bf3fd 1860
b97bf3fd 1861 switch (msg_type(msg)) {
c4307285 1862
b97bf3fd 1863 case RESET_MSG:
a686e685
AS
1864 if (!link_working_unknown(l_ptr) &&
1865 (l_ptr->peer_session != INVALID_SESSION)) {
641c218d
AS
1866 if (less_eq(msg_session(msg), l_ptr->peer_session))
1867 break; /* duplicate or old reset: ignore */
b97bf3fd 1868 }
b4b56102
AS
1869
1870 if (!msg_redundant_link(msg) && (link_working_working(l_ptr) ||
1871 link_working_unknown(l_ptr))) {
1872 /*
1873 * peer has lost contact -- don't allow peer's links
1874 * to reactivate before we recognize loss & clean up
1875 */
1876 l_ptr->owner->block_setup = WAIT_NODE_DOWN;
1877 }
1878
47361c87
AS
1879 link_state_event(l_ptr, RESET_MSG);
1880
b97bf3fd
PL
1881 /* fall thru' */
1882 case ACTIVATE_MSG:
1883 /* Update link settings according other endpoint's values */
b97bf3fd
PL
1884 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
1885
2db9983a
AS
1886 msg_tol = msg_link_tolerance(msg);
1887 if (msg_tol > l_ptr->tolerance)
b97bf3fd
PL
1888 link_set_supervision_props(l_ptr, msg_tol);
1889
1890 if (msg_linkprio(msg) > l_ptr->priority)
1891 l_ptr->priority = msg_linkprio(msg);
1892
1893 max_pkt_info = msg_max_pkt(msg);
c4307285 1894 if (max_pkt_info) {
b97bf3fd
PL
1895 if (max_pkt_info < l_ptr->max_pkt_target)
1896 l_ptr->max_pkt_target = max_pkt_info;
1897 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
1898 l_ptr->max_pkt = l_ptr->max_pkt_target;
1899 } else {
c4307285 1900 l_ptr->max_pkt = l_ptr->max_pkt_target;
b97bf3fd 1901 }
b97bf3fd 1902
4d75313c 1903 /* Synchronize broadcast link info, if not done previously */
7a54d4a9
AS
1904 if (!tipc_node_is_up(l_ptr->owner)) {
1905 l_ptr->owner->bclink.last_sent =
1906 l_ptr->owner->bclink.last_in =
1907 msg_last_bcast(msg);
1908 l_ptr->owner->bclink.oos_state = 0;
1909 }
4d75313c 1910
b97bf3fd
PL
1911 l_ptr->peer_session = msg_session(msg);
1912 l_ptr->peer_bearer_id = msg_bearer_id(msg);
47361c87
AS
1913
1914 if (msg_type(msg) == ACTIVATE_MSG)
1915 link_state_event(l_ptr, ACTIVATE_MSG);
b97bf3fd
PL
1916 break;
1917 case STATE_MSG:
1918
2db9983a
AS
1919 msg_tol = msg_link_tolerance(msg);
1920 if (msg_tol)
b97bf3fd 1921 link_set_supervision_props(l_ptr, msg_tol);
c4307285
YH
1922
1923 if (msg_linkprio(msg) &&
b97bf3fd 1924 (msg_linkprio(msg) != l_ptr->priority)) {
2cf8aa19
EH
1925 pr_warn("%s<%s>, priority change %u->%u\n",
1926 link_rst_msg, l_ptr->name, l_ptr->priority,
1927 msg_linkprio(msg));
b97bf3fd 1928 l_ptr->priority = msg_linkprio(msg);
4323add6 1929 tipc_link_reset(l_ptr); /* Enforce change to take effect */
b97bf3fd
PL
1930 break;
1931 }
1932 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1933 l_ptr->stats.recv_states++;
1934 if (link_reset_unknown(l_ptr))
1935 break;
1936
1937 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
c4307285 1938 rec_gap = mod(msg_next_sent(msg) -
b97bf3fd
PL
1939 mod(l_ptr->next_in_no));
1940 }
1941
1942 max_pkt_ack = msg_max_pkt(msg);
c4307285 1943 if (max_pkt_ack > l_ptr->max_pkt) {
c4307285
YH
1944 l_ptr->max_pkt = max_pkt_ack;
1945 l_ptr->max_pkt_probes = 0;
1946 }
b97bf3fd
PL
1947
1948 max_pkt_ack = 0;
c4307285 1949 if (msg_probe(msg)) {
b97bf3fd 1950 l_ptr->stats.recv_probes++;
a016892c 1951 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
c4307285 1952 max_pkt_ack = msg_size(msg);
c4307285 1953 }
b97bf3fd
PL
1954
1955 /* Protocol message before retransmits, reduce loss risk */
389dd9bc 1956 if (l_ptr->owner->bclink.recv_permitted)
7a54d4a9
AS
1957 tipc_bclink_update_link_state(l_ptr->owner,
1958 msg_last_bcast(msg));
b97bf3fd
PL
1959
1960 if (rec_gap || (msg_probe(msg))) {
247f0f3c
YX
1961 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, rec_gap, 0,
1962 0, max_pkt_ack);
b97bf3fd
PL
1963 }
1964 if (msg_seq_gap(msg)) {
b97bf3fd 1965 l_ptr->stats.recv_nacks++;
4323add6
PL
1966 tipc_link_retransmit(l_ptr, l_ptr->first_out,
1967 msg_seq_gap(msg));
b97bf3fd
PL
1968 }
1969 break;
b97bf3fd
PL
1970 }
1971exit:
5f6d9123 1972 kfree_skb(buf);
b97bf3fd
PL
1973}
1974
1975
170b3927
JPM
1976/* tipc_link_tunnel_xmit(): Tunnel one packet via a link belonging to
1977 * a different bearer. Owner node is locked.
b97bf3fd 1978 */
170b3927
JPM
1979static void tipc_link_tunnel_xmit(struct tipc_link *l_ptr,
1980 struct tipc_msg *tunnel_hdr,
1981 struct tipc_msg *msg,
1982 u32 selector)
b97bf3fd 1983{
a18c4bc3 1984 struct tipc_link *tunnel;
b97bf3fd
PL
1985 struct sk_buff *buf;
1986 u32 length = msg_size(msg);
1987
1988 tunnel = l_ptr->owner->active_links[selector & 1];
5392d646 1989 if (!tipc_link_is_up(tunnel)) {
2cf8aa19 1990 pr_warn("%stunnel link no longer available\n", link_co_err);
b97bf3fd 1991 return;
5392d646 1992 }
b97bf3fd 1993 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
31e3c3f6 1994 buf = tipc_buf_acquire(length + INT_H_SIZE);
5392d646 1995 if (!buf) {
2cf8aa19 1996 pr_warn("%sunable to send tunnel msg\n", link_co_err);
b97bf3fd 1997 return;
5392d646 1998 }
27d7ff46
ACM
1999 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
2000 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
247f0f3c 2001 __tipc_link_xmit(tunnel, buf);
b97bf3fd
PL
2002}
2003
2004
170b3927
JPM
2005/* tipc_link_failover_send_queue(): A link has gone down, but a second
2006 * link is still active. We can do failover. Tunnel the failing link's
2007 * whole send queue via the remaining link. This way, we don't lose
2008 * any packets, and sequence order is preserved for subsequent traffic
2009 * sent over the remaining link. Owner node is locked.
b97bf3fd 2010 */
170b3927 2011void tipc_link_failover_send_queue(struct tipc_link *l_ptr)
b97bf3fd
PL
2012{
2013 u32 msgcount = l_ptr->out_queue_size;
2014 struct sk_buff *crs = l_ptr->first_out;
a18c4bc3 2015 struct tipc_link *tunnel = l_ptr->owner->active_links[0];
b97bf3fd 2016 struct tipc_msg tunnel_hdr;
5392d646 2017 int split_bundles;
b97bf3fd
PL
2018
2019 if (!tunnel)
2020 return;
2021
c68ca7b7 2022 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
75715217 2023 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
b97bf3fd
PL
2024 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2025 msg_set_msgcnt(&tunnel_hdr, msgcount);
f131072c 2026
b97bf3fd
PL
2027 if (!l_ptr->first_out) {
2028 struct sk_buff *buf;
2029
31e3c3f6 2030 buf = tipc_buf_acquire(INT_H_SIZE);
b97bf3fd 2031 if (buf) {
27d7ff46 2032 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
b97bf3fd 2033 msg_set_size(&tunnel_hdr, INT_H_SIZE);
247f0f3c 2034 __tipc_link_xmit(tunnel, buf);
b97bf3fd 2035 } else {
2cf8aa19
EH
2036 pr_warn("%sunable to send changeover msg\n",
2037 link_co_err);
b97bf3fd
PL
2038 }
2039 return;
2040 }
f131072c 2041
c4307285 2042 split_bundles = (l_ptr->owner->active_links[0] !=
5392d646
AS
2043 l_ptr->owner->active_links[1]);
2044
b97bf3fd
PL
2045 while (crs) {
2046 struct tipc_msg *msg = buf_msg(crs);
2047
2048 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
b97bf3fd 2049 struct tipc_msg *m = msg_get_wrapped(msg);
0e65967e 2050 unchar *pos = (unchar *)m;
b97bf3fd 2051
d788d805 2052 msgcount = msg_msgcnt(msg);
b97bf3fd 2053 while (msgcount--) {
0e65967e 2054 msg_set_seqno(m, msg_seqno(msg));
170b3927
JPM
2055 tipc_link_tunnel_xmit(l_ptr, &tunnel_hdr, m,
2056 msg_link_selector(m));
b97bf3fd
PL
2057 pos += align(msg_size(m));
2058 m = (struct tipc_msg *)pos;
2059 }
2060 } else {
170b3927
JPM
2061 tipc_link_tunnel_xmit(l_ptr, &tunnel_hdr, msg,
2062 msg_link_selector(msg));
b97bf3fd
PL
2063 }
2064 crs = crs->next;
2065 }
2066}
2067
247f0f3c 2068/* tipc_link_dup_queue_xmit(): A second link has become active. Tunnel a
170b3927
JPM
2069 * duplicate of the first link's send queue via the new link. This way, we
2070 * are guaranteed that currently queued packets from a socket are delivered
2071 * before future traffic from the same socket, even if this is using the
2072 * new link. The last arriving copy of each duplicate packet is dropped at
2073 * the receiving end by the regular protocol check, so packet cardinality
2074 * and sequence order is preserved per sender/receiver socket pair.
2075 * Owner node is locked.
2076 */
247f0f3c 2077void tipc_link_dup_queue_xmit(struct tipc_link *l_ptr,
170b3927 2078 struct tipc_link *tunnel)
b97bf3fd
PL
2079{
2080 struct sk_buff *iter;
2081 struct tipc_msg tunnel_hdr;
2082
c68ca7b7 2083 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
75715217 2084 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
b97bf3fd
PL
2085 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
2086 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2087 iter = l_ptr->first_out;
2088 while (iter) {
2089 struct sk_buff *outbuf;
2090 struct tipc_msg *msg = buf_msg(iter);
2091 u32 length = msg_size(msg);
2092
2093 if (msg_user(msg) == MSG_BUNDLER)
2094 msg_set_type(msg, CLOSED_MSG);
2095 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
c4307285 2096 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
b97bf3fd 2097 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
31e3c3f6 2098 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
b97bf3fd 2099 if (outbuf == NULL) {
2cf8aa19
EH
2100 pr_warn("%sunable to send duplicate msg\n",
2101 link_co_err);
b97bf3fd
PL
2102 return;
2103 }
27d7ff46
ACM
2104 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
2105 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
2106 length);
247f0f3c 2107 __tipc_link_xmit(tunnel, outbuf);
4323add6 2108 if (!tipc_link_is_up(l_ptr))
b97bf3fd
PL
2109 return;
2110 iter = iter->next;
2111 }
2112}
2113
b97bf3fd
PL
2114/**
2115 * buf_extract - extracts embedded TIPC message from another message
2116 * @skb: encapsulating message buffer
2117 * @from_pos: offset to extract from
2118 *
c4307285 2119 * Returns a new message buffer containing an embedded message. The
b97bf3fd
PL
2120 * encapsulating message itself is left unchanged.
2121 */
b97bf3fd
PL
2122static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
2123{
2124 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
2125 u32 size = msg_size(msg);
2126 struct sk_buff *eb;
2127
31e3c3f6 2128 eb = tipc_buf_acquire(size);
b97bf3fd 2129 if (eb)
27d7ff46 2130 skb_copy_to_linear_data(eb, msg, size);
b97bf3fd
PL
2131 return eb;
2132}
2133
1dab3d5a
JPM
2134
2135
2136/* tipc_link_dup_rcv(): Receive a tunnelled DUPLICATE_MSG packet.
2137 * Owner node is locked.
2138 */
2139static void tipc_link_dup_rcv(struct tipc_link *l_ptr,
2140 struct sk_buff *t_buf)
2141{
2142 struct sk_buff *buf;
2143
2144 if (!tipc_link_is_up(l_ptr))
2145 return;
2146
2147 buf = buf_extract(t_buf, INT_H_SIZE);
2148 if (buf == NULL) {
2149 pr_warn("%sfailed to extract inner dup pkt\n", link_co_err);
2150 return;
2151 }
2152
2153 /* Add buffer to deferred queue, if applicable: */
2154 link_handle_out_of_seq_msg(l_ptr, buf);
2155}
2156
f006c9c7
JPM
2157/* tipc_link_failover_rcv(): Receive a tunnelled ORIGINAL_MSG packet
2158 * Owner node is locked.
2159 */
2160static struct sk_buff *tipc_link_failover_rcv(struct tipc_link *l_ptr,
2161 struct sk_buff *t_buf)
2162{
2163 struct tipc_msg *t_msg = buf_msg(t_buf);
2164 struct sk_buff *buf = NULL;
2165 struct tipc_msg *msg;
2166
2167 if (tipc_link_is_up(l_ptr))
2168 tipc_link_reset(l_ptr);
2169
2170 /* First failover packet? */
2171 if (l_ptr->exp_msg_count == START_CHANGEOVER)
2172 l_ptr->exp_msg_count = msg_msgcnt(t_msg);
2173
2174 /* Should there be an inner packet? */
2175 if (l_ptr->exp_msg_count) {
2176 l_ptr->exp_msg_count--;
2177 buf = buf_extract(t_buf, INT_H_SIZE);
2178 if (buf == NULL) {
2179 pr_warn("%sno inner failover pkt\n", link_co_err);
2180 goto exit;
2181 }
2182 msg = buf_msg(buf);
2183
2184 if (less(msg_seqno(msg), l_ptr->reset_checkpoint)) {
2185 kfree_skb(buf);
2186 buf = NULL;
2187 goto exit;
2188 }
2189 if (msg_user(msg) == MSG_FRAGMENTER) {
2190 l_ptr->stats.recv_fragments++;
2191 tipc_link_frag_rcv(&l_ptr->reasm_head,
2192 &l_ptr->reasm_tail,
2193 &buf);
2194 }
2195 }
f006c9c7 2196exit:
7d33939f
JPM
2197 if ((l_ptr->exp_msg_count == 0) && (l_ptr->flags & LINK_STOPPED)) {
2198 tipc_node_detach_link(l_ptr->owner, l_ptr);
2199 kfree(l_ptr);
2200 }
f006c9c7
JPM
2201 return buf;
2202}
2203
1dab3d5a 2204/* tipc_link_tunnel_rcv(): Receive a tunnelled packet, sent
170b3927
JPM
2205 * via other link as result of a failover (ORIGINAL_MSG) or
2206 * a new active link (DUPLICATE_MSG). Failover packets are
2207 * returned to the active link for delivery upwards.
2208 * Owner node is locked.
b97bf3fd 2209 */
3bb53380 2210static int tipc_link_tunnel_rcv(struct tipc_node *n_ptr,
170b3927 2211 struct sk_buff **buf)
b97bf3fd 2212{
02842f71
JPM
2213 struct sk_buff *t_buf = *buf;
2214 struct tipc_link *l_ptr;
2215 struct tipc_msg *t_msg = buf_msg(t_buf);
2216 u32 bearer_id = msg_bearer_id(t_msg);
b97bf3fd 2217
1e9d47a9
JPM
2218 *buf = NULL;
2219
cb4b102f
DC
2220 if (bearer_id >= MAX_BEARERS)
2221 goto exit;
1dab3d5a 2222
02842f71
JPM
2223 l_ptr = n_ptr->links[bearer_id];
2224 if (!l_ptr)
b97bf3fd 2225 goto exit;
b97bf3fd 2226
02842f71
JPM
2227 if (msg_type(t_msg) == DUPLICATE_MSG)
2228 tipc_link_dup_rcv(l_ptr, t_buf);
2229 else if (msg_type(t_msg) == ORIGINAL_MSG)
2230 *buf = tipc_link_failover_rcv(l_ptr, t_buf);
1e9d47a9
JPM
2231 else
2232 pr_warn("%sunknown tunnel pkt received\n", link_co_err);
b97bf3fd 2233exit:
02842f71 2234 kfree_skb(t_buf);
1e9d47a9 2235 return *buf != NULL;
b97bf3fd
PL
2236}
2237
2238/*
2239 * Bundler functionality:
2240 */
247f0f3c 2241void tipc_link_bundle_rcv(struct sk_buff *buf)
b97bf3fd
PL
2242{
2243 u32 msgcount = msg_msgcnt(buf_msg(buf));
2244 u32 pos = INT_H_SIZE;
2245 struct sk_buff *obuf;
2246
b97bf3fd
PL
2247 while (msgcount--) {
2248 obuf = buf_extract(buf, pos);
2249 if (obuf == NULL) {
2cf8aa19 2250 pr_warn("Link unable to unbundle message(s)\n");
a10bd924 2251 break;
3ff50b79 2252 }
b97bf3fd 2253 pos += align(msg_size(buf_msg(obuf)));
4323add6 2254 tipc_net_route_msg(obuf);
b97bf3fd 2255 }
5f6d9123 2256 kfree_skb(buf);
b97bf3fd
PL
2257}
2258
2259/*
2260 * Fragmentation/defragmentation:
2261 */
2262
c4307285 2263/*
247f0f3c 2264 * tipc_link_frag_xmit: Entry for buffers needing fragmentation.
c4307285 2265 * The buffer is complete, inclusive total message length.
b97bf3fd
PL
2266 * Returns user data length.
2267 */
247f0f3c 2268static int tipc_link_frag_xmit(struct tipc_link *l_ptr, struct sk_buff *buf)
b97bf3fd 2269{
77561557
AS
2270 struct sk_buff *buf_chain = NULL;
2271 struct sk_buff *buf_chain_tail = (struct sk_buff *)&buf_chain;
b97bf3fd
PL
2272 struct tipc_msg *inmsg = buf_msg(buf);
2273 struct tipc_msg fragm_hdr;
2274 u32 insize = msg_size(inmsg);
2275 u32 dsz = msg_data_sz(inmsg);
2276 unchar *crs = buf->data;
2277 u32 rest = insize;
15e979da 2278 u32 pack_sz = l_ptr->max_pkt;
b97bf3fd 2279 u32 fragm_sz = pack_sz - INT_H_SIZE;
77561557 2280 u32 fragm_no = 0;
9c396a7b 2281 u32 destaddr;
b97bf3fd
PL
2282
2283 if (msg_short(inmsg))
2284 destaddr = l_ptr->addr;
9c396a7b
AS
2285 else
2286 destaddr = msg_destnode(inmsg);
b97bf3fd 2287
b97bf3fd 2288 /* Prepare reusable fragment header: */
c68ca7b7 2289 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
75715217 2290 INT_H_SIZE, destaddr);
b97bf3fd
PL
2291
2292 /* Chop up message: */
b97bf3fd
PL
2293 while (rest > 0) {
2294 struct sk_buff *fragm;
2295
2296 if (rest <= fragm_sz) {
2297 fragm_sz = rest;
2298 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
2299 }
31e3c3f6 2300 fragm = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
b97bf3fd 2301 if (fragm == NULL) {
5f6d9123 2302 kfree_skb(buf);
d77b3831 2303 kfree_skb_list(buf_chain);
77561557 2304 return -ENOMEM;
b97bf3fd
PL
2305 }
2306 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
77561557
AS
2307 fragm_no++;
2308 msg_set_fragm_no(&fragm_hdr, fragm_no);
27d7ff46
ACM
2309 skb_copy_to_linear_data(fragm, &fragm_hdr, INT_H_SIZE);
2310 skb_copy_to_linear_data_offset(fragm, INT_H_SIZE, crs,
2311 fragm_sz);
77561557
AS
2312 buf_chain_tail->next = fragm;
2313 buf_chain_tail = fragm;
b97bf3fd 2314
b97bf3fd
PL
2315 rest -= fragm_sz;
2316 crs += fragm_sz;
2317 msg_set_type(&fragm_hdr, FRAGMENT);
2318 }
5f6d9123 2319 kfree_skb(buf);
77561557
AS
2320
2321 /* Append chain of fragments to send queue & send them */
77561557
AS
2322 l_ptr->long_msg_seq_no++;
2323 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
2324 l_ptr->stats.sent_fragments += fragm_no;
2325 l_ptr->stats.sent_fragmented++;
2326 tipc_link_push_queue(l_ptr);
2327
b97bf3fd
PL
2328 return dsz;
2329}
2330
03b92017 2331/* tipc_link_frag_rcv(): Called with node lock on. Returns
b97bf3fd
PL
2332 * the reassembled buffer if message is complete.
2333 */
03b92017
JPM
2334int tipc_link_frag_rcv(struct sk_buff **head, struct sk_buff **tail,
2335 struct sk_buff **fbuf)
b97bf3fd 2336{
40ba3cdf
EH
2337 struct sk_buff *frag = *fbuf;
2338 struct tipc_msg *msg = buf_msg(frag);
2339 u32 fragid = msg_type(msg);
2340 bool headstolen;
2341 int delta;
2342
2343 skb_pull(frag, msg_hdr_sz(msg));
2344 if (fragid == FIRST_FRAGMENT) {
2345 if (*head || skb_unclone(frag, GFP_ATOMIC))
2346 goto out_free;
2347 *head = frag;
2348 skb_frag_list_init(*head);
03b92017 2349 *fbuf = NULL;
b97bf3fd 2350 return 0;
3db0a197
EH
2351 } else if (*head &&
2352 skb_try_coalesce(*head, frag, &headstolen, &delta)) {
40ba3cdf
EH
2353 kfree_skb_partial(frag, headstolen);
2354 } else {
2355 if (!*head)
2356 goto out_free;
2357 if (!skb_has_frag_list(*head))
2358 skb_shinfo(*head)->frag_list = frag;
2359 else
2360 (*tail)->next = frag;
2361 *tail = frag;
2362 (*head)->truesize += frag->truesize;
2363 }
2364 if (fragid == LAST_FRAGMENT) {
2365 *fbuf = *head;
2366 *tail = *head = NULL;
2367 return LINK_REASM_COMPLETE;
b97bf3fd 2368 }
03b92017 2369 *fbuf = NULL;
b97bf3fd 2370 return 0;
40ba3cdf
EH
2371out_free:
2372 pr_warn_ratelimited("Link unable to reassemble fragmented message\n");
2373 kfree_skb(*fbuf);
03b92017 2374 *fbuf = NULL;
40ba3cdf 2375 return LINK_REASM_ERROR;
b97bf3fd
PL
2376}
2377
a18c4bc3 2378static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance)
b97bf3fd 2379{
5413b4c6
AS
2380 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
2381 return;
2382
b97bf3fd
PL
2383 l_ptr->tolerance = tolerance;
2384 l_ptr->continuity_interval =
2385 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
2386 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
2387}
2388
a18c4bc3 2389void tipc_link_set_queue_limits(struct tipc_link *l_ptr, u32 window)
b97bf3fd
PL
2390{
2391 /* Data messages from this node, inclusive FIRST_FRAGM */
06d82c91
AS
2392 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
2393 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
2394 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
2395 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
b97bf3fd 2396 /* Transiting data messages,inclusive FIRST_FRAGM */
06d82c91
AS
2397 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
2398 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
2399 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
2400 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
b97bf3fd 2401 l_ptr->queue_limit[CONN_MANAGER] = 1200;
b97bf3fd
PL
2402 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
2403 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
2404 /* FRAGMENT and LAST_FRAGMENT packets */
2405 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
2406}
2407
e099e86c
JPM
2408/* tipc_link_find_owner - locate owner node of link by link's name
2409 * @name: pointer to link name string
2410 * @bearer_id: pointer to index in 'node->links' array where the link was found.
4323add6 2411 * Caller must hold 'tipc_net_lock' to ensure node and bearer are not deleted;
b97bf3fd 2412 * this also prevents link deletion.
c4307285 2413 *
e099e86c 2414 * Returns pointer to node owning the link, or 0 if no matching link is found.
b97bf3fd 2415 */
e099e86c
JPM
2416static struct tipc_node *tipc_link_find_owner(const char *link_name,
2417 unsigned int *bearer_id)
b97bf3fd 2418{
a18c4bc3 2419 struct tipc_link *l_ptr;
bbfbe47c 2420 struct tipc_node *n_ptr;
e099e86c 2421 struct tipc_node *found_node = 0;
bbfbe47c 2422 int i;
b97bf3fd 2423
e099e86c 2424 *bearer_id = 0;
6c7a762e
YX
2425 rcu_read_lock();
2426 list_for_each_entry_rcu(n_ptr, &tipc_node_list, list) {
a11607f5 2427 tipc_node_lock(n_ptr);
bbfbe47c
EH
2428 for (i = 0; i < MAX_BEARERS; i++) {
2429 l_ptr = n_ptr->links[i];
e099e86c
JPM
2430 if (l_ptr && !strcmp(l_ptr->name, link_name)) {
2431 *bearer_id = i;
2432 found_node = n_ptr;
2433 break;
2434 }
bbfbe47c 2435 }
a11607f5 2436 tipc_node_unlock(n_ptr);
e099e86c
JPM
2437 if (found_node)
2438 break;
bbfbe47c 2439 }
6c7a762e
YX
2440 rcu_read_unlock();
2441
e099e86c 2442 return found_node;
b97bf3fd
PL
2443}
2444
5c216e1d
AS
2445/**
2446 * link_value_is_valid -- validate proposed link tolerance/priority/window
2447 *
2c53040f
BH
2448 * @cmd: value type (TIPC_CMD_SET_LINK_*)
2449 * @new_value: the new value
5c216e1d
AS
2450 *
2451 * Returns 1 if value is within range, 0 if not.
2452 */
5c216e1d
AS
2453static int link_value_is_valid(u16 cmd, u32 new_value)
2454{
2455 switch (cmd) {
2456 case TIPC_CMD_SET_LINK_TOL:
2457 return (new_value >= TIPC_MIN_LINK_TOL) &&
2458 (new_value <= TIPC_MAX_LINK_TOL);
2459 case TIPC_CMD_SET_LINK_PRI:
2460 return (new_value <= TIPC_MAX_LINK_PRI);
2461 case TIPC_CMD_SET_LINK_WINDOW:
2462 return (new_value >= TIPC_MIN_LINK_WIN) &&
2463 (new_value <= TIPC_MAX_LINK_WIN);
2464 }
2465 return 0;
2466}
2467
5c216e1d
AS
2468/**
2469 * link_cmd_set_value - change priority/tolerance/window for link/bearer/media
2c53040f
BH
2470 * @name: ptr to link, bearer, or media name
2471 * @new_value: new value of link, bearer, or media setting
2472 * @cmd: which link, bearer, or media attribute to set (TIPC_CMD_SET_LINK_*)
5c216e1d
AS
2473 *
2474 * Caller must hold 'tipc_net_lock' to ensure link/bearer/media is not deleted.
2475 *
2476 * Returns 0 if value updated and negative value on error.
2477 */
5c216e1d
AS
2478static int link_cmd_set_value(const char *name, u32 new_value, u16 cmd)
2479{
2480 struct tipc_node *node;
a18c4bc3 2481 struct tipc_link *l_ptr;
5c216e1d 2482 struct tipc_bearer *b_ptr;
358a0d1c 2483 struct tipc_media *m_ptr;
e099e86c 2484 int bearer_id;
636c0371 2485 int res = 0;
5c216e1d 2486
e099e86c
JPM
2487 node = tipc_link_find_owner(name, &bearer_id);
2488 if (node) {
5c216e1d 2489 tipc_node_lock(node);
e099e86c
JPM
2490 l_ptr = node->links[bearer_id];
2491
2492 if (l_ptr) {
2493 switch (cmd) {
2494 case TIPC_CMD_SET_LINK_TOL:
2495 link_set_supervision_props(l_ptr, new_value);
247f0f3c
YX
2496 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0,
2497 new_value, 0, 0);
e099e86c
JPM
2498 break;
2499 case TIPC_CMD_SET_LINK_PRI:
2500 l_ptr->priority = new_value;
247f0f3c
YX
2501 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0,
2502 0, new_value, 0);
e099e86c
JPM
2503 break;
2504 case TIPC_CMD_SET_LINK_WINDOW:
2505 tipc_link_set_queue_limits(l_ptr, new_value);
2506 break;
2507 default:
2508 res = -EINVAL;
2509 break;
2510 }
5c216e1d
AS
2511 }
2512 tipc_node_unlock(node);
636c0371 2513 return res;
5c216e1d
AS
2514 }
2515
2516 b_ptr = tipc_bearer_find(name);
2517 if (b_ptr) {
2518 switch (cmd) {
2519 case TIPC_CMD_SET_LINK_TOL:
2520 b_ptr->tolerance = new_value;
636c0371 2521 break;
5c216e1d
AS
2522 case TIPC_CMD_SET_LINK_PRI:
2523 b_ptr->priority = new_value;
636c0371 2524 break;
5c216e1d
AS
2525 case TIPC_CMD_SET_LINK_WINDOW:
2526 b_ptr->window = new_value;
636c0371
YX
2527 break;
2528 default:
2529 res = -EINVAL;
2530 break;
5c216e1d 2531 }
636c0371 2532 return res;
5c216e1d
AS
2533 }
2534
2535 m_ptr = tipc_media_find(name);
2536 if (!m_ptr)
2537 return -ENODEV;
2538 switch (cmd) {
2539 case TIPC_CMD_SET_LINK_TOL:
2540 m_ptr->tolerance = new_value;
636c0371 2541 break;
5c216e1d
AS
2542 case TIPC_CMD_SET_LINK_PRI:
2543 m_ptr->priority = new_value;
636c0371 2544 break;
5c216e1d
AS
2545 case TIPC_CMD_SET_LINK_WINDOW:
2546 m_ptr->window = new_value;
636c0371
YX
2547 break;
2548 default:
2549 res = -EINVAL;
2550 break;
5c216e1d 2551 }
636c0371 2552 return res;
5c216e1d
AS
2553}
2554
c4307285 2555struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
4323add6 2556 u16 cmd)
b97bf3fd
PL
2557{
2558 struct tipc_link_config *args;
c4307285 2559 u32 new_value;
c4307285 2560 int res;
b97bf3fd
PL
2561
2562 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
4323add6 2563 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
b97bf3fd
PL
2564
2565 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2566 new_value = ntohl(args->value);
2567
5c216e1d
AS
2568 if (!link_value_is_valid(cmd, new_value))
2569 return tipc_cfg_reply_error_string(
2570 "cannot change, value invalid");
2571
4323add6 2572 if (!strcmp(args->name, tipc_bclink_name)) {
b97bf3fd 2573 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
4323add6
PL
2574 (tipc_bclink_set_queue_limits(new_value) == 0))
2575 return tipc_cfg_reply_none();
c4307285 2576 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
4323add6 2577 " (cannot change setting on broadcast link)");
b97bf3fd
PL
2578 }
2579
4323add6 2580 read_lock_bh(&tipc_net_lock);
5c216e1d 2581 res = link_cmd_set_value(args->name, new_value, cmd);
4323add6 2582 read_unlock_bh(&tipc_net_lock);
b97bf3fd 2583 if (res)
c4307285 2584 return tipc_cfg_reply_error_string("cannot change link setting");
b97bf3fd 2585
4323add6 2586 return tipc_cfg_reply_none();
b97bf3fd
PL
2587}
2588
2589/**
2590 * link_reset_statistics - reset link statistics
2591 * @l_ptr: pointer to link
2592 */
a18c4bc3 2593static void link_reset_statistics(struct tipc_link *l_ptr)
b97bf3fd
PL
2594{
2595 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2596 l_ptr->stats.sent_info = l_ptr->next_out_no;
2597 l_ptr->stats.recv_info = l_ptr->next_in_no;
2598}
2599
4323add6 2600struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
b97bf3fd
PL
2601{
2602 char *link_name;
a18c4bc3 2603 struct tipc_link *l_ptr;
6c00055a 2604 struct tipc_node *node;
e099e86c 2605 unsigned int bearer_id;
b97bf3fd
PL
2606
2607 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
4323add6 2608 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
b97bf3fd
PL
2609
2610 link_name = (char *)TLV_DATA(req_tlv_area);
4323add6
PL
2611 if (!strcmp(link_name, tipc_bclink_name)) {
2612 if (tipc_bclink_reset_stats())
2613 return tipc_cfg_reply_error_string("link not found");
2614 return tipc_cfg_reply_none();
b97bf3fd 2615 }
4323add6 2616 read_lock_bh(&tipc_net_lock);
e099e86c
JPM
2617 node = tipc_link_find_owner(link_name, &bearer_id);
2618 if (!node) {
2619 read_unlock_bh(&tipc_net_lock);
2620 return tipc_cfg_reply_error_string("link not found");
2621 }
a11607f5 2622 tipc_node_lock(node);
e099e86c 2623 l_ptr = node->links[bearer_id];
b97bf3fd 2624 if (!l_ptr) {
e099e86c 2625 tipc_node_unlock(node);
4323add6
PL
2626 read_unlock_bh(&tipc_net_lock);
2627 return tipc_cfg_reply_error_string("link not found");
b97bf3fd 2628 }
b97bf3fd 2629 link_reset_statistics(l_ptr);
4323add6
PL
2630 tipc_node_unlock(node);
2631 read_unlock_bh(&tipc_net_lock);
2632 return tipc_cfg_reply_none();
b97bf3fd
PL
2633}
2634
2635/**
2636 * percent - convert count to a percentage of total (rounding up or down)
2637 */
b97bf3fd
PL
2638static u32 percent(u32 count, u32 total)
2639{
2640 return (count * 100 + (total / 2)) / total;
2641}
2642
2643/**
4323add6 2644 * tipc_link_stats - print link statistics
b97bf3fd
PL
2645 * @name: link name
2646 * @buf: print buffer area
2647 * @buf_size: size of print buffer area
c4307285 2648 *
b97bf3fd
PL
2649 * Returns length of print buffer data string (or 0 if error)
2650 */
4323add6 2651static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
b97bf3fd 2652{
dc1aed37
EH
2653 struct tipc_link *l;
2654 struct tipc_stats *s;
6c00055a 2655 struct tipc_node *node;
b97bf3fd
PL
2656 char *status;
2657 u32 profile_total = 0;
e099e86c 2658 unsigned int bearer_id;
dc1aed37 2659 int ret;
b97bf3fd 2660
4323add6
PL
2661 if (!strcmp(name, tipc_bclink_name))
2662 return tipc_bclink_stats(buf, buf_size);
b97bf3fd 2663
4323add6 2664 read_lock_bh(&tipc_net_lock);
e099e86c
JPM
2665 node = tipc_link_find_owner(name, &bearer_id);
2666 if (!node) {
4323add6 2667 read_unlock_bh(&tipc_net_lock);
b97bf3fd
PL
2668 return 0;
2669 }
4323add6 2670 tipc_node_lock(node);
e099e86c
JPM
2671
2672 l = node->links[bearer_id];
2673 if (!l) {
2674 tipc_node_unlock(node);
2675 read_unlock_bh(&tipc_net_lock);
2676 return 0;
2677 }
2678
dc1aed37 2679 s = &l->stats;
b97bf3fd 2680
dc1aed37 2681 if (tipc_link_is_active(l))
b97bf3fd 2682 status = "ACTIVE";
dc1aed37 2683 else if (tipc_link_is_up(l))
b97bf3fd
PL
2684 status = "STANDBY";
2685 else
2686 status = "DEFUNCT";
dc1aed37
EH
2687
2688 ret = tipc_snprintf(buf, buf_size, "Link <%s>\n"
2689 " %s MTU:%u Priority:%u Tolerance:%u ms"
2690 " Window:%u packets\n",
2691 l->name, status, l->max_pkt, l->priority,
2692 l->tolerance, l->queue_limit[0]);
2693
2694 ret += tipc_snprintf(buf + ret, buf_size - ret,
2695 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
2696 l->next_in_no - s->recv_info, s->recv_fragments,
2697 s->recv_fragmented, s->recv_bundles,
2698 s->recv_bundled);
2699
2700 ret += tipc_snprintf(buf + ret, buf_size - ret,
2701 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
2702 l->next_out_no - s->sent_info, s->sent_fragments,
2703 s->sent_fragmented, s->sent_bundles,
2704 s->sent_bundled);
2705
2706 profile_total = s->msg_length_counts;
b97bf3fd
PL
2707 if (!profile_total)
2708 profile_total = 1;
dc1aed37
EH
2709
2710 ret += tipc_snprintf(buf + ret, buf_size - ret,
2711 " TX profile sample:%u packets average:%u octets\n"
2712 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
2713 "-16384:%u%% -32768:%u%% -66000:%u%%\n",
2714 s->msg_length_counts,
2715 s->msg_lengths_total / profile_total,
2716 percent(s->msg_length_profile[0], profile_total),
2717 percent(s->msg_length_profile[1], profile_total),
2718 percent(s->msg_length_profile[2], profile_total),
2719 percent(s->msg_length_profile[3], profile_total),
2720 percent(s->msg_length_profile[4], profile_total),
2721 percent(s->msg_length_profile[5], profile_total),
2722 percent(s->msg_length_profile[6], profile_total));
2723
2724 ret += tipc_snprintf(buf + ret, buf_size - ret,
2725 " RX states:%u probes:%u naks:%u defs:%u"
2726 " dups:%u\n", s->recv_states, s->recv_probes,
2727 s->recv_nacks, s->deferred_recv, s->duplicates);
2728
2729 ret += tipc_snprintf(buf + ret, buf_size - ret,
2730 " TX states:%u probes:%u naks:%u acks:%u"
2731 " dups:%u\n", s->sent_states, s->sent_probes,
2732 s->sent_nacks, s->sent_acks, s->retransmitted);
2733
2734 ret += tipc_snprintf(buf + ret, buf_size - ret,
3c294cb3
YX
2735 " Congestion link:%u Send queue"
2736 " max:%u avg:%u\n", s->link_congs,
dc1aed37
EH
2737 s->max_queue_sz, s->queue_sz_counts ?
2738 (s->accu_queue_sz / s->queue_sz_counts) : 0);
b97bf3fd 2739
4323add6
PL
2740 tipc_node_unlock(node);
2741 read_unlock_bh(&tipc_net_lock);
dc1aed37 2742 return ret;
b97bf3fd
PL
2743}
2744
4323add6 2745struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
b97bf3fd
PL
2746{
2747 struct sk_buff *buf;
2748 struct tlv_desc *rep_tlv;
2749 int str_len;
dc1aed37
EH
2750 int pb_len;
2751 char *pb;
b97bf3fd
PL
2752
2753 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
4323add6 2754 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
b97bf3fd 2755
dc1aed37 2756 buf = tipc_cfg_reply_alloc(TLV_SPACE(ULTRA_STRING_MAX_LEN));
b97bf3fd
PL
2757 if (!buf)
2758 return NULL;
2759
2760 rep_tlv = (struct tlv_desc *)buf->data;
dc1aed37
EH
2761 pb = TLV_DATA(rep_tlv);
2762 pb_len = ULTRA_STRING_MAX_LEN;
4323add6 2763 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
dc1aed37 2764 pb, pb_len);
b97bf3fd 2765 if (!str_len) {
5f6d9123 2766 kfree_skb(buf);
c4307285 2767 return tipc_cfg_reply_error_string("link not found");
b97bf3fd 2768 }
dc1aed37 2769 str_len += 1; /* for "\0" */
b97bf3fd
PL
2770 skb_put(buf, TLV_SPACE(str_len));
2771 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
2772
2773 return buf;
2774}
2775
b97bf3fd 2776/**
4323add6 2777 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
b97bf3fd
PL
2778 * @dest: network address of destination node
2779 * @selector: used to select from set of active links
c4307285 2780 *
b97bf3fd
PL
2781 * If no active link can be found, uses default maximum packet size.
2782 */
4323add6 2783u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
b97bf3fd 2784{
6c00055a 2785 struct tipc_node *n_ptr;
a18c4bc3 2786 struct tipc_link *l_ptr;
b97bf3fd 2787 u32 res = MAX_PKT_DEFAULT;
c4307285 2788
b97bf3fd
PL
2789 if (dest == tipc_own_addr)
2790 return MAX_MSG_SIZE;
2791
c4307285 2792 read_lock_bh(&tipc_net_lock);
51a8e4de 2793 n_ptr = tipc_node_find(dest);
b97bf3fd 2794 if (n_ptr) {
4323add6 2795 tipc_node_lock(n_ptr);
b97bf3fd
PL
2796 l_ptr = n_ptr->active_links[selector & 1];
2797 if (l_ptr)
15e979da 2798 res = l_ptr->max_pkt;
4323add6 2799 tipc_node_unlock(n_ptr);
b97bf3fd 2800 }
c4307285 2801 read_unlock_bh(&tipc_net_lock);
b97bf3fd
PL
2802 return res;
2803}
2804
a18c4bc3 2805static void link_print(struct tipc_link *l_ptr, const char *str)
b97bf3fd 2806{
7a2f7d18
YX
2807 struct tipc_bearer *b_ptr;
2808
2809 rcu_read_lock();
2810 b_ptr = rcu_dereference_rtnl(bearer_list[l_ptr->bearer_id]);
2811 if (b_ptr)
2812 pr_info("%s Link %x<%s>:", str, l_ptr->addr, b_ptr->name);
2813 rcu_read_unlock();
8d64a5ba 2814
b97bf3fd 2815 if (link_working_unknown(l_ptr))
5deedde9 2816 pr_cont(":WU\n");
8d64a5ba 2817 else if (link_reset_reset(l_ptr))
5deedde9 2818 pr_cont(":RR\n");
8d64a5ba 2819 else if (link_reset_unknown(l_ptr))
5deedde9 2820 pr_cont(":RU\n");
8d64a5ba 2821 else if (link_working_working(l_ptr))
5deedde9
PG
2822 pr_cont(":WW\n");
2823 else
2824 pr_cont("\n");
b97bf3fd 2825}
This page took 0.919267 seconds and 5 git commands to generate.