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