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