blob: cce953723ddbe430bf481bff0d2d2ac2b9171636 [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/link.c: TIPC link code
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Allan Stephens05646c92007-06-10 17:25:24 -07004 * Copyright (c) 1996-2007, Ericsson AB
Allan Stephens23dd4cc2011-01-07 11:43:40 -05005 * Copyright (c) 2004-2007, 2010-2011, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 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.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * 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
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010038#include "link.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039#include "port.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "name_distr.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010041#include "discover.h"
42#include "config.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010043
44
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090045/*
Allan Stephensa686e682008-06-04 17:29:39 -070046 * Out-of-range value for link session numbers
47 */
48
49#define INVALID_SESSION 0x10000
50
51/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090052 * Link state events:
Per Lidenb97bf3f2006-01-02 19:04:38 +010053 */
54
55#define STARTING_EVT 856384768 /* link processing trigger */
56#define TRAFFIC_MSG_EVT 560815u /* rx'd ??? */
57#define TIMEOUT_EVT 560817u /* link timer expired */
58
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090059/*
60 * The following two 'message types' is really just implementation
61 * data conveniently stored in the message header.
Per Lidenb97bf3f2006-01-02 19:04:38 +010062 * They must not be considered part of the protocol
63 */
64#define OPEN_MSG 0
65#define CLOSED_MSG 1
66
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090067/*
Per Lidenb97bf3f2006-01-02 19:04:38 +010068 * State value stored in 'exp_msg_count'
69 */
70
71#define START_CHANGEOVER 100000u
72
73/**
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050074 * struct tipc_link_name - deconstructed link name
Per Lidenb97bf3f2006-01-02 19:04:38 +010075 * @addr_local: network address of node at this end
76 * @if_local: name of interface at this end
77 * @addr_peer: network address of node at far end
78 * @if_peer: name of interface at far end
79 */
80
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050081struct tipc_link_name {
Per Lidenb97bf3f2006-01-02 19:04:38 +010082 u32 addr_local;
83 char if_local[TIPC_MAX_IF_NAME];
84 u32 addr_peer;
85 char if_peer[TIPC_MAX_IF_NAME];
86};
87
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050088static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +010089 struct sk_buff *buf);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050090static void link_recv_proto_msg(struct tipc_link *l_ptr, struct sk_buff *buf);
91static int link_recv_changeover_msg(struct tipc_link **l_ptr,
92 struct sk_buff **buf);
93static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance);
Allan Stephens23dd4cc2011-01-07 11:43:40 -050094static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +010095 struct iovec const *msg_sect,
Allan Stephens26896902011-04-21 10:42:07 -050096 u32 num_sect, unsigned int total_len,
97 u32 destnode);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050098static void link_check_defragm_bufs(struct tipc_link *l_ptr);
99static void link_state_event(struct tipc_link *l_ptr, u32 event);
100static void link_reset_statistics(struct tipc_link *l_ptr);
101static void link_print(struct tipc_link *l_ptr, const char *str);
102static void link_start(struct tipc_link *l_ptr);
103static int link_send_long_buf(struct tipc_link *l_ptr, struct sk_buff *buf);
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000104
Per Lidenb97bf3f2006-01-02 19:04:38 +0100105/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800106 * Simple link routines
Per Lidenb97bf3f2006-01-02 19:04:38 +0100107 */
108
Sam Ravnborg05790c62006-03-20 22:37:04 -0800109static unsigned int align(unsigned int i)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100110{
111 return (i + 3) & ~3u;
112}
113
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500114static void link_init_max_pkt(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100115{
116 u32 max_pkt;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900117
Allan Stephens2d627b92011-01-07 13:00:11 -0500118 max_pkt = (l_ptr->b_ptr->mtu & ~3);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100119 if (max_pkt > MAX_MSG_SIZE)
120 max_pkt = MAX_MSG_SIZE;
121
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900122 l_ptr->max_pkt_target = max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100123 if (l_ptr->max_pkt_target < MAX_PKT_DEFAULT)
124 l_ptr->max_pkt = l_ptr->max_pkt_target;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900125 else
Per Lidenb97bf3f2006-01-02 19:04:38 +0100126 l_ptr->max_pkt = MAX_PKT_DEFAULT;
127
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900128 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100129}
130
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500131static u32 link_next_sent(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100132{
133 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -0400134 return buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100135 return mod(l_ptr->next_out_no);
136}
137
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500138static u32 link_last_sent(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100139{
140 return mod(link_next_sent(l_ptr) - 1);
141}
142
143/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800144 * Simple non-static link routines (i.e. referenced outside this file)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100145 */
146
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500147int tipc_link_is_up(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100148{
149 if (!l_ptr)
150 return 0;
Eric Dumazeta02cec22010-09-22 20:43:57 +0000151 return link_working_working(l_ptr) || link_working_unknown(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100152}
153
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500154int tipc_link_is_active(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100155{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000156 return (l_ptr->owner->active_links[0] == l_ptr) ||
157 (l_ptr->owner->active_links[1] == l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100158}
159
160/**
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500161 * link_name_validate - validate & (optionally) deconstruct tipc_link name
Per Lidenb97bf3f2006-01-02 19:04:38 +0100162 * @name - ptr to link name string
163 * @name_parts - ptr to area for link name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900164 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100165 * Returns 1 if link name is valid, otherwise 0.
166 */
167
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500168static int link_name_validate(const char *name,
169 struct tipc_link_name *name_parts)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100170{
171 char name_copy[TIPC_MAX_LINK_NAME];
172 char *addr_local;
173 char *if_local;
174 char *addr_peer;
175 char *if_peer;
176 char dummy;
177 u32 z_local, c_local, n_local;
178 u32 z_peer, c_peer, n_peer;
179 u32 if_local_len;
180 u32 if_peer_len;
181
182 /* copy link name & ensure length is OK */
183
184 name_copy[TIPC_MAX_LINK_NAME - 1] = 0;
185 /* need above in case non-Posix strncpy() doesn't pad with nulls */
186 strncpy(name_copy, name, TIPC_MAX_LINK_NAME);
187 if (name_copy[TIPC_MAX_LINK_NAME - 1] != 0)
188 return 0;
189
190 /* ensure all component parts of link name are present */
191
192 addr_local = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000193 if_local = strchr(addr_local, ':');
194 if (if_local == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100195 return 0;
196 *(if_local++) = 0;
Allan Stephens2db99832010-12-31 18:59:33 +0000197 addr_peer = strchr(if_local, '-');
198 if (addr_peer == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100199 return 0;
200 *(addr_peer++) = 0;
201 if_local_len = addr_peer - if_local;
Allan Stephens2db99832010-12-31 18:59:33 +0000202 if_peer = strchr(addr_peer, ':');
203 if (if_peer == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100204 return 0;
205 *(if_peer++) = 0;
206 if_peer_len = strlen(if_peer) + 1;
207
208 /* validate component parts of link name */
209
210 if ((sscanf(addr_local, "%u.%u.%u%c",
211 &z_local, &c_local, &n_local, &dummy) != 3) ||
212 (sscanf(addr_peer, "%u.%u.%u%c",
213 &z_peer, &c_peer, &n_peer, &dummy) != 3) ||
214 (z_local > 255) || (c_local > 4095) || (n_local > 4095) ||
215 (z_peer > 255) || (c_peer > 4095) || (n_peer > 4095) ||
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900216 (if_local_len <= 1) || (if_local_len > TIPC_MAX_IF_NAME) ||
217 (if_peer_len <= 1) || (if_peer_len > TIPC_MAX_IF_NAME) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +0100218 (strspn(if_local, tipc_alphabet) != (if_local_len - 1)) ||
219 (strspn(if_peer, tipc_alphabet) != (if_peer_len - 1)))
220 return 0;
221
222 /* return link name components, if necessary */
223
224 if (name_parts) {
225 name_parts->addr_local = tipc_addr(z_local, c_local, n_local);
226 strcpy(name_parts->if_local, if_local);
227 name_parts->addr_peer = tipc_addr(z_peer, c_peer, n_peer);
228 strcpy(name_parts->if_peer, if_peer);
229 }
230 return 1;
231}
232
233/**
234 * link_timeout - handle expiration of link timer
235 * @l_ptr: pointer to link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900236 *
Per Liden4323add2006-01-18 00:38:21 +0100237 * This routine must not grab "tipc_net_lock" to avoid a potential deadlock conflict
238 * with tipc_link_delete(). (There is no risk that the node will be deleted by
239 * another thread because tipc_link_delete() always cancels the link timer before
240 * tipc_node_delete() is called.)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100241 */
242
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500243static void link_timeout(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100244{
Per Liden4323add2006-01-18 00:38:21 +0100245 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100246
247 /* update counters used in statistical profiling of send traffic */
248
249 l_ptr->stats.accu_queue_sz += l_ptr->out_queue_size;
250 l_ptr->stats.queue_sz_counts++;
251
Per Lidenb97bf3f2006-01-02 19:04:38 +0100252 if (l_ptr->first_out) {
253 struct tipc_msg *msg = buf_msg(l_ptr->first_out);
254 u32 length = msg_size(msg);
255
Joe Perchesf64f9e72009-11-29 16:55:45 -0800256 if ((msg_user(msg) == MSG_FRAGMENTER) &&
257 (msg_type(msg) == FIRST_FRAGMENT)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100258 length = msg_size(msg_get_wrapped(msg));
259 }
260 if (length) {
261 l_ptr->stats.msg_lengths_total += length;
262 l_ptr->stats.msg_length_counts++;
263 if (length <= 64)
264 l_ptr->stats.msg_length_profile[0]++;
265 else if (length <= 256)
266 l_ptr->stats.msg_length_profile[1]++;
267 else if (length <= 1024)
268 l_ptr->stats.msg_length_profile[2]++;
269 else if (length <= 4096)
270 l_ptr->stats.msg_length_profile[3]++;
271 else if (length <= 16384)
272 l_ptr->stats.msg_length_profile[4]++;
273 else if (length <= 32768)
274 l_ptr->stats.msg_length_profile[5]++;
275 else
276 l_ptr->stats.msg_length_profile[6]++;
277 }
278 }
279
280 /* do all other link processing performed on a periodic basis */
281
282 link_check_defragm_bufs(l_ptr);
283
284 link_state_event(l_ptr, TIMEOUT_EVT);
285
286 if (l_ptr->next_out)
Per Liden4323add2006-01-18 00:38:21 +0100287 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100288
Per Liden4323add2006-01-18 00:38:21 +0100289 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100290}
291
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500292static void link_set_timer(struct tipc_link *l_ptr, u32 time)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100293{
294 k_start_timer(&l_ptr->timer, time);
295}
296
297/**
Per Liden4323add2006-01-18 00:38:21 +0100298 * tipc_link_create - create a new link
Allan Stephens37b9c082011-02-28 11:32:27 -0500299 * @n_ptr: pointer to associated node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100300 * @b_ptr: pointer to associated bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100301 * @media_addr: media address to use when sending messages over link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900302 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100303 * Returns pointer to link.
304 */
305
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500306struct tipc_link *tipc_link_create(struct tipc_node *n_ptr,
Allan Stephens37b9c082011-02-28 11:32:27 -0500307 struct tipc_bearer *b_ptr,
Per Liden4323add2006-01-18 00:38:21 +0100308 const struct tipc_media_addr *media_addr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100309{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500310 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100311 struct tipc_msg *msg;
312 char *if_name;
Allan Stephens37b9c082011-02-28 11:32:27 -0500313 char addr_string[16];
314 u32 peer = n_ptr->addr;
315
316 if (n_ptr->link_cnt >= 2) {
317 tipc_addr_string_fill(addr_string, n_ptr->addr);
318 err("Attempt to establish third link to %s\n", addr_string);
319 return NULL;
320 }
321
322 if (n_ptr->links[b_ptr->identity]) {
323 tipc_addr_string_fill(addr_string, n_ptr->addr);
324 err("Attempt to establish second link on <%s> to %s\n",
325 b_ptr->name, addr_string);
326 return NULL;
327 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100328
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700329 l_ptr = kzalloc(sizeof(*l_ptr), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100330 if (!l_ptr) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700331 warn("Link creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100332 return NULL;
333 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100334
335 l_ptr->addr = peer;
Allan Stephens2d627b92011-01-07 13:00:11 -0500336 if_name = strchr(b_ptr->name, ':') + 1;
Allan Stephens062b4c92011-04-07 09:28:47 -0400337 sprintf(l_ptr->name, "%u.%u.%u:%s-%u.%u.%u:unknown",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100338 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900339 tipc_node(tipc_own_addr),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100340 if_name,
341 tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
Allan Stephens062b4c92011-04-07 09:28:47 -0400342 /* note: peer i/f name is updated by reset/activate message */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100343 memcpy(&l_ptr->media_addr, media_addr, sizeof(*media_addr));
Allan Stephens37b9c082011-02-28 11:32:27 -0500344 l_ptr->owner = n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100345 l_ptr->checkpoint = 1;
Allan Stephensf882cb72011-04-07 09:43:27 -0400346 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100347 l_ptr->b_ptr = b_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -0400348 link_set_supervision_props(l_ptr, b_ptr->tolerance);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100349 l_ptr->state = RESET_UNKNOWN;
350
351 l_ptr->pmsg = (struct tipc_msg *)&l_ptr->proto_msg;
352 msg = l_ptr->pmsg;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000353 tipc_msg_init(msg, LINK_PROTOCOL, RESET_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100354 msg_set_size(msg, sizeof(l_ptr->proto_msg));
Allan Stephensa686e682008-06-04 17:29:39 -0700355 msg_set_session(msg, (tipc_random & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100356 msg_set_bearer_id(msg, b_ptr->identity);
357 strcpy((char *)msg_data(msg), if_name);
358
359 l_ptr->priority = b_ptr->priority;
Allan Stephens5c216e12011-10-18 11:34:29 -0400360 tipc_link_set_queue_limits(l_ptr, b_ptr->window);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100361
362 link_init_max_pkt(l_ptr);
363
364 l_ptr->next_out_no = 1;
365 INIT_LIST_HEAD(&l_ptr->waiting_ports);
366
367 link_reset_statistics(l_ptr);
368
Allan Stephens37b9c082011-02-28 11:32:27 -0500369 tipc_node_attach_link(n_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100370
Florian Westphal945710652007-07-26 00:05:07 -0700371 k_init_timer(&l_ptr->timer, (Handler)link_timeout, (unsigned long)l_ptr);
372 list_add_tail(&l_ptr->link_list, &b_ptr->links);
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000373 tipc_k_signal((Handler)link_start, (unsigned long)l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100374
Per Lidenb97bf3f2006-01-02 19:04:38 +0100375 return l_ptr;
376}
377
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900378/**
Per Liden4323add2006-01-18 00:38:21 +0100379 * tipc_link_delete - delete a link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100380 * @l_ptr: pointer to link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900381 *
Per Liden4323add2006-01-18 00:38:21 +0100382 * Note: 'tipc_net_lock' is write_locked, bearer is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100383 * This routine must not grab the node lock until after link timer cancellation
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900384 * to avoid a potential deadlock situation.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100385 */
386
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500387void tipc_link_delete(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100388{
389 if (!l_ptr) {
390 err("Attempt to delete non-existent link\n");
391 return;
392 }
393
Per Lidenb97bf3f2006-01-02 19:04:38 +0100394 k_cancel_timer(&l_ptr->timer);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900395
Per Liden4323add2006-01-18 00:38:21 +0100396 tipc_node_lock(l_ptr->owner);
397 tipc_link_reset(l_ptr);
398 tipc_node_detach_link(l_ptr->owner, l_ptr);
399 tipc_link_stop(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100400 list_del_init(&l_ptr->link_list);
Per Liden4323add2006-01-18 00:38:21 +0100401 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100402 k_term_timer(&l_ptr->timer);
403 kfree(l_ptr);
404}
405
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500406static void link_start(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100407{
Allan Stephens214dda42011-01-24 16:22:43 -0500408 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100409 link_state_event(l_ptr, STARTING_EVT);
Allan Stephens214dda42011-01-24 16:22:43 -0500410 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100411}
412
413/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900414 * link_schedule_port - schedule port for deferred sending
Per Lidenb97bf3f2006-01-02 19:04:38 +0100415 * @l_ptr: pointer to link
416 * @origport: reference to sending port
417 * @sz: amount of data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900418 *
419 * Schedules port for renewed sending of messages after link congestion
Per Lidenb97bf3f2006-01-02 19:04:38 +0100420 * has abated.
421 */
422
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500423static int link_schedule_port(struct tipc_link *l_ptr, u32 origport, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100424{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500425 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100426
Per Liden4323add2006-01-18 00:38:21 +0100427 spin_lock_bh(&tipc_port_list_lock);
428 p_ptr = tipc_port_lock(origport);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100429 if (p_ptr) {
430 if (!p_ptr->wakeup)
431 goto exit;
432 if (!list_empty(&p_ptr->wait_list))
433 goto exit;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500434 p_ptr->congested = 1;
Allan Stephens15e979d2010-05-11 14:30:10 +0000435 p_ptr->waiting_pkts = 1 + ((sz - 1) / l_ptr->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100436 list_add_tail(&p_ptr->wait_list, &l_ptr->waiting_ports);
437 l_ptr->stats.link_congs++;
438exit:
Per Liden4323add2006-01-18 00:38:21 +0100439 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100440 }
Per Liden4323add2006-01-18 00:38:21 +0100441 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100442 return -ELINKCONG;
443}
444
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500445void tipc_link_wakeup_ports(struct tipc_link *l_ptr, int all)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100446{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500447 struct tipc_port *p_ptr;
448 struct tipc_port *temp_p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100449 int win = l_ptr->queue_limit[0] - l_ptr->out_queue_size;
450
451 if (all)
452 win = 100000;
453 if (win <= 0)
454 return;
Per Liden4323add2006-01-18 00:38:21 +0100455 if (!spin_trylock_bh(&tipc_port_list_lock))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100456 return;
457 if (link_congested(l_ptr))
458 goto exit;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900459 list_for_each_entry_safe(p_ptr, temp_p_ptr, &l_ptr->waiting_ports,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100460 wait_list) {
461 if (win <= 0)
462 break;
463 list_del_init(&p_ptr->wait_list);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500464 spin_lock_bh(p_ptr->lock);
465 p_ptr->congested = 0;
466 p_ptr->wakeup(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100467 win -= p_ptr->waiting_pkts;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500468 spin_unlock_bh(p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100469 }
470
471exit:
Per Liden4323add2006-01-18 00:38:21 +0100472 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100473}
474
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900475/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100476 * link_release_outqueue - purge link's outbound message queue
477 * @l_ptr: pointer to link
478 */
479
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500480static void link_release_outqueue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100481{
482 struct sk_buff *buf = l_ptr->first_out;
483 struct sk_buff *next;
484
485 while (buf) {
486 next = buf->next;
487 buf_discard(buf);
488 buf = next;
489 }
490 l_ptr->first_out = NULL;
491 l_ptr->out_queue_size = 0;
492}
493
494/**
Per Liden4323add2006-01-18 00:38:21 +0100495 * tipc_link_reset_fragments - purge link's inbound message fragments queue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100496 * @l_ptr: pointer to link
497 */
498
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500499void tipc_link_reset_fragments(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100500{
501 struct sk_buff *buf = l_ptr->defragm_buf;
502 struct sk_buff *next;
503
504 while (buf) {
505 next = buf->next;
506 buf_discard(buf);
507 buf = next;
508 }
509 l_ptr->defragm_buf = NULL;
510}
511
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900512/**
Per Liden4323add2006-01-18 00:38:21 +0100513 * tipc_link_stop - purge all inbound and outbound messages associated with link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100514 * @l_ptr: pointer to link
515 */
516
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500517void tipc_link_stop(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100518{
519 struct sk_buff *buf;
520 struct sk_buff *next;
521
522 buf = l_ptr->oldest_deferred_in;
523 while (buf) {
524 next = buf->next;
525 buf_discard(buf);
526 buf = next;
527 }
528
529 buf = l_ptr->first_out;
530 while (buf) {
531 next = buf->next;
532 buf_discard(buf);
533 buf = next;
534 }
535
Per Liden4323add2006-01-18 00:38:21 +0100536 tipc_link_reset_fragments(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100537
538 buf_discard(l_ptr->proto_msg_queue);
539 l_ptr->proto_msg_queue = NULL;
540}
541
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500542void tipc_link_reset(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100543{
544 struct sk_buff *buf;
545 u32 prev_state = l_ptr->state;
546 u32 checkpoint = l_ptr->next_in_no;
Allan Stephens5392d642006-06-25 23:52:50 -0700547 int was_active_link = tipc_link_is_active(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900548
Allan Stephensa686e682008-06-04 17:29:39 -0700549 msg_set_session(l_ptr->pmsg, ((msg_session(l_ptr->pmsg) + 1) & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100550
Allan Stephensa686e682008-06-04 17:29:39 -0700551 /* Link is down, accept any session */
552 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100553
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900554 /* Prepare for max packet size negotiation */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100555 link_init_max_pkt(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900556
Per Lidenb97bf3f2006-01-02 19:04:38 +0100557 l_ptr->state = RESET_UNKNOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100558
559 if ((prev_state == RESET_UNKNOWN) || (prev_state == RESET_RESET))
560 return;
561
Per Liden4323add2006-01-18 00:38:21 +0100562 tipc_node_link_down(l_ptr->owner, l_ptr);
563 tipc_bearer_remove_dest(l_ptr->b_ptr, l_ptr->addr);
Paul Gortmaker7368ddf2010-10-12 14:25:58 +0000564
Paul Gortmaker8f19afb2011-02-28 11:36:21 -0400565 if (was_active_link && tipc_node_active_links(l_ptr->owner) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100566 l_ptr->owner->permit_changeover) {
567 l_ptr->reset_checkpoint = checkpoint;
568 l_ptr->exp_msg_count = START_CHANGEOVER;
569 }
570
571 /* Clean up all queues: */
572
573 link_release_outqueue(l_ptr);
574 buf_discard(l_ptr->proto_msg_queue);
575 l_ptr->proto_msg_queue = NULL;
576 buf = l_ptr->oldest_deferred_in;
577 while (buf) {
578 struct sk_buff *next = buf->next;
579 buf_discard(buf);
580 buf = next;
581 }
582 if (!list_empty(&l_ptr->waiting_ports))
Per Liden4323add2006-01-18 00:38:21 +0100583 tipc_link_wakeup_ports(l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100584
585 l_ptr->retransm_queue_head = 0;
586 l_ptr->retransm_queue_size = 0;
587 l_ptr->last_out = NULL;
588 l_ptr->first_out = NULL;
589 l_ptr->next_out = NULL;
590 l_ptr->unacked_window = 0;
591 l_ptr->checkpoint = 1;
592 l_ptr->next_out_no = 1;
593 l_ptr->deferred_inqueue_sz = 0;
594 l_ptr->oldest_deferred_in = NULL;
595 l_ptr->newest_deferred_in = NULL;
596 l_ptr->fsm_msg_cnt = 0;
597 l_ptr->stale_count = 0;
598 link_reset_statistics(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100599}
600
601
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500602static void link_activate(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100603{
Allan Stephens5392d642006-06-25 23:52:50 -0700604 l_ptr->next_in_no = l_ptr->stats.recv_info = 1;
Per Liden4323add2006-01-18 00:38:21 +0100605 tipc_node_link_up(l_ptr->owner, l_ptr);
606 tipc_bearer_add_dest(l_ptr->b_ptr, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100607}
608
609/**
610 * link_state_event - link finite state machine
611 * @l_ptr: pointer to link
612 * @event: state machine event to process
613 */
614
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500615static void link_state_event(struct tipc_link *l_ptr, unsigned event)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100616{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500617 struct tipc_link *other;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100618 u32 cont_intv = l_ptr->continuity_interval;
619
620 if (!l_ptr->started && (event != STARTING_EVT))
621 return; /* Not yet. */
622
623 if (link_blocked(l_ptr)) {
Allan Stephensa0168922010-12-31 18:59:35 +0000624 if (event == TIMEOUT_EVT)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100625 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100626 return; /* Changeover going on */
627 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100628
629 switch (l_ptr->state) {
630 case WORKING_WORKING:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100631 switch (event) {
632 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100633 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100634 break;
635 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100636 if (l_ptr->next_in_no != l_ptr->checkpoint) {
637 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100638 if (tipc_bclink_acks_missing(l_ptr->owner)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900639 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100640 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100641 l_ptr->fsm_msg_cnt++;
642 } else if (l_ptr->max_pkt < l_ptr->max_pkt_target) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900643 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100644 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100645 l_ptr->fsm_msg_cnt++;
646 }
647 link_set_timer(l_ptr, cont_intv);
648 break;
649 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100650 l_ptr->state = WORKING_UNKNOWN;
651 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100652 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100653 l_ptr->fsm_msg_cnt++;
654 link_set_timer(l_ptr, cont_intv / 4);
655 break;
656 case RESET_MSG:
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900657 info("Resetting link <%s>, requested by peer\n",
Allan Stephensa10bd922006-06-25 23:52:17 -0700658 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100659 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100660 l_ptr->state = RESET_RESET;
661 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100662 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100663 l_ptr->fsm_msg_cnt++;
664 link_set_timer(l_ptr, cont_intv);
665 break;
666 default:
667 err("Unknown link event %u in WW state\n", event);
668 }
669 break;
670 case WORKING_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100671 switch (event) {
672 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100673 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100674 l_ptr->state = WORKING_WORKING;
675 l_ptr->fsm_msg_cnt = 0;
676 link_set_timer(l_ptr, cont_intv);
677 break;
678 case RESET_MSG:
Allan Stephensa10bd922006-06-25 23:52:17 -0700679 info("Resetting link <%s>, requested by peer "
680 "while probing\n", l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100681 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100682 l_ptr->state = RESET_RESET;
683 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100684 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100685 l_ptr->fsm_msg_cnt++;
686 link_set_timer(l_ptr, cont_intv);
687 break;
688 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100689 if (l_ptr->next_in_no != l_ptr->checkpoint) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100690 l_ptr->state = WORKING_WORKING;
691 l_ptr->fsm_msg_cnt = 0;
692 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100693 if (tipc_bclink_acks_missing(l_ptr->owner)) {
694 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
695 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100696 l_ptr->fsm_msg_cnt++;
697 }
698 link_set_timer(l_ptr, cont_intv);
699 } else if (l_ptr->fsm_msg_cnt < l_ptr->abort_limit) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900700 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100701 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100702 l_ptr->fsm_msg_cnt++;
703 link_set_timer(l_ptr, cont_intv / 4);
704 } else { /* Link has failed */
Allan Stephensa10bd922006-06-25 23:52:17 -0700705 warn("Resetting link <%s>, peer not responding\n",
706 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100707 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100708 l_ptr->state = RESET_UNKNOWN;
709 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100710 tipc_link_send_proto_msg(l_ptr, RESET_MSG,
711 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100712 l_ptr->fsm_msg_cnt++;
713 link_set_timer(l_ptr, cont_intv);
714 }
715 break;
716 default:
717 err("Unknown link event %u in WU state\n", event);
718 }
719 break;
720 case RESET_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100721 switch (event) {
722 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100723 break;
724 case ACTIVATE_MSG:
725 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000726 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100727 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100728 l_ptr->state = WORKING_WORKING;
729 l_ptr->fsm_msg_cnt = 0;
730 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100731 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100732 l_ptr->fsm_msg_cnt++;
733 link_set_timer(l_ptr, cont_intv);
734 break;
735 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100736 l_ptr->state = RESET_RESET;
737 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100738 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100739 l_ptr->fsm_msg_cnt++;
740 link_set_timer(l_ptr, cont_intv);
741 break;
742 case STARTING_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100743 l_ptr->started = 1;
744 /* fall through */
745 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100746 tipc_link_send_proto_msg(l_ptr, RESET_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100747 l_ptr->fsm_msg_cnt++;
748 link_set_timer(l_ptr, cont_intv);
749 break;
750 default:
751 err("Unknown link event %u in RU state\n", event);
752 }
753 break;
754 case RESET_RESET:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100755 switch (event) {
756 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100757 case ACTIVATE_MSG:
758 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000759 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100760 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100761 l_ptr->state = WORKING_WORKING;
762 l_ptr->fsm_msg_cnt = 0;
763 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100764 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100765 l_ptr->fsm_msg_cnt++;
766 link_set_timer(l_ptr, cont_intv);
767 break;
768 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100769 break;
770 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100771 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100772 l_ptr->fsm_msg_cnt++;
773 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100774 break;
775 default:
776 err("Unknown link event %u in RR state\n", event);
777 }
778 break;
779 default:
780 err("Unknown link state %u/%u\n", l_ptr->state, event);
781 }
782}
783
784/*
785 * link_bundle_buf(): Append contents of a buffer to
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900786 * the tail of an existing one.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100787 */
788
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500789static int link_bundle_buf(struct tipc_link *l_ptr,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900790 struct sk_buff *bundler,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100791 struct sk_buff *buf)
792{
793 struct tipc_msg *bundler_msg = buf_msg(bundler);
794 struct tipc_msg *msg = buf_msg(buf);
795 u32 size = msg_size(msg);
Allan Stephense49060c2006-06-29 12:32:46 -0700796 u32 bundle_size = msg_size(bundler_msg);
797 u32 to_pos = align(bundle_size);
798 u32 pad = to_pos - bundle_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100799
800 if (msg_user(bundler_msg) != MSG_BUNDLER)
801 return 0;
802 if (msg_type(bundler_msg) != OPEN_MSG)
803 return 0;
Allan Stephense49060c2006-06-29 12:32:46 -0700804 if (skb_tailroom(bundler) < (pad + size))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100805 return 0;
Allan Stephens15e979d2010-05-11 14:30:10 +0000806 if (l_ptr->max_pkt < (to_pos + size))
Allan Stephens863fae62006-07-03 19:39:36 -0700807 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100808
Allan Stephense49060c2006-06-29 12:32:46 -0700809 skb_put(bundler, pad + size);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300810 skb_copy_to_linear_data_offset(bundler, to_pos, buf->data, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100811 msg_set_size(bundler_msg, to_pos + size);
812 msg_set_msgcnt(bundler_msg, msg_msgcnt(bundler_msg) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100813 buf_discard(buf);
814 l_ptr->stats.sent_bundled++;
815 return 1;
816}
817
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500818static void link_add_to_outqueue(struct tipc_link *l_ptr,
Sam Ravnborg05790c62006-03-20 22:37:04 -0800819 struct sk_buff *buf,
820 struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100821{
822 u32 ack = mod(l_ptr->next_in_no - 1);
823 u32 seqno = mod(l_ptr->next_out_no++);
824
825 msg_set_word(msg, 2, ((ack << 16) | seqno));
826 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
827 buf->next = NULL;
828 if (l_ptr->first_out) {
829 l_ptr->last_out->next = buf;
830 l_ptr->last_out = buf;
831 } else
832 l_ptr->first_out = l_ptr->last_out = buf;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500833
Per Lidenb97bf3f2006-01-02 19:04:38 +0100834 l_ptr->out_queue_size++;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500835 if (l_ptr->out_queue_size > l_ptr->stats.max_queue_sz)
836 l_ptr->stats.max_queue_sz = l_ptr->out_queue_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100837}
838
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500839static void link_add_chain_to_outqueue(struct tipc_link *l_ptr,
Allan Stephensdc63d912011-04-21 11:50:42 -0400840 struct sk_buff *buf_chain,
841 u32 long_msgno)
842{
843 struct sk_buff *buf;
844 struct tipc_msg *msg;
845
846 if (!l_ptr->next_out)
847 l_ptr->next_out = buf_chain;
848 while (buf_chain) {
849 buf = buf_chain;
850 buf_chain = buf_chain->next;
851
852 msg = buf_msg(buf);
853 msg_set_long_msgno(msg, long_msgno);
854 link_add_to_outqueue(l_ptr, buf, msg);
855 }
856}
857
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900858/*
859 * tipc_link_send_buf() is the 'full path' for messages, called from
Per Lidenb97bf3f2006-01-02 19:04:38 +0100860 * inside TIPC when the 'fast path' in tipc_send_buf
861 * has failed, and from link_send()
862 */
863
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500864int tipc_link_send_buf(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100865{
866 struct tipc_msg *msg = buf_msg(buf);
867 u32 size = msg_size(msg);
868 u32 dsz = msg_data_sz(msg);
869 u32 queue_size = l_ptr->out_queue_size;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000870 u32 imp = tipc_msg_tot_importance(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100871 u32 queue_limit = l_ptr->queue_limit[imp];
Allan Stephens15e979d2010-05-11 14:30:10 +0000872 u32 max_packet = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100873
874 msg_set_prevnode(msg, tipc_own_addr); /* If routed message */
875
876 /* Match msg importance against queue limits: */
877
878 if (unlikely(queue_size >= queue_limit)) {
879 if (imp <= TIPC_CRITICAL_IMPORTANCE) {
Allan Stephensbebc55a2011-04-19 10:17:58 -0400880 link_schedule_port(l_ptr, msg_origport(msg), size);
881 buf_discard(buf);
882 return -ELINKCONG;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100883 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100884 buf_discard(buf);
885 if (imp > CONN_MANAGER) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700886 warn("Resetting link <%s>, send queue full", l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100887 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100888 }
889 return dsz;
890 }
891
892 /* Fragmentation needed ? */
893
894 if (size > max_packet)
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000895 return link_send_long_buf(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100896
897 /* Packet can be queued or sent: */
898
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900899 if (likely(!tipc_bearer_congested(l_ptr->b_ptr, l_ptr) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100900 !link_congested(l_ptr))) {
901 link_add_to_outqueue(l_ptr, buf, msg);
902
Per Liden4323add2006-01-18 00:38:21 +0100903 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100904 l_ptr->unacked_window = 0;
905 } else {
Per Liden4323add2006-01-18 00:38:21 +0100906 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100907 l_ptr->stats.bearer_congs++;
908 l_ptr->next_out = buf;
909 }
910 return dsz;
911 }
912 /* Congestion: can message be bundled ?: */
913
914 if ((msg_user(msg) != CHANGEOVER_PROTOCOL) &&
915 (msg_user(msg) != MSG_FRAGMENTER)) {
916
917 /* Try adding message to an existing bundle */
918
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900919 if (l_ptr->next_out &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100920 link_bundle_buf(l_ptr, l_ptr->last_out, buf)) {
Per Liden4323add2006-01-18 00:38:21 +0100921 tipc_bearer_resolve_congestion(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100922 return dsz;
923 }
924
925 /* Try creating a new bundle */
926
927 if (size <= max_packet * 2 / 3) {
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000928 struct sk_buff *bundler = tipc_buf_acquire(max_packet);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100929 struct tipc_msg bundler_hdr;
930
931 if (bundler) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000932 tipc_msg_init(&bundler_hdr, MSG_BUNDLER, OPEN_MSG,
Allan Stephens75715212008-06-04 17:37:34 -0700933 INT_H_SIZE, l_ptr->addr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300934 skb_copy_to_linear_data(bundler, &bundler_hdr,
935 INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100936 skb_trim(bundler, INT_H_SIZE);
937 link_bundle_buf(l_ptr, bundler, buf);
938 buf = bundler;
939 msg = buf_msg(buf);
940 l_ptr->stats.sent_bundles++;
941 }
942 }
943 }
944 if (!l_ptr->next_out)
945 l_ptr->next_out = buf;
946 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +0100947 tipc_bearer_resolve_congestion(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100948 return dsz;
949}
950
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900951/*
952 * tipc_link_send(): same as tipc_link_send_buf(), but the link to use has
Per Lidenb97bf3f2006-01-02 19:04:38 +0100953 * not been selected yet, and the the owner node is not locked
954 * Called by TIPC internal users, e.g. the name distributor
955 */
956
Per Liden4323add2006-01-18 00:38:21 +0100957int tipc_link_send(struct sk_buff *buf, u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100958{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500959 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700960 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100961 int res = -ELINKCONG;
962
Per Liden4323add2006-01-18 00:38:21 +0100963 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000964 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100965 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +0100966 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100967 l_ptr = n_ptr->active_links[selector & 1];
Allan Stephensa0168922010-12-31 18:59:35 +0000968 if (l_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100969 res = tipc_link_send_buf(l_ptr, buf);
Allan Stephensa0168922010-12-31 18:59:35 +0000970 else
Allan Stephensc33d53b2006-06-25 23:50:30 -0700971 buf_discard(buf);
Per Liden4323add2006-01-18 00:38:21 +0100972 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100973 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100974 buf_discard(buf);
975 }
Per Liden4323add2006-01-18 00:38:21 +0100976 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100977 return res;
978}
979
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900980/*
Allan Stephens9aa88c22011-05-31 13:38:02 -0400981 * tipc_link_send_names - send name table entries to new neighbor
982 *
983 * Send routine for bulk delivery of name table messages when contact
984 * with a new neighbor occurs. No link congestion checking is performed
985 * because name table messages *must* be delivered. The messages must be
986 * small enough not to require fragmentation.
987 * Called without any locks held.
988 */
989
990void tipc_link_send_names(struct list_head *message_list, u32 dest)
991{
992 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500993 struct tipc_link *l_ptr;
Allan Stephens9aa88c22011-05-31 13:38:02 -0400994 struct sk_buff *buf;
995 struct sk_buff *temp_buf;
996
997 if (list_empty(message_list))
998 return;
999
1000 read_lock_bh(&tipc_net_lock);
1001 n_ptr = tipc_node_find(dest);
1002 if (n_ptr) {
1003 tipc_node_lock(n_ptr);
1004 l_ptr = n_ptr->active_links[0];
1005 if (l_ptr) {
1006 /* convert circular list to linear list */
1007 ((struct sk_buff *)message_list->prev)->next = NULL;
1008 link_add_chain_to_outqueue(l_ptr,
1009 (struct sk_buff *)message_list->next, 0);
1010 tipc_link_push_queue(l_ptr);
1011 INIT_LIST_HEAD(message_list);
1012 }
1013 tipc_node_unlock(n_ptr);
1014 }
1015 read_unlock_bh(&tipc_net_lock);
1016
1017 /* discard the messages if they couldn't be sent */
1018
1019 list_for_each_safe(buf, temp_buf, ((struct sk_buff *)message_list)) {
1020 list_del((struct list_head *)buf);
1021 buf_discard(buf);
1022 }
1023}
1024
1025/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001026 * link_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001027 * destination link is known and the header is complete,
1028 * inclusive total message length. Very time critical.
1029 * Link is locked. Returns user data length.
1030 */
1031
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001032static int link_send_buf_fast(struct tipc_link *l_ptr, struct sk_buff *buf,
Sam Ravnborg05790c62006-03-20 22:37:04 -08001033 u32 *used_max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001034{
1035 struct tipc_msg *msg = buf_msg(buf);
1036 int res = msg_data_sz(msg);
1037
1038 if (likely(!link_congested(l_ptr))) {
Allan Stephens15e979d2010-05-11 14:30:10 +00001039 if (likely(msg_size(msg) <= l_ptr->max_pkt)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001040 if (likely(list_empty(&l_ptr->b_ptr->cong_links))) {
1041 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +01001042 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf,
1043 &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001044 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001045 return res;
1046 }
Per Liden4323add2006-01-18 00:38:21 +01001047 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001048 l_ptr->stats.bearer_congs++;
1049 l_ptr->next_out = buf;
1050 return res;
1051 }
Allan Stephens0e659672010-12-31 18:59:32 +00001052 } else
Allan Stephens15e979d2010-05-11 14:30:10 +00001053 *used_max_pkt = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001054 }
Per Liden4323add2006-01-18 00:38:21 +01001055 return tipc_link_send_buf(l_ptr, buf); /* All other cases */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001056}
1057
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001058/*
1059 * tipc_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001060 * destination node is known and the header is complete,
1061 * inclusive total message length.
1062 * Returns user data length.
1063 */
1064int tipc_send_buf_fast(struct sk_buff *buf, u32 destnode)
1065{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001066 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001067 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001068 int res;
1069 u32 selector = msg_origport(buf_msg(buf)) & 1;
1070 u32 dummy;
1071
Per Liden4323add2006-01-18 00:38:21 +01001072 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001073 n_ptr = tipc_node_find(destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001074 if (likely(n_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001075 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001076 l_ptr = n_ptr->active_links[selector];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001077 if (likely(l_ptr)) {
1078 res = link_send_buf_fast(l_ptr, buf, &dummy);
Per Liden4323add2006-01-18 00:38:21 +01001079 tipc_node_unlock(n_ptr);
1080 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001081 return res;
1082 }
Per Liden4323add2006-01-18 00:38:21 +01001083 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001084 }
Per Liden4323add2006-01-18 00:38:21 +01001085 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001086 res = msg_data_sz(buf_msg(buf));
1087 tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1088 return res;
1089}
1090
1091
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001092/*
1093 * tipc_link_send_sections_fast: Entry for messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001094 * destination processor is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001095 * except for total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001096 * Returns user data length or errno.
1097 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001098int tipc_link_send_sections_fast(struct tipc_port *sender,
Per Liden4323add2006-01-18 00:38:21 +01001099 struct iovec const *msg_sect,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001100 const u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001101 unsigned int total_len,
Per Liden4323add2006-01-18 00:38:21 +01001102 u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001103{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001104 struct tipc_msg *hdr = &sender->phdr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001105 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001106 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -07001107 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001108 int res;
1109 u32 selector = msg_origport(hdr) & 1;
1110
Per Lidenb97bf3f2006-01-02 19:04:38 +01001111again:
1112 /*
1113 * Try building message using port's max_pkt hint.
1114 * (Must not hold any locks while building message.)
1115 */
1116
Allan Stephens26896902011-04-21 10:42:07 -05001117 res = tipc_msg_build(hdr, msg_sect, num_sect, total_len,
1118 sender->max_pkt, !sender->user_port, &buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001119
Per Liden4323add2006-01-18 00:38:21 +01001120 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001121 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001122 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001123 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001124 l_ptr = node->active_links[selector];
1125 if (likely(l_ptr)) {
1126 if (likely(buf)) {
1127 res = link_send_buf_fast(l_ptr, buf,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001128 &sender->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001129exit:
Per Liden4323add2006-01-18 00:38:21 +01001130 tipc_node_unlock(node);
1131 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001132 return res;
1133 }
1134
1135 /* Exit if build request was invalid */
1136
1137 if (unlikely(res < 0))
1138 goto exit;
1139
1140 /* Exit if link (or bearer) is congested */
1141
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001142 if (link_congested(l_ptr) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +01001143 !list_empty(&l_ptr->b_ptr->cong_links)) {
1144 res = link_schedule_port(l_ptr,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001145 sender->ref, res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001146 goto exit;
1147 }
1148
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001149 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001150 * Message size exceeds max_pkt hint; update hint,
1151 * then re-try fast path or fragment the message
1152 */
1153
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001154 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001155 tipc_node_unlock(node);
1156 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001157
1158
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001159 if ((msg_hdr_sz(hdr) + res) <= sender->max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001160 goto again;
1161
1162 return link_send_sections_long(sender, msg_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001163 num_sect, total_len,
1164 destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001165 }
Per Liden4323add2006-01-18 00:38:21 +01001166 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001167 }
Per Liden4323add2006-01-18 00:38:21 +01001168 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001169
1170 /* Couldn't find a link to the destination node */
1171
1172 if (buf)
1173 return tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1174 if (res >= 0)
Per Liden4323add2006-01-18 00:38:21 +01001175 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001176 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001177 return res;
1178}
1179
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001180/*
1181 * link_send_sections_long(): Entry for long messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001182 * destination node is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001183 * inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001184 * Link and bearer congestion status have been checked to be ok,
1185 * and are ignored if they change.
1186 *
1187 * Note that fragments do not use the full link MTU so that they won't have
1188 * to undergo refragmentation if link changeover causes them to be sent
1189 * over another link with an additional tunnel header added as prefix.
1190 * (Refragmentation will still occur if the other link has a smaller MTU.)
1191 *
1192 * Returns user data length or errno.
1193 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001194static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001195 struct iovec const *msg_sect,
1196 u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001197 unsigned int total_len,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001198 u32 destaddr)
1199{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001200 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001201 struct tipc_node *node;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001202 struct tipc_msg *hdr = &sender->phdr;
Allan Stephens26896902011-04-21 10:42:07 -05001203 u32 dsz = total_len;
Allan Stephens0e659672010-12-31 18:59:32 +00001204 u32 max_pkt, fragm_sz, rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001205 struct tipc_msg fragm_hdr;
Allan Stephens0e659672010-12-31 18:59:32 +00001206 struct sk_buff *buf, *buf_chain, *prev;
1207 u32 fragm_crs, fragm_rest, hsz, sect_rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001208 const unchar *sect_crs;
1209 int curr_sect;
1210 u32 fragm_no;
1211
1212again:
1213 fragm_no = 1;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001214 max_pkt = sender->max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001215 /* leave room for tunnel header in case of link changeover */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001216 fragm_sz = max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001217 /* leave room for fragmentation header in each fragment */
1218 rest = dsz;
1219 fragm_crs = 0;
1220 fragm_rest = 0;
1221 sect_rest = 0;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001222 sect_crs = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001223 curr_sect = -1;
1224
1225 /* Prepare reusable fragment header: */
1226
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001227 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07001228 INT_H_SIZE, msg_destnode(hdr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001229 msg_set_size(&fragm_hdr, max_pkt);
1230 msg_set_fragm_no(&fragm_hdr, 1);
1231
1232 /* Prepare header of first fragment: */
1233
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001234 buf_chain = buf = tipc_buf_acquire(max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001235 if (!buf)
1236 return -ENOMEM;
1237 buf->next = NULL;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001238 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001239 hsz = msg_hdr_sz(hdr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001240 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, hdr, hsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001241
1242 /* Chop up message: */
1243
1244 fragm_crs = INT_H_SIZE + hsz;
1245 fragm_rest = fragm_sz - hsz;
1246
1247 do { /* For all sections */
1248 u32 sz;
1249
1250 if (!sect_rest) {
1251 sect_rest = msg_sect[++curr_sect].iov_len;
1252 sect_crs = (const unchar *)msg_sect[curr_sect].iov_base;
1253 }
1254
1255 if (sect_rest < fragm_rest)
1256 sz = sect_rest;
1257 else
1258 sz = fragm_rest;
1259
1260 if (likely(!sender->user_port)) {
1261 if (copy_from_user(buf->data + fragm_crs, sect_crs, sz)) {
1262error:
1263 for (; buf_chain; buf_chain = buf) {
1264 buf = buf_chain->next;
1265 buf_discard(buf_chain);
1266 }
1267 return -EFAULT;
1268 }
1269 } else
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001270 skb_copy_to_linear_data_offset(buf, fragm_crs,
1271 sect_crs, sz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001272 sect_crs += sz;
1273 sect_rest -= sz;
1274 fragm_crs += sz;
1275 fragm_rest -= sz;
1276 rest -= sz;
1277
1278 if (!fragm_rest && rest) {
1279
1280 /* Initiate new fragment: */
1281 if (rest <= fragm_sz) {
1282 fragm_sz = rest;
Allan Stephens0e659672010-12-31 18:59:32 +00001283 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001284 } else {
1285 msg_set_type(&fragm_hdr, FRAGMENT);
1286 }
1287 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
1288 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
1289 prev = buf;
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001290 buf = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001291 if (!buf)
1292 goto error;
1293
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001294 buf->next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001295 prev->next = buf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001296 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001297 fragm_crs = INT_H_SIZE;
1298 fragm_rest = fragm_sz;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001299 }
Allan Stephens0e659672010-12-31 18:59:32 +00001300 } while (rest > 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001301
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001302 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001303 * Now we have a buffer chain. Select a link and check
1304 * that packet size is still OK
1305 */
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001306 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001307 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001308 tipc_node_lock(node);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001309 l_ptr = node->active_links[sender->ref & 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001310 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01001311 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001312 goto reject;
1313 }
Allan Stephens15e979d2010-05-11 14:30:10 +00001314 if (l_ptr->max_pkt < max_pkt) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001315 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001316 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001317 for (; buf_chain; buf_chain = buf) {
1318 buf = buf_chain->next;
1319 buf_discard(buf_chain);
1320 }
1321 goto again;
1322 }
1323 } else {
1324reject:
1325 for (; buf_chain; buf_chain = buf) {
1326 buf = buf_chain->next;
1327 buf_discard(buf_chain);
1328 }
Per Liden4323add2006-01-18 00:38:21 +01001329 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001330 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001331 }
1332
Allan Stephensdc63d912011-04-21 11:50:42 -04001333 /* Append chain of fragments to send queue & send them */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001334
Allan Stephense0f08592011-04-17 11:44:24 -04001335 l_ptr->long_msg_seq_no++;
Allan Stephensdc63d912011-04-21 11:50:42 -04001336 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
1337 l_ptr->stats.sent_fragments += fragm_no;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001338 l_ptr->stats.sent_fragmented++;
Per Liden4323add2006-01-18 00:38:21 +01001339 tipc_link_push_queue(l_ptr);
1340 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001341 return dsz;
1342}
1343
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001344/*
Per Liden4323add2006-01-18 00:38:21 +01001345 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +01001346 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001347u32 tipc_link_push_packet(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001348{
1349 struct sk_buff *buf = l_ptr->first_out;
1350 u32 r_q_size = l_ptr->retransm_queue_size;
1351 u32 r_q_head = l_ptr->retransm_queue_head;
1352
1353 /* Step to position where retransmission failed, if any, */
1354 /* consider that buffers may have been released in meantime */
1355
1356 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001357 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +01001358 link_last_sent(l_ptr));
Allan Stephensf9057302011-10-24 16:03:12 -04001359 u32 first = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001360
1361 while (buf && less(first, r_q_head)) {
1362 first = mod(first + 1);
1363 buf = buf->next;
1364 }
1365 l_ptr->retransm_queue_head = r_q_head = first;
1366 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1367 }
1368
1369 /* Continue retransmission now, if there is anything: */
1370
Neil Hormanca509102010-03-15 07:58:45 +00001371 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001372 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001373 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001374 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001375 l_ptr->retransm_queue_head = mod(++r_q_head);
1376 l_ptr->retransm_queue_size = --r_q_size;
1377 l_ptr->stats.retransmitted++;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001378 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001379 } else {
1380 l_ptr->stats.bearer_congs++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001381 return PUSH_FAILED;
1382 }
1383 }
1384
1385 /* Send deferred protocol message, if any: */
1386
1387 buf = l_ptr->proto_msg_queue;
1388 if (buf) {
1389 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +00001390 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001391 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001392 l_ptr->unacked_window = 0;
1393 buf_discard(buf);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001394 l_ptr->proto_msg_queue = NULL;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001395 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001396 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001397 l_ptr->stats.bearer_congs++;
1398 return PUSH_FAILED;
1399 }
1400 }
1401
1402 /* Send one deferred data message, if send window not full: */
1403
1404 buf = l_ptr->next_out;
1405 if (buf) {
1406 struct tipc_msg *msg = buf_msg(buf);
1407 u32 next = msg_seqno(msg);
Allan Stephensf9057302011-10-24 16:03:12 -04001408 u32 first = buf_seqno(l_ptr->first_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001409
1410 if (mod(next - first) < l_ptr->queue_limit[0]) {
1411 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001412 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001413 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001414 if (msg_user(msg) == MSG_BUNDLER)
1415 msg_set_type(msg, CLOSED_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001416 l_ptr->next_out = buf->next;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001417 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001418 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001419 l_ptr->stats.bearer_congs++;
1420 return PUSH_FAILED;
1421 }
1422 }
1423 }
1424 return PUSH_FINISHED;
1425}
1426
1427/*
1428 * push_queue(): push out the unsent messages of a link where
1429 * congestion has abated. Node is locked
1430 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001431void tipc_link_push_queue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001432{
1433 u32 res;
1434
Per Liden4323add2006-01-18 00:38:21 +01001435 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001436 return;
1437
1438 do {
Per Liden4323add2006-01-18 00:38:21 +01001439 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001440 } while (!res);
1441
Per Lidenb97bf3f2006-01-02 19:04:38 +01001442 if (res == PUSH_FAILED)
Per Liden4323add2006-01-18 00:38:21 +01001443 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001444}
1445
Allan Stephensd356eeb2006-06-25 23:40:01 -07001446static void link_reset_all(unsigned long addr)
1447{
David S. Miller6c000552008-09-02 23:38:32 -07001448 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001449 char addr_string[16];
1450 u32 i;
1451
1452 read_lock_bh(&tipc_net_lock);
1453 n_ptr = tipc_node_find((u32)addr);
1454 if (!n_ptr) {
1455 read_unlock_bh(&tipc_net_lock);
1456 return; /* node no longer exists */
1457 }
1458
1459 tipc_node_lock(n_ptr);
1460
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001461 warn("Resetting all links to %s\n",
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001462 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -07001463
1464 for (i = 0; i < MAX_BEARERS; i++) {
1465 if (n_ptr->links[i]) {
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001466 link_print(n_ptr->links[i], "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001467 tipc_link_reset(n_ptr->links[i]);
1468 }
1469 }
1470
1471 tipc_node_unlock(n_ptr);
1472 read_unlock_bh(&tipc_net_lock);
1473}
1474
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001475static void link_retransmit_failure(struct tipc_link *l_ptr,
1476 struct sk_buff *buf)
Allan Stephensd356eeb2006-06-25 23:40:01 -07001477{
1478 struct tipc_msg *msg = buf_msg(buf);
1479
1480 warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001481
1482 if (l_ptr->addr) {
1483
1484 /* Handle failure on standard link */
1485
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001486 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001487 tipc_link_reset(l_ptr);
1488
1489 } else {
1490
1491 /* Handle failure on broadcast link */
1492
David S. Miller6c000552008-09-02 23:38:32 -07001493 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001494 char addr_string[16];
1495
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001496 info("Msg seq number: %u, ", msg_seqno(msg));
1497 info("Outstanding acks: %lu\n",
1498 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -07001499
Allan Stephens01d83ed2011-01-18 13:53:16 -05001500 n_ptr = tipc_bclink_retransmit_to();
Allan Stephensd356eeb2006-06-25 23:40:01 -07001501 tipc_node_lock(n_ptr);
1502
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001503 tipc_addr_string_fill(addr_string, n_ptr->addr);
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001504 info("Broadcast link info for %s\n", addr_string);
Allan Stephens93499312011-10-25 15:14:46 -04001505 info("Supportable: %d, ", n_ptr->bclink.supportable);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001506 info("Supported: %d, ", n_ptr->bclink.supported);
1507 info("Acked: %u\n", n_ptr->bclink.acked);
1508 info("Last in: %u, ", n_ptr->bclink.last_in);
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001509 info("Oos state: %u, ", n_ptr->bclink.oos_state);
1510 info("Last sent: %u\n", n_ptr->bclink.last_sent);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001511
1512 tipc_k_signal((Handler)link_reset_all, (unsigned long)n_ptr->addr);
1513
1514 tipc_node_unlock(n_ptr);
1515
1516 l_ptr->stale_count = 0;
1517 }
1518}
1519
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001520void tipc_link_retransmit(struct tipc_link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001521 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001522{
1523 struct tipc_msg *msg;
1524
Allan Stephensd356eeb2006-06-25 23:40:01 -07001525 if (!buf)
1526 return;
1527
1528 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001529
Allan Stephensd356eeb2006-06-25 23:40:01 -07001530 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
Neil Hormanca509102010-03-15 07:58:45 +00001531 if (l_ptr->retransm_queue_size == 0) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001532 l_ptr->retransm_queue_head = msg_seqno(msg);
1533 l_ptr->retransm_queue_size = retransmits;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001534 } else {
Neil Hormanca509102010-03-15 07:58:45 +00001535 err("Unexpected retransmit on link %s (qsize=%d)\n",
1536 l_ptr->name, l_ptr->retransm_queue_size);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001537 }
Neil Hormanca509102010-03-15 07:58:45 +00001538 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001539 } else {
1540 /* Detect repeated retransmit failures on uncongested bearer */
1541
1542 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1543 if (++l_ptr->stale_count > 100) {
1544 link_retransmit_failure(l_ptr, buf);
1545 return;
1546 }
1547 } else {
1548 l_ptr->last_retransmitted = msg_seqno(msg);
1549 l_ptr->stale_count = 1;
1550 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001551 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001552
Neil Hormanca509102010-03-15 07:58:45 +00001553 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001554 msg = buf_msg(buf);
1555 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001556 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001557 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001558 buf = buf->next;
1559 retransmits--;
1560 l_ptr->stats.retransmitted++;
1561 } else {
Per Liden4323add2006-01-18 00:38:21 +01001562 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001563 l_ptr->stats.bearer_congs++;
Allan Stephensf9057302011-10-24 16:03:12 -04001564 l_ptr->retransm_queue_head = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001565 l_ptr->retransm_queue_size = retransmits;
1566 return;
1567 }
1568 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001569
Per Lidenb97bf3f2006-01-02 19:04:38 +01001570 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1571}
1572
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001573/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001574 * link_insert_deferred_queue - insert deferred messages back into receive chain
1575 */
1576
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001577static struct sk_buff *link_insert_deferred_queue(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001578 struct sk_buff *buf)
1579{
1580 u32 seq_no;
1581
1582 if (l_ptr->oldest_deferred_in == NULL)
1583 return buf;
1584
Allan Stephensf9057302011-10-24 16:03:12 -04001585 seq_no = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001586 if (seq_no == mod(l_ptr->next_in_no)) {
1587 l_ptr->newest_deferred_in->next = buf;
1588 buf = l_ptr->oldest_deferred_in;
1589 l_ptr->oldest_deferred_in = NULL;
1590 l_ptr->deferred_inqueue_sz = 0;
1591 }
1592 return buf;
1593}
1594
Allan Stephens85035562008-04-15 19:04:54 -07001595/**
1596 * link_recv_buf_validate - validate basic format of received message
1597 *
1598 * This routine ensures a TIPC message has an acceptable header, and at least
1599 * as much data as the header indicates it should. The routine also ensures
1600 * that the entire message header is stored in the main fragment of the message
1601 * buffer, to simplify future access to message header fields.
1602 *
1603 * Note: Having extra info present in the message header or data areas is OK.
1604 * TIPC will ignore the excess, under the assumption that it is optional info
1605 * introduced by a later release of the protocol.
1606 */
1607
1608static int link_recv_buf_validate(struct sk_buff *buf)
1609{
1610 static u32 min_data_hdr_size[8] = {
Allan Stephens741d9eb2011-05-31 15:03:18 -04001611 SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,
Allan Stephens85035562008-04-15 19:04:54 -07001612 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1613 };
1614
1615 struct tipc_msg *msg;
1616 u32 tipc_hdr[2];
1617 u32 size;
1618 u32 hdr_size;
1619 u32 min_hdr_size;
1620
1621 if (unlikely(buf->len < MIN_H_SIZE))
1622 return 0;
1623
1624 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1625 if (msg == NULL)
1626 return 0;
1627
1628 if (unlikely(msg_version(msg) != TIPC_VERSION))
1629 return 0;
1630
1631 size = msg_size(msg);
1632 hdr_size = msg_hdr_sz(msg);
1633 min_hdr_size = msg_isdata(msg) ?
1634 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1635
1636 if (unlikely((hdr_size < min_hdr_size) ||
1637 (size < hdr_size) ||
1638 (buf->len < size) ||
1639 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1640 return 0;
1641
1642 return pskb_may_pull(buf, hdr_size);
1643}
1644
Allan Stephensb02b69c2010-08-17 11:00:07 +00001645/**
1646 * tipc_recv_msg - process TIPC messages arriving from off-node
1647 * @head: pointer to message buffer chain
1648 * @tb_ptr: pointer to bearer message arrived on
1649 *
1650 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1651 * structure (i.e. cannot be NULL), but bearer can be inactive.
1652 */
1653
Allan Stephens2d627b92011-01-07 13:00:11 -05001654void tipc_recv_msg(struct sk_buff *head, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001655{
Per Liden4323add2006-01-18 00:38:21 +01001656 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001657 while (head) {
David S. Miller6c000552008-09-02 23:38:32 -07001658 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001659 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001660 struct sk_buff *crs;
1661 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001662 struct tipc_msg *msg;
1663 u32 seq_no;
1664 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001665 u32 released = 0;
1666 int type;
1667
Per Lidenb97bf3f2006-01-02 19:04:38 +01001668 head = head->next;
Allan Stephens85035562008-04-15 19:04:54 -07001669
Allan Stephensb02b69c2010-08-17 11:00:07 +00001670 /* Ensure bearer is still enabled */
1671
1672 if (unlikely(!b_ptr->active))
1673 goto cont;
1674
Allan Stephens85035562008-04-15 19:04:54 -07001675 /* Ensure message is well-formed */
1676
1677 if (unlikely(!link_recv_buf_validate(buf)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001678 goto cont;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001679
Allan Stephensfe13dda2008-04-15 19:03:23 -07001680 /* Ensure message data is a single contiguous unit */
1681
Allan Stephensa0168922010-12-31 18:59:35 +00001682 if (unlikely(buf_linearize(buf)))
Allan Stephensfe13dda2008-04-15 19:03:23 -07001683 goto cont;
Allan Stephensfe13dda2008-04-15 19:03:23 -07001684
Allan Stephens85035562008-04-15 19:04:54 -07001685 /* Handle arrival of a non-unicast link message */
1686
1687 msg = buf_msg(buf);
1688
Per Lidenb97bf3f2006-01-02 19:04:38 +01001689 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001690 if (msg_user(msg) == LINK_CONFIG)
1691 tipc_disc_recv_msg(buf, b_ptr);
1692 else
1693 tipc_bclink_recv_pkt(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001694 continue;
1695 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001696
Allan Stephensed33a9c2011-04-05 15:15:04 -04001697 /* Discard unicast link messages destined for another node */
1698
Allan Stephens26008242006-06-25 23:39:31 -07001699 if (unlikely(!msg_short(msg) &&
1700 (msg_destnode(msg) != tipc_own_addr)))
1701 goto cont;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001702
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001703 /* Locate neighboring node that sent message */
Allan Stephens85035562008-04-15 19:04:54 -07001704
Per Liden4323add2006-01-18 00:38:21 +01001705 n_ptr = tipc_node_find(msg_prevnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001706 if (unlikely(!n_ptr))
1707 goto cont;
Per Liden4323add2006-01-18 00:38:21 +01001708 tipc_node_lock(n_ptr);
Allan Stephens85035562008-04-15 19:04:54 -07001709
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001710 /* Locate unicast link endpoint that should handle message */
1711
Per Lidenb97bf3f2006-01-02 19:04:38 +01001712 l_ptr = n_ptr->links[b_ptr->identity];
1713 if (unlikely(!l_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001714 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001715 goto cont;
1716 }
Allan Stephens85035562008-04-15 19:04:54 -07001717
Allan Stephensb4b56102011-05-27 11:00:51 -04001718 /* Verify that communication with node is currently allowed */
1719
1720 if ((n_ptr->block_setup & WAIT_PEER_DOWN) &&
1721 msg_user(msg) == LINK_PROTOCOL &&
1722 (msg_type(msg) == RESET_MSG ||
1723 msg_type(msg) == ACTIVATE_MSG) &&
1724 !msg_redundant_link(msg))
1725 n_ptr->block_setup &= ~WAIT_PEER_DOWN;
1726
1727 if (n_ptr->block_setup) {
1728 tipc_node_unlock(n_ptr);
1729 goto cont;
1730 }
1731
Allan Stephens85035562008-04-15 19:04:54 -07001732 /* Validate message sequence number info */
1733
1734 seq_no = msg_seqno(msg);
1735 ackd = msg_ack(msg);
1736
1737 /* Release acked messages */
1738
Allan Stephens93499312011-10-25 15:14:46 -04001739 if (n_ptr->bclink.supported)
Allan Stephens365595912011-10-24 15:26:24 -04001740 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001741
1742 crs = l_ptr->first_out;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001743 while ((crs != l_ptr->next_out) &&
Allan Stephensf9057302011-10-24 16:03:12 -04001744 less_eq(buf_seqno(crs), ackd)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001745 struct sk_buff *next = crs->next;
1746
1747 buf_discard(crs);
1748 crs = next;
1749 released++;
1750 }
1751 if (released) {
1752 l_ptr->first_out = crs;
1753 l_ptr->out_queue_size -= released;
1754 }
Allan Stephens85035562008-04-15 19:04:54 -07001755
1756 /* Try sending any messages link endpoint has pending */
1757
Per Lidenb97bf3f2006-01-02 19:04:38 +01001758 if (unlikely(l_ptr->next_out))
Per Liden4323add2006-01-18 00:38:21 +01001759 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001760 if (unlikely(!list_empty(&l_ptr->waiting_ports)))
Per Liden4323add2006-01-18 00:38:21 +01001761 tipc_link_wakeup_ports(l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001762 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1763 l_ptr->stats.sent_acks++;
Per Liden4323add2006-01-18 00:38:21 +01001764 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001765 }
1766
Allan Stephens85035562008-04-15 19:04:54 -07001767 /* Now (finally!) process the incoming message */
1768
Per Lidenb97bf3f2006-01-02 19:04:38 +01001769protocol_check:
1770 if (likely(link_working_working(l_ptr))) {
1771 if (likely(seq_no == mod(l_ptr->next_in_no))) {
1772 l_ptr->next_in_no++;
1773 if (unlikely(l_ptr->oldest_deferred_in))
1774 head = link_insert_deferred_queue(l_ptr,
1775 head);
1776 if (likely(msg_is_dest(msg, tipc_own_addr))) {
1777deliver:
1778 if (likely(msg_isdata(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01001779 tipc_node_unlock(n_ptr);
1780 tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001781 continue;
1782 }
1783 switch (msg_user(msg)) {
1784 case MSG_BUNDLER:
1785 l_ptr->stats.recv_bundles++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001786 l_ptr->stats.recv_bundled +=
Per Lidenb97bf3f2006-01-02 19:04:38 +01001787 msg_msgcnt(msg);
Per Liden4323add2006-01-18 00:38:21 +01001788 tipc_node_unlock(n_ptr);
1789 tipc_link_recv_bundle(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001790 continue;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001791 case NAME_DISTRIBUTOR:
Per Liden4323add2006-01-18 00:38:21 +01001792 tipc_node_unlock(n_ptr);
1793 tipc_named_recv(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001794 continue;
1795 case CONN_MANAGER:
Per Liden4323add2006-01-18 00:38:21 +01001796 tipc_node_unlock(n_ptr);
1797 tipc_port_recv_proto_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001798 continue;
1799 case MSG_FRAGMENTER:
1800 l_ptr->stats.recv_fragments++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001801 if (tipc_link_recv_fragment(&l_ptr->defragm_buf,
Per Liden4323add2006-01-18 00:38:21 +01001802 &buf, &msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001803 l_ptr->stats.recv_fragmented++;
1804 goto deliver;
1805 }
1806 break;
1807 case CHANGEOVER_PROTOCOL:
1808 type = msg_type(msg);
Per Liden4323add2006-01-18 00:38:21 +01001809 if (link_recv_changeover_msg(&l_ptr, &buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001810 msg = buf_msg(buf);
1811 seq_no = msg_seqno(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001812 if (type == ORIGINAL_MSG)
1813 goto deliver;
1814 goto protocol_check;
1815 }
1816 break;
Allan Stephens7945c1f2011-03-11 13:09:28 -05001817 default:
1818 buf_discard(buf);
1819 buf = NULL;
1820 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001821 }
1822 }
Per Liden4323add2006-01-18 00:38:21 +01001823 tipc_node_unlock(n_ptr);
1824 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001825 continue;
1826 }
1827 link_handle_out_of_seq_msg(l_ptr, buf);
1828 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001829 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001830 continue;
1831 }
1832
1833 if (msg_user(msg) == LINK_PROTOCOL) {
1834 link_recv_proto_msg(l_ptr, buf);
1835 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001836 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001837 continue;
1838 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001839 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1840
1841 if (link_working_working(l_ptr)) {
1842 /* Re-insert in front of queue */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001843 buf->next = head;
1844 head = buf;
Per Liden4323add2006-01-18 00:38:21 +01001845 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001846 continue;
1847 }
Per Liden4323add2006-01-18 00:38:21 +01001848 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001849cont:
1850 buf_discard(buf);
1851 }
Per Liden4323add2006-01-18 00:38:21 +01001852 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001853}
1854
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001855/*
Allan Stephens8809b252011-10-25 10:44:35 -04001856 * tipc_link_defer_pkt - Add out-of-sequence message to deferred reception queue
1857 *
1858 * Returns increase in queue length (i.e. 0 or 1)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001859 */
1860
Allan Stephens8809b252011-10-25 10:44:35 -04001861u32 tipc_link_defer_pkt(struct sk_buff **head, struct sk_buff **tail,
Per Liden4323add2006-01-18 00:38:21 +01001862 struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001863{
Allan Stephens8809b252011-10-25 10:44:35 -04001864 struct sk_buff *queue_buf;
1865 struct sk_buff **prev;
Allan Stephensf9057302011-10-24 16:03:12 -04001866 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001867
1868 buf->next = NULL;
1869
1870 /* Empty queue ? */
1871 if (*head == NULL) {
1872 *head = *tail = buf;
1873 return 1;
1874 }
1875
1876 /* Last ? */
Allan Stephensf9057302011-10-24 16:03:12 -04001877 if (less(buf_seqno(*tail), seq_no)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001878 (*tail)->next = buf;
1879 *tail = buf;
1880 return 1;
1881 }
1882
Allan Stephens8809b252011-10-25 10:44:35 -04001883 /* Locate insertion point in queue, then insert; discard if duplicate */
1884 prev = head;
1885 queue_buf = *head;
1886 for (;;) {
1887 u32 curr_seqno = buf_seqno(queue_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001888
Allan Stephens8809b252011-10-25 10:44:35 -04001889 if (seq_no == curr_seqno) {
1890 buf_discard(buf);
1891 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001892 }
Allan Stephens8809b252011-10-25 10:44:35 -04001893
1894 if (less(seq_no, curr_seqno))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001895 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001896
Allan Stephens8809b252011-10-25 10:44:35 -04001897 prev = &queue_buf->next;
1898 queue_buf = queue_buf->next;
1899 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001900
Allan Stephens8809b252011-10-25 10:44:35 -04001901 buf->next = queue_buf;
1902 *prev = buf;
1903 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001904}
1905
Allan Stephens8809b252011-10-25 10:44:35 -04001906/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001907 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1908 */
1909
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001910static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001911 struct sk_buff *buf)
1912{
Allan Stephensf9057302011-10-24 16:03:12 -04001913 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001914
1915 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
1916 link_recv_proto_msg(l_ptr, buf);
1917 return;
1918 }
1919
Per Lidenb97bf3f2006-01-02 19:04:38 +01001920 /* Record OOS packet arrival (force mismatch on next timeout) */
1921
1922 l_ptr->checkpoint--;
1923
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001924 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001925 * Discard packet if a duplicate; otherwise add it to deferred queue
1926 * and notify peer of gap as per protocol specification
1927 */
1928
1929 if (less(seq_no, mod(l_ptr->next_in_no))) {
1930 l_ptr->stats.duplicates++;
1931 buf_discard(buf);
1932 return;
1933 }
1934
Per Liden4323add2006-01-18 00:38:21 +01001935 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1936 &l_ptr->newest_deferred_in, buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001937 l_ptr->deferred_inqueue_sz++;
1938 l_ptr->stats.deferred_recv++;
1939 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
Per Liden4323add2006-01-18 00:38:21 +01001940 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001941 } else
1942 l_ptr->stats.duplicates++;
1943}
1944
1945/*
1946 * Send protocol message to the other endpoint.
1947 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001948void tipc_link_send_proto_msg(struct tipc_link *l_ptr, u32 msg_typ,
1949 int probe_msg, u32 gap, u32 tolerance,
1950 u32 priority, u32 ack_mtu)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001951{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001952 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001953 struct tipc_msg *msg = l_ptr->pmsg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001954 u32 msg_size = sizeof(l_ptr->proto_msg);
Allan Stephens75f0aa42011-02-28 15:30:20 -05001955 int r_flag;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001956
Allan Stephens92d2c902011-10-25 11:20:26 -04001957 /* Discard any previous message that was deferred due to congestion */
1958
1959 if (l_ptr->proto_msg_queue) {
1960 buf_discard(l_ptr->proto_msg_queue);
1961 l_ptr->proto_msg_queue = NULL;
1962 }
1963
Per Lidenb97bf3f2006-01-02 19:04:38 +01001964 if (link_blocked(l_ptr))
1965 return;
Allan Stephensb4b56102011-05-27 11:00:51 -04001966
1967 /* Abort non-RESET send if communication with node is prohibited */
1968
1969 if ((l_ptr->owner->block_setup) && (msg_typ != RESET_MSG))
1970 return;
1971
Allan Stephens92d2c902011-10-25 11:20:26 -04001972 /* Create protocol message with "out-of-sequence" sequence number */
1973
Per Lidenb97bf3f2006-01-02 19:04:38 +01001974 msg_set_type(msg, msg_typ);
1975 msg_set_net_plane(msg, l_ptr->b_ptr->net_plane);
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001976 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001977 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
Per Lidenb97bf3f2006-01-02 19:04:38 +01001978
1979 if (msg_typ == STATE_MSG) {
1980 u32 next_sent = mod(l_ptr->next_out_no);
1981
Per Liden4323add2006-01-18 00:38:21 +01001982 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001983 return;
1984 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -04001985 next_sent = buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001986 msg_set_next_sent(msg, next_sent);
1987 if (l_ptr->oldest_deferred_in) {
Allan Stephensf9057302011-10-24 16:03:12 -04001988 u32 rec = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001989 gap = mod(rec - mod(l_ptr->next_in_no));
1990 }
1991 msg_set_seq_gap(msg, gap);
1992 if (gap)
1993 l_ptr->stats.sent_nacks++;
1994 msg_set_link_tolerance(msg, tolerance);
1995 msg_set_linkprio(msg, priority);
1996 msg_set_max_pkt(msg, ack_mtu);
1997 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1998 msg_set_probe(msg, probe_msg != 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001999 if (probe_msg) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002000 u32 mtu = l_ptr->max_pkt;
2001
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002002 if ((mtu < l_ptr->max_pkt_target) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002003 link_working_working(l_ptr) &&
2004 l_ptr->fsm_msg_cnt) {
2005 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002006 if (l_ptr->max_pkt_probes == 10) {
2007 l_ptr->max_pkt_target = (msg_size - 4);
2008 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002009 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002010 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002011 l_ptr->max_pkt_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002012 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002013
2014 l_ptr->stats.sent_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002015 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002016 l_ptr->stats.sent_states++;
2017 } else { /* RESET_MSG or ACTIVATE_MSG */
2018 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
2019 msg_set_seq_gap(msg, 0);
2020 msg_set_next_sent(msg, 1);
Allan Stephensf23d9bf2011-01-18 15:15:34 -05002021 msg_set_probe(msg, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002022 msg_set_link_tolerance(msg, l_ptr->tolerance);
2023 msg_set_linkprio(msg, l_ptr->priority);
2024 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
2025 }
2026
Allan Stephens75f0aa42011-02-28 15:30:20 -05002027 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
2028 msg_set_redundant_link(msg, r_flag);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002029 msg_set_linkprio(msg, l_ptr->priority);
Allan Stephens92d2c902011-10-25 11:20:26 -04002030 msg_set_size(msg, msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002031
2032 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
2033
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002034 buf = tipc_buf_acquire(msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002035 if (!buf)
2036 return;
2037
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002038 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002039
Allan Stephens92d2c902011-10-25 11:20:26 -04002040 /* Defer message if bearer is already congested */
2041
2042 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
2043 l_ptr->proto_msg_queue = buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002044 return;
2045 }
2046
Allan Stephens92d2c902011-10-25 11:20:26 -04002047 /* Defer message if attempting to send results in bearer congestion */
2048
2049 if (!tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
2050 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
2051 l_ptr->proto_msg_queue = buf;
2052 l_ptr->stats.bearer_congs++;
2053 return;
2054 }
2055
2056 /* Discard message if it was sent successfully */
2057
2058 l_ptr->unacked_window = 0;
2059 buf_discard(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002060}
2061
2062/*
2063 * Receive protocol message :
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002064 * Note that network plane id propagates through the network, and may
2065 * change at any time. The node with lowest address rules
Per Lidenb97bf3f2006-01-02 19:04:38 +01002066 */
2067
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002068static void link_recv_proto_msg(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002069{
2070 u32 rec_gap = 0;
2071 u32 max_pkt_info;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002072 u32 max_pkt_ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002073 u32 msg_tol;
2074 struct tipc_msg *msg = buf_msg(buf);
2075
Per Lidenb97bf3f2006-01-02 19:04:38 +01002076 if (link_blocked(l_ptr))
2077 goto exit;
2078
2079 /* record unnumbered packet arrival (force mismatch on next timeout) */
2080
2081 l_ptr->checkpoint--;
2082
2083 if (l_ptr->b_ptr->net_plane != msg_net_plane(msg))
2084 if (tipc_own_addr > msg_prevnode(msg))
2085 l_ptr->b_ptr->net_plane = msg_net_plane(msg);
2086
2087 l_ptr->owner->permit_changeover = msg_redundant_link(msg);
2088
2089 switch (msg_type(msg)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002090
Per Lidenb97bf3f2006-01-02 19:04:38 +01002091 case RESET_MSG:
Allan Stephensa686e682008-06-04 17:29:39 -07002092 if (!link_working_unknown(l_ptr) &&
2093 (l_ptr->peer_session != INVALID_SESSION)) {
Allan Stephens641c2182011-04-07 09:54:43 -04002094 if (less_eq(msg_session(msg), l_ptr->peer_session))
2095 break; /* duplicate or old reset: ignore */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002096 }
Allan Stephensb4b56102011-05-27 11:00:51 -04002097
2098 if (!msg_redundant_link(msg) && (link_working_working(l_ptr) ||
2099 link_working_unknown(l_ptr))) {
2100 /*
2101 * peer has lost contact -- don't allow peer's links
2102 * to reactivate before we recognize loss & clean up
2103 */
2104 l_ptr->owner->block_setup = WAIT_NODE_DOWN;
2105 }
2106
Allan Stephens47361c82011-10-26 10:55:16 -04002107 link_state_event(l_ptr, RESET_MSG);
2108
Per Lidenb97bf3f2006-01-02 19:04:38 +01002109 /* fall thru' */
2110 case ACTIVATE_MSG:
2111 /* Update link settings according other endpoint's values */
2112
2113 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
2114
Allan Stephens2db99832010-12-31 18:59:33 +00002115 msg_tol = msg_link_tolerance(msg);
2116 if (msg_tol > l_ptr->tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002117 link_set_supervision_props(l_ptr, msg_tol);
2118
2119 if (msg_linkprio(msg) > l_ptr->priority)
2120 l_ptr->priority = msg_linkprio(msg);
2121
2122 max_pkt_info = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002123 if (max_pkt_info) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002124 if (max_pkt_info < l_ptr->max_pkt_target)
2125 l_ptr->max_pkt_target = max_pkt_info;
2126 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
2127 l_ptr->max_pkt = l_ptr->max_pkt_target;
2128 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002129 l_ptr->max_pkt = l_ptr->max_pkt_target;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002130 }
Allan Stephens93499312011-10-25 15:14:46 -04002131 l_ptr->owner->bclink.supportable = (max_pkt_info != 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002132
Allan Stephens4d753132011-10-25 12:19:05 -04002133 /* Synchronize broadcast link info, if not done previously */
2134
Allan Stephens7a54d4a2011-10-27 14:17:53 -04002135 if (!tipc_node_is_up(l_ptr->owner)) {
2136 l_ptr->owner->bclink.last_sent =
2137 l_ptr->owner->bclink.last_in =
2138 msg_last_bcast(msg);
2139 l_ptr->owner->bclink.oos_state = 0;
2140 }
Allan Stephens4d753132011-10-25 12:19:05 -04002141
Per Lidenb97bf3f2006-01-02 19:04:38 +01002142 l_ptr->peer_session = msg_session(msg);
2143 l_ptr->peer_bearer_id = msg_bearer_id(msg);
Allan Stephens47361c82011-10-26 10:55:16 -04002144
2145 if (msg_type(msg) == ACTIVATE_MSG)
2146 link_state_event(l_ptr, ACTIVATE_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002147 break;
2148 case STATE_MSG:
2149
Allan Stephens2db99832010-12-31 18:59:33 +00002150 msg_tol = msg_link_tolerance(msg);
2151 if (msg_tol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002152 link_set_supervision_props(l_ptr, msg_tol);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002153
2154 if (msg_linkprio(msg) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002155 (msg_linkprio(msg) != l_ptr->priority)) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002156 warn("Resetting link <%s>, priority change %u->%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002157 l_ptr->name, l_ptr->priority, msg_linkprio(msg));
2158 l_ptr->priority = msg_linkprio(msg);
Per Liden4323add2006-01-18 00:38:21 +01002159 tipc_link_reset(l_ptr); /* Enforce change to take effect */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002160 break;
2161 }
2162 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
2163 l_ptr->stats.recv_states++;
2164 if (link_reset_unknown(l_ptr))
2165 break;
2166
2167 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002168 rec_gap = mod(msg_next_sent(msg) -
Per Lidenb97bf3f2006-01-02 19:04:38 +01002169 mod(l_ptr->next_in_no));
2170 }
2171
2172 max_pkt_ack = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002173 if (max_pkt_ack > l_ptr->max_pkt) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002174 l_ptr->max_pkt = max_pkt_ack;
2175 l_ptr->max_pkt_probes = 0;
2176 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002177
2178 max_pkt_ack = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002179 if (msg_probe(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002180 l_ptr->stats.recv_probes++;
Allan Stephensa0168922010-12-31 18:59:35 +00002181 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002182 max_pkt_ack = msg_size(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002183 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002184
2185 /* Protocol message before retransmits, reduce loss risk */
2186
Allan Stephens7a54d4a2011-10-27 14:17:53 -04002187 if (l_ptr->owner->bclink.supported)
2188 tipc_bclink_update_link_state(l_ptr->owner,
2189 msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002190
2191 if (rec_gap || (msg_probe(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01002192 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
2193 0, rec_gap, 0, 0, max_pkt_ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002194 }
2195 if (msg_seq_gap(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002196 l_ptr->stats.recv_nacks++;
Per Liden4323add2006-01-18 00:38:21 +01002197 tipc_link_retransmit(l_ptr, l_ptr->first_out,
2198 msg_seq_gap(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002199 }
2200 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002201 }
2202exit:
2203 buf_discard(buf);
2204}
2205
2206
2207/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002208 * tipc_link_tunnel(): Send one message via a link belonging to
Per Lidenb97bf3f2006-01-02 19:04:38 +01002209 * another bearer. Owner node is locked.
2210 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002211static void tipc_link_tunnel(struct tipc_link *l_ptr,
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002212 struct tipc_msg *tunnel_hdr,
2213 struct tipc_msg *msg,
2214 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002215{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002216 struct tipc_link *tunnel;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002217 struct sk_buff *buf;
2218 u32 length = msg_size(msg);
2219
2220 tunnel = l_ptr->owner->active_links[selector & 1];
Allan Stephens5392d642006-06-25 23:52:50 -07002221 if (!tipc_link_is_up(tunnel)) {
2222 warn("Link changeover error, "
2223 "tunnel link no longer available\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002224 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002225 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002226 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002227 buf = tipc_buf_acquire(length + INT_H_SIZE);
Allan Stephens5392d642006-06-25 23:52:50 -07002228 if (!buf) {
2229 warn("Link changeover error, "
2230 "unable to send tunnel msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002231 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002232 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002233 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
2234 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
Per Liden4323add2006-01-18 00:38:21 +01002235 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002236}
2237
2238
2239
2240/*
2241 * changeover(): Send whole message queue via the remaining link
2242 * Owner node is locked.
2243 */
2244
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002245void tipc_link_changeover(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002246{
2247 u32 msgcount = l_ptr->out_queue_size;
2248 struct sk_buff *crs = l_ptr->first_out;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002249 struct tipc_link *tunnel = l_ptr->owner->active_links[0];
Per Lidenb97bf3f2006-01-02 19:04:38 +01002250 struct tipc_msg tunnel_hdr;
Allan Stephens5392d642006-06-25 23:52:50 -07002251 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002252
2253 if (!tunnel)
2254 return;
2255
Allan Stephens5392d642006-06-25 23:52:50 -07002256 if (!l_ptr->owner->permit_changeover) {
2257 warn("Link changeover error, "
2258 "peer did not permit changeover\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002259 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002260 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002261
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002262 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002263 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002264 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2265 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07002266
Per Lidenb97bf3f2006-01-02 19:04:38 +01002267 if (!l_ptr->first_out) {
2268 struct sk_buff *buf;
2269
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002270 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002271 if (buf) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002272 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002273 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Per Liden4323add2006-01-18 00:38:21 +01002274 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002275 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002276 warn("Link changeover error, "
2277 "unable to send changeover msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002278 }
2279 return;
2280 }
Allan Stephensf1310722006-06-25 23:51:37 -07002281
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002282 split_bundles = (l_ptr->owner->active_links[0] !=
Allan Stephens5392d642006-06-25 23:52:50 -07002283 l_ptr->owner->active_links[1]);
2284
Per Lidenb97bf3f2006-01-02 19:04:38 +01002285 while (crs) {
2286 struct tipc_msg *msg = buf_msg(crs);
2287
2288 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002289 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00002290 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002291
Florian Westphald788d802007-08-02 19:28:06 -07002292 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002293 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00002294 msg_set_seqno(m, msg_seqno(msg));
Per Liden4323add2006-01-18 00:38:21 +01002295 tipc_link_tunnel(l_ptr, &tunnel_hdr, m,
2296 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002297 pos += align(msg_size(m));
2298 m = (struct tipc_msg *)pos;
2299 }
2300 } else {
Per Liden4323add2006-01-18 00:38:21 +01002301 tipc_link_tunnel(l_ptr, &tunnel_hdr, msg,
2302 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002303 }
2304 crs = crs->next;
2305 }
2306}
2307
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002308void tipc_link_send_duplicate(struct tipc_link *l_ptr, struct tipc_link *tunnel)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002309{
2310 struct sk_buff *iter;
2311 struct tipc_msg tunnel_hdr;
2312
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002313 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002314 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002315 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
2316 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2317 iter = l_ptr->first_out;
2318 while (iter) {
2319 struct sk_buff *outbuf;
2320 struct tipc_msg *msg = buf_msg(iter);
2321 u32 length = msg_size(msg);
2322
2323 if (msg_user(msg) == MSG_BUNDLER)
2324 msg_set_type(msg, CLOSED_MSG);
2325 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002326 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002327 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002328 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002329 if (outbuf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002330 warn("Link changeover error, "
2331 "unable to send duplicate msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002332 return;
2333 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002334 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
2335 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
2336 length);
Per Liden4323add2006-01-18 00:38:21 +01002337 tipc_link_send_buf(tunnel, outbuf);
2338 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002339 return;
2340 iter = iter->next;
2341 }
2342}
2343
2344
2345
2346/**
2347 * buf_extract - extracts embedded TIPC message from another message
2348 * @skb: encapsulating message buffer
2349 * @from_pos: offset to extract from
2350 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002351 * Returns a new message buffer containing an embedded message. The
Per Lidenb97bf3f2006-01-02 19:04:38 +01002352 * encapsulating message itself is left unchanged.
2353 */
2354
2355static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
2356{
2357 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
2358 u32 size = msg_size(msg);
2359 struct sk_buff *eb;
2360
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002361 eb = tipc_buf_acquire(size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002362 if (eb)
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002363 skb_copy_to_linear_data(eb, msg, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002364 return eb;
2365}
2366
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002367/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01002368 * link_recv_changeover_msg(): Receive tunneled packet sent
2369 * via other link. Node is locked. Return extracted buffer.
2370 */
2371
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002372static int link_recv_changeover_msg(struct tipc_link **l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002373 struct sk_buff **buf)
2374{
2375 struct sk_buff *tunnel_buf = *buf;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002376 struct tipc_link *dest_link;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002377 struct tipc_msg *msg;
2378 struct tipc_msg *tunnel_msg = buf_msg(tunnel_buf);
2379 u32 msg_typ = msg_type(tunnel_msg);
2380 u32 msg_count = msg_msgcnt(tunnel_msg);
2381
2382 dest_link = (*l_ptr)->owner->links[msg_bearer_id(tunnel_msg)];
Allan Stephensb29f1422010-12-31 18:59:25 +00002383 if (!dest_link)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002384 goto exit;
Allan Stephensf1310722006-06-25 23:51:37 -07002385 if (dest_link == *l_ptr) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002386 err("Unexpected changeover message on link <%s>\n",
Allan Stephensf1310722006-06-25 23:51:37 -07002387 (*l_ptr)->name);
2388 goto exit;
2389 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002390 *l_ptr = dest_link;
2391 msg = msg_get_wrapped(tunnel_msg);
2392
2393 if (msg_typ == DUPLICATE_MSG) {
Allan Stephensb29f1422010-12-31 18:59:25 +00002394 if (less(msg_seqno(msg), mod(dest_link->next_in_no)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002395 goto exit;
Allan Stephens0e659672010-12-31 18:59:32 +00002396 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002397 if (*buf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002398 warn("Link changeover error, duplicate msg dropped\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002399 goto exit;
2400 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002401 buf_discard(tunnel_buf);
2402 return 1;
2403 }
2404
2405 /* First original message ?: */
2406
Per Liden4323add2006-01-18 00:38:21 +01002407 if (tipc_link_is_up(dest_link)) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002408 info("Resetting link <%s>, changeover initiated by peer\n",
2409 dest_link->name);
Per Liden4323add2006-01-18 00:38:21 +01002410 tipc_link_reset(dest_link);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002411 dest_link->exp_msg_count = msg_count;
2412 if (!msg_count)
2413 goto exit;
2414 } else if (dest_link->exp_msg_count == START_CHANGEOVER) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002415 dest_link->exp_msg_count = msg_count;
2416 if (!msg_count)
2417 goto exit;
2418 }
2419
2420 /* Receive original message */
2421
2422 if (dest_link->exp_msg_count == 0) {
Allan Stephens5392d642006-06-25 23:52:50 -07002423 warn("Link switchover error, "
2424 "got too many tunnelled messages\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002425 goto exit;
2426 }
2427 dest_link->exp_msg_count--;
2428 if (less(msg_seqno(msg), dest_link->reset_checkpoint)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002429 goto exit;
2430 } else {
2431 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
2432 if (*buf != NULL) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002433 buf_discard(tunnel_buf);
2434 return 1;
2435 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002436 warn("Link changeover error, original msg dropped\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002437 }
2438 }
2439exit:
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002440 *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002441 buf_discard(tunnel_buf);
2442 return 0;
2443}
2444
2445/*
2446 * Bundler functionality:
2447 */
Per Liden4323add2006-01-18 00:38:21 +01002448void tipc_link_recv_bundle(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002449{
2450 u32 msgcount = msg_msgcnt(buf_msg(buf));
2451 u32 pos = INT_H_SIZE;
2452 struct sk_buff *obuf;
2453
Per Lidenb97bf3f2006-01-02 19:04:38 +01002454 while (msgcount--) {
2455 obuf = buf_extract(buf, pos);
2456 if (obuf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002457 warn("Link unable to unbundle message(s)\n");
2458 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002459 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002460 pos += align(msg_size(buf_msg(obuf)));
Per Liden4323add2006-01-18 00:38:21 +01002461 tipc_net_route_msg(obuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002462 }
2463 buf_discard(buf);
2464}
2465
2466/*
2467 * Fragmentation/defragmentation:
2468 */
2469
2470
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002471/*
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002472 * link_send_long_buf: Entry for buffers needing fragmentation.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002473 * The buffer is complete, inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002474 * Returns user data length.
2475 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002476static int link_send_long_buf(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002477{
Allan Stephens77561552011-04-17 13:06:23 -04002478 struct sk_buff *buf_chain = NULL;
2479 struct sk_buff *buf_chain_tail = (struct sk_buff *)&buf_chain;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002480 struct tipc_msg *inmsg = buf_msg(buf);
2481 struct tipc_msg fragm_hdr;
2482 u32 insize = msg_size(inmsg);
2483 u32 dsz = msg_data_sz(inmsg);
2484 unchar *crs = buf->data;
2485 u32 rest = insize;
Allan Stephens15e979d2010-05-11 14:30:10 +00002486 u32 pack_sz = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002487 u32 fragm_sz = pack_sz - INT_H_SIZE;
Allan Stephens77561552011-04-17 13:06:23 -04002488 u32 fragm_no = 0;
Allan Stephens9c396a72008-06-04 17:36:58 -07002489 u32 destaddr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002490
2491 if (msg_short(inmsg))
2492 destaddr = l_ptr->addr;
Allan Stephens9c396a72008-06-04 17:36:58 -07002493 else
2494 destaddr = msg_destnode(inmsg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002495
Per Lidenb97bf3f2006-01-02 19:04:38 +01002496 /* Prepare reusable fragment header: */
2497
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002498 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07002499 INT_H_SIZE, destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002500
2501 /* Chop up message: */
2502
2503 while (rest > 0) {
2504 struct sk_buff *fragm;
2505
2506 if (rest <= fragm_sz) {
2507 fragm_sz = rest;
2508 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
2509 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002510 fragm = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002511 if (fragm == NULL) {
Allan Stephens77561552011-04-17 13:06:23 -04002512 buf_discard(buf);
2513 while (buf_chain) {
2514 buf = buf_chain;
2515 buf_chain = buf_chain->next;
2516 buf_discard(buf);
2517 }
2518 return -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002519 }
2520 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
Allan Stephens77561552011-04-17 13:06:23 -04002521 fragm_no++;
2522 msg_set_fragm_no(&fragm_hdr, fragm_no);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002523 skb_copy_to_linear_data(fragm, &fragm_hdr, INT_H_SIZE);
2524 skb_copy_to_linear_data_offset(fragm, INT_H_SIZE, crs,
2525 fragm_sz);
Allan Stephens77561552011-04-17 13:06:23 -04002526 buf_chain_tail->next = fragm;
2527 buf_chain_tail = fragm;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002528
Per Lidenb97bf3f2006-01-02 19:04:38 +01002529 rest -= fragm_sz;
2530 crs += fragm_sz;
2531 msg_set_type(&fragm_hdr, FRAGMENT);
2532 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002533 buf_discard(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002534
2535 /* Append chain of fragments to send queue & send them */
2536
2537 l_ptr->long_msg_seq_no++;
2538 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
2539 l_ptr->stats.sent_fragments += fragm_no;
2540 l_ptr->stats.sent_fragmented++;
2541 tipc_link_push_queue(l_ptr);
2542
Per Lidenb97bf3f2006-01-02 19:04:38 +01002543 return dsz;
2544}
2545
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002546/*
2547 * A pending message being re-assembled must store certain values
2548 * to handle subsequent fragments correctly. The following functions
Per Lidenb97bf3f2006-01-02 19:04:38 +01002549 * help storing these values in unused, available fields in the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002550 * pending message. This makes dynamic memory allocation unnecessary.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002551 */
2552
Sam Ravnborg05790c62006-03-20 22:37:04 -08002553static void set_long_msg_seqno(struct sk_buff *buf, u32 seqno)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002554{
2555 msg_set_seqno(buf_msg(buf), seqno);
2556}
2557
Sam Ravnborg05790c62006-03-20 22:37:04 -08002558static u32 get_fragm_size(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002559{
2560 return msg_ack(buf_msg(buf));
2561}
2562
Sam Ravnborg05790c62006-03-20 22:37:04 -08002563static void set_fragm_size(struct sk_buff *buf, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002564{
2565 msg_set_ack(buf_msg(buf), sz);
2566}
2567
Sam Ravnborg05790c62006-03-20 22:37:04 -08002568static u32 get_expected_frags(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002569{
2570 return msg_bcast_ack(buf_msg(buf));
2571}
2572
Sam Ravnborg05790c62006-03-20 22:37:04 -08002573static void set_expected_frags(struct sk_buff *buf, u32 exp)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002574{
2575 msg_set_bcast_ack(buf_msg(buf), exp);
2576}
2577
Sam Ravnborg05790c62006-03-20 22:37:04 -08002578static u32 get_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002579{
2580 return msg_reroute_cnt(buf_msg(buf));
2581}
2582
Sam Ravnborg05790c62006-03-20 22:37:04 -08002583static void incr_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002584{
2585 msg_incr_reroute_cnt(buf_msg(buf));
2586}
2587
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002588/*
2589 * tipc_link_recv_fragment(): Called with node lock on. Returns
Per Lidenb97bf3f2006-01-02 19:04:38 +01002590 * the reassembled buffer if message is complete.
2591 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002592int tipc_link_recv_fragment(struct sk_buff **pending, struct sk_buff **fb,
Per Liden4323add2006-01-18 00:38:21 +01002593 struct tipc_msg **m)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002594{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002595 struct sk_buff *prev = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002596 struct sk_buff *fbuf = *fb;
2597 struct tipc_msg *fragm = buf_msg(fbuf);
2598 struct sk_buff *pbuf = *pending;
2599 u32 long_msg_seq_no = msg_long_msgno(fragm);
2600
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002601 *fb = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002602
2603 /* Is there an incomplete message waiting for this fragment? */
2604
Allan Stephensf9057302011-10-24 16:03:12 -04002605 while (pbuf && ((buf_seqno(pbuf) != long_msg_seq_no) ||
Joe Perchesf64f9e72009-11-29 16:55:45 -08002606 (msg_orignode(fragm) != msg_orignode(buf_msg(pbuf))))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002607 prev = pbuf;
2608 pbuf = pbuf->next;
2609 }
2610
2611 if (!pbuf && (msg_type(fragm) == FIRST_FRAGMENT)) {
2612 struct tipc_msg *imsg = (struct tipc_msg *)msg_data(fragm);
2613 u32 msg_sz = msg_size(imsg);
2614 u32 fragm_sz = msg_data_sz(fragm);
2615 u32 exp_fragm_cnt = msg_sz/fragm_sz + !!(msg_sz % fragm_sz);
Allan Stephens741d9eb2011-05-31 15:03:18 -04002616 u32 max = TIPC_MAX_USER_MSG_SIZE + NAMED_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002617 if (msg_type(imsg) == TIPC_MCAST_MSG)
2618 max = TIPC_MAX_USER_MSG_SIZE + MCAST_H_SIZE;
2619 if (msg_size(imsg) > max) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002620 buf_discard(fbuf);
2621 return 0;
2622 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002623 pbuf = tipc_buf_acquire(msg_size(imsg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002624 if (pbuf != NULL) {
2625 pbuf->next = *pending;
2626 *pending = pbuf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002627 skb_copy_to_linear_data(pbuf, imsg,
2628 msg_data_sz(fragm));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002629 /* Prepare buffer for subsequent fragments. */
2630
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002631 set_long_msg_seqno(pbuf, long_msg_seq_no);
Allan Stephens0e659672010-12-31 18:59:32 +00002632 set_fragm_size(pbuf, fragm_sz);
2633 set_expected_frags(pbuf, exp_fragm_cnt - 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002634 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002635 warn("Link unable to reassemble fragmented message\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002636 }
2637 buf_discard(fbuf);
2638 return 0;
2639 } else if (pbuf && (msg_type(fragm) != FIRST_FRAGMENT)) {
2640 u32 dsz = msg_data_sz(fragm);
2641 u32 fsz = get_fragm_size(pbuf);
2642 u32 crs = ((msg_fragm_no(fragm) - 1) * fsz);
2643 u32 exp_frags = get_expected_frags(pbuf) - 1;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002644 skb_copy_to_linear_data_offset(pbuf, crs,
2645 msg_data(fragm), dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002646 buf_discard(fbuf);
2647
2648 /* Is message complete? */
2649
2650 if (exp_frags == 0) {
2651 if (prev)
2652 prev->next = pbuf->next;
2653 else
2654 *pending = pbuf->next;
2655 msg_reset_reroute_cnt(buf_msg(pbuf));
2656 *fb = pbuf;
2657 *m = buf_msg(pbuf);
2658 return 1;
2659 }
Allan Stephens0e659672010-12-31 18:59:32 +00002660 set_expected_frags(pbuf, exp_frags);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002661 return 0;
2662 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002663 buf_discard(fbuf);
2664 return 0;
2665}
2666
2667/**
2668 * link_check_defragm_bufs - flush stale incoming message fragments
2669 * @l_ptr: pointer to link
2670 */
2671
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002672static void link_check_defragm_bufs(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002673{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002674 struct sk_buff *prev = NULL;
2675 struct sk_buff *next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002676 struct sk_buff *buf = l_ptr->defragm_buf;
2677
2678 if (!buf)
2679 return;
2680 if (!link_working_working(l_ptr))
2681 return;
2682 while (buf) {
2683 u32 cnt = get_timer_cnt(buf);
2684
2685 next = buf->next;
2686 if (cnt < 4) {
2687 incr_timer_cnt(buf);
2688 prev = buf;
2689 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002690 if (prev)
2691 prev->next = buf->next;
2692 else
2693 l_ptr->defragm_buf = buf->next;
2694 buf_discard(buf);
2695 }
2696 buf = next;
2697 }
2698}
2699
2700
2701
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002702static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002703{
Allan Stephens5413b4c2011-01-18 13:24:55 -05002704 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
2705 return;
2706
Per Lidenb97bf3f2006-01-02 19:04:38 +01002707 l_ptr->tolerance = tolerance;
2708 l_ptr->continuity_interval =
2709 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
2710 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
2711}
2712
2713
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002714void tipc_link_set_queue_limits(struct tipc_link *l_ptr, u32 window)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002715{
2716 /* Data messages from this node, inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002717 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
2718 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
2719 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
2720 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002721 /* Transiting data messages,inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002722 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
2723 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
2724 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
2725 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002726 l_ptr->queue_limit[CONN_MANAGER] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002727 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
2728 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
2729 /* FRAGMENT and LAST_FRAGMENT packets */
2730 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
2731}
2732
2733/**
2734 * link_find_link - locate link by name
2735 * @name - ptr to link name string
2736 * @node - ptr to area to be filled with ptr to associated node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002737 *
Per Liden4323add2006-01-18 00:38:21 +01002738 * Caller must hold 'tipc_net_lock' to ensure node and bearer are not deleted;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002739 * this also prevents link deletion.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002740 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002741 * Returns pointer to link (or 0 if invalid link name).
2742 */
2743
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002744static struct tipc_link *link_find_link(const char *name,
2745 struct tipc_node **node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002746{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002747 struct tipc_link_name link_name_parts;
Allan Stephens2d627b92011-01-07 13:00:11 -05002748 struct tipc_bearer *b_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002749 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002750
2751 if (!link_name_validate(name, &link_name_parts))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002752 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002753
Per Liden4323add2006-01-18 00:38:21 +01002754 b_ptr = tipc_bearer_find_interface(link_name_parts.if_local);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002755 if (!b_ptr)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002756 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002757
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002758 *node = tipc_node_find(link_name_parts.addr_peer);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002759 if (!*node)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002760 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002761
2762 l_ptr = (*node)->links[b_ptr->identity];
2763 if (!l_ptr || strcmp(l_ptr->name, name))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002764 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002765
2766 return l_ptr;
2767}
2768
Allan Stephens5c216e12011-10-18 11:34:29 -04002769/**
2770 * link_value_is_valid -- validate proposed link tolerance/priority/window
2771 *
2772 * @cmd - value type (TIPC_CMD_SET_LINK_*)
2773 * @new_value - the new value
2774 *
2775 * Returns 1 if value is within range, 0 if not.
2776 */
2777
2778static int link_value_is_valid(u16 cmd, u32 new_value)
2779{
2780 switch (cmd) {
2781 case TIPC_CMD_SET_LINK_TOL:
2782 return (new_value >= TIPC_MIN_LINK_TOL) &&
2783 (new_value <= TIPC_MAX_LINK_TOL);
2784 case TIPC_CMD_SET_LINK_PRI:
2785 return (new_value <= TIPC_MAX_LINK_PRI);
2786 case TIPC_CMD_SET_LINK_WINDOW:
2787 return (new_value >= TIPC_MIN_LINK_WIN) &&
2788 (new_value <= TIPC_MAX_LINK_WIN);
2789 }
2790 return 0;
2791}
2792
2793
2794/**
2795 * link_cmd_set_value - change priority/tolerance/window for link/bearer/media
2796 * @name - ptr to link, bearer, or media name
2797 * @new_value - new value of link, bearer, or media setting
2798 * @cmd - which link, bearer, or media attribute to set (TIPC_CMD_SET_LINK_*)
2799 *
2800 * Caller must hold 'tipc_net_lock' to ensure link/bearer/media is not deleted.
2801 *
2802 * Returns 0 if value updated and negative value on error.
2803 */
2804
2805static int link_cmd_set_value(const char *name, u32 new_value, u16 cmd)
2806{
2807 struct tipc_node *node;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002808 struct tipc_link *l_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002809 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -05002810 struct tipc_media *m_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002811
2812 l_ptr = link_find_link(name, &node);
2813 if (l_ptr) {
2814 /*
2815 * acquire node lock for tipc_link_send_proto_msg().
2816 * see "TIPC locking policy" in net.c.
2817 */
2818 tipc_node_lock(node);
2819 switch (cmd) {
2820 case TIPC_CMD_SET_LINK_TOL:
2821 link_set_supervision_props(l_ptr, new_value);
2822 tipc_link_send_proto_msg(l_ptr,
2823 STATE_MSG, 0, 0, new_value, 0, 0);
2824 break;
2825 case TIPC_CMD_SET_LINK_PRI:
2826 l_ptr->priority = new_value;
2827 tipc_link_send_proto_msg(l_ptr,
2828 STATE_MSG, 0, 0, 0, new_value, 0);
2829 break;
2830 case TIPC_CMD_SET_LINK_WINDOW:
2831 tipc_link_set_queue_limits(l_ptr, new_value);
2832 break;
2833 }
2834 tipc_node_unlock(node);
2835 return 0;
2836 }
2837
2838 b_ptr = tipc_bearer_find(name);
2839 if (b_ptr) {
2840 switch (cmd) {
2841 case TIPC_CMD_SET_LINK_TOL:
2842 b_ptr->tolerance = new_value;
2843 return 0;
2844 case TIPC_CMD_SET_LINK_PRI:
2845 b_ptr->priority = new_value;
2846 return 0;
2847 case TIPC_CMD_SET_LINK_WINDOW:
2848 b_ptr->window = new_value;
2849 return 0;
2850 }
2851 return -EINVAL;
2852 }
2853
2854 m_ptr = tipc_media_find(name);
2855 if (!m_ptr)
2856 return -ENODEV;
2857 switch (cmd) {
2858 case TIPC_CMD_SET_LINK_TOL:
2859 m_ptr->tolerance = new_value;
2860 return 0;
2861 case TIPC_CMD_SET_LINK_PRI:
2862 m_ptr->priority = new_value;
2863 return 0;
2864 case TIPC_CMD_SET_LINK_WINDOW:
2865 m_ptr->window = new_value;
2866 return 0;
2867 }
2868 return -EINVAL;
2869}
2870
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002871struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
Per Liden4323add2006-01-18 00:38:21 +01002872 u16 cmd)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002873{
2874 struct tipc_link_config *args;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002875 u32 new_value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002876 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002877
2878 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
Per Liden4323add2006-01-18 00:38:21 +01002879 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002880
2881 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2882 new_value = ntohl(args->value);
2883
Allan Stephens5c216e12011-10-18 11:34:29 -04002884 if (!link_value_is_valid(cmd, new_value))
2885 return tipc_cfg_reply_error_string(
2886 "cannot change, value invalid");
2887
Per Liden4323add2006-01-18 00:38:21 +01002888 if (!strcmp(args->name, tipc_bclink_name)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002889 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
Per Liden4323add2006-01-18 00:38:21 +01002890 (tipc_bclink_set_queue_limits(new_value) == 0))
2891 return tipc_cfg_reply_none();
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002892 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
Per Liden4323add2006-01-18 00:38:21 +01002893 " (cannot change setting on broadcast link)");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002894 }
2895
Per Liden4323add2006-01-18 00:38:21 +01002896 read_lock_bh(&tipc_net_lock);
Allan Stephens5c216e12011-10-18 11:34:29 -04002897 res = link_cmd_set_value(args->name, new_value, cmd);
Per Liden4323add2006-01-18 00:38:21 +01002898 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002899 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002900 return tipc_cfg_reply_error_string("cannot change link setting");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002901
Per Liden4323add2006-01-18 00:38:21 +01002902 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002903}
2904
2905/**
2906 * link_reset_statistics - reset link statistics
2907 * @l_ptr: pointer to link
2908 */
2909
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002910static void link_reset_statistics(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002911{
2912 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2913 l_ptr->stats.sent_info = l_ptr->next_out_no;
2914 l_ptr->stats.recv_info = l_ptr->next_in_no;
2915}
2916
Per Liden4323add2006-01-18 00:38:21 +01002917struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002918{
2919 char *link_name;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002920 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002921 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002922
2923 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002924 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002925
2926 link_name = (char *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +01002927 if (!strcmp(link_name, tipc_bclink_name)) {
2928 if (tipc_bclink_reset_stats())
2929 return tipc_cfg_reply_error_string("link not found");
2930 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002931 }
2932
Per Liden4323add2006-01-18 00:38:21 +01002933 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002934 l_ptr = link_find_link(link_name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002935 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002936 read_unlock_bh(&tipc_net_lock);
2937 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002938 }
2939
Per Liden4323add2006-01-18 00:38:21 +01002940 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002941 link_reset_statistics(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +01002942 tipc_node_unlock(node);
2943 read_unlock_bh(&tipc_net_lock);
2944 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002945}
2946
2947/**
2948 * percent - convert count to a percentage of total (rounding up or down)
2949 */
2950
2951static u32 percent(u32 count, u32 total)
2952{
2953 return (count * 100 + (total / 2)) / total;
2954}
2955
2956/**
Per Liden4323add2006-01-18 00:38:21 +01002957 * tipc_link_stats - print link statistics
Per Lidenb97bf3f2006-01-02 19:04:38 +01002958 * @name: link name
2959 * @buf: print buffer area
2960 * @buf_size: size of print buffer area
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002961 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002962 * Returns length of print buffer data string (or 0 if error)
2963 */
2964
Per Liden4323add2006-01-18 00:38:21 +01002965static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002966{
2967 struct print_buf pb;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002968 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002969 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002970 char *status;
2971 u32 profile_total = 0;
2972
Per Liden4323add2006-01-18 00:38:21 +01002973 if (!strcmp(name, tipc_bclink_name))
2974 return tipc_bclink_stats(buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002975
Per Liden4323add2006-01-18 00:38:21 +01002976 tipc_printbuf_init(&pb, buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002977
Per Liden4323add2006-01-18 00:38:21 +01002978 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002979 l_ptr = link_find_link(name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002980 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002981 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002982 return 0;
2983 }
Per Liden4323add2006-01-18 00:38:21 +01002984 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002985
Per Liden4323add2006-01-18 00:38:21 +01002986 if (tipc_link_is_active(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002987 status = "ACTIVE";
Per Liden4323add2006-01-18 00:38:21 +01002988 else if (tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002989 status = "STANDBY";
2990 else
2991 status = "DEFUNCT";
2992 tipc_printf(&pb, "Link <%s>\n"
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002993 " %s MTU:%u Priority:%u Tolerance:%u ms"
2994 " Window:%u packets\n",
Allan Stephens15e979d2010-05-11 14:30:10 +00002995 l_ptr->name, status, l_ptr->max_pkt,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002996 l_ptr->priority, l_ptr->tolerance, l_ptr->queue_limit[0]);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002997 tipc_printf(&pb, " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002998 l_ptr->next_in_no - l_ptr->stats.recv_info,
2999 l_ptr->stats.recv_fragments,
3000 l_ptr->stats.recv_fragmented,
3001 l_ptr->stats.recv_bundles,
3002 l_ptr->stats.recv_bundled);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003003 tipc_printf(&pb, " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01003004 l_ptr->next_out_no - l_ptr->stats.sent_info,
3005 l_ptr->stats.sent_fragments,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003006 l_ptr->stats.sent_fragmented,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003007 l_ptr->stats.sent_bundles,
3008 l_ptr->stats.sent_bundled);
3009 profile_total = l_ptr->stats.msg_length_counts;
3010 if (!profile_total)
3011 profile_total = 1;
3012 tipc_printf(&pb, " TX profile sample:%u packets average:%u octets\n"
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003013 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
Allan Stephens0f305bf2011-05-30 15:36:56 -04003014 "-16384:%u%% -32768:%u%% -66000:%u%%\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01003015 l_ptr->stats.msg_length_counts,
3016 l_ptr->stats.msg_lengths_total / profile_total,
3017 percent(l_ptr->stats.msg_length_profile[0], profile_total),
3018 percent(l_ptr->stats.msg_length_profile[1], profile_total),
3019 percent(l_ptr->stats.msg_length_profile[2], profile_total),
3020 percent(l_ptr->stats.msg_length_profile[3], profile_total),
3021 percent(l_ptr->stats.msg_length_profile[4], profile_total),
3022 percent(l_ptr->stats.msg_length_profile[5], profile_total),
3023 percent(l_ptr->stats.msg_length_profile[6], profile_total));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003024 tipc_printf(&pb, " RX states:%u probes:%u naks:%u defs:%u dups:%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01003025 l_ptr->stats.recv_states,
3026 l_ptr->stats.recv_probes,
3027 l_ptr->stats.recv_nacks,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003028 l_ptr->stats.deferred_recv,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003029 l_ptr->stats.duplicates);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003030 tipc_printf(&pb, " TX states:%u probes:%u naks:%u acks:%u dups:%u\n",
3031 l_ptr->stats.sent_states,
3032 l_ptr->stats.sent_probes,
3033 l_ptr->stats.sent_nacks,
3034 l_ptr->stats.sent_acks,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003035 l_ptr->stats.retransmitted);
3036 tipc_printf(&pb, " Congestion bearer:%u link:%u Send queue max:%u avg:%u\n",
3037 l_ptr->stats.bearer_congs,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003038 l_ptr->stats.link_congs,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003039 l_ptr->stats.max_queue_sz,
3040 l_ptr->stats.queue_sz_counts
3041 ? (l_ptr->stats.accu_queue_sz / l_ptr->stats.queue_sz_counts)
3042 : 0);
3043
Per Liden4323add2006-01-18 00:38:21 +01003044 tipc_node_unlock(node);
3045 read_unlock_bh(&tipc_net_lock);
3046 return tipc_printbuf_validate(&pb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003047}
3048
3049#define MAX_LINK_STATS_INFO 2000
3050
Per Liden4323add2006-01-18 00:38:21 +01003051struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003052{
3053 struct sk_buff *buf;
3054 struct tlv_desc *rep_tlv;
3055 int str_len;
3056
3057 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01003058 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003059
Per Liden4323add2006-01-18 00:38:21 +01003060 buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_LINK_STATS_INFO));
Per Lidenb97bf3f2006-01-02 19:04:38 +01003061 if (!buf)
3062 return NULL;
3063
3064 rep_tlv = (struct tlv_desc *)buf->data;
3065
Per Liden4323add2006-01-18 00:38:21 +01003066 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
3067 (char *)TLV_DATA(rep_tlv), MAX_LINK_STATS_INFO);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003068 if (!str_len) {
3069 buf_discard(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003070 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01003071 }
3072
3073 skb_put(buf, TLV_SPACE(str_len));
3074 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
3075
3076 return buf;
3077}
3078
Per Lidenb97bf3f2006-01-02 19:04:38 +01003079/**
Per Liden4323add2006-01-18 00:38:21 +01003080 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
Per Lidenb97bf3f2006-01-02 19:04:38 +01003081 * @dest: network address of destination node
3082 * @selector: used to select from set of active links
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003083 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01003084 * If no active link can be found, uses default maximum packet size.
3085 */
3086
Per Liden4323add2006-01-18 00:38:21 +01003087u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003088{
David S. Miller6c000552008-09-02 23:38:32 -07003089 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05003090 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01003091 u32 res = MAX_PKT_DEFAULT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003092
Per Lidenb97bf3f2006-01-02 19:04:38 +01003093 if (dest == tipc_own_addr)
3094 return MAX_MSG_SIZE;
3095
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003096 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00003097 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003098 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01003099 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003100 l_ptr = n_ptr->active_links[selector & 1];
3101 if (l_ptr)
Allan Stephens15e979d2010-05-11 14:30:10 +00003102 res = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01003103 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003104 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003105 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003106 return res;
3107}
3108
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05003109static void link_print(struct tipc_link *l_ptr, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003110{
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003111 char print_area[256];
3112 struct print_buf pb;
3113 struct print_buf *buf = &pb;
3114
3115 tipc_printbuf_init(buf, print_area, sizeof(print_area));
3116
Per Lidenb97bf3f2006-01-02 19:04:38 +01003117 tipc_printf(buf, str);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003118 tipc_printf(buf, "Link %x<%s>:",
Allan Stephens2d627b92011-01-07 13:00:11 -05003119 l_ptr->addr, l_ptr->b_ptr->name);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003120
3121#ifdef CONFIG_TIPC_DEBUG
3122 if (link_reset_reset(l_ptr) || link_reset_unknown(l_ptr))
3123 goto print_state;
3124
Per Lidenb97bf3f2006-01-02 19:04:38 +01003125 tipc_printf(buf, ": NXO(%u):", mod(l_ptr->next_out_no));
3126 tipc_printf(buf, "NXI(%u):", mod(l_ptr->next_in_no));
3127 tipc_printf(buf, "SQUE");
3128 if (l_ptr->first_out) {
Allan Stephensf9057302011-10-24 16:03:12 -04003129 tipc_printf(buf, "[%u..", buf_seqno(l_ptr->first_out));
Per Lidenb97bf3f2006-01-02 19:04:38 +01003130 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -04003131 tipc_printf(buf, "%u..", buf_seqno(l_ptr->next_out));
3132 tipc_printf(buf, "%u]", buf_seqno(l_ptr->last_out));
3133 if ((mod(buf_seqno(l_ptr->last_out) -
3134 buf_seqno(l_ptr->first_out))
Joe Perchesf64f9e72009-11-29 16:55:45 -08003135 != (l_ptr->out_queue_size - 1)) ||
3136 (l_ptr->last_out->next != NULL)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01003137 tipc_printf(buf, "\nSend queue inconsistency\n");
Allan Stephensc8a61b52011-01-18 13:31:32 -05003138 tipc_printf(buf, "first_out= %p ", l_ptr->first_out);
3139 tipc_printf(buf, "next_out= %p ", l_ptr->next_out);
3140 tipc_printf(buf, "last_out= %p ", l_ptr->last_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003141 }
3142 } else
3143 tipc_printf(buf, "[]");
3144 tipc_printf(buf, "SQSIZ(%u)", l_ptr->out_queue_size);
3145 if (l_ptr->oldest_deferred_in) {
Allan Stephensf9057302011-10-24 16:03:12 -04003146 u32 o = buf_seqno(l_ptr->oldest_deferred_in);
3147 u32 n = buf_seqno(l_ptr->newest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003148 tipc_printf(buf, ":RQUE[%u..%u]", o, n);
3149 if (l_ptr->deferred_inqueue_sz != mod((n + 1) - o)) {
3150 tipc_printf(buf, ":RQSIZ(%u)",
3151 l_ptr->deferred_inqueue_sz);
3152 }
3153 }
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003154print_state:
3155#endif
3156
Per Lidenb97bf3f2006-01-02 19:04:38 +01003157 if (link_working_unknown(l_ptr))
3158 tipc_printf(buf, ":WU");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003159 else if (link_reset_reset(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003160 tipc_printf(buf, ":RR");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003161 else if (link_reset_unknown(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003162 tipc_printf(buf, ":RU");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003163 else if (link_working_working(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003164 tipc_printf(buf, ":WW");
3165 tipc_printf(buf, "\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003166
3167 tipc_printbuf_validate(buf);
3168 info("%s", print_area);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003169}
3170