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