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