2 * net/tipc/link.c: TIPC link code
4 * Copyright (c) 1996-2007, Ericsson AB
5 * Copyright (c) 2004-2007, Wind River Systems
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
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.
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.
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.
44 #include "node_subscr.h"
45 #include "name_distr.h"
47 #include "name_table.h"
54 * Out-of-range value for link session numbers
57 #define INVALID_SESSION 0x10000
60 * Limit for deferred reception queue:
63 #define DEF_QUEUE_LIMIT 256u
69 #define STARTING_EVT 856384768 /* link processing trigger */
70 #define TRAFFIC_MSG_EVT 560815u /* rx'd ??? */
71 #define TIMEOUT_EVT 560817u /* link timer expired */
74 * The following two 'message types' is really just implementation
75 * data conveniently stored in the message header.
76 * They must not be considered part of the protocol
82 * State value stored in 'exp_msg_count'
85 #define START_CHANGEOVER 100000u
88 * struct link_name - deconstructed link name
89 * @addr_local: network address of node at this end
90 * @if_local: name of interface at this end
91 * @addr_peer: network address of node at far end
92 * @if_peer: name of interface at far end
97 char if_local
[TIPC_MAX_IF_NAME
];
99 char if_peer
[TIPC_MAX_IF_NAME
];
102 static void link_handle_out_of_seq_msg(struct link
*l_ptr
,
103 struct sk_buff
*buf
);
104 static void link_recv_proto_msg(struct link
*l_ptr
, struct sk_buff
*buf
);
105 static int link_recv_changeover_msg(struct link
**l_ptr
, struct sk_buff
**buf
);
106 static void link_set_supervision_props(struct link
*l_ptr
, u32 tolerance
);
107 static int link_send_sections_long(struct port
*sender
,
108 struct iovec
const *msg_sect
,
109 u32 num_sect
, u32 destnode
);
110 static void link_check_defragm_bufs(struct link
*l_ptr
);
111 static void link_state_event(struct link
*l_ptr
, u32 event
);
112 static void link_reset_statistics(struct link
*l_ptr
);
113 static void link_print(struct link
*l_ptr
, struct print_buf
*buf
,
115 static void link_start(struct link
*l_ptr
);
116 static int link_send_long_buf(struct link
*l_ptr
, struct sk_buff
*buf
);
120 * Debugging code used by link routines only
122 * When debugging link problems on a system that has multiple links,
123 * the standard TIPC debugging routines may not be useful since they
124 * allow the output from multiple links to be intermixed. For this reason
125 * routines of the form "dbg_link_XXX()" have been created that will capture
126 * debug info into a link's personal print buffer, which can then be dumped
127 * into the TIPC system log (TIPC_LOG) upon request.
129 * To enable per-link debugging, use LINK_LOG_BUF_SIZE to specify the size
130 * of the print buffer used by each link. If LINK_LOG_BUF_SIZE is set to 0,
131 * the dbg_link_XXX() routines simply send their output to the standard
132 * debug print buffer (DBG_OUTPUT), if it has been defined; this can be useful
133 * when there is only a single link in the system being debugged.
136 * - When enabled, LINK_LOG_BUF_SIZE should be set to at least TIPC_PB_MIN_SIZE
137 * - "l_ptr" must be valid when using dbg_link_XXX() macros
140 #define LINK_LOG_BUF_SIZE 0
142 #define dbg_link(fmt, arg...) \
144 if (LINK_LOG_BUF_SIZE) \
145 tipc_printf(&l_ptr->print_buf, fmt, ## arg); \
147 #define dbg_link_msg(msg, txt) \
149 if (LINK_LOG_BUF_SIZE) \
150 tipc_msg_dbg(&l_ptr->print_buf, msg, txt); \
152 #define dbg_link_state(txt) \
154 if (LINK_LOG_BUF_SIZE) \
155 link_print(l_ptr, &l_ptr->print_buf, txt); \
157 #define dbg_link_dump() do { \
158 if (LINK_LOG_BUF_SIZE) { \
159 tipc_printf(LOG, "\n\nDumping link <%s>:\n", l_ptr->name); \
160 tipc_printbuf_move(LOG, &l_ptr->print_buf); \
164 static void dbg_print_link(struct link
*l_ptr
, const char *str
)
166 if (DBG_OUTPUT
!= TIPC_NULL
)
167 link_print(l_ptr
, DBG_OUTPUT
, str
);
170 static void dbg_print_buf_chain(struct sk_buff
*root_buf
)
172 if (DBG_OUTPUT
!= TIPC_NULL
) {
173 struct sk_buff
*buf
= root_buf
;
176 msg_dbg(buf_msg(buf
), "In chain: ");
183 * Simple link routines
186 static unsigned int align(unsigned int i
)
188 return (i
+ 3) & ~3u;
191 static void link_init_max_pkt(struct link
*l_ptr
)
195 max_pkt
= (l_ptr
->b_ptr
->publ
.mtu
& ~3);
196 if (max_pkt
> MAX_MSG_SIZE
)
197 max_pkt
= MAX_MSG_SIZE
;
199 l_ptr
->max_pkt_target
= max_pkt
;
200 if (l_ptr
->max_pkt_target
< MAX_PKT_DEFAULT
)
201 l_ptr
->max_pkt
= l_ptr
->max_pkt_target
;
203 l_ptr
->max_pkt
= MAX_PKT_DEFAULT
;
205 l_ptr
->max_pkt_probes
= 0;
208 static u32
link_next_sent(struct link
*l_ptr
)
211 return msg_seqno(buf_msg(l_ptr
->next_out
));
212 return mod(l_ptr
->next_out_no
);
215 static u32
link_last_sent(struct link
*l_ptr
)
217 return mod(link_next_sent(l_ptr
) - 1);
221 * Simple non-static link routines (i.e. referenced outside this file)
224 int tipc_link_is_up(struct link
*l_ptr
)
228 return link_working_working(l_ptr
) || link_working_unknown(l_ptr
);
231 int tipc_link_is_active(struct link
*l_ptr
)
233 return (l_ptr
->owner
->active_links
[0] == l_ptr
) ||
234 (l_ptr
->owner
->active_links
[1] == l_ptr
);
238 * link_name_validate - validate & (optionally) deconstruct link name
239 * @name - ptr to link name string
240 * @name_parts - ptr to area for link name components (or NULL if not needed)
242 * Returns 1 if link name is valid, otherwise 0.
245 static int link_name_validate(const char *name
, struct link_name
*name_parts
)
247 char name_copy
[TIPC_MAX_LINK_NAME
];
253 u32 z_local
, c_local
, n_local
;
254 u32 z_peer
, c_peer
, n_peer
;
258 /* copy link name & ensure length is OK */
260 name_copy
[TIPC_MAX_LINK_NAME
- 1] = 0;
261 /* need above in case non-Posix strncpy() doesn't pad with nulls */
262 strncpy(name_copy
, name
, TIPC_MAX_LINK_NAME
);
263 if (name_copy
[TIPC_MAX_LINK_NAME
- 1] != 0)
266 /* ensure all component parts of link name are present */
268 addr_local
= name_copy
;
269 if ((if_local
= strchr(addr_local
, ':')) == NULL
)
272 if ((addr_peer
= strchr(if_local
, '-')) == NULL
)
275 if_local_len
= addr_peer
- if_local
;
276 if ((if_peer
= strchr(addr_peer
, ':')) == NULL
)
279 if_peer_len
= strlen(if_peer
) + 1;
281 /* validate component parts of link name */
283 if ((sscanf(addr_local
, "%u.%u.%u%c",
284 &z_local
, &c_local
, &n_local
, &dummy
) != 3) ||
285 (sscanf(addr_peer
, "%u.%u.%u%c",
286 &z_peer
, &c_peer
, &n_peer
, &dummy
) != 3) ||
287 (z_local
> 255) || (c_local
> 4095) || (n_local
> 4095) ||
288 (z_peer
> 255) || (c_peer
> 4095) || (n_peer
> 4095) ||
289 (if_local_len
<= 1) || (if_local_len
> TIPC_MAX_IF_NAME
) ||
290 (if_peer_len
<= 1) || (if_peer_len
> TIPC_MAX_IF_NAME
) ||
291 (strspn(if_local
, tipc_alphabet
) != (if_local_len
- 1)) ||
292 (strspn(if_peer
, tipc_alphabet
) != (if_peer_len
- 1)))
295 /* return link name components, if necessary */
298 name_parts
->addr_local
= tipc_addr(z_local
, c_local
, n_local
);
299 strcpy(name_parts
->if_local
, if_local
);
300 name_parts
->addr_peer
= tipc_addr(z_peer
, c_peer
, n_peer
);
301 strcpy(name_parts
->if_peer
, if_peer
);
307 * link_timeout - handle expiration of link timer
308 * @l_ptr: pointer to link
310 * This routine must not grab "tipc_net_lock" to avoid a potential deadlock conflict
311 * with tipc_link_delete(). (There is no risk that the node will be deleted by
312 * another thread because tipc_link_delete() always cancels the link timer before
313 * tipc_node_delete() is called.)
316 static void link_timeout(struct link
*l_ptr
)
318 tipc_node_lock(l_ptr
->owner
);
320 /* update counters used in statistical profiling of send traffic */
322 l_ptr
->stats
.accu_queue_sz
+= l_ptr
->out_queue_size
;
323 l_ptr
->stats
.queue_sz_counts
++;
325 if (l_ptr
->out_queue_size
> l_ptr
->stats
.max_queue_sz
)
326 l_ptr
->stats
.max_queue_sz
= l_ptr
->out_queue_size
;
328 if (l_ptr
->first_out
) {
329 struct tipc_msg
*msg
= buf_msg(l_ptr
->first_out
);
330 u32 length
= msg_size(msg
);
332 if ((msg_user(msg
) == MSG_FRAGMENTER
) &&
333 (msg_type(msg
) == FIRST_FRAGMENT
)) {
334 length
= msg_size(msg_get_wrapped(msg
));
337 l_ptr
->stats
.msg_lengths_total
+= length
;
338 l_ptr
->stats
.msg_length_counts
++;
340 l_ptr
->stats
.msg_length_profile
[0]++;
341 else if (length
<= 256)
342 l_ptr
->stats
.msg_length_profile
[1]++;
343 else if (length
<= 1024)
344 l_ptr
->stats
.msg_length_profile
[2]++;
345 else if (length
<= 4096)
346 l_ptr
->stats
.msg_length_profile
[3]++;
347 else if (length
<= 16384)
348 l_ptr
->stats
.msg_length_profile
[4]++;
349 else if (length
<= 32768)
350 l_ptr
->stats
.msg_length_profile
[5]++;
352 l_ptr
->stats
.msg_length_profile
[6]++;
356 /* do all other link processing performed on a periodic basis */
358 link_check_defragm_bufs(l_ptr
);
360 link_state_event(l_ptr
, TIMEOUT_EVT
);
363 tipc_link_push_queue(l_ptr
);
365 tipc_node_unlock(l_ptr
->owner
);
368 static void link_set_timer(struct link
*l_ptr
, u32 time
)
370 k_start_timer(&l_ptr
->timer
, time
);
374 * tipc_link_create - create a new link
375 * @b_ptr: pointer to associated bearer
376 * @peer: network address of node at other end of link
377 * @media_addr: media address to use when sending messages over link
379 * Returns pointer to link.
382 struct link
*tipc_link_create(struct bearer
*b_ptr
, const u32 peer
,
383 const struct tipc_media_addr
*media_addr
)
386 struct tipc_msg
*msg
;
389 l_ptr
= kzalloc(sizeof(*l_ptr
), GFP_ATOMIC
);
391 warn("Link creation failed, no memory\n");
395 if (LINK_LOG_BUF_SIZE
) {
396 char *pb
= kmalloc(LINK_LOG_BUF_SIZE
, GFP_ATOMIC
);
400 warn("Link creation failed, no memory for print buffer\n");
403 tipc_printbuf_init(&l_ptr
->print_buf
, pb
, LINK_LOG_BUF_SIZE
);
407 if_name
= strchr(b_ptr
->publ
.name
, ':') + 1;
408 sprintf(l_ptr
->name
, "%u.%u.%u:%s-%u.%u.%u:",
409 tipc_zone(tipc_own_addr
), tipc_cluster(tipc_own_addr
),
410 tipc_node(tipc_own_addr
),
412 tipc_zone(peer
), tipc_cluster(peer
), tipc_node(peer
));
413 /* note: peer i/f is appended to link name by reset/activate */
414 memcpy(&l_ptr
->media_addr
, media_addr
, sizeof(*media_addr
));
415 l_ptr
->checkpoint
= 1;
416 l_ptr
->b_ptr
= b_ptr
;
417 link_set_supervision_props(l_ptr
, b_ptr
->media
->tolerance
);
418 l_ptr
->state
= RESET_UNKNOWN
;
420 l_ptr
->pmsg
= (struct tipc_msg
*)&l_ptr
->proto_msg
;
422 tipc_msg_init(msg
, LINK_PROTOCOL
, RESET_MSG
, INT_H_SIZE
, l_ptr
->addr
);
423 msg_set_size(msg
, sizeof(l_ptr
->proto_msg
));
424 msg_set_session(msg
, (tipc_random
& 0xffff));
425 msg_set_bearer_id(msg
, b_ptr
->identity
);
426 strcpy((char *)msg_data(msg
), if_name
);
428 l_ptr
->priority
= b_ptr
->priority
;
429 tipc_link_set_queue_limits(l_ptr
, b_ptr
->media
->window
);
431 link_init_max_pkt(l_ptr
);
433 l_ptr
->next_out_no
= 1;
434 INIT_LIST_HEAD(&l_ptr
->waiting_ports
);
436 link_reset_statistics(l_ptr
);
438 l_ptr
->owner
= tipc_node_attach_link(l_ptr
);
440 if (LINK_LOG_BUF_SIZE
)
441 kfree(l_ptr
->print_buf
.buf
);
446 k_init_timer(&l_ptr
->timer
, (Handler
)link_timeout
, (unsigned long)l_ptr
);
447 list_add_tail(&l_ptr
->link_list
, &b_ptr
->links
);
448 tipc_k_signal((Handler
)link_start
, (unsigned long)l_ptr
);
450 dbg("tipc_link_create(): tolerance = %u,cont intv = %u, abort_limit = %u\n",
451 l_ptr
->tolerance
, l_ptr
->continuity_interval
, l_ptr
->abort_limit
);
457 * tipc_link_delete - delete a link
458 * @l_ptr: pointer to link
460 * Note: 'tipc_net_lock' is write_locked, bearer is locked.
461 * This routine must not grab the node lock until after link timer cancellation
462 * to avoid a potential deadlock situation.
465 void tipc_link_delete(struct link
*l_ptr
)
468 err("Attempt to delete non-existent link\n");
472 dbg("tipc_link_delete()\n");
474 k_cancel_timer(&l_ptr
->timer
);
476 tipc_node_lock(l_ptr
->owner
);
477 tipc_link_reset(l_ptr
);
478 tipc_node_detach_link(l_ptr
->owner
, l_ptr
);
479 tipc_link_stop(l_ptr
);
480 list_del_init(&l_ptr
->link_list
);
481 if (LINK_LOG_BUF_SIZE
)
482 kfree(l_ptr
->print_buf
.buf
);
483 tipc_node_unlock(l_ptr
->owner
);
484 k_term_timer(&l_ptr
->timer
);
488 static void link_start(struct link
*l_ptr
)
490 dbg("link_start %x\n", l_ptr
);
491 link_state_event(l_ptr
, STARTING_EVT
);
495 * link_schedule_port - schedule port for deferred sending
496 * @l_ptr: pointer to link
497 * @origport: reference to sending port
498 * @sz: amount of data to be sent
500 * Schedules port for renewed sending of messages after link congestion
504 static int link_schedule_port(struct link
*l_ptr
, u32 origport
, u32 sz
)
508 spin_lock_bh(&tipc_port_list_lock
);
509 p_ptr
= tipc_port_lock(origport
);
513 if (!list_empty(&p_ptr
->wait_list
))
515 p_ptr
->publ
.congested
= 1;
516 p_ptr
->waiting_pkts
= 1 + ((sz
- 1) / l_ptr
->max_pkt
);
517 list_add_tail(&p_ptr
->wait_list
, &l_ptr
->waiting_ports
);
518 l_ptr
->stats
.link_congs
++;
520 tipc_port_unlock(p_ptr
);
522 spin_unlock_bh(&tipc_port_list_lock
);
526 void tipc_link_wakeup_ports(struct link
*l_ptr
, int all
)
529 struct port
*temp_p_ptr
;
530 int win
= l_ptr
->queue_limit
[0] - l_ptr
->out_queue_size
;
536 if (!spin_trylock_bh(&tipc_port_list_lock
))
538 if (link_congested(l_ptr
))
540 list_for_each_entry_safe(p_ptr
, temp_p_ptr
, &l_ptr
->waiting_ports
,
544 list_del_init(&p_ptr
->wait_list
);
545 spin_lock_bh(p_ptr
->publ
.lock
);
546 p_ptr
->publ
.congested
= 0;
547 p_ptr
->wakeup(&p_ptr
->publ
);
548 win
-= p_ptr
->waiting_pkts
;
549 spin_unlock_bh(p_ptr
->publ
.lock
);
553 spin_unlock_bh(&tipc_port_list_lock
);
557 * link_release_outqueue - purge link's outbound message queue
558 * @l_ptr: pointer to link
561 static void link_release_outqueue(struct link
*l_ptr
)
563 struct sk_buff
*buf
= l_ptr
->first_out
;
564 struct sk_buff
*next
;
571 l_ptr
->first_out
= NULL
;
572 l_ptr
->out_queue_size
= 0;
576 * tipc_link_reset_fragments - purge link's inbound message fragments queue
577 * @l_ptr: pointer to link
580 void tipc_link_reset_fragments(struct link
*l_ptr
)
582 struct sk_buff
*buf
= l_ptr
->defragm_buf
;
583 struct sk_buff
*next
;
590 l_ptr
->defragm_buf
= NULL
;
594 * tipc_link_stop - purge all inbound and outbound messages associated with link
595 * @l_ptr: pointer to link
598 void tipc_link_stop(struct link
*l_ptr
)
601 struct sk_buff
*next
;
603 buf
= l_ptr
->oldest_deferred_in
;
610 buf
= l_ptr
->first_out
;
617 tipc_link_reset_fragments(l_ptr
);
619 buf_discard(l_ptr
->proto_msg_queue
);
620 l_ptr
->proto_msg_queue
= NULL
;
623 /* LINK EVENT CODE IS NOT SUPPORTED AT PRESENT */
624 #define link_send_event(fcn, l_ptr, up) do { } while (0)
626 void tipc_link_reset(struct link
*l_ptr
)
629 u32 prev_state
= l_ptr
->state
;
630 u32 checkpoint
= l_ptr
->next_in_no
;
631 int was_active_link
= tipc_link_is_active(l_ptr
);
633 msg_set_session(l_ptr
->pmsg
, ((msg_session(l_ptr
->pmsg
) + 1) & 0xffff));
635 /* Link is down, accept any session */
636 l_ptr
->peer_session
= INVALID_SESSION
;
638 /* Prepare for max packet size negotiation */
639 link_init_max_pkt(l_ptr
);
641 l_ptr
->state
= RESET_UNKNOWN
;
642 dbg_link_state("Resetting Link\n");
644 if ((prev_state
== RESET_UNKNOWN
) || (prev_state
== RESET_RESET
))
647 tipc_node_link_down(l_ptr
->owner
, l_ptr
);
648 tipc_bearer_remove_dest(l_ptr
->b_ptr
, l_ptr
->addr
);
650 if (was_active_link
&& tipc_node_has_active_links(l_ptr
->owner
) &&
651 l_ptr
->owner
->permit_changeover
) {
652 l_ptr
->reset_checkpoint
= checkpoint
;
653 l_ptr
->exp_msg_count
= START_CHANGEOVER
;
656 /* Clean up all queues: */
658 link_release_outqueue(l_ptr
);
659 buf_discard(l_ptr
->proto_msg_queue
);
660 l_ptr
->proto_msg_queue
= NULL
;
661 buf
= l_ptr
->oldest_deferred_in
;
663 struct sk_buff
*next
= buf
->next
;
667 if (!list_empty(&l_ptr
->waiting_ports
))
668 tipc_link_wakeup_ports(l_ptr
, 1);
670 l_ptr
->retransm_queue_head
= 0;
671 l_ptr
->retransm_queue_size
= 0;
672 l_ptr
->last_out
= NULL
;
673 l_ptr
->first_out
= NULL
;
674 l_ptr
->next_out
= NULL
;
675 l_ptr
->unacked_window
= 0;
676 l_ptr
->checkpoint
= 1;
677 l_ptr
->next_out_no
= 1;
678 l_ptr
->deferred_inqueue_sz
= 0;
679 l_ptr
->oldest_deferred_in
= NULL
;
680 l_ptr
->newest_deferred_in
= NULL
;
681 l_ptr
->fsm_msg_cnt
= 0;
682 l_ptr
->stale_count
= 0;
683 link_reset_statistics(l_ptr
);
685 link_send_event(tipc_cfg_link_event
, l_ptr
, 0);
686 if (!in_own_cluster(l_ptr
->addr
))
687 link_send_event(tipc_disc_link_event
, l_ptr
, 0);
691 static void link_activate(struct link
*l_ptr
)
693 l_ptr
->next_in_no
= l_ptr
->stats
.recv_info
= 1;
694 tipc_node_link_up(l_ptr
->owner
, l_ptr
);
695 tipc_bearer_add_dest(l_ptr
->b_ptr
, l_ptr
->addr
);
696 link_send_event(tipc_cfg_link_event
, l_ptr
, 1);
697 if (!in_own_cluster(l_ptr
->addr
))
698 link_send_event(tipc_disc_link_event
, l_ptr
, 1);
702 * link_state_event - link finite state machine
703 * @l_ptr: pointer to link
704 * @event: state machine event to process
707 static void link_state_event(struct link
*l_ptr
, unsigned event
)
710 u32 cont_intv
= l_ptr
->continuity_interval
;
712 if (!l_ptr
->started
&& (event
!= STARTING_EVT
))
713 return; /* Not yet. */
715 if (link_blocked(l_ptr
)) {
716 if (event
== TIMEOUT_EVT
) {
717 link_set_timer(l_ptr
, cont_intv
);
719 return; /* Changeover going on */
721 dbg_link("STATE_EV: <%s> ", l_ptr
->name
);
723 switch (l_ptr
->state
) {
724 case WORKING_WORKING
:
727 case TRAFFIC_MSG_EVT
:
735 if (l_ptr
->next_in_no
!= l_ptr
->checkpoint
) {
736 l_ptr
->checkpoint
= l_ptr
->next_in_no
;
737 if (tipc_bclink_acks_missing(l_ptr
->owner
)) {
738 tipc_link_send_proto_msg(l_ptr
, STATE_MSG
,
740 l_ptr
->fsm_msg_cnt
++;
741 } else if (l_ptr
->max_pkt
< l_ptr
->max_pkt_target
) {
742 tipc_link_send_proto_msg(l_ptr
, STATE_MSG
,
744 l_ptr
->fsm_msg_cnt
++;
746 link_set_timer(l_ptr
, cont_intv
);
749 dbg_link(" -> WU\n");
750 l_ptr
->state
= WORKING_UNKNOWN
;
751 l_ptr
->fsm_msg_cnt
= 0;
752 tipc_link_send_proto_msg(l_ptr
, STATE_MSG
, 1, 0, 0, 0, 0);
753 l_ptr
->fsm_msg_cnt
++;
754 link_set_timer(l_ptr
, cont_intv
/ 4);
757 dbg_link("RES -> RR\n");
758 info("Resetting link <%s>, requested by peer\n",
760 tipc_link_reset(l_ptr
);
761 l_ptr
->state
= RESET_RESET
;
762 l_ptr
->fsm_msg_cnt
= 0;
763 tipc_link_send_proto_msg(l_ptr
, ACTIVATE_MSG
, 0, 0, 0, 0, 0);
764 l_ptr
->fsm_msg_cnt
++;
765 link_set_timer(l_ptr
, cont_intv
);
768 err("Unknown link event %u in WW state\n", event
);
771 case WORKING_UNKNOWN
:
774 case TRAFFIC_MSG_EVT
:
777 dbg_link("ACT -> WW\n");
778 l_ptr
->state
= WORKING_WORKING
;
779 l_ptr
->fsm_msg_cnt
= 0;
780 link_set_timer(l_ptr
, cont_intv
);
783 dbg_link("RES -> RR\n");
784 info("Resetting link <%s>, requested by peer "
785 "while probing\n", l_ptr
->name
);
786 tipc_link_reset(l_ptr
);
787 l_ptr
->state
= RESET_RESET
;
788 l_ptr
->fsm_msg_cnt
= 0;
789 tipc_link_send_proto_msg(l_ptr
, ACTIVATE_MSG
, 0, 0, 0, 0, 0);
790 l_ptr
->fsm_msg_cnt
++;
791 link_set_timer(l_ptr
, cont_intv
);
795 if (l_ptr
->next_in_no
!= l_ptr
->checkpoint
) {
797 l_ptr
->state
= WORKING_WORKING
;
798 l_ptr
->fsm_msg_cnt
= 0;
799 l_ptr
->checkpoint
= l_ptr
->next_in_no
;
800 if (tipc_bclink_acks_missing(l_ptr
->owner
)) {
801 tipc_link_send_proto_msg(l_ptr
, STATE_MSG
,
803 l_ptr
->fsm_msg_cnt
++;
805 link_set_timer(l_ptr
, cont_intv
);
806 } else if (l_ptr
->fsm_msg_cnt
< l_ptr
->abort_limit
) {
807 dbg_link("Probing %u/%u,timer = %u ms)\n",
808 l_ptr
->fsm_msg_cnt
, l_ptr
->abort_limit
,
810 tipc_link_send_proto_msg(l_ptr
, STATE_MSG
,
812 l_ptr
->fsm_msg_cnt
++;
813 link_set_timer(l_ptr
, cont_intv
/ 4);
814 } else { /* Link has failed */
815 dbg_link("-> RU (%u probes unanswered)\n",
817 warn("Resetting link <%s>, peer not responding\n",
819 tipc_link_reset(l_ptr
);
820 l_ptr
->state
= RESET_UNKNOWN
;
821 l_ptr
->fsm_msg_cnt
= 0;
822 tipc_link_send_proto_msg(l_ptr
, RESET_MSG
,
824 l_ptr
->fsm_msg_cnt
++;
825 link_set_timer(l_ptr
, cont_intv
);
829 err("Unknown link event %u in WU state\n", event
);
835 case TRAFFIC_MSG_EVT
:
839 other
= l_ptr
->owner
->active_links
[0];
840 if (other
&& link_working_unknown(other
)) {
844 dbg_link("ACT -> WW\n");
845 l_ptr
->state
= WORKING_WORKING
;
846 l_ptr
->fsm_msg_cnt
= 0;
847 link_activate(l_ptr
);
848 tipc_link_send_proto_msg(l_ptr
, STATE_MSG
, 1, 0, 0, 0, 0);
849 l_ptr
->fsm_msg_cnt
++;
850 link_set_timer(l_ptr
, cont_intv
);
854 dbg_link(" -> RR\n");
855 l_ptr
->state
= RESET_RESET
;
856 l_ptr
->fsm_msg_cnt
= 0;
857 tipc_link_send_proto_msg(l_ptr
, ACTIVATE_MSG
, 1, 0, 0, 0, 0);
858 l_ptr
->fsm_msg_cnt
++;
859 link_set_timer(l_ptr
, cont_intv
);
867 tipc_link_send_proto_msg(l_ptr
, RESET_MSG
, 0, 0, 0, 0, 0);
868 l_ptr
->fsm_msg_cnt
++;
869 link_set_timer(l_ptr
, cont_intv
);
872 err("Unknown link event %u in RU state\n", event
);
878 case TRAFFIC_MSG_EVT
:
882 other
= l_ptr
->owner
->active_links
[0];
883 if (other
&& link_working_unknown(other
)) {
887 dbg_link("ACT -> WW\n");
888 l_ptr
->state
= WORKING_WORKING
;
889 l_ptr
->fsm_msg_cnt
= 0;
890 link_activate(l_ptr
);
891 tipc_link_send_proto_msg(l_ptr
, STATE_MSG
, 1, 0, 0, 0, 0);
892 l_ptr
->fsm_msg_cnt
++;
893 link_set_timer(l_ptr
, cont_intv
);
900 tipc_link_send_proto_msg(l_ptr
, ACTIVATE_MSG
, 0, 0, 0, 0, 0);
901 l_ptr
->fsm_msg_cnt
++;
902 link_set_timer(l_ptr
, cont_intv
);
903 dbg_link("fsm_msg_cnt %u\n", l_ptr
->fsm_msg_cnt
);
906 err("Unknown link event %u in RR state\n", event
);
910 err("Unknown link state %u/%u\n", l_ptr
->state
, event
);
915 * link_bundle_buf(): Append contents of a buffer to
916 * the tail of an existing one.
919 static int link_bundle_buf(struct link
*l_ptr
,
920 struct sk_buff
*bundler
,
923 struct tipc_msg
*bundler_msg
= buf_msg(bundler
);
924 struct tipc_msg
*msg
= buf_msg(buf
);
925 u32 size
= msg_size(msg
);
926 u32 bundle_size
= msg_size(bundler_msg
);
927 u32 to_pos
= align(bundle_size
);
928 u32 pad
= to_pos
- bundle_size
;
930 if (msg_user(bundler_msg
) != MSG_BUNDLER
)
932 if (msg_type(bundler_msg
) != OPEN_MSG
)
934 if (skb_tailroom(bundler
) < (pad
+ size
))
936 if (l_ptr
->max_pkt
< (to_pos
+ size
))
939 skb_put(bundler
, pad
+ size
);
940 skb_copy_to_linear_data_offset(bundler
, to_pos
, buf
->data
, size
);
941 msg_set_size(bundler_msg
, to_pos
+ size
);
942 msg_set_msgcnt(bundler_msg
, msg_msgcnt(bundler_msg
) + 1);
943 dbg("Packed msg # %u(%u octets) into pos %u in buf(#%u)\n",
944 msg_msgcnt(bundler_msg
), size
, to_pos
, msg_seqno(bundler_msg
));
945 msg_dbg(msg
, "PACKD:");
947 l_ptr
->stats
.sent_bundled
++;
951 static void link_add_to_outqueue(struct link
*l_ptr
,
953 struct tipc_msg
*msg
)
955 u32 ack
= mod(l_ptr
->next_in_no
- 1);
956 u32 seqno
= mod(l_ptr
->next_out_no
++);
958 msg_set_word(msg
, 2, ((ack
<< 16) | seqno
));
959 msg_set_bcast_ack(msg
, l_ptr
->owner
->bclink
.last_in
);
961 if (l_ptr
->first_out
) {
962 l_ptr
->last_out
->next
= buf
;
963 l_ptr
->last_out
= buf
;
965 l_ptr
->first_out
= l_ptr
->last_out
= buf
;
966 l_ptr
->out_queue_size
++;
970 * tipc_link_send_buf() is the 'full path' for messages, called from
971 * inside TIPC when the 'fast path' in tipc_send_buf
972 * has failed, and from link_send()
975 int tipc_link_send_buf(struct link
*l_ptr
, struct sk_buff
*buf
)
977 struct tipc_msg
*msg
= buf_msg(buf
);
978 u32 size
= msg_size(msg
);
979 u32 dsz
= msg_data_sz(msg
);
980 u32 queue_size
= l_ptr
->out_queue_size
;
981 u32 imp
= tipc_msg_tot_importance(msg
);
982 u32 queue_limit
= l_ptr
->queue_limit
[imp
];
983 u32 max_packet
= l_ptr
->max_pkt
;
985 msg_set_prevnode(msg
, tipc_own_addr
); /* If routed message */
987 /* Match msg importance against queue limits: */
989 if (unlikely(queue_size
>= queue_limit
)) {
990 if (imp
<= TIPC_CRITICAL_IMPORTANCE
) {
991 return link_schedule_port(l_ptr
, msg_origport(msg
),
994 msg_dbg(msg
, "TIPC: Congestion, throwing away\n");
996 if (imp
> CONN_MANAGER
) {
997 warn("Resetting link <%s>, send queue full", l_ptr
->name
);
998 tipc_link_reset(l_ptr
);
1003 /* Fragmentation needed ? */
1005 if (size
> max_packet
)
1006 return link_send_long_buf(l_ptr
, buf
);
1008 /* Packet can be queued or sent: */
1010 if (queue_size
> l_ptr
->stats
.max_queue_sz
)
1011 l_ptr
->stats
.max_queue_sz
= queue_size
;
1013 if (likely(!tipc_bearer_congested(l_ptr
->b_ptr
, l_ptr
) &&
1014 !link_congested(l_ptr
))) {
1015 link_add_to_outqueue(l_ptr
, buf
, msg
);
1017 if (likely(tipc_bearer_send(l_ptr
->b_ptr
, buf
, &l_ptr
->media_addr
))) {
1018 l_ptr
->unacked_window
= 0;
1020 tipc_bearer_schedule(l_ptr
->b_ptr
, l_ptr
);
1021 l_ptr
->stats
.bearer_congs
++;
1022 l_ptr
->next_out
= buf
;
1026 /* Congestion: can message be bundled ?: */
1028 if ((msg_user(msg
) != CHANGEOVER_PROTOCOL
) &&
1029 (msg_user(msg
) != MSG_FRAGMENTER
)) {
1031 /* Try adding message to an existing bundle */
1033 if (l_ptr
->next_out
&&
1034 link_bundle_buf(l_ptr
, l_ptr
->last_out
, buf
)) {
1035 tipc_bearer_resolve_congestion(l_ptr
->b_ptr
, l_ptr
);
1039 /* Try creating a new bundle */
1041 if (size
<= max_packet
* 2 / 3) {
1042 struct sk_buff
*bundler
= tipc_buf_acquire(max_packet
);
1043 struct tipc_msg bundler_hdr
;
1046 tipc_msg_init(&bundler_hdr
, MSG_BUNDLER
, OPEN_MSG
,
1047 INT_H_SIZE
, l_ptr
->addr
);
1048 skb_copy_to_linear_data(bundler
, &bundler_hdr
,
1050 skb_trim(bundler
, INT_H_SIZE
);
1051 link_bundle_buf(l_ptr
, bundler
, buf
);
1054 l_ptr
->stats
.sent_bundles
++;
1058 if (!l_ptr
->next_out
)
1059 l_ptr
->next_out
= buf
;
1060 link_add_to_outqueue(l_ptr
, buf
, msg
);
1061 tipc_bearer_resolve_congestion(l_ptr
->b_ptr
, l_ptr
);
1066 * tipc_link_send(): same as tipc_link_send_buf(), but the link to use has
1067 * not been selected yet, and the the owner node is not locked
1068 * Called by TIPC internal users, e.g. the name distributor
1071 int tipc_link_send(struct sk_buff
*buf
, u32 dest
, u32 selector
)
1074 struct tipc_node
*n_ptr
;
1075 int res
= -ELINKCONG
;
1077 read_lock_bh(&tipc_net_lock
);
1078 n_ptr
= tipc_node_select(dest
, selector
);
1080 tipc_node_lock(n_ptr
);
1081 l_ptr
= n_ptr
->active_links
[selector
& 1];
1083 dbg("tipc_link_send: found link %x for dest %x\n", l_ptr
, dest
);
1084 res
= tipc_link_send_buf(l_ptr
, buf
);
1086 dbg("Attempt to send msg to unreachable node:\n");
1087 msg_dbg(buf_msg(buf
),">>>");
1090 tipc_node_unlock(n_ptr
);
1092 dbg("Attempt to send msg to unknown node:\n");
1093 msg_dbg(buf_msg(buf
),">>>");
1096 read_unlock_bh(&tipc_net_lock
);
1101 * link_send_buf_fast: Entry for data messages where the
1102 * destination link is known and the header is complete,
1103 * inclusive total message length. Very time critical.
1104 * Link is locked. Returns user data length.
1107 static int link_send_buf_fast(struct link
*l_ptr
, struct sk_buff
*buf
,
1110 struct tipc_msg
*msg
= buf_msg(buf
);
1111 int res
= msg_data_sz(msg
);
1113 if (likely(!link_congested(l_ptr
))) {
1114 if (likely(msg_size(msg
) <= l_ptr
->max_pkt
)) {
1115 if (likely(list_empty(&l_ptr
->b_ptr
->cong_links
))) {
1116 link_add_to_outqueue(l_ptr
, buf
, msg
);
1117 if (likely(tipc_bearer_send(l_ptr
->b_ptr
, buf
,
1118 &l_ptr
->media_addr
))) {
1119 l_ptr
->unacked_window
= 0;
1120 msg_dbg(msg
,"SENT_FAST:");
1123 dbg("failed sent fast...\n");
1124 tipc_bearer_schedule(l_ptr
->b_ptr
, l_ptr
);
1125 l_ptr
->stats
.bearer_congs
++;
1126 l_ptr
->next_out
= buf
;
1131 *used_max_pkt
= l_ptr
->max_pkt
;
1133 return tipc_link_send_buf(l_ptr
, buf
); /* All other cases */
1137 * tipc_send_buf_fast: Entry for data messages where the
1138 * destination node is known and the header is complete,
1139 * inclusive total message length.
1140 * Returns user data length.
1142 int tipc_send_buf_fast(struct sk_buff
*buf
, u32 destnode
)
1145 struct tipc_node
*n_ptr
;
1147 u32 selector
= msg_origport(buf_msg(buf
)) & 1;
1150 if (destnode
== tipc_own_addr
)
1151 return tipc_port_recv_msg(buf
);
1153 read_lock_bh(&tipc_net_lock
);
1154 n_ptr
= tipc_node_select(destnode
, selector
);
1155 if (likely(n_ptr
)) {
1156 tipc_node_lock(n_ptr
);
1157 l_ptr
= n_ptr
->active_links
[selector
];
1158 dbg("send_fast: buf %x selected %x, destnode = %x\n",
1159 buf
, l_ptr
, destnode
);
1160 if (likely(l_ptr
)) {
1161 res
= link_send_buf_fast(l_ptr
, buf
, &dummy
);
1162 tipc_node_unlock(n_ptr
);
1163 read_unlock_bh(&tipc_net_lock
);
1166 tipc_node_unlock(n_ptr
);
1168 read_unlock_bh(&tipc_net_lock
);
1169 res
= msg_data_sz(buf_msg(buf
));
1170 tipc_reject_msg(buf
, TIPC_ERR_NO_NODE
);
1176 * tipc_link_send_sections_fast: Entry for messages where the
1177 * destination processor is known and the header is complete,
1178 * except for total message length.
1179 * Returns user data length or errno.
1181 int tipc_link_send_sections_fast(struct port
*sender
,
1182 struct iovec
const *msg_sect
,
1186 struct tipc_msg
*hdr
= &sender
->publ
.phdr
;
1188 struct sk_buff
*buf
;
1189 struct tipc_node
*node
;
1191 u32 selector
= msg_origport(hdr
) & 1;
1195 * Try building message using port's max_pkt hint.
1196 * (Must not hold any locks while building message.)
1199 res
= tipc_msg_build(hdr
, msg_sect
, num_sect
, sender
->publ
.max_pkt
,
1200 !sender
->user_port
, &buf
);
1202 read_lock_bh(&tipc_net_lock
);
1203 node
= tipc_node_select(destaddr
, selector
);
1205 tipc_node_lock(node
);
1206 l_ptr
= node
->active_links
[selector
];
1207 if (likely(l_ptr
)) {
1209 res
= link_send_buf_fast(l_ptr
, buf
,
1210 &sender
->publ
.max_pkt
);
1211 if (unlikely(res
< 0))
1214 tipc_node_unlock(node
);
1215 read_unlock_bh(&tipc_net_lock
);
1219 /* Exit if build request was invalid */
1221 if (unlikely(res
< 0))
1224 /* Exit if link (or bearer) is congested */
1226 if (link_congested(l_ptr
) ||
1227 !list_empty(&l_ptr
->b_ptr
->cong_links
)) {
1228 res
= link_schedule_port(l_ptr
,
1229 sender
->publ
.ref
, res
);
1234 * Message size exceeds max_pkt hint; update hint,
1235 * then re-try fast path or fragment the message
1238 sender
->publ
.max_pkt
= l_ptr
->max_pkt
;
1239 tipc_node_unlock(node
);
1240 read_unlock_bh(&tipc_net_lock
);
1243 if ((msg_hdr_sz(hdr
) + res
) <= sender
->publ
.max_pkt
)
1246 return link_send_sections_long(sender
, msg_sect
,
1247 num_sect
, destaddr
);
1249 tipc_node_unlock(node
);
1251 read_unlock_bh(&tipc_net_lock
);
1253 /* Couldn't find a link to the destination node */
1256 return tipc_reject_msg(buf
, TIPC_ERR_NO_NODE
);
1258 return tipc_port_reject_sections(sender
, hdr
, msg_sect
, num_sect
,
1264 * link_send_sections_long(): Entry for long messages where the
1265 * destination node is known and the header is complete,
1266 * inclusive total message length.
1267 * Link and bearer congestion status have been checked to be ok,
1268 * and are ignored if they change.
1270 * Note that fragments do not use the full link MTU so that they won't have
1271 * to undergo refragmentation if link changeover causes them to be sent
1272 * over another link with an additional tunnel header added as prefix.
1273 * (Refragmentation will still occur if the other link has a smaller MTU.)
1275 * Returns user data length or errno.
1277 static int link_send_sections_long(struct port
*sender
,
1278 struct iovec
const *msg_sect
,
1283 struct tipc_node
*node
;
1284 struct tipc_msg
*hdr
= &sender
->publ
.phdr
;
1285 u32 dsz
= msg_data_sz(hdr
);
1286 u32 max_pkt
,fragm_sz
,rest
;
1287 struct tipc_msg fragm_hdr
;
1288 struct sk_buff
*buf
,*buf_chain
,*prev
;
1289 u32 fragm_crs
,fragm_rest
,hsz
,sect_rest
;
1290 const unchar
*sect_crs
;
1296 max_pkt
= sender
->publ
.max_pkt
- INT_H_SIZE
;
1297 /* leave room for tunnel header in case of link changeover */
1298 fragm_sz
= max_pkt
- INT_H_SIZE
;
1299 /* leave room for fragmentation header in each fragment */
1307 /* Prepare reusable fragment header: */
1309 msg_dbg(hdr
, ">FRAGMENTING>");
1310 tipc_msg_init(&fragm_hdr
, MSG_FRAGMENTER
, FIRST_FRAGMENT
,
1311 INT_H_SIZE
, msg_destnode(hdr
));
1312 msg_set_link_selector(&fragm_hdr
, sender
->publ
.ref
);
1313 msg_set_size(&fragm_hdr
, max_pkt
);
1314 msg_set_fragm_no(&fragm_hdr
, 1);
1316 /* Prepare header of first fragment: */
1318 buf_chain
= buf
= tipc_buf_acquire(max_pkt
);
1322 skb_copy_to_linear_data(buf
, &fragm_hdr
, INT_H_SIZE
);
1323 hsz
= msg_hdr_sz(hdr
);
1324 skb_copy_to_linear_data_offset(buf
, INT_H_SIZE
, hdr
, hsz
);
1325 msg_dbg(buf_msg(buf
), ">BUILD>");
1327 /* Chop up message: */
1329 fragm_crs
= INT_H_SIZE
+ hsz
;
1330 fragm_rest
= fragm_sz
- hsz
;
1332 do { /* For all sections */
1336 sect_rest
= msg_sect
[++curr_sect
].iov_len
;
1337 sect_crs
= (const unchar
*)msg_sect
[curr_sect
].iov_base
;
1340 if (sect_rest
< fragm_rest
)
1345 if (likely(!sender
->user_port
)) {
1346 if (copy_from_user(buf
->data
+ fragm_crs
, sect_crs
, sz
)) {
1348 for (; buf_chain
; buf_chain
= buf
) {
1349 buf
= buf_chain
->next
;
1350 buf_discard(buf_chain
);
1355 skb_copy_to_linear_data_offset(buf
, fragm_crs
,
1363 if (!fragm_rest
&& rest
) {
1365 /* Initiate new fragment: */
1366 if (rest
<= fragm_sz
) {
1368 msg_set_type(&fragm_hdr
,LAST_FRAGMENT
);
1370 msg_set_type(&fragm_hdr
, FRAGMENT
);
1372 msg_set_size(&fragm_hdr
, fragm_sz
+ INT_H_SIZE
);
1373 msg_set_fragm_no(&fragm_hdr
, ++fragm_no
);
1375 buf
= tipc_buf_acquire(fragm_sz
+ INT_H_SIZE
);
1381 skb_copy_to_linear_data(buf
, &fragm_hdr
, INT_H_SIZE
);
1382 fragm_crs
= INT_H_SIZE
;
1383 fragm_rest
= fragm_sz
;
1384 msg_dbg(buf_msg(buf
)," >BUILD>");
1390 * Now we have a buffer chain. Select a link and check
1391 * that packet size is still OK
1393 node
= tipc_node_select(destaddr
, sender
->publ
.ref
& 1);
1395 tipc_node_lock(node
);
1396 l_ptr
= node
->active_links
[sender
->publ
.ref
& 1];
1398 tipc_node_unlock(node
);
1401 if (l_ptr
->max_pkt
< max_pkt
) {
1402 sender
->publ
.max_pkt
= l_ptr
->max_pkt
;
1403 tipc_node_unlock(node
);
1404 for (; buf_chain
; buf_chain
= buf
) {
1405 buf
= buf_chain
->next
;
1406 buf_discard(buf_chain
);
1412 for (; buf_chain
; buf_chain
= buf
) {
1413 buf
= buf_chain
->next
;
1414 buf_discard(buf_chain
);
1416 return tipc_port_reject_sections(sender
, hdr
, msg_sect
, num_sect
,
1420 /* Append whole chain to send queue: */
1423 l_ptr
->long_msg_seq_no
= mod(l_ptr
->long_msg_seq_no
+ 1);
1424 if (!l_ptr
->next_out
)
1425 l_ptr
->next_out
= buf_chain
;
1426 l_ptr
->stats
.sent_fragmented
++;
1428 struct sk_buff
*next
= buf
->next
;
1429 struct tipc_msg
*msg
= buf_msg(buf
);
1431 l_ptr
->stats
.sent_fragments
++;
1432 msg_set_long_msgno(msg
, l_ptr
->long_msg_seq_no
);
1433 link_add_to_outqueue(l_ptr
, buf
, msg
);
1434 msg_dbg(msg
, ">ADD>");
1438 /* Send it, if possible: */
1440 tipc_link_push_queue(l_ptr
);
1441 tipc_node_unlock(node
);
1446 * tipc_link_push_packet: Push one unsent packet to the media
1448 u32
tipc_link_push_packet(struct link
*l_ptr
)
1450 struct sk_buff
*buf
= l_ptr
->first_out
;
1451 u32 r_q_size
= l_ptr
->retransm_queue_size
;
1452 u32 r_q_head
= l_ptr
->retransm_queue_head
;
1454 /* Step to position where retransmission failed, if any, */
1455 /* consider that buffers may have been released in meantime */
1457 if (r_q_size
&& buf
) {
1458 u32 last
= lesser(mod(r_q_head
+ r_q_size
),
1459 link_last_sent(l_ptr
));
1460 u32 first
= msg_seqno(buf_msg(buf
));
1462 while (buf
&& less(first
, r_q_head
)) {
1463 first
= mod(first
+ 1);
1466 l_ptr
->retransm_queue_head
= r_q_head
= first
;
1467 l_ptr
->retransm_queue_size
= r_q_size
= mod(last
- first
);
1470 /* Continue retransmission now, if there is anything: */
1472 if (r_q_size
&& buf
) {
1473 msg_set_ack(buf_msg(buf
), mod(l_ptr
->next_in_no
- 1));
1474 msg_set_bcast_ack(buf_msg(buf
), l_ptr
->owner
->bclink
.last_in
);
1475 if (tipc_bearer_send(l_ptr
->b_ptr
, buf
, &l_ptr
->media_addr
)) {
1476 msg_dbg(buf_msg(buf
), ">DEF-RETR>");
1477 l_ptr
->retransm_queue_head
= mod(++r_q_head
);
1478 l_ptr
->retransm_queue_size
= --r_q_size
;
1479 l_ptr
->stats
.retransmitted
++;
1482 l_ptr
->stats
.bearer_congs
++;
1483 msg_dbg(buf_msg(buf
), "|>DEF-RETR>");
1488 /* Send deferred protocol message, if any: */
1490 buf
= l_ptr
->proto_msg_queue
;
1492 msg_set_ack(buf_msg(buf
), mod(l_ptr
->next_in_no
- 1));
1493 msg_set_bcast_ack(buf_msg(buf
),l_ptr
->owner
->bclink
.last_in
);
1494 if (tipc_bearer_send(l_ptr
->b_ptr
, buf
, &l_ptr
->media_addr
)) {
1495 msg_dbg(buf_msg(buf
), ">DEF-PROT>");
1496 l_ptr
->unacked_window
= 0;
1498 l_ptr
->proto_msg_queue
= NULL
;
1501 msg_dbg(buf_msg(buf
), "|>DEF-PROT>");
1502 l_ptr
->stats
.bearer_congs
++;
1507 /* Send one deferred data message, if send window not full: */
1509 buf
= l_ptr
->next_out
;
1511 struct tipc_msg
*msg
= buf_msg(buf
);
1512 u32 next
= msg_seqno(msg
);
1513 u32 first
= msg_seqno(buf_msg(l_ptr
->first_out
));
1515 if (mod(next
- first
) < l_ptr
->queue_limit
[0]) {
1516 msg_set_ack(msg
, mod(l_ptr
->next_in_no
- 1));
1517 msg_set_bcast_ack(msg
, l_ptr
->owner
->bclink
.last_in
);
1518 if (tipc_bearer_send(l_ptr
->b_ptr
, buf
, &l_ptr
->media_addr
)) {
1519 if (msg_user(msg
) == MSG_BUNDLER
)
1520 msg_set_type(msg
, CLOSED_MSG
);
1521 msg_dbg(msg
, ">PUSH-DATA>");
1522 l_ptr
->next_out
= buf
->next
;
1525 msg_dbg(msg
, "|PUSH-DATA|");
1526 l_ptr
->stats
.bearer_congs
++;
1531 return PUSH_FINISHED
;
1535 * push_queue(): push out the unsent messages of a link where
1536 * congestion has abated. Node is locked
1538 void tipc_link_push_queue(struct link
*l_ptr
)
1542 if (tipc_bearer_congested(l_ptr
->b_ptr
, l_ptr
))
1546 res
= tipc_link_push_packet(l_ptr
);
1549 if (res
== PUSH_FAILED
)
1550 tipc_bearer_schedule(l_ptr
->b_ptr
, l_ptr
);
1553 static void link_reset_all(unsigned long addr
)
1555 struct tipc_node
*n_ptr
;
1556 char addr_string
[16];
1559 read_lock_bh(&tipc_net_lock
);
1560 n_ptr
= tipc_node_find((u32
)addr
);
1562 read_unlock_bh(&tipc_net_lock
);
1563 return; /* node no longer exists */
1566 tipc_node_lock(n_ptr
);
1568 warn("Resetting all links to %s\n",
1569 tipc_addr_string_fill(addr_string
, n_ptr
->addr
));
1571 for (i
= 0; i
< MAX_BEARERS
; i
++) {
1572 if (n_ptr
->links
[i
]) {
1573 link_print(n_ptr
->links
[i
], TIPC_OUTPUT
,
1574 "Resetting link\n");
1575 tipc_link_reset(n_ptr
->links
[i
]);
1579 tipc_node_unlock(n_ptr
);
1580 read_unlock_bh(&tipc_net_lock
);
1583 static void link_retransmit_failure(struct link
*l_ptr
, struct sk_buff
*buf
)
1585 struct tipc_msg
*msg
= buf_msg(buf
);
1587 warn("Retransmission failure on link <%s>\n", l_ptr
->name
);
1588 tipc_msg_dbg(TIPC_OUTPUT
, msg
, ">RETR-FAIL>");
1592 /* Handle failure on standard link */
1594 link_print(l_ptr
, TIPC_OUTPUT
, "Resetting link\n");
1595 tipc_link_reset(l_ptr
);
1599 /* Handle failure on broadcast link */
1601 struct tipc_node
*n_ptr
;
1602 char addr_string
[16];
1604 tipc_printf(TIPC_OUTPUT
, "Msg seq number: %u, ", msg_seqno(msg
));
1605 tipc_printf(TIPC_OUTPUT
, "Outstanding acks: %lu\n",
1606 (unsigned long) TIPC_SKB_CB(buf
)->handle
);
1608 n_ptr
= l_ptr
->owner
->next
;
1609 tipc_node_lock(n_ptr
);
1611 tipc_addr_string_fill(addr_string
, n_ptr
->addr
);
1612 tipc_printf(TIPC_OUTPUT
, "Multicast link info for %s\n", addr_string
);
1613 tipc_printf(TIPC_OUTPUT
, "Supported: %d, ", n_ptr
->bclink
.supported
);
1614 tipc_printf(TIPC_OUTPUT
, "Acked: %u\n", n_ptr
->bclink
.acked
);
1615 tipc_printf(TIPC_OUTPUT
, "Last in: %u, ", n_ptr
->bclink
.last_in
);
1616 tipc_printf(TIPC_OUTPUT
, "Gap after: %u, ", n_ptr
->bclink
.gap_after
);
1617 tipc_printf(TIPC_OUTPUT
, "Gap to: %u\n", n_ptr
->bclink
.gap_to
);
1618 tipc_printf(TIPC_OUTPUT
, "Nack sync: %u\n\n", n_ptr
->bclink
.nack_sync
);
1620 tipc_k_signal((Handler
)link_reset_all
, (unsigned long)n_ptr
->addr
);
1622 tipc_node_unlock(n_ptr
);
1624 l_ptr
->stale_count
= 0;
1628 void tipc_link_retransmit(struct link
*l_ptr
, struct sk_buff
*buf
,
1631 struct tipc_msg
*msg
;
1638 dbg("Retransmitting %u in link %x\n", retransmits
, l_ptr
);
1640 if (tipc_bearer_congested(l_ptr
->b_ptr
, l_ptr
)) {
1641 if (l_ptr
->retransm_queue_size
== 0) {
1642 msg_dbg(msg
, ">NO_RETR->BCONG>");
1643 dbg_print_link(l_ptr
, " ");
1644 l_ptr
->retransm_queue_head
= msg_seqno(msg
);
1645 l_ptr
->retransm_queue_size
= retransmits
;
1647 err("Unexpected retransmit on link %s (qsize=%d)\n",
1648 l_ptr
->name
, l_ptr
->retransm_queue_size
);
1652 /* Detect repeated retransmit failures on uncongested bearer */
1654 if (l_ptr
->last_retransmitted
== msg_seqno(msg
)) {
1655 if (++l_ptr
->stale_count
> 100) {
1656 link_retransmit_failure(l_ptr
, buf
);
1660 l_ptr
->last_retransmitted
= msg_seqno(msg
);
1661 l_ptr
->stale_count
= 1;
1665 while (retransmits
&& (buf
!= l_ptr
->next_out
) && buf
) {
1667 msg_set_ack(msg
, mod(l_ptr
->next_in_no
- 1));
1668 msg_set_bcast_ack(msg
, l_ptr
->owner
->bclink
.last_in
);
1669 if (tipc_bearer_send(l_ptr
->b_ptr
, buf
, &l_ptr
->media_addr
)) {
1670 msg_dbg(buf_msg(buf
), ">RETR>");
1673 l_ptr
->stats
.retransmitted
++;
1675 tipc_bearer_schedule(l_ptr
->b_ptr
, l_ptr
);
1676 l_ptr
->stats
.bearer_congs
++;
1677 l_ptr
->retransm_queue_head
= msg_seqno(buf_msg(buf
));
1678 l_ptr
->retransm_queue_size
= retransmits
;
1683 l_ptr
->retransm_queue_head
= l_ptr
->retransm_queue_size
= 0;
1687 * link_insert_deferred_queue - insert deferred messages back into receive chain
1690 static struct sk_buff
*link_insert_deferred_queue(struct link
*l_ptr
,
1691 struct sk_buff
*buf
)
1695 if (l_ptr
->oldest_deferred_in
== NULL
)
1698 seq_no
= msg_seqno(buf_msg(l_ptr
->oldest_deferred_in
));
1699 if (seq_no
== mod(l_ptr
->next_in_no
)) {
1700 l_ptr
->newest_deferred_in
->next
= buf
;
1701 buf
= l_ptr
->oldest_deferred_in
;
1702 l_ptr
->oldest_deferred_in
= NULL
;
1703 l_ptr
->deferred_inqueue_sz
= 0;
1709 * link_recv_buf_validate - validate basic format of received message
1711 * This routine ensures a TIPC message has an acceptable header, and at least
1712 * as much data as the header indicates it should. The routine also ensures
1713 * that the entire message header is stored in the main fragment of the message
1714 * buffer, to simplify future access to message header fields.
1716 * Note: Having extra info present in the message header or data areas is OK.
1717 * TIPC will ignore the excess, under the assumption that it is optional info
1718 * introduced by a later release of the protocol.
1721 static int link_recv_buf_validate(struct sk_buff
*buf
)
1723 static u32 min_data_hdr_size
[8] = {
1724 SHORT_H_SIZE
, MCAST_H_SIZE
, LONG_H_SIZE
, DIR_MSG_H_SIZE
,
1725 MAX_H_SIZE
, MAX_H_SIZE
, MAX_H_SIZE
, MAX_H_SIZE
1728 struct tipc_msg
*msg
;
1734 if (unlikely(buf
->len
< MIN_H_SIZE
))
1737 msg
= skb_header_pointer(buf
, 0, sizeof(tipc_hdr
), tipc_hdr
);
1741 if (unlikely(msg_version(msg
) != TIPC_VERSION
))
1744 size
= msg_size(msg
);
1745 hdr_size
= msg_hdr_sz(msg
);
1746 min_hdr_size
= msg_isdata(msg
) ?
1747 min_data_hdr_size
[msg_type(msg
)] : INT_H_SIZE
;
1749 if (unlikely((hdr_size
< min_hdr_size
) ||
1750 (size
< hdr_size
) ||
1751 (buf
->len
< size
) ||
1752 (size
- hdr_size
> TIPC_MAX_USER_MSG_SIZE
)))
1755 return pskb_may_pull(buf
, hdr_size
);
1759 * tipc_recv_msg - process TIPC messages arriving from off-node
1760 * @head: pointer to message buffer chain
1761 * @tb_ptr: pointer to bearer message arrived on
1763 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1764 * structure (i.e. cannot be NULL), but bearer can be inactive.
1767 void tipc_recv_msg(struct sk_buff
*head
, struct tipc_bearer
*tb_ptr
)
1769 read_lock_bh(&tipc_net_lock
);
1771 struct bearer
*b_ptr
= (struct bearer
*)tb_ptr
;
1772 struct tipc_node
*n_ptr
;
1774 struct sk_buff
*crs
;
1775 struct sk_buff
*buf
= head
;
1776 struct tipc_msg
*msg
;
1784 /* Ensure bearer is still enabled */
1786 if (unlikely(!b_ptr
->active
))
1789 /* Ensure message is well-formed */
1791 if (unlikely(!link_recv_buf_validate(buf
)))
1794 /* Ensure message data is a single contiguous unit */
1796 if (unlikely(buf_linearize(buf
))) {
1800 /* Handle arrival of a non-unicast link message */
1804 if (unlikely(msg_non_seq(msg
))) {
1805 if (msg_user(msg
) == LINK_CONFIG
)
1806 tipc_disc_recv_msg(buf
, b_ptr
);
1808 tipc_bclink_recv_pkt(buf
);
1812 if (unlikely(!msg_short(msg
) &&
1813 (msg_destnode(msg
) != tipc_own_addr
)))
1816 /* Discard non-routeable messages destined for another node */
1818 if (unlikely(!msg_isdata(msg
) &&
1819 (msg_destnode(msg
) != tipc_own_addr
))) {
1820 if ((msg_user(msg
) != CONN_MANAGER
) &&
1821 (msg_user(msg
) != MSG_FRAGMENTER
))
1825 /* Locate neighboring node that sent message */
1827 n_ptr
= tipc_node_find(msg_prevnode(msg
));
1828 if (unlikely(!n_ptr
))
1830 tipc_node_lock(n_ptr
);
1832 /* Don't talk to neighbor during cleanup after last session */
1834 if (n_ptr
->cleanup_required
) {
1835 tipc_node_unlock(n_ptr
);
1839 /* Locate unicast link endpoint that should handle message */
1841 l_ptr
= n_ptr
->links
[b_ptr
->identity
];
1842 if (unlikely(!l_ptr
)) {
1843 tipc_node_unlock(n_ptr
);
1847 /* Validate message sequence number info */
1849 seq_no
= msg_seqno(msg
);
1850 ackd
= msg_ack(msg
);
1852 /* Release acked messages */
1854 if (less(n_ptr
->bclink
.acked
, msg_bcast_ack(msg
))) {
1855 if (tipc_node_is_up(n_ptr
) && n_ptr
->bclink
.supported
)
1856 tipc_bclink_acknowledge(n_ptr
, msg_bcast_ack(msg
));
1859 crs
= l_ptr
->first_out
;
1860 while ((crs
!= l_ptr
->next_out
) &&
1861 less_eq(msg_seqno(buf_msg(crs
)), ackd
)) {
1862 struct sk_buff
*next
= crs
->next
;
1869 l_ptr
->first_out
= crs
;
1870 l_ptr
->out_queue_size
-= released
;
1873 /* Try sending any messages link endpoint has pending */
1875 if (unlikely(l_ptr
->next_out
))
1876 tipc_link_push_queue(l_ptr
);
1877 if (unlikely(!list_empty(&l_ptr
->waiting_ports
)))
1878 tipc_link_wakeup_ports(l_ptr
, 0);
1879 if (unlikely(++l_ptr
->unacked_window
>= TIPC_MIN_LINK_WIN
)) {
1880 l_ptr
->stats
.sent_acks
++;
1881 tipc_link_send_proto_msg(l_ptr
, STATE_MSG
, 0, 0, 0, 0, 0);
1884 /* Now (finally!) process the incoming message */
1887 if (likely(link_working_working(l_ptr
))) {
1888 if (likely(seq_no
== mod(l_ptr
->next_in_no
))) {
1889 l_ptr
->next_in_no
++;
1890 if (unlikely(l_ptr
->oldest_deferred_in
))
1891 head
= link_insert_deferred_queue(l_ptr
,
1893 if (likely(msg_is_dest(msg
, tipc_own_addr
))) {
1895 if (likely(msg_isdata(msg
))) {
1896 tipc_node_unlock(n_ptr
);
1897 tipc_port_recv_msg(buf
);
1900 switch (msg_user(msg
)) {
1902 l_ptr
->stats
.recv_bundles
++;
1903 l_ptr
->stats
.recv_bundled
+=
1905 tipc_node_unlock(n_ptr
);
1906 tipc_link_recv_bundle(buf
);
1908 case ROUTE_DISTRIBUTOR
:
1909 tipc_node_unlock(n_ptr
);
1910 tipc_cltr_recv_routing_table(buf
);
1912 case NAME_DISTRIBUTOR
:
1913 tipc_node_unlock(n_ptr
);
1914 tipc_named_recv(buf
);
1917 tipc_node_unlock(n_ptr
);
1918 tipc_port_recv_proto_msg(buf
);
1920 case MSG_FRAGMENTER
:
1921 l_ptr
->stats
.recv_fragments
++;
1922 if (tipc_link_recv_fragment(&l_ptr
->defragm_buf
,
1924 l_ptr
->stats
.recv_fragmented
++;
1928 case CHANGEOVER_PROTOCOL
:
1929 type
= msg_type(msg
);
1930 if (link_recv_changeover_msg(&l_ptr
, &buf
)) {
1932 seq_no
= msg_seqno(msg
);
1933 if (type
== ORIGINAL_MSG
)
1935 goto protocol_check
;
1940 tipc_node_unlock(n_ptr
);
1941 tipc_net_route_msg(buf
);
1944 link_handle_out_of_seq_msg(l_ptr
, buf
);
1945 head
= link_insert_deferred_queue(l_ptr
, head
);
1946 tipc_node_unlock(n_ptr
);
1950 if (msg_user(msg
) == LINK_PROTOCOL
) {
1951 link_recv_proto_msg(l_ptr
, buf
);
1952 head
= link_insert_deferred_queue(l_ptr
, head
);
1953 tipc_node_unlock(n_ptr
);
1956 msg_dbg(msg
,"NSEQ<REC<");
1957 link_state_event(l_ptr
, TRAFFIC_MSG_EVT
);
1959 if (link_working_working(l_ptr
)) {
1960 /* Re-insert in front of queue */
1961 msg_dbg(msg
,"RECV-REINS:");
1964 tipc_node_unlock(n_ptr
);
1967 tipc_node_unlock(n_ptr
);
1971 read_unlock_bh(&tipc_net_lock
);
1975 * link_defer_buf(): Sort a received out-of-sequence packet
1976 * into the deferred reception queue.
1977 * Returns the increase of the queue length,i.e. 0 or 1
1980 u32
tipc_link_defer_pkt(struct sk_buff
**head
,
1981 struct sk_buff
**tail
,
1982 struct sk_buff
*buf
)
1984 struct sk_buff
*prev
= NULL
;
1985 struct sk_buff
*crs
= *head
;
1986 u32 seq_no
= msg_seqno(buf_msg(buf
));
1991 if (*head
== NULL
) {
1992 *head
= *tail
= buf
;
1997 if (less(msg_seqno(buf_msg(*tail
)), seq_no
)) {
1998 (*tail
)->next
= buf
;
2003 /* Scan through queue and sort it in */
2005 struct tipc_msg
*msg
= buf_msg(crs
);
2007 if (less(seq_no
, msg_seqno(msg
))) {
2015 if (seq_no
== msg_seqno(msg
)) {
2023 /* Message is a duplicate of an existing message */
2030 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
2033 static void link_handle_out_of_seq_msg(struct link
*l_ptr
,
2034 struct sk_buff
*buf
)
2036 u32 seq_no
= msg_seqno(buf_msg(buf
));
2038 if (likely(msg_user(buf_msg(buf
)) == LINK_PROTOCOL
)) {
2039 link_recv_proto_msg(l_ptr
, buf
);
2043 dbg("rx OOS msg: seq_no %u, expecting %u (%u)\n",
2044 seq_no
, mod(l_ptr
->next_in_no
), l_ptr
->next_in_no
);
2046 /* Record OOS packet arrival (force mismatch on next timeout) */
2048 l_ptr
->checkpoint
--;
2051 * Discard packet if a duplicate; otherwise add it to deferred queue
2052 * and notify peer of gap as per protocol specification
2055 if (less(seq_no
, mod(l_ptr
->next_in_no
))) {
2056 l_ptr
->stats
.duplicates
++;
2061 if (tipc_link_defer_pkt(&l_ptr
->oldest_deferred_in
,
2062 &l_ptr
->newest_deferred_in
, buf
)) {
2063 l_ptr
->deferred_inqueue_sz
++;
2064 l_ptr
->stats
.deferred_recv
++;
2065 if ((l_ptr
->deferred_inqueue_sz
% 16) == 1)
2066 tipc_link_send_proto_msg(l_ptr
, STATE_MSG
, 0, 0, 0, 0, 0);
2068 l_ptr
->stats
.duplicates
++;
2072 * Send protocol message to the other endpoint.
2074 void tipc_link_send_proto_msg(struct link
*l_ptr
, u32 msg_typ
, int probe_msg
,
2075 u32 gap
, u32 tolerance
, u32 priority
, u32 ack_mtu
)
2077 struct sk_buff
*buf
= NULL
;
2078 struct tipc_msg
*msg
= l_ptr
->pmsg
;
2079 u32 msg_size
= sizeof(l_ptr
->proto_msg
);
2081 if (link_blocked(l_ptr
))
2083 msg_set_type(msg
, msg_typ
);
2084 msg_set_net_plane(msg
, l_ptr
->b_ptr
->net_plane
);
2085 msg_set_bcast_ack(msg
, mod(l_ptr
->owner
->bclink
.last_in
));
2086 msg_set_last_bcast(msg
, tipc_bclink_get_last_sent());
2088 if (msg_typ
== STATE_MSG
) {
2089 u32 next_sent
= mod(l_ptr
->next_out_no
);
2091 if (!tipc_link_is_up(l_ptr
))
2093 if (l_ptr
->next_out
)
2094 next_sent
= msg_seqno(buf_msg(l_ptr
->next_out
));
2095 msg_set_next_sent(msg
, next_sent
);
2096 if (l_ptr
->oldest_deferred_in
) {
2097 u32 rec
= msg_seqno(buf_msg(l_ptr
->oldest_deferred_in
));
2098 gap
= mod(rec
- mod(l_ptr
->next_in_no
));
2100 msg_set_seq_gap(msg
, gap
);
2102 l_ptr
->stats
.sent_nacks
++;
2103 msg_set_link_tolerance(msg
, tolerance
);
2104 msg_set_linkprio(msg
, priority
);
2105 msg_set_max_pkt(msg
, ack_mtu
);
2106 msg_set_ack(msg
, mod(l_ptr
->next_in_no
- 1));
2107 msg_set_probe(msg
, probe_msg
!= 0);
2109 u32 mtu
= l_ptr
->max_pkt
;
2111 if ((mtu
< l_ptr
->max_pkt_target
) &&
2112 link_working_working(l_ptr
) &&
2113 l_ptr
->fsm_msg_cnt
) {
2114 msg_size
= (mtu
+ (l_ptr
->max_pkt_target
- mtu
)/2 + 2) & ~3;
2115 if (l_ptr
->max_pkt_probes
== 10) {
2116 l_ptr
->max_pkt_target
= (msg_size
- 4);
2117 l_ptr
->max_pkt_probes
= 0;
2118 msg_size
= (mtu
+ (l_ptr
->max_pkt_target
- mtu
)/2 + 2) & ~3;
2120 l_ptr
->max_pkt_probes
++;
2123 l_ptr
->stats
.sent_probes
++;
2125 l_ptr
->stats
.sent_states
++;
2126 } else { /* RESET_MSG or ACTIVATE_MSG */
2127 msg_set_ack(msg
, mod(l_ptr
->reset_checkpoint
- 1));
2128 msg_set_seq_gap(msg
, 0);
2129 msg_set_next_sent(msg
, 1);
2130 msg_set_link_tolerance(msg
, l_ptr
->tolerance
);
2131 msg_set_linkprio(msg
, l_ptr
->priority
);
2132 msg_set_max_pkt(msg
, l_ptr
->max_pkt_target
);
2135 if (tipc_node_has_redundant_links(l_ptr
->owner
)) {
2136 msg_set_redundant_link(msg
);
2138 msg_clear_redundant_link(msg
);
2140 msg_set_linkprio(msg
, l_ptr
->priority
);
2142 /* Ensure sequence number will not fit : */
2144 msg_set_seqno(msg
, mod(l_ptr
->next_out_no
+ (0xffff/2)));
2148 if (tipc_bearer_congested(l_ptr
->b_ptr
, l_ptr
)) {
2149 if (!l_ptr
->proto_msg_queue
) {
2150 l_ptr
->proto_msg_queue
=
2151 tipc_buf_acquire(sizeof(l_ptr
->proto_msg
));
2153 buf
= l_ptr
->proto_msg_queue
;
2156 skb_copy_to_linear_data(buf
, msg
, sizeof(l_ptr
->proto_msg
));
2159 msg_set_timestamp(msg
, jiffies_to_msecs(jiffies
));
2161 /* Message can be sent */
2165 buf
= tipc_buf_acquire(msg_size
);
2169 skb_copy_to_linear_data(buf
, msg
, sizeof(l_ptr
->proto_msg
));
2170 msg_set_size(buf_msg(buf
), msg_size
);
2172 if (tipc_bearer_send(l_ptr
->b_ptr
, buf
, &l_ptr
->media_addr
)) {
2173 l_ptr
->unacked_window
= 0;
2178 /* New congestion */
2179 tipc_bearer_schedule(l_ptr
->b_ptr
, l_ptr
);
2180 l_ptr
->proto_msg_queue
= buf
;
2181 l_ptr
->stats
.bearer_congs
++;
2185 * Receive protocol message :
2186 * Note that network plane id propagates through the network, and may
2187 * change at any time. The node with lowest address rules
2190 static void link_recv_proto_msg(struct link
*l_ptr
, struct sk_buff
*buf
)
2196 struct tipc_msg
*msg
= buf_msg(buf
);
2198 dbg("AT(%u):", jiffies_to_msecs(jiffies
));
2200 if (link_blocked(l_ptr
))
2203 /* record unnumbered packet arrival (force mismatch on next timeout) */
2205 l_ptr
->checkpoint
--;
2207 if (l_ptr
->b_ptr
->net_plane
!= msg_net_plane(msg
))
2208 if (tipc_own_addr
> msg_prevnode(msg
))
2209 l_ptr
->b_ptr
->net_plane
= msg_net_plane(msg
);
2211 l_ptr
->owner
->permit_changeover
= msg_redundant_link(msg
);
2213 switch (msg_type(msg
)) {
2216 if (!link_working_unknown(l_ptr
) &&
2217 (l_ptr
->peer_session
!= INVALID_SESSION
)) {
2218 if (msg_session(msg
) == l_ptr
->peer_session
) {
2219 dbg("Duplicate RESET: %u<->%u\n",
2220 msg_session(msg
), l_ptr
->peer_session
);
2221 break; /* duplicate: ignore */
2226 /* Update link settings according other endpoint's values */
2228 strcpy((strrchr(l_ptr
->name
, ':') + 1), (char *)msg_data(msg
));
2230 if ((msg_tol
= msg_link_tolerance(msg
)) &&
2231 (msg_tol
> l_ptr
->tolerance
))
2232 link_set_supervision_props(l_ptr
, msg_tol
);
2234 if (msg_linkprio(msg
) > l_ptr
->priority
)
2235 l_ptr
->priority
= msg_linkprio(msg
);
2237 max_pkt_info
= msg_max_pkt(msg
);
2239 if (max_pkt_info
< l_ptr
->max_pkt_target
)
2240 l_ptr
->max_pkt_target
= max_pkt_info
;
2241 if (l_ptr
->max_pkt
> l_ptr
->max_pkt_target
)
2242 l_ptr
->max_pkt
= l_ptr
->max_pkt_target
;
2244 l_ptr
->max_pkt
= l_ptr
->max_pkt_target
;
2246 l_ptr
->owner
->bclink
.supported
= (max_pkt_info
!= 0);
2248 link_state_event(l_ptr
, msg_type(msg
));
2250 l_ptr
->peer_session
= msg_session(msg
);
2251 l_ptr
->peer_bearer_id
= msg_bearer_id(msg
);
2253 /* Synchronize broadcast sequence numbers */
2254 if (!tipc_node_has_redundant_links(l_ptr
->owner
)) {
2255 l_ptr
->owner
->bclink
.last_in
= mod(msg_last_bcast(msg
));
2260 if ((msg_tol
= msg_link_tolerance(msg
)))
2261 link_set_supervision_props(l_ptr
, msg_tol
);
2263 if (msg_linkprio(msg
) &&
2264 (msg_linkprio(msg
) != l_ptr
->priority
)) {
2265 warn("Resetting link <%s>, priority change %u->%u\n",
2266 l_ptr
->name
, l_ptr
->priority
, msg_linkprio(msg
));
2267 l_ptr
->priority
= msg_linkprio(msg
);
2268 tipc_link_reset(l_ptr
); /* Enforce change to take effect */
2271 link_state_event(l_ptr
, TRAFFIC_MSG_EVT
);
2272 l_ptr
->stats
.recv_states
++;
2273 if (link_reset_unknown(l_ptr
))
2276 if (less_eq(mod(l_ptr
->next_in_no
), msg_next_sent(msg
))) {
2277 rec_gap
= mod(msg_next_sent(msg
) -
2278 mod(l_ptr
->next_in_no
));
2281 max_pkt_ack
= msg_max_pkt(msg
);
2282 if (max_pkt_ack
> l_ptr
->max_pkt
) {
2283 dbg("Link <%s> updated MTU %u -> %u\n",
2284 l_ptr
->name
, l_ptr
->max_pkt
, max_pkt_ack
);
2285 l_ptr
->max_pkt
= max_pkt_ack
;
2286 l_ptr
->max_pkt_probes
= 0;
2290 if (msg_probe(msg
)) {
2291 l_ptr
->stats
.recv_probes
++;
2292 if (msg_size(msg
) > sizeof(l_ptr
->proto_msg
)) {
2293 max_pkt_ack
= msg_size(msg
);
2297 /* Protocol message before retransmits, reduce loss risk */
2299 tipc_bclink_check_gap(l_ptr
->owner
, msg_last_bcast(msg
));
2301 if (rec_gap
|| (msg_probe(msg
))) {
2302 tipc_link_send_proto_msg(l_ptr
, STATE_MSG
,
2303 0, rec_gap
, 0, 0, max_pkt_ack
);
2305 if (msg_seq_gap(msg
)) {
2306 msg_dbg(msg
, "With Gap:");
2307 l_ptr
->stats
.recv_nacks
++;
2308 tipc_link_retransmit(l_ptr
, l_ptr
->first_out
,
2313 msg_dbg(buf_msg(buf
), "<DISCARDING UNKNOWN<");
2321 * tipc_link_tunnel(): Send one message via a link belonging to
2322 * another bearer. Owner node is locked.
2324 static void tipc_link_tunnel(struct link
*l_ptr
,
2325 struct tipc_msg
*tunnel_hdr
,
2326 struct tipc_msg
*msg
,
2329 struct link
*tunnel
;
2330 struct sk_buff
*buf
;
2331 u32 length
= msg_size(msg
);
2333 tunnel
= l_ptr
->owner
->active_links
[selector
& 1];
2334 if (!tipc_link_is_up(tunnel
)) {
2335 warn("Link changeover error, "
2336 "tunnel link no longer available\n");
2339 msg_set_size(tunnel_hdr
, length
+ INT_H_SIZE
);
2340 buf
= tipc_buf_acquire(length
+ INT_H_SIZE
);
2342 warn("Link changeover error, "
2343 "unable to send tunnel msg\n");
2346 skb_copy_to_linear_data(buf
, tunnel_hdr
, INT_H_SIZE
);
2347 skb_copy_to_linear_data_offset(buf
, INT_H_SIZE
, msg
, length
);
2348 dbg("%c->%c:", l_ptr
->b_ptr
->net_plane
, tunnel
->b_ptr
->net_plane
);
2349 msg_dbg(buf_msg(buf
), ">SEND>");
2350 tipc_link_send_buf(tunnel
, buf
);
2356 * changeover(): Send whole message queue via the remaining link
2357 * Owner node is locked.
2360 void tipc_link_changeover(struct link
*l_ptr
)
2362 u32 msgcount
= l_ptr
->out_queue_size
;
2363 struct sk_buff
*crs
= l_ptr
->first_out
;
2364 struct link
*tunnel
= l_ptr
->owner
->active_links
[0];
2365 struct tipc_msg tunnel_hdr
;
2371 if (!l_ptr
->owner
->permit_changeover
) {
2372 warn("Link changeover error, "
2373 "peer did not permit changeover\n");
2377 tipc_msg_init(&tunnel_hdr
, CHANGEOVER_PROTOCOL
,
2378 ORIGINAL_MSG
, INT_H_SIZE
, l_ptr
->addr
);
2379 msg_set_bearer_id(&tunnel_hdr
, l_ptr
->peer_bearer_id
);
2380 msg_set_msgcnt(&tunnel_hdr
, msgcount
);
2381 dbg("Link changeover requires %u tunnel messages\n", msgcount
);
2383 if (!l_ptr
->first_out
) {
2384 struct sk_buff
*buf
;
2386 buf
= tipc_buf_acquire(INT_H_SIZE
);
2388 skb_copy_to_linear_data(buf
, &tunnel_hdr
, INT_H_SIZE
);
2389 msg_set_size(&tunnel_hdr
, INT_H_SIZE
);
2390 dbg("%c->%c:", l_ptr
->b_ptr
->net_plane
,
2391 tunnel
->b_ptr
->net_plane
);
2392 msg_dbg(&tunnel_hdr
, "EMPTY>SEND>");
2393 tipc_link_send_buf(tunnel
, buf
);
2395 warn("Link changeover error, "
2396 "unable to send changeover msg\n");
2401 split_bundles
= (l_ptr
->owner
->active_links
[0] !=
2402 l_ptr
->owner
->active_links
[1]);
2405 struct tipc_msg
*msg
= buf_msg(crs
);
2407 if ((msg_user(msg
) == MSG_BUNDLER
) && split_bundles
) {
2408 struct tipc_msg
*m
= msg_get_wrapped(msg
);
2409 unchar
* pos
= (unchar
*)m
;
2411 msgcount
= msg_msgcnt(msg
);
2412 while (msgcount
--) {
2413 msg_set_seqno(m
,msg_seqno(msg
));
2414 tipc_link_tunnel(l_ptr
, &tunnel_hdr
, m
,
2415 msg_link_selector(m
));
2416 pos
+= align(msg_size(m
));
2417 m
= (struct tipc_msg
*)pos
;
2420 tipc_link_tunnel(l_ptr
, &tunnel_hdr
, msg
,
2421 msg_link_selector(msg
));
2427 void tipc_link_send_duplicate(struct link
*l_ptr
, struct link
*tunnel
)
2429 struct sk_buff
*iter
;
2430 struct tipc_msg tunnel_hdr
;
2432 tipc_msg_init(&tunnel_hdr
, CHANGEOVER_PROTOCOL
,
2433 DUPLICATE_MSG
, INT_H_SIZE
, l_ptr
->addr
);
2434 msg_set_msgcnt(&tunnel_hdr
, l_ptr
->out_queue_size
);
2435 msg_set_bearer_id(&tunnel_hdr
, l_ptr
->peer_bearer_id
);
2436 iter
= l_ptr
->first_out
;
2438 struct sk_buff
*outbuf
;
2439 struct tipc_msg
*msg
= buf_msg(iter
);
2440 u32 length
= msg_size(msg
);
2442 if (msg_user(msg
) == MSG_BUNDLER
)
2443 msg_set_type(msg
, CLOSED_MSG
);
2444 msg_set_ack(msg
, mod(l_ptr
->next_in_no
- 1)); /* Update */
2445 msg_set_bcast_ack(msg
, l_ptr
->owner
->bclink
.last_in
);
2446 msg_set_size(&tunnel_hdr
, length
+ INT_H_SIZE
);
2447 outbuf
= tipc_buf_acquire(length
+ INT_H_SIZE
);
2448 if (outbuf
== NULL
) {
2449 warn("Link changeover error, "
2450 "unable to send duplicate msg\n");
2453 skb_copy_to_linear_data(outbuf
, &tunnel_hdr
, INT_H_SIZE
);
2454 skb_copy_to_linear_data_offset(outbuf
, INT_H_SIZE
, iter
->data
,
2456 dbg("%c->%c:", l_ptr
->b_ptr
->net_plane
,
2457 tunnel
->b_ptr
->net_plane
);
2458 msg_dbg(buf_msg(outbuf
), ">SEND>");
2459 tipc_link_send_buf(tunnel
, outbuf
);
2460 if (!tipc_link_is_up(l_ptr
))
2469 * buf_extract - extracts embedded TIPC message from another message
2470 * @skb: encapsulating message buffer
2471 * @from_pos: offset to extract from
2473 * Returns a new message buffer containing an embedded message. The
2474 * encapsulating message itself is left unchanged.
2477 static struct sk_buff
*buf_extract(struct sk_buff
*skb
, u32 from_pos
)
2479 struct tipc_msg
*msg
= (struct tipc_msg
*)(skb
->data
+ from_pos
);
2480 u32 size
= msg_size(msg
);
2483 eb
= tipc_buf_acquire(size
);
2485 skb_copy_to_linear_data(eb
, msg
, size
);
2490 * link_recv_changeover_msg(): Receive tunneled packet sent
2491 * via other link. Node is locked. Return extracted buffer.
2494 static int link_recv_changeover_msg(struct link
**l_ptr
,
2495 struct sk_buff
**buf
)
2497 struct sk_buff
*tunnel_buf
= *buf
;
2498 struct link
*dest_link
;
2499 struct tipc_msg
*msg
;
2500 struct tipc_msg
*tunnel_msg
= buf_msg(tunnel_buf
);
2501 u32 msg_typ
= msg_type(tunnel_msg
);
2502 u32 msg_count
= msg_msgcnt(tunnel_msg
);
2504 dest_link
= (*l_ptr
)->owner
->links
[msg_bearer_id(tunnel_msg
)];
2506 msg_dbg(tunnel_msg
, "NOLINK/<REC<");
2509 if (dest_link
== *l_ptr
) {
2510 err("Unexpected changeover message on link <%s>\n",
2514 dbg("%c<-%c:", dest_link
->b_ptr
->net_plane
,
2515 (*l_ptr
)->b_ptr
->net_plane
);
2517 msg
= msg_get_wrapped(tunnel_msg
);
2519 if (msg_typ
== DUPLICATE_MSG
) {
2520 if (less(msg_seqno(msg
), mod(dest_link
->next_in_no
))) {
2521 msg_dbg(tunnel_msg
, "DROP/<REC<");
2524 *buf
= buf_extract(tunnel_buf
,INT_H_SIZE
);
2526 warn("Link changeover error, duplicate msg dropped\n");
2529 msg_dbg(tunnel_msg
, "TNL<REC<");
2530 buf_discard(tunnel_buf
);
2534 /* First original message ?: */
2536 if (tipc_link_is_up(dest_link
)) {
2537 msg_dbg(tunnel_msg
, "UP/FIRST/<REC<");
2538 info("Resetting link <%s>, changeover initiated by peer\n",
2540 tipc_link_reset(dest_link
);
2541 dest_link
->exp_msg_count
= msg_count
;
2542 dbg("Expecting %u tunnelled messages\n", msg_count
);
2545 } else if (dest_link
->exp_msg_count
== START_CHANGEOVER
) {
2546 msg_dbg(tunnel_msg
, "BLK/FIRST/<REC<");
2547 dest_link
->exp_msg_count
= msg_count
;
2548 dbg("Expecting %u tunnelled messages\n", msg_count
);
2553 /* Receive original message */
2555 if (dest_link
->exp_msg_count
== 0) {
2556 warn("Link switchover error, "
2557 "got too many tunnelled messages\n");
2558 msg_dbg(tunnel_msg
, "OVERDUE/DROP/<REC<");
2559 dbg_print_link(dest_link
, "LINK:");
2562 dest_link
->exp_msg_count
--;
2563 if (less(msg_seqno(msg
), dest_link
->reset_checkpoint
)) {
2564 msg_dbg(tunnel_msg
, "DROP/DUPL/<REC<");
2567 *buf
= buf_extract(tunnel_buf
, INT_H_SIZE
);
2569 msg_dbg(tunnel_msg
, "TNL<REC<");
2570 buf_discard(tunnel_buf
);
2573 warn("Link changeover error, original msg dropped\n");
2578 buf_discard(tunnel_buf
);
2583 * Bundler functionality:
2585 void tipc_link_recv_bundle(struct sk_buff
*buf
)
2587 u32 msgcount
= msg_msgcnt(buf_msg(buf
));
2588 u32 pos
= INT_H_SIZE
;
2589 struct sk_buff
*obuf
;
2591 msg_dbg(buf_msg(buf
), "<BNDL<: ");
2592 while (msgcount
--) {
2593 obuf
= buf_extract(buf
, pos
);
2595 warn("Link unable to unbundle message(s)\n");
2598 pos
+= align(msg_size(buf_msg(obuf
)));
2599 msg_dbg(buf_msg(obuf
), " /");
2600 tipc_net_route_msg(obuf
);
2606 * Fragmentation/defragmentation:
2611 * link_send_long_buf: Entry for buffers needing fragmentation.
2612 * The buffer is complete, inclusive total message length.
2613 * Returns user data length.
2615 static int link_send_long_buf(struct link
*l_ptr
, struct sk_buff
*buf
)
2617 struct tipc_msg
*inmsg
= buf_msg(buf
);
2618 struct tipc_msg fragm_hdr
;
2619 u32 insize
= msg_size(inmsg
);
2620 u32 dsz
= msg_data_sz(inmsg
);
2621 unchar
*crs
= buf
->data
;
2623 u32 pack_sz
= l_ptr
->max_pkt
;
2624 u32 fragm_sz
= pack_sz
- INT_H_SIZE
;
2628 if (msg_short(inmsg
))
2629 destaddr
= l_ptr
->addr
;
2631 destaddr
= msg_destnode(inmsg
);
2633 if (msg_routed(inmsg
))
2634 msg_set_prevnode(inmsg
, tipc_own_addr
);
2636 /* Prepare reusable fragment header: */
2638 tipc_msg_init(&fragm_hdr
, MSG_FRAGMENTER
, FIRST_FRAGMENT
,
2639 INT_H_SIZE
, destaddr
);
2640 msg_set_link_selector(&fragm_hdr
, msg_link_selector(inmsg
));
2641 msg_set_long_msgno(&fragm_hdr
, mod(l_ptr
->long_msg_seq_no
++));
2642 msg_set_fragm_no(&fragm_hdr
, fragm_no
);
2643 l_ptr
->stats
.sent_fragmented
++;
2645 /* Chop up message: */
2648 struct sk_buff
*fragm
;
2650 if (rest
<= fragm_sz
) {
2652 msg_set_type(&fragm_hdr
, LAST_FRAGMENT
);
2654 fragm
= tipc_buf_acquire(fragm_sz
+ INT_H_SIZE
);
2655 if (fragm
== NULL
) {
2656 warn("Link unable to fragment message\n");
2660 msg_set_size(&fragm_hdr
, fragm_sz
+ INT_H_SIZE
);
2661 skb_copy_to_linear_data(fragm
, &fragm_hdr
, INT_H_SIZE
);
2662 skb_copy_to_linear_data_offset(fragm
, INT_H_SIZE
, crs
,
2664 /* Send queued messages first, if any: */
2666 l_ptr
->stats
.sent_fragments
++;
2667 tipc_link_send_buf(l_ptr
, fragm
);
2668 if (!tipc_link_is_up(l_ptr
))
2670 msg_set_fragm_no(&fragm_hdr
, ++fragm_no
);
2673 msg_set_type(&fragm_hdr
, FRAGMENT
);
2681 * A pending message being re-assembled must store certain values
2682 * to handle subsequent fragments correctly. The following functions
2683 * help storing these values in unused, available fields in the
2684 * pending message. This makes dynamic memory allocation unecessary.
2687 static void set_long_msg_seqno(struct sk_buff
*buf
, u32 seqno
)
2689 msg_set_seqno(buf_msg(buf
), seqno
);
2692 static u32
get_fragm_size(struct sk_buff
*buf
)
2694 return msg_ack(buf_msg(buf
));
2697 static void set_fragm_size(struct sk_buff
*buf
, u32 sz
)
2699 msg_set_ack(buf_msg(buf
), sz
);
2702 static u32
get_expected_frags(struct sk_buff
*buf
)
2704 return msg_bcast_ack(buf_msg(buf
));
2707 static void set_expected_frags(struct sk_buff
*buf
, u32 exp
)
2709 msg_set_bcast_ack(buf_msg(buf
), exp
);
2712 static u32
get_timer_cnt(struct sk_buff
*buf
)
2714 return msg_reroute_cnt(buf_msg(buf
));
2717 static void incr_timer_cnt(struct sk_buff
*buf
)
2719 msg_incr_reroute_cnt(buf_msg(buf
));
2723 * tipc_link_recv_fragment(): Called with node lock on. Returns
2724 * the reassembled buffer if message is complete.
2726 int tipc_link_recv_fragment(struct sk_buff
**pending
, struct sk_buff
**fb
,
2727 struct tipc_msg
**m
)
2729 struct sk_buff
*prev
= NULL
;
2730 struct sk_buff
*fbuf
= *fb
;
2731 struct tipc_msg
*fragm
= buf_msg(fbuf
);
2732 struct sk_buff
*pbuf
= *pending
;
2733 u32 long_msg_seq_no
= msg_long_msgno(fragm
);
2736 msg_dbg(fragm
,"FRG<REC<");
2738 /* Is there an incomplete message waiting for this fragment? */
2740 while (pbuf
&& ((msg_seqno(buf_msg(pbuf
)) != long_msg_seq_no
) ||
2741 (msg_orignode(fragm
) != msg_orignode(buf_msg(pbuf
))))) {
2746 if (!pbuf
&& (msg_type(fragm
) == FIRST_FRAGMENT
)) {
2747 struct tipc_msg
*imsg
= (struct tipc_msg
*)msg_data(fragm
);
2748 u32 msg_sz
= msg_size(imsg
);
2749 u32 fragm_sz
= msg_data_sz(fragm
);
2750 u32 exp_fragm_cnt
= msg_sz
/fragm_sz
+ !!(msg_sz
% fragm_sz
);
2751 u32 max
= TIPC_MAX_USER_MSG_SIZE
+ LONG_H_SIZE
;
2752 if (msg_type(imsg
) == TIPC_MCAST_MSG
)
2753 max
= TIPC_MAX_USER_MSG_SIZE
+ MCAST_H_SIZE
;
2754 if (msg_size(imsg
) > max
) {
2755 msg_dbg(fragm
,"<REC<Oversized: ");
2759 pbuf
= tipc_buf_acquire(msg_size(imsg
));
2761 pbuf
->next
= *pending
;
2763 skb_copy_to_linear_data(pbuf
, imsg
,
2764 msg_data_sz(fragm
));
2765 /* Prepare buffer for subsequent fragments. */
2767 set_long_msg_seqno(pbuf
, long_msg_seq_no
);
2768 set_fragm_size(pbuf
,fragm_sz
);
2769 set_expected_frags(pbuf
,exp_fragm_cnt
- 1);
2771 warn("Link unable to reassemble fragmented message\n");
2775 } else if (pbuf
&& (msg_type(fragm
) != FIRST_FRAGMENT
)) {
2776 u32 dsz
= msg_data_sz(fragm
);
2777 u32 fsz
= get_fragm_size(pbuf
);
2778 u32 crs
= ((msg_fragm_no(fragm
) - 1) * fsz
);
2779 u32 exp_frags
= get_expected_frags(pbuf
) - 1;
2780 skb_copy_to_linear_data_offset(pbuf
, crs
,
2781 msg_data(fragm
), dsz
);
2784 /* Is message complete? */
2786 if (exp_frags
== 0) {
2788 prev
->next
= pbuf
->next
;
2790 *pending
= pbuf
->next
;
2791 msg_reset_reroute_cnt(buf_msg(pbuf
));
2796 set_expected_frags(pbuf
,exp_frags
);
2799 dbg(" Discarding orphan fragment %x\n",fbuf
);
2800 msg_dbg(fragm
,"ORPHAN:");
2801 dbg("Pending long buffers:\n");
2802 dbg_print_buf_chain(*pending
);
2808 * link_check_defragm_bufs - flush stale incoming message fragments
2809 * @l_ptr: pointer to link
2812 static void link_check_defragm_bufs(struct link
*l_ptr
)
2814 struct sk_buff
*prev
= NULL
;
2815 struct sk_buff
*next
= NULL
;
2816 struct sk_buff
*buf
= l_ptr
->defragm_buf
;
2820 if (!link_working_working(l_ptr
))
2823 u32 cnt
= get_timer_cnt(buf
);
2827 incr_timer_cnt(buf
);
2830 dbg(" Discarding incomplete long buffer\n");
2831 msg_dbg(buf_msg(buf
), "LONG:");
2832 dbg_print_link(l_ptr
, "curr:");
2833 dbg("Pending long buffers:\n");
2834 dbg_print_buf_chain(l_ptr
->defragm_buf
);
2836 prev
->next
= buf
->next
;
2838 l_ptr
->defragm_buf
= buf
->next
;
2847 static void link_set_supervision_props(struct link
*l_ptr
, u32 tolerance
)
2849 l_ptr
->tolerance
= tolerance
;
2850 l_ptr
->continuity_interval
=
2851 ((tolerance
/ 4) > 500) ? 500 : tolerance
/ 4;
2852 l_ptr
->abort_limit
= tolerance
/ (l_ptr
->continuity_interval
/ 4);
2856 void tipc_link_set_queue_limits(struct link
*l_ptr
, u32 window
)
2858 /* Data messages from this node, inclusive FIRST_FRAGM */
2859 l_ptr
->queue_limit
[TIPC_LOW_IMPORTANCE
] = window
;
2860 l_ptr
->queue_limit
[TIPC_MEDIUM_IMPORTANCE
] = (window
/ 3) * 4;
2861 l_ptr
->queue_limit
[TIPC_HIGH_IMPORTANCE
] = (window
/ 3) * 5;
2862 l_ptr
->queue_limit
[TIPC_CRITICAL_IMPORTANCE
] = (window
/ 3) * 6;
2863 /* Transiting data messages,inclusive FIRST_FRAGM */
2864 l_ptr
->queue_limit
[TIPC_LOW_IMPORTANCE
+ 4] = 300;
2865 l_ptr
->queue_limit
[TIPC_MEDIUM_IMPORTANCE
+ 4] = 600;
2866 l_ptr
->queue_limit
[TIPC_HIGH_IMPORTANCE
+ 4] = 900;
2867 l_ptr
->queue_limit
[TIPC_CRITICAL_IMPORTANCE
+ 4] = 1200;
2868 l_ptr
->queue_limit
[CONN_MANAGER
] = 1200;
2869 l_ptr
->queue_limit
[ROUTE_DISTRIBUTOR
] = 1200;
2870 l_ptr
->queue_limit
[CHANGEOVER_PROTOCOL
] = 2500;
2871 l_ptr
->queue_limit
[NAME_DISTRIBUTOR
] = 3000;
2872 /* FRAGMENT and LAST_FRAGMENT packets */
2873 l_ptr
->queue_limit
[MSG_FRAGMENTER
] = 4000;
2877 * link_find_link - locate link by name
2878 * @name - ptr to link name string
2879 * @node - ptr to area to be filled with ptr to associated node
2881 * Caller must hold 'tipc_net_lock' to ensure node and bearer are not deleted;
2882 * this also prevents link deletion.
2884 * Returns pointer to link (or 0 if invalid link name).
2887 static struct link
*link_find_link(const char *name
, struct tipc_node
**node
)
2889 struct link_name link_name_parts
;
2890 struct bearer
*b_ptr
;
2893 if (!link_name_validate(name
, &link_name_parts
))
2896 b_ptr
= tipc_bearer_find_interface(link_name_parts
.if_local
);
2900 *node
= tipc_node_find(link_name_parts
.addr_peer
);
2904 l_ptr
= (*node
)->links
[b_ptr
->identity
];
2905 if (!l_ptr
|| strcmp(l_ptr
->name
, name
))
2911 struct sk_buff
*tipc_link_cmd_config(const void *req_tlv_area
, int req_tlv_space
,
2914 struct tipc_link_config
*args
;
2917 struct tipc_node
*node
;
2920 if (!TLV_CHECK(req_tlv_area
, req_tlv_space
, TIPC_TLV_LINK_CONFIG
))
2921 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR
);
2923 args
= (struct tipc_link_config
*)TLV_DATA(req_tlv_area
);
2924 new_value
= ntohl(args
->value
);
2926 if (!strcmp(args
->name
, tipc_bclink_name
)) {
2927 if ((cmd
== TIPC_CMD_SET_LINK_WINDOW
) &&
2928 (tipc_bclink_set_queue_limits(new_value
) == 0))
2929 return tipc_cfg_reply_none();
2930 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
2931 " (cannot change setting on broadcast link)");
2934 read_lock_bh(&tipc_net_lock
);
2935 l_ptr
= link_find_link(args
->name
, &node
);
2937 read_unlock_bh(&tipc_net_lock
);
2938 return tipc_cfg_reply_error_string("link not found");
2941 tipc_node_lock(node
);
2944 case TIPC_CMD_SET_LINK_TOL
:
2945 if ((new_value
>= TIPC_MIN_LINK_TOL
) &&
2946 (new_value
<= TIPC_MAX_LINK_TOL
)) {
2947 link_set_supervision_props(l_ptr
, new_value
);
2948 tipc_link_send_proto_msg(l_ptr
, STATE_MSG
,
2949 0, 0, new_value
, 0, 0);
2953 case TIPC_CMD_SET_LINK_PRI
:
2954 if ((new_value
>= TIPC_MIN_LINK_PRI
) &&
2955 (new_value
<= TIPC_MAX_LINK_PRI
)) {
2956 l_ptr
->priority
= new_value
;
2957 tipc_link_send_proto_msg(l_ptr
, STATE_MSG
,
2958 0, 0, 0, new_value
, 0);
2962 case TIPC_CMD_SET_LINK_WINDOW
:
2963 if ((new_value
>= TIPC_MIN_LINK_WIN
) &&
2964 (new_value
<= TIPC_MAX_LINK_WIN
)) {
2965 tipc_link_set_queue_limits(l_ptr
, new_value
);
2970 tipc_node_unlock(node
);
2972 read_unlock_bh(&tipc_net_lock
);
2974 return tipc_cfg_reply_error_string("cannot change link setting");
2976 return tipc_cfg_reply_none();
2980 * link_reset_statistics - reset link statistics
2981 * @l_ptr: pointer to link
2984 static void link_reset_statistics(struct link
*l_ptr
)
2986 memset(&l_ptr
->stats
, 0, sizeof(l_ptr
->stats
));
2987 l_ptr
->stats
.sent_info
= l_ptr
->next_out_no
;
2988 l_ptr
->stats
.recv_info
= l_ptr
->next_in_no
;
2991 struct sk_buff
*tipc_link_cmd_reset_stats(const void *req_tlv_area
, int req_tlv_space
)
2995 struct tipc_node
*node
;
2997 if (!TLV_CHECK(req_tlv_area
, req_tlv_space
, TIPC_TLV_LINK_NAME
))
2998 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR
);
3000 link_name
= (char *)TLV_DATA(req_tlv_area
);
3001 if (!strcmp(link_name
, tipc_bclink_name
)) {
3002 if (tipc_bclink_reset_stats())
3003 return tipc_cfg_reply_error_string("link not found");
3004 return tipc_cfg_reply_none();
3007 read_lock_bh(&tipc_net_lock
);
3008 l_ptr
= link_find_link(link_name
, &node
);
3010 read_unlock_bh(&tipc_net_lock
);
3011 return tipc_cfg_reply_error_string("link not found");
3014 tipc_node_lock(node
);
3015 link_reset_statistics(l_ptr
);
3016 tipc_node_unlock(node
);
3017 read_unlock_bh(&tipc_net_lock
);
3018 return tipc_cfg_reply_none();
3022 * percent - convert count to a percentage of total (rounding up or down)
3025 static u32
percent(u32 count
, u32 total
)
3027 return (count
* 100 + (total
/ 2)) / total
;
3031 * tipc_link_stats - print link statistics
3033 * @buf: print buffer area
3034 * @buf_size: size of print buffer area
3036 * Returns length of print buffer data string (or 0 if error)
3039 static int tipc_link_stats(const char *name
, char *buf
, const u32 buf_size
)
3041 struct print_buf pb
;
3043 struct tipc_node
*node
;
3045 u32 profile_total
= 0;
3047 if (!strcmp(name
, tipc_bclink_name
))
3048 return tipc_bclink_stats(buf
, buf_size
);
3050 tipc_printbuf_init(&pb
, buf
, buf_size
);
3052 read_lock_bh(&tipc_net_lock
);
3053 l_ptr
= link_find_link(name
, &node
);
3055 read_unlock_bh(&tipc_net_lock
);
3058 tipc_node_lock(node
);
3060 if (tipc_link_is_active(l_ptr
))
3062 else if (tipc_link_is_up(l_ptr
))
3066 tipc_printf(&pb
, "Link <%s>\n"
3067 " %s MTU:%u Priority:%u Tolerance:%u ms"
3068 " Window:%u packets\n",
3069 l_ptr
->name
, status
, l_ptr
->max_pkt
,
3070 l_ptr
->priority
, l_ptr
->tolerance
, l_ptr
->queue_limit
[0]);
3071 tipc_printf(&pb
, " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
3072 l_ptr
->next_in_no
- l_ptr
->stats
.recv_info
,
3073 l_ptr
->stats
.recv_fragments
,
3074 l_ptr
->stats
.recv_fragmented
,
3075 l_ptr
->stats
.recv_bundles
,
3076 l_ptr
->stats
.recv_bundled
);
3077 tipc_printf(&pb
, " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
3078 l_ptr
->next_out_no
- l_ptr
->stats
.sent_info
,
3079 l_ptr
->stats
.sent_fragments
,
3080 l_ptr
->stats
.sent_fragmented
,
3081 l_ptr
->stats
.sent_bundles
,
3082 l_ptr
->stats
.sent_bundled
);
3083 profile_total
= l_ptr
->stats
.msg_length_counts
;
3086 tipc_printf(&pb
, " TX profile sample:%u packets average:%u octets\n"
3087 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
3088 "-16354:%u%% -32768:%u%% -66000:%u%%\n",
3089 l_ptr
->stats
.msg_length_counts
,
3090 l_ptr
->stats
.msg_lengths_total
/ profile_total
,
3091 percent(l_ptr
->stats
.msg_length_profile
[0], profile_total
),
3092 percent(l_ptr
->stats
.msg_length_profile
[1], profile_total
),
3093 percent(l_ptr
->stats
.msg_length_profile
[2], profile_total
),
3094 percent(l_ptr
->stats
.msg_length_profile
[3], profile_total
),
3095 percent(l_ptr
->stats
.msg_length_profile
[4], profile_total
),
3096 percent(l_ptr
->stats
.msg_length_profile
[5], profile_total
),
3097 percent(l_ptr
->stats
.msg_length_profile
[6], profile_total
));
3098 tipc_printf(&pb
, " RX states:%u probes:%u naks:%u defs:%u dups:%u\n",
3099 l_ptr
->stats
.recv_states
,
3100 l_ptr
->stats
.recv_probes
,
3101 l_ptr
->stats
.recv_nacks
,
3102 l_ptr
->stats
.deferred_recv
,
3103 l_ptr
->stats
.duplicates
);
3104 tipc_printf(&pb
, " TX states:%u probes:%u naks:%u acks:%u dups:%u\n",
3105 l_ptr
->stats
.sent_states
,
3106 l_ptr
->stats
.sent_probes
,
3107 l_ptr
->stats
.sent_nacks
,
3108 l_ptr
->stats
.sent_acks
,
3109 l_ptr
->stats
.retransmitted
);
3110 tipc_printf(&pb
, " Congestion bearer:%u link:%u Send queue max:%u avg:%u\n",
3111 l_ptr
->stats
.bearer_congs
,
3112 l_ptr
->stats
.link_congs
,
3113 l_ptr
->stats
.max_queue_sz
,
3114 l_ptr
->stats
.queue_sz_counts
3115 ? (l_ptr
->stats
.accu_queue_sz
/ l_ptr
->stats
.queue_sz_counts
)
3118 tipc_node_unlock(node
);
3119 read_unlock_bh(&tipc_net_lock
);
3120 return tipc_printbuf_validate(&pb
);
3123 #define MAX_LINK_STATS_INFO 2000
3125 struct sk_buff
*tipc_link_cmd_show_stats(const void *req_tlv_area
, int req_tlv_space
)
3127 struct sk_buff
*buf
;
3128 struct tlv_desc
*rep_tlv
;
3131 if (!TLV_CHECK(req_tlv_area
, req_tlv_space
, TIPC_TLV_LINK_NAME
))
3132 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR
);
3134 buf
= tipc_cfg_reply_alloc(TLV_SPACE(MAX_LINK_STATS_INFO
));
3138 rep_tlv
= (struct tlv_desc
*)buf
->data
;
3140 str_len
= tipc_link_stats((char *)TLV_DATA(req_tlv_area
),
3141 (char *)TLV_DATA(rep_tlv
), MAX_LINK_STATS_INFO
);
3144 return tipc_cfg_reply_error_string("link not found");
3147 skb_put(buf
, TLV_SPACE(str_len
));
3148 TLV_SET(rep_tlv
, TIPC_TLV_ULTRA_STRING
, NULL
, str_len
);
3154 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
3155 * @dest: network address of destination node
3156 * @selector: used to select from set of active links
3158 * If no active link can be found, uses default maximum packet size.
3161 u32
tipc_link_get_max_pkt(u32 dest
, u32 selector
)
3163 struct tipc_node
*n_ptr
;
3165 u32 res
= MAX_PKT_DEFAULT
;
3167 if (dest
== tipc_own_addr
)
3168 return MAX_MSG_SIZE
;
3170 read_lock_bh(&tipc_net_lock
);
3171 n_ptr
= tipc_node_select(dest
, selector
);
3173 tipc_node_lock(n_ptr
);
3174 l_ptr
= n_ptr
->active_links
[selector
& 1];
3176 res
= l_ptr
->max_pkt
;
3177 tipc_node_unlock(n_ptr
);
3179 read_unlock_bh(&tipc_net_lock
);
3183 static void link_dump_send_queue(struct link
*l_ptr
)
3185 if (l_ptr
->next_out
) {
3186 info("\nContents of unsent queue:\n");
3187 dbg_print_buf_chain(l_ptr
->next_out
);
3189 info("\nContents of send queue:\n");
3190 if (l_ptr
->first_out
) {
3191 dbg_print_buf_chain(l_ptr
->first_out
);
3193 info("Empty send queue\n");
3196 static void link_print(struct link
*l_ptr
, struct print_buf
*buf
,
3199 tipc_printf(buf
, str
);
3200 if (link_reset_reset(l_ptr
) || link_reset_unknown(l_ptr
))
3202 tipc_printf(buf
, "Link %x<%s>:",
3203 l_ptr
->addr
, l_ptr
->b_ptr
->publ
.name
);
3204 tipc_printf(buf
, ": NXO(%u):", mod(l_ptr
->next_out_no
));
3205 tipc_printf(buf
, "NXI(%u):", mod(l_ptr
->next_in_no
));
3206 tipc_printf(buf
, "SQUE");
3207 if (l_ptr
->first_out
) {
3208 tipc_printf(buf
, "[%u..", msg_seqno(buf_msg(l_ptr
->first_out
)));
3209 if (l_ptr
->next_out
)
3210 tipc_printf(buf
, "%u..",
3211 msg_seqno(buf_msg(l_ptr
->next_out
)));
3212 tipc_printf(buf
, "%u]", msg_seqno(buf_msg(l_ptr
->last_out
)));
3213 if ((mod(msg_seqno(buf_msg(l_ptr
->last_out
)) -
3214 msg_seqno(buf_msg(l_ptr
->first_out
)))
3215 != (l_ptr
->out_queue_size
- 1)) ||
3216 (l_ptr
->last_out
->next
!= NULL
)) {
3217 tipc_printf(buf
, "\nSend queue inconsistency\n");
3218 tipc_printf(buf
, "first_out= %x ", l_ptr
->first_out
);
3219 tipc_printf(buf
, "next_out= %x ", l_ptr
->next_out
);
3220 tipc_printf(buf
, "last_out= %x ", l_ptr
->last_out
);
3221 link_dump_send_queue(l_ptr
);
3224 tipc_printf(buf
, "[]");
3225 tipc_printf(buf
, "SQSIZ(%u)", l_ptr
->out_queue_size
);
3226 if (l_ptr
->oldest_deferred_in
) {
3227 u32 o
= msg_seqno(buf_msg(l_ptr
->oldest_deferred_in
));
3228 u32 n
= msg_seqno(buf_msg(l_ptr
->newest_deferred_in
));
3229 tipc_printf(buf
, ":RQUE[%u..%u]", o
, n
);
3230 if (l_ptr
->deferred_inqueue_sz
!= mod((n
+ 1) - o
)) {
3231 tipc_printf(buf
, ":RQSIZ(%u)",
3232 l_ptr
->deferred_inqueue_sz
);
3235 if (link_working_unknown(l_ptr
))
3236 tipc_printf(buf
, ":WU");
3237 if (link_reset_reset(l_ptr
))
3238 tipc_printf(buf
, ":RR");
3239 if (link_reset_unknown(l_ptr
))
3240 tipc_printf(buf
, ":RU");
3241 if (link_working_working(l_ptr
))
3242 tipc_printf(buf
, ":WW");
3243 tipc_printf(buf
, "\n");