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