blob: 515dfe4fd4ce8b02a034609cee3a5895601ef112 [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/**
74 * struct link_name - deconstructed link name
75 * @addr_local: network address of node at this end
76 * @if_local: name of interface at this end
77 * @addr_peer: network address of node at far end
78 * @if_peer: name of interface at far end
79 */
80
81struct link_name {
82 u32 addr_local;
83 char if_local[TIPC_MAX_IF_NAME];
84 u32 addr_peer;
85 char if_peer[TIPC_MAX_IF_NAME];
86};
87
Per Lidenb97bf3f2006-01-02 19:04:38 +010088static void link_handle_out_of_seq_msg(struct link *l_ptr,
89 struct sk_buff *buf);
90static void link_recv_proto_msg(struct link *l_ptr, struct sk_buff *buf);
91static int link_recv_changeover_msg(struct link **l_ptr, struct sk_buff **buf);
92static void link_set_supervision_props(struct link *l_ptr, u32 tolerance);
Allan Stephens23dd4cc2011-01-07 11:43:40 -050093static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +010094 struct iovec const *msg_sect,
Allan Stephens26896902011-04-21 10:42:07 -050095 u32 num_sect, unsigned int total_len,
96 u32 destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +010097static void link_check_defragm_bufs(struct link *l_ptr);
98static void link_state_event(struct link *l_ptr, u32 event);
99static void link_reset_statistics(struct link *l_ptr);
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000100static void link_print(struct link *l_ptr, const char *str);
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000101static void link_start(struct link *l_ptr);
102static int link_send_long_buf(struct link *l_ptr, struct sk_buff *buf);
103
Per Lidenb97bf3f2006-01-02 19:04:38 +0100104/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800105 * Simple link routines
Per Lidenb97bf3f2006-01-02 19:04:38 +0100106 */
107
Sam Ravnborg05790c62006-03-20 22:37:04 -0800108static unsigned int align(unsigned int i)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100109{
110 return (i + 3) & ~3u;
111}
112
Sam Ravnborg05790c62006-03-20 22:37:04 -0800113static void link_init_max_pkt(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100114{
115 u32 max_pkt;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900116
Allan Stephens2d627b92011-01-07 13:00:11 -0500117 max_pkt = (l_ptr->b_ptr->mtu & ~3);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100118 if (max_pkt > MAX_MSG_SIZE)
119 max_pkt = MAX_MSG_SIZE;
120
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900121 l_ptr->max_pkt_target = max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122 if (l_ptr->max_pkt_target < MAX_PKT_DEFAULT)
123 l_ptr->max_pkt = l_ptr->max_pkt_target;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900124 else
Per Lidenb97bf3f2006-01-02 19:04:38 +0100125 l_ptr->max_pkt = MAX_PKT_DEFAULT;
126
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900127 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100128}
129
Sam Ravnborg05790c62006-03-20 22:37:04 -0800130static u32 link_next_sent(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100131{
132 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -0400133 return buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100134 return mod(l_ptr->next_out_no);
135}
136
Sam Ravnborg05790c62006-03-20 22:37:04 -0800137static u32 link_last_sent(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100138{
139 return mod(link_next_sent(l_ptr) - 1);
140}
141
142/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800143 * Simple non-static link routines (i.e. referenced outside this file)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100144 */
145
Per Liden4323add2006-01-18 00:38:21 +0100146int tipc_link_is_up(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100147{
148 if (!l_ptr)
149 return 0;
Eric Dumazeta02cec22010-09-22 20:43:57 +0000150 return link_working_working(l_ptr) || link_working_unknown(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100151}
152
Per Liden4323add2006-01-18 00:38:21 +0100153int tipc_link_is_active(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100154{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000155 return (l_ptr->owner->active_links[0] == l_ptr) ||
156 (l_ptr->owner->active_links[1] == l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100157}
158
159/**
160 * link_name_validate - validate & (optionally) deconstruct link name
161 * @name - ptr to link name string
162 * @name_parts - ptr to area for link name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900163 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100164 * Returns 1 if link name is valid, otherwise 0.
165 */
166
167static int link_name_validate(const char *name, struct link_name *name_parts)
168{
169 char name_copy[TIPC_MAX_LINK_NAME];
170 char *addr_local;
171 char *if_local;
172 char *addr_peer;
173 char *if_peer;
174 char dummy;
175 u32 z_local, c_local, n_local;
176 u32 z_peer, c_peer, n_peer;
177 u32 if_local_len;
178 u32 if_peer_len;
179
180 /* copy link name & ensure length is OK */
181
182 name_copy[TIPC_MAX_LINK_NAME - 1] = 0;
183 /* need above in case non-Posix strncpy() doesn't pad with nulls */
184 strncpy(name_copy, name, TIPC_MAX_LINK_NAME);
185 if (name_copy[TIPC_MAX_LINK_NAME - 1] != 0)
186 return 0;
187
188 /* ensure all component parts of link name are present */
189
190 addr_local = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000191 if_local = strchr(addr_local, ':');
192 if (if_local == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100193 return 0;
194 *(if_local++) = 0;
Allan Stephens2db99832010-12-31 18:59:33 +0000195 addr_peer = strchr(if_local, '-');
196 if (addr_peer == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100197 return 0;
198 *(addr_peer++) = 0;
199 if_local_len = addr_peer - if_local;
Allan Stephens2db99832010-12-31 18:59:33 +0000200 if_peer = strchr(addr_peer, ':');
201 if (if_peer == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100202 return 0;
203 *(if_peer++) = 0;
204 if_peer_len = strlen(if_peer) + 1;
205
206 /* validate component parts of link name */
207
208 if ((sscanf(addr_local, "%u.%u.%u%c",
209 &z_local, &c_local, &n_local, &dummy) != 3) ||
210 (sscanf(addr_peer, "%u.%u.%u%c",
211 &z_peer, &c_peer, &n_peer, &dummy) != 3) ||
212 (z_local > 255) || (c_local > 4095) || (n_local > 4095) ||
213 (z_peer > 255) || (c_peer > 4095) || (n_peer > 4095) ||
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900214 (if_local_len <= 1) || (if_local_len > TIPC_MAX_IF_NAME) ||
215 (if_peer_len <= 1) || (if_peer_len > TIPC_MAX_IF_NAME) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +0100216 (strspn(if_local, tipc_alphabet) != (if_local_len - 1)) ||
217 (strspn(if_peer, tipc_alphabet) != (if_peer_len - 1)))
218 return 0;
219
220 /* return link name components, if necessary */
221
222 if (name_parts) {
223 name_parts->addr_local = tipc_addr(z_local, c_local, n_local);
224 strcpy(name_parts->if_local, if_local);
225 name_parts->addr_peer = tipc_addr(z_peer, c_peer, n_peer);
226 strcpy(name_parts->if_peer, if_peer);
227 }
228 return 1;
229}
230
231/**
232 * link_timeout - handle expiration of link timer
233 * @l_ptr: pointer to link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900234 *
Per Liden4323add2006-01-18 00:38:21 +0100235 * This routine must not grab "tipc_net_lock" to avoid a potential deadlock conflict
236 * with tipc_link_delete(). (There is no risk that the node will be deleted by
237 * another thread because tipc_link_delete() always cancels the link timer before
238 * tipc_node_delete() is called.)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100239 */
240
241static void link_timeout(struct link *l_ptr)
242{
Per Liden4323add2006-01-18 00:38:21 +0100243 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100244
245 /* update counters used in statistical profiling of send traffic */
246
247 l_ptr->stats.accu_queue_sz += l_ptr->out_queue_size;
248 l_ptr->stats.queue_sz_counts++;
249
Per Lidenb97bf3f2006-01-02 19:04:38 +0100250 if (l_ptr->first_out) {
251 struct tipc_msg *msg = buf_msg(l_ptr->first_out);
252 u32 length = msg_size(msg);
253
Joe Perchesf64f9e72009-11-29 16:55:45 -0800254 if ((msg_user(msg) == MSG_FRAGMENTER) &&
255 (msg_type(msg) == FIRST_FRAGMENT)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100256 length = msg_size(msg_get_wrapped(msg));
257 }
258 if (length) {
259 l_ptr->stats.msg_lengths_total += length;
260 l_ptr->stats.msg_length_counts++;
261 if (length <= 64)
262 l_ptr->stats.msg_length_profile[0]++;
263 else if (length <= 256)
264 l_ptr->stats.msg_length_profile[1]++;
265 else if (length <= 1024)
266 l_ptr->stats.msg_length_profile[2]++;
267 else if (length <= 4096)
268 l_ptr->stats.msg_length_profile[3]++;
269 else if (length <= 16384)
270 l_ptr->stats.msg_length_profile[4]++;
271 else if (length <= 32768)
272 l_ptr->stats.msg_length_profile[5]++;
273 else
274 l_ptr->stats.msg_length_profile[6]++;
275 }
276 }
277
278 /* do all other link processing performed on a periodic basis */
279
280 link_check_defragm_bufs(l_ptr);
281
282 link_state_event(l_ptr, TIMEOUT_EVT);
283
284 if (l_ptr->next_out)
Per Liden4323add2006-01-18 00:38:21 +0100285 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100286
Per Liden4323add2006-01-18 00:38:21 +0100287 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100288}
289
Sam Ravnborg05790c62006-03-20 22:37:04 -0800290static void link_set_timer(struct link *l_ptr, u32 time)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100291{
292 k_start_timer(&l_ptr->timer, time);
293}
294
295/**
Per Liden4323add2006-01-18 00:38:21 +0100296 * tipc_link_create - create a new link
Allan Stephens37b9c082011-02-28 11:32:27 -0500297 * @n_ptr: pointer to associated node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100298 * @b_ptr: pointer to associated bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100299 * @media_addr: media address to use when sending messages over link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900300 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100301 * Returns pointer to link.
302 */
303
Allan Stephens37b9c082011-02-28 11:32:27 -0500304struct link *tipc_link_create(struct tipc_node *n_ptr,
305 struct tipc_bearer *b_ptr,
Per Liden4323add2006-01-18 00:38:21 +0100306 const struct tipc_media_addr *media_addr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100307{
308 struct link *l_ptr;
309 struct tipc_msg *msg;
310 char *if_name;
Allan Stephens37b9c082011-02-28 11:32:27 -0500311 char addr_string[16];
312 u32 peer = n_ptr->addr;
313
314 if (n_ptr->link_cnt >= 2) {
315 tipc_addr_string_fill(addr_string, n_ptr->addr);
316 err("Attempt to establish third link to %s\n", addr_string);
317 return NULL;
318 }
319
320 if (n_ptr->links[b_ptr->identity]) {
321 tipc_addr_string_fill(addr_string, n_ptr->addr);
322 err("Attempt to establish second link on <%s> to %s\n",
323 b_ptr->name, addr_string);
324 return NULL;
325 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100326
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700327 l_ptr = kzalloc(sizeof(*l_ptr), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100328 if (!l_ptr) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700329 warn("Link creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100330 return NULL;
331 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100332
333 l_ptr->addr = peer;
Allan Stephens2d627b92011-01-07 13:00:11 -0500334 if_name = strchr(b_ptr->name, ':') + 1;
Allan Stephens062b4c92011-04-07 09:28:47 -0400335 sprintf(l_ptr->name, "%u.%u.%u:%s-%u.%u.%u:unknown",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100336 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900337 tipc_node(tipc_own_addr),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100338 if_name,
339 tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
Allan Stephens062b4c92011-04-07 09:28:47 -0400340 /* note: peer i/f name is updated by reset/activate message */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100341 memcpy(&l_ptr->media_addr, media_addr, sizeof(*media_addr));
Allan Stephens37b9c082011-02-28 11:32:27 -0500342 l_ptr->owner = n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100343 l_ptr->checkpoint = 1;
Allan Stephensf882cb762011-04-07 09:43:27 -0400344 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100345 l_ptr->b_ptr = b_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -0400346 link_set_supervision_props(l_ptr, b_ptr->tolerance);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100347 l_ptr->state = RESET_UNKNOWN;
348
349 l_ptr->pmsg = (struct tipc_msg *)&l_ptr->proto_msg;
350 msg = l_ptr->pmsg;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000351 tipc_msg_init(msg, LINK_PROTOCOL, RESET_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100352 msg_set_size(msg, sizeof(l_ptr->proto_msg));
Allan Stephensa686e682008-06-04 17:29:39 -0700353 msg_set_session(msg, (tipc_random & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100354 msg_set_bearer_id(msg, b_ptr->identity);
355 strcpy((char *)msg_data(msg), if_name);
356
357 l_ptr->priority = b_ptr->priority;
Allan Stephens5c216e12011-10-18 11:34:29 -0400358 tipc_link_set_queue_limits(l_ptr, b_ptr->window);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100359
360 link_init_max_pkt(l_ptr);
361
362 l_ptr->next_out_no = 1;
363 INIT_LIST_HEAD(&l_ptr->waiting_ports);
364
365 link_reset_statistics(l_ptr);
366
Allan Stephens37b9c082011-02-28 11:32:27 -0500367 tipc_node_attach_link(n_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100368
Florian Westphal945710652007-07-26 00:05:07 -0700369 k_init_timer(&l_ptr->timer, (Handler)link_timeout, (unsigned long)l_ptr);
370 list_add_tail(&l_ptr->link_list, &b_ptr->links);
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000371 tipc_k_signal((Handler)link_start, (unsigned long)l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100372
Per Lidenb97bf3f2006-01-02 19:04:38 +0100373 return l_ptr;
374}
375
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900376/**
Per Liden4323add2006-01-18 00:38:21 +0100377 * tipc_link_delete - delete a link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100378 * @l_ptr: pointer to link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900379 *
Per Liden4323add2006-01-18 00:38:21 +0100380 * Note: 'tipc_net_lock' is write_locked, bearer is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100381 * This routine must not grab the node lock until after link timer cancellation
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900382 * to avoid a potential deadlock situation.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100383 */
384
Per Liden4323add2006-01-18 00:38:21 +0100385void tipc_link_delete(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100386{
387 if (!l_ptr) {
388 err("Attempt to delete non-existent link\n");
389 return;
390 }
391
Per Lidenb97bf3f2006-01-02 19:04:38 +0100392 k_cancel_timer(&l_ptr->timer);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900393
Per Liden4323add2006-01-18 00:38:21 +0100394 tipc_node_lock(l_ptr->owner);
395 tipc_link_reset(l_ptr);
396 tipc_node_detach_link(l_ptr->owner, l_ptr);
397 tipc_link_stop(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100398 list_del_init(&l_ptr->link_list);
Per Liden4323add2006-01-18 00:38:21 +0100399 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100400 k_term_timer(&l_ptr->timer);
401 kfree(l_ptr);
402}
403
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000404static void link_start(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100405{
Allan Stephens214dda42011-01-24 16:22:43 -0500406 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100407 link_state_event(l_ptr, STARTING_EVT);
Allan Stephens214dda42011-01-24 16:22:43 -0500408 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100409}
410
411/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900412 * link_schedule_port - schedule port for deferred sending
Per Lidenb97bf3f2006-01-02 19:04:38 +0100413 * @l_ptr: pointer to link
414 * @origport: reference to sending port
415 * @sz: amount of data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900416 *
417 * Schedules port for renewed sending of messages after link congestion
Per Lidenb97bf3f2006-01-02 19:04:38 +0100418 * has abated.
419 */
420
421static int link_schedule_port(struct link *l_ptr, u32 origport, u32 sz)
422{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500423 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100424
Per Liden4323add2006-01-18 00:38:21 +0100425 spin_lock_bh(&tipc_port_list_lock);
426 p_ptr = tipc_port_lock(origport);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100427 if (p_ptr) {
428 if (!p_ptr->wakeup)
429 goto exit;
430 if (!list_empty(&p_ptr->wait_list))
431 goto exit;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500432 p_ptr->congested = 1;
Allan Stephens15e979d2010-05-11 14:30:10 +0000433 p_ptr->waiting_pkts = 1 + ((sz - 1) / l_ptr->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100434 list_add_tail(&p_ptr->wait_list, &l_ptr->waiting_ports);
435 l_ptr->stats.link_congs++;
436exit:
Per Liden4323add2006-01-18 00:38:21 +0100437 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100438 }
Per Liden4323add2006-01-18 00:38:21 +0100439 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100440 return -ELINKCONG;
441}
442
Per Liden4323add2006-01-18 00:38:21 +0100443void tipc_link_wakeup_ports(struct link *l_ptr, int all)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100444{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500445 struct tipc_port *p_ptr;
446 struct tipc_port *temp_p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100447 int win = l_ptr->queue_limit[0] - l_ptr->out_queue_size;
448
449 if (all)
450 win = 100000;
451 if (win <= 0)
452 return;
Per Liden4323add2006-01-18 00:38:21 +0100453 if (!spin_trylock_bh(&tipc_port_list_lock))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100454 return;
455 if (link_congested(l_ptr))
456 goto exit;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900457 list_for_each_entry_safe(p_ptr, temp_p_ptr, &l_ptr->waiting_ports,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100458 wait_list) {
459 if (win <= 0)
460 break;
461 list_del_init(&p_ptr->wait_list);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500462 spin_lock_bh(p_ptr->lock);
463 p_ptr->congested = 0;
464 p_ptr->wakeup(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100465 win -= p_ptr->waiting_pkts;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500466 spin_unlock_bh(p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100467 }
468
469exit:
Per Liden4323add2006-01-18 00:38:21 +0100470 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100471}
472
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900473/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100474 * link_release_outqueue - purge link's outbound message queue
475 * @l_ptr: pointer to link
476 */
477
478static void link_release_outqueue(struct link *l_ptr)
479{
480 struct sk_buff *buf = l_ptr->first_out;
481 struct sk_buff *next;
482
483 while (buf) {
484 next = buf->next;
485 buf_discard(buf);
486 buf = next;
487 }
488 l_ptr->first_out = NULL;
489 l_ptr->out_queue_size = 0;
490}
491
492/**
Per Liden4323add2006-01-18 00:38:21 +0100493 * tipc_link_reset_fragments - purge link's inbound message fragments queue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100494 * @l_ptr: pointer to link
495 */
496
Per Liden4323add2006-01-18 00:38:21 +0100497void tipc_link_reset_fragments(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100498{
499 struct sk_buff *buf = l_ptr->defragm_buf;
500 struct sk_buff *next;
501
502 while (buf) {
503 next = buf->next;
504 buf_discard(buf);
505 buf = next;
506 }
507 l_ptr->defragm_buf = NULL;
508}
509
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900510/**
Per Liden4323add2006-01-18 00:38:21 +0100511 * tipc_link_stop - purge all inbound and outbound messages associated with link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100512 * @l_ptr: pointer to link
513 */
514
Per Liden4323add2006-01-18 00:38:21 +0100515void tipc_link_stop(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100516{
517 struct sk_buff *buf;
518 struct sk_buff *next;
519
520 buf = l_ptr->oldest_deferred_in;
521 while (buf) {
522 next = buf->next;
523 buf_discard(buf);
524 buf = next;
525 }
526
527 buf = l_ptr->first_out;
528 while (buf) {
529 next = buf->next;
530 buf_discard(buf);
531 buf = next;
532 }
533
Per Liden4323add2006-01-18 00:38:21 +0100534 tipc_link_reset_fragments(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100535
536 buf_discard(l_ptr->proto_msg_queue);
537 l_ptr->proto_msg_queue = NULL;
538}
539
Per Liden4323add2006-01-18 00:38:21 +0100540void tipc_link_reset(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100541{
542 struct sk_buff *buf;
543 u32 prev_state = l_ptr->state;
544 u32 checkpoint = l_ptr->next_in_no;
Allan Stephens5392d642006-06-25 23:52:50 -0700545 int was_active_link = tipc_link_is_active(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900546
Allan Stephensa686e682008-06-04 17:29:39 -0700547 msg_set_session(l_ptr->pmsg, ((msg_session(l_ptr->pmsg) + 1) & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100548
Allan Stephensa686e682008-06-04 17:29:39 -0700549 /* Link is down, accept any session */
550 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100551
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900552 /* Prepare for max packet size negotiation */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100553 link_init_max_pkt(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900554
Per Lidenb97bf3f2006-01-02 19:04:38 +0100555 l_ptr->state = RESET_UNKNOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100556
557 if ((prev_state == RESET_UNKNOWN) || (prev_state == RESET_RESET))
558 return;
559
Per Liden4323add2006-01-18 00:38:21 +0100560 tipc_node_link_down(l_ptr->owner, l_ptr);
561 tipc_bearer_remove_dest(l_ptr->b_ptr, l_ptr->addr);
Paul Gortmaker7368ddf2010-10-12 14:25:58 +0000562
Paul Gortmaker8f19afb2011-02-28 11:36:21 -0400563 if (was_active_link && tipc_node_active_links(l_ptr->owner) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100564 l_ptr->owner->permit_changeover) {
565 l_ptr->reset_checkpoint = checkpoint;
566 l_ptr->exp_msg_count = START_CHANGEOVER;
567 }
568
569 /* Clean up all queues: */
570
571 link_release_outqueue(l_ptr);
572 buf_discard(l_ptr->proto_msg_queue);
573 l_ptr->proto_msg_queue = NULL;
574 buf = l_ptr->oldest_deferred_in;
575 while (buf) {
576 struct sk_buff *next = buf->next;
577 buf_discard(buf);
578 buf = next;
579 }
580 if (!list_empty(&l_ptr->waiting_ports))
Per Liden4323add2006-01-18 00:38:21 +0100581 tipc_link_wakeup_ports(l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100582
583 l_ptr->retransm_queue_head = 0;
584 l_ptr->retransm_queue_size = 0;
585 l_ptr->last_out = NULL;
586 l_ptr->first_out = NULL;
587 l_ptr->next_out = NULL;
588 l_ptr->unacked_window = 0;
589 l_ptr->checkpoint = 1;
590 l_ptr->next_out_no = 1;
591 l_ptr->deferred_inqueue_sz = 0;
592 l_ptr->oldest_deferred_in = NULL;
593 l_ptr->newest_deferred_in = NULL;
594 l_ptr->fsm_msg_cnt = 0;
595 l_ptr->stale_count = 0;
596 link_reset_statistics(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100597}
598
599
600static void link_activate(struct link *l_ptr)
601{
Allan Stephens5392d642006-06-25 23:52:50 -0700602 l_ptr->next_in_no = l_ptr->stats.recv_info = 1;
Per Liden4323add2006-01-18 00:38:21 +0100603 tipc_node_link_up(l_ptr->owner, l_ptr);
604 tipc_bearer_add_dest(l_ptr->b_ptr, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100605}
606
607/**
608 * link_state_event - link finite state machine
609 * @l_ptr: pointer to link
610 * @event: state machine event to process
611 */
612
613static void link_state_event(struct link *l_ptr, unsigned event)
614{
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900615 struct link *other;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100616 u32 cont_intv = l_ptr->continuity_interval;
617
618 if (!l_ptr->started && (event != STARTING_EVT))
619 return; /* Not yet. */
620
621 if (link_blocked(l_ptr)) {
Allan Stephensa0168922010-12-31 18:59:35 +0000622 if (event == TIMEOUT_EVT)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100623 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100624 return; /* Changeover going on */
625 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100626
627 switch (l_ptr->state) {
628 case WORKING_WORKING:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100629 switch (event) {
630 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100631 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100632 break;
633 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100634 if (l_ptr->next_in_no != l_ptr->checkpoint) {
635 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100636 if (tipc_bclink_acks_missing(l_ptr->owner)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900637 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100638 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100639 l_ptr->fsm_msg_cnt++;
640 } else if (l_ptr->max_pkt < l_ptr->max_pkt_target) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900641 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100642 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100643 l_ptr->fsm_msg_cnt++;
644 }
645 link_set_timer(l_ptr, cont_intv);
646 break;
647 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100648 l_ptr->state = WORKING_UNKNOWN;
649 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100650 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100651 l_ptr->fsm_msg_cnt++;
652 link_set_timer(l_ptr, cont_intv / 4);
653 break;
654 case RESET_MSG:
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900655 info("Resetting link <%s>, requested by peer\n",
Allan Stephensa10bd922006-06-25 23:52:17 -0700656 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100657 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100658 l_ptr->state = RESET_RESET;
659 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100660 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100661 l_ptr->fsm_msg_cnt++;
662 link_set_timer(l_ptr, cont_intv);
663 break;
664 default:
665 err("Unknown link event %u in WW state\n", event);
666 }
667 break;
668 case WORKING_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100669 switch (event) {
670 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100671 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100672 l_ptr->state = WORKING_WORKING;
673 l_ptr->fsm_msg_cnt = 0;
674 link_set_timer(l_ptr, cont_intv);
675 break;
676 case RESET_MSG:
Allan Stephensa10bd922006-06-25 23:52:17 -0700677 info("Resetting link <%s>, requested by peer "
678 "while probing\n", l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100679 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100680 l_ptr->state = RESET_RESET;
681 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100682 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100683 l_ptr->fsm_msg_cnt++;
684 link_set_timer(l_ptr, cont_intv);
685 break;
686 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100687 if (l_ptr->next_in_no != l_ptr->checkpoint) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100688 l_ptr->state = WORKING_WORKING;
689 l_ptr->fsm_msg_cnt = 0;
690 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100691 if (tipc_bclink_acks_missing(l_ptr->owner)) {
692 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
693 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100694 l_ptr->fsm_msg_cnt++;
695 }
696 link_set_timer(l_ptr, cont_intv);
697 } else if (l_ptr->fsm_msg_cnt < l_ptr->abort_limit) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900698 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100699 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100700 l_ptr->fsm_msg_cnt++;
701 link_set_timer(l_ptr, cont_intv / 4);
702 } else { /* Link has failed */
Allan Stephensa10bd922006-06-25 23:52:17 -0700703 warn("Resetting link <%s>, peer not responding\n",
704 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100705 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100706 l_ptr->state = RESET_UNKNOWN;
707 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100708 tipc_link_send_proto_msg(l_ptr, RESET_MSG,
709 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100710 l_ptr->fsm_msg_cnt++;
711 link_set_timer(l_ptr, cont_intv);
712 }
713 break;
714 default:
715 err("Unknown link event %u in WU state\n", event);
716 }
717 break;
718 case RESET_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100719 switch (event) {
720 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100721 break;
722 case ACTIVATE_MSG:
723 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000724 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100725 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100726 l_ptr->state = WORKING_WORKING;
727 l_ptr->fsm_msg_cnt = 0;
728 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100729 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100730 l_ptr->fsm_msg_cnt++;
731 link_set_timer(l_ptr, cont_intv);
732 break;
733 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100734 l_ptr->state = RESET_RESET;
735 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100736 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100737 l_ptr->fsm_msg_cnt++;
738 link_set_timer(l_ptr, cont_intv);
739 break;
740 case STARTING_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100741 l_ptr->started = 1;
742 /* fall through */
743 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100744 tipc_link_send_proto_msg(l_ptr, RESET_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100745 l_ptr->fsm_msg_cnt++;
746 link_set_timer(l_ptr, cont_intv);
747 break;
748 default:
749 err("Unknown link event %u in RU state\n", event);
750 }
751 break;
752 case RESET_RESET:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100753 switch (event) {
754 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100755 case ACTIVATE_MSG:
756 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000757 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100758 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100759 l_ptr->state = WORKING_WORKING;
760 l_ptr->fsm_msg_cnt = 0;
761 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100762 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100763 l_ptr->fsm_msg_cnt++;
764 link_set_timer(l_ptr, cont_intv);
765 break;
766 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100767 break;
768 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100769 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100770 l_ptr->fsm_msg_cnt++;
771 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100772 break;
773 default:
774 err("Unknown link event %u in RR state\n", event);
775 }
776 break;
777 default:
778 err("Unknown link state %u/%u\n", l_ptr->state, event);
779 }
780}
781
782/*
783 * link_bundle_buf(): Append contents of a buffer to
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900784 * the tail of an existing one.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100785 */
786
787static int link_bundle_buf(struct link *l_ptr,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900788 struct sk_buff *bundler,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100789 struct sk_buff *buf)
790{
791 struct tipc_msg *bundler_msg = buf_msg(bundler);
792 struct tipc_msg *msg = buf_msg(buf);
793 u32 size = msg_size(msg);
Allan Stephense49060c2006-06-29 12:32:46 -0700794 u32 bundle_size = msg_size(bundler_msg);
795 u32 to_pos = align(bundle_size);
796 u32 pad = to_pos - bundle_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100797
798 if (msg_user(bundler_msg) != MSG_BUNDLER)
799 return 0;
800 if (msg_type(bundler_msg) != OPEN_MSG)
801 return 0;
Allan Stephense49060c2006-06-29 12:32:46 -0700802 if (skb_tailroom(bundler) < (pad + size))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100803 return 0;
Allan Stephens15e979d2010-05-11 14:30:10 +0000804 if (l_ptr->max_pkt < (to_pos + size))
Allan Stephens863fae62006-07-03 19:39:36 -0700805 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100806
Allan Stephense49060c2006-06-29 12:32:46 -0700807 skb_put(bundler, pad + size);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300808 skb_copy_to_linear_data_offset(bundler, to_pos, buf->data, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100809 msg_set_size(bundler_msg, to_pos + size);
810 msg_set_msgcnt(bundler_msg, msg_msgcnt(bundler_msg) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100811 buf_discard(buf);
812 l_ptr->stats.sent_bundled++;
813 return 1;
814}
815
Sam Ravnborg05790c62006-03-20 22:37:04 -0800816static void link_add_to_outqueue(struct link *l_ptr,
817 struct sk_buff *buf,
818 struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100819{
820 u32 ack = mod(l_ptr->next_in_no - 1);
821 u32 seqno = mod(l_ptr->next_out_no++);
822
823 msg_set_word(msg, 2, ((ack << 16) | seqno));
824 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
825 buf->next = NULL;
826 if (l_ptr->first_out) {
827 l_ptr->last_out->next = buf;
828 l_ptr->last_out = buf;
829 } else
830 l_ptr->first_out = l_ptr->last_out = buf;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500831
Per Lidenb97bf3f2006-01-02 19:04:38 +0100832 l_ptr->out_queue_size++;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500833 if (l_ptr->out_queue_size > l_ptr->stats.max_queue_sz)
834 l_ptr->stats.max_queue_sz = l_ptr->out_queue_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100835}
836
Allan Stephensdc63d912011-04-21 11:50:42 -0400837static void link_add_chain_to_outqueue(struct link *l_ptr,
838 struct sk_buff *buf_chain,
839 u32 long_msgno)
840{
841 struct sk_buff *buf;
842 struct tipc_msg *msg;
843
844 if (!l_ptr->next_out)
845 l_ptr->next_out = buf_chain;
846 while (buf_chain) {
847 buf = buf_chain;
848 buf_chain = buf_chain->next;
849
850 msg = buf_msg(buf);
851 msg_set_long_msgno(msg, long_msgno);
852 link_add_to_outqueue(l_ptr, buf, msg);
853 }
854}
855
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900856/*
857 * tipc_link_send_buf() is the 'full path' for messages, called from
Per Lidenb97bf3f2006-01-02 19:04:38 +0100858 * inside TIPC when the 'fast path' in tipc_send_buf
859 * has failed, and from link_send()
860 */
861
Per Liden4323add2006-01-18 00:38:21 +0100862int tipc_link_send_buf(struct link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100863{
864 struct tipc_msg *msg = buf_msg(buf);
865 u32 size = msg_size(msg);
866 u32 dsz = msg_data_sz(msg);
867 u32 queue_size = l_ptr->out_queue_size;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000868 u32 imp = tipc_msg_tot_importance(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100869 u32 queue_limit = l_ptr->queue_limit[imp];
Allan Stephens15e979d2010-05-11 14:30:10 +0000870 u32 max_packet = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100871
872 msg_set_prevnode(msg, tipc_own_addr); /* If routed message */
873
874 /* Match msg importance against queue limits: */
875
876 if (unlikely(queue_size >= queue_limit)) {
877 if (imp <= TIPC_CRITICAL_IMPORTANCE) {
Allan Stephensbebc55a2011-04-19 10:17:58 -0400878 link_schedule_port(l_ptr, msg_origport(msg), size);
879 buf_discard(buf);
880 return -ELINKCONG;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100881 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100882 buf_discard(buf);
883 if (imp > CONN_MANAGER) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700884 warn("Resetting link <%s>, send queue full", l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100885 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100886 }
887 return dsz;
888 }
889
890 /* Fragmentation needed ? */
891
892 if (size > max_packet)
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000893 return link_send_long_buf(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100894
895 /* Packet can be queued or sent: */
896
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900897 if (likely(!tipc_bearer_congested(l_ptr->b_ptr, l_ptr) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100898 !link_congested(l_ptr))) {
899 link_add_to_outqueue(l_ptr, buf, msg);
900
Per Liden4323add2006-01-18 00:38:21 +0100901 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100902 l_ptr->unacked_window = 0;
903 } else {
Per Liden4323add2006-01-18 00:38:21 +0100904 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100905 l_ptr->stats.bearer_congs++;
906 l_ptr->next_out = buf;
907 }
908 return dsz;
909 }
910 /* Congestion: can message be bundled ?: */
911
912 if ((msg_user(msg) != CHANGEOVER_PROTOCOL) &&
913 (msg_user(msg) != MSG_FRAGMENTER)) {
914
915 /* Try adding message to an existing bundle */
916
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900917 if (l_ptr->next_out &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100918 link_bundle_buf(l_ptr, l_ptr->last_out, buf)) {
Per Liden4323add2006-01-18 00:38:21 +0100919 tipc_bearer_resolve_congestion(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100920 return dsz;
921 }
922
923 /* Try creating a new bundle */
924
925 if (size <= max_packet * 2 / 3) {
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000926 struct sk_buff *bundler = tipc_buf_acquire(max_packet);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100927 struct tipc_msg bundler_hdr;
928
929 if (bundler) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000930 tipc_msg_init(&bundler_hdr, MSG_BUNDLER, OPEN_MSG,
Allan Stephens75715212008-06-04 17:37:34 -0700931 INT_H_SIZE, l_ptr->addr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300932 skb_copy_to_linear_data(bundler, &bundler_hdr,
933 INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100934 skb_trim(bundler, INT_H_SIZE);
935 link_bundle_buf(l_ptr, bundler, buf);
936 buf = bundler;
937 msg = buf_msg(buf);
938 l_ptr->stats.sent_bundles++;
939 }
940 }
941 }
942 if (!l_ptr->next_out)
943 l_ptr->next_out = buf;
944 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +0100945 tipc_bearer_resolve_congestion(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100946 return dsz;
947}
948
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900949/*
950 * tipc_link_send(): same as tipc_link_send_buf(), but the link to use has
Per Lidenb97bf3f2006-01-02 19:04:38 +0100951 * not been selected yet, and the the owner node is not locked
952 * Called by TIPC internal users, e.g. the name distributor
953 */
954
Per Liden4323add2006-01-18 00:38:21 +0100955int tipc_link_send(struct sk_buff *buf, u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100956{
957 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700958 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100959 int res = -ELINKCONG;
960
Per Liden4323add2006-01-18 00:38:21 +0100961 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000962 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100963 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +0100964 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100965 l_ptr = n_ptr->active_links[selector & 1];
Allan Stephensa0168922010-12-31 18:59:35 +0000966 if (l_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100967 res = tipc_link_send_buf(l_ptr, buf);
Allan Stephensa0168922010-12-31 18:59:35 +0000968 else
Allan Stephensc33d53b2006-06-25 23:50:30 -0700969 buf_discard(buf);
Per Liden4323add2006-01-18 00:38:21 +0100970 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100971 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100972 buf_discard(buf);
973 }
Per Liden4323add2006-01-18 00:38:21 +0100974 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100975 return res;
976}
977
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900978/*
Allan Stephens9aa88c22011-05-31 13:38:02 -0400979 * tipc_link_send_names - send name table entries to new neighbor
980 *
981 * Send routine for bulk delivery of name table messages when contact
982 * with a new neighbor occurs. No link congestion checking is performed
983 * because name table messages *must* be delivered. The messages must be
984 * small enough not to require fragmentation.
985 * Called without any locks held.
986 */
987
988void tipc_link_send_names(struct list_head *message_list, u32 dest)
989{
990 struct tipc_node *n_ptr;
991 struct link *l_ptr;
992 struct sk_buff *buf;
993 struct sk_buff *temp_buf;
994
995 if (list_empty(message_list))
996 return;
997
998 read_lock_bh(&tipc_net_lock);
999 n_ptr = tipc_node_find(dest);
1000 if (n_ptr) {
1001 tipc_node_lock(n_ptr);
1002 l_ptr = n_ptr->active_links[0];
1003 if (l_ptr) {
1004 /* convert circular list to linear list */
1005 ((struct sk_buff *)message_list->prev)->next = NULL;
1006 link_add_chain_to_outqueue(l_ptr,
1007 (struct sk_buff *)message_list->next, 0);
1008 tipc_link_push_queue(l_ptr);
1009 INIT_LIST_HEAD(message_list);
1010 }
1011 tipc_node_unlock(n_ptr);
1012 }
1013 read_unlock_bh(&tipc_net_lock);
1014
1015 /* discard the messages if they couldn't be sent */
1016
1017 list_for_each_safe(buf, temp_buf, ((struct sk_buff *)message_list)) {
1018 list_del((struct list_head *)buf);
1019 buf_discard(buf);
1020 }
1021}
1022
1023/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001024 * link_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001025 * destination link is known and the header is complete,
1026 * inclusive total message length. Very time critical.
1027 * Link is locked. Returns user data length.
1028 */
1029
Sam Ravnborg05790c62006-03-20 22:37:04 -08001030static int link_send_buf_fast(struct link *l_ptr, struct sk_buff *buf,
1031 u32 *used_max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001032{
1033 struct tipc_msg *msg = buf_msg(buf);
1034 int res = msg_data_sz(msg);
1035
1036 if (likely(!link_congested(l_ptr))) {
Allan Stephens15e979d2010-05-11 14:30:10 +00001037 if (likely(msg_size(msg) <= l_ptr->max_pkt)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001038 if (likely(list_empty(&l_ptr->b_ptr->cong_links))) {
1039 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +01001040 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf,
1041 &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001042 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001043 return res;
1044 }
Per Liden4323add2006-01-18 00:38:21 +01001045 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001046 l_ptr->stats.bearer_congs++;
1047 l_ptr->next_out = buf;
1048 return res;
1049 }
Allan Stephens0e659672010-12-31 18:59:32 +00001050 } else
Allan Stephens15e979d2010-05-11 14:30:10 +00001051 *used_max_pkt = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001052 }
Per Liden4323add2006-01-18 00:38:21 +01001053 return tipc_link_send_buf(l_ptr, buf); /* All other cases */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001054}
1055
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001056/*
1057 * tipc_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001058 * destination node is known and the header is complete,
1059 * inclusive total message length.
1060 * Returns user data length.
1061 */
1062int tipc_send_buf_fast(struct sk_buff *buf, u32 destnode)
1063{
1064 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001065 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001066 int res;
1067 u32 selector = msg_origport(buf_msg(buf)) & 1;
1068 u32 dummy;
1069
Per Liden4323add2006-01-18 00:38:21 +01001070 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001071 n_ptr = tipc_node_find(destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001072 if (likely(n_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001073 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001074 l_ptr = n_ptr->active_links[selector];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001075 if (likely(l_ptr)) {
1076 res = link_send_buf_fast(l_ptr, buf, &dummy);
Per Liden4323add2006-01-18 00:38:21 +01001077 tipc_node_unlock(n_ptr);
1078 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001079 return res;
1080 }
Per Liden4323add2006-01-18 00:38:21 +01001081 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001082 }
Per Liden4323add2006-01-18 00:38:21 +01001083 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001084 res = msg_data_sz(buf_msg(buf));
1085 tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1086 return res;
1087}
1088
1089
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001090/*
1091 * tipc_link_send_sections_fast: Entry for messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001092 * destination processor is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001093 * except for total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001094 * Returns user data length or errno.
1095 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001096int tipc_link_send_sections_fast(struct tipc_port *sender,
Per Liden4323add2006-01-18 00:38:21 +01001097 struct iovec const *msg_sect,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001098 const u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001099 unsigned int total_len,
Per Liden4323add2006-01-18 00:38:21 +01001100 u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001101{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001102 struct tipc_msg *hdr = &sender->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001103 struct link *l_ptr;
1104 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -07001105 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001106 int res;
1107 u32 selector = msg_origport(hdr) & 1;
1108
Per Lidenb97bf3f2006-01-02 19:04:38 +01001109again:
1110 /*
1111 * Try building message using port's max_pkt hint.
1112 * (Must not hold any locks while building message.)
1113 */
1114
Allan Stephens26896902011-04-21 10:42:07 -05001115 res = tipc_msg_build(hdr, msg_sect, num_sect, total_len,
1116 sender->max_pkt, !sender->user_port, &buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001117
Per Liden4323add2006-01-18 00:38:21 +01001118 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001119 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001120 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001121 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001122 l_ptr = node->active_links[selector];
1123 if (likely(l_ptr)) {
1124 if (likely(buf)) {
1125 res = link_send_buf_fast(l_ptr, buf,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001126 &sender->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001127exit:
Per Liden4323add2006-01-18 00:38:21 +01001128 tipc_node_unlock(node);
1129 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001130 return res;
1131 }
1132
1133 /* Exit if build request was invalid */
1134
1135 if (unlikely(res < 0))
1136 goto exit;
1137
1138 /* Exit if link (or bearer) is congested */
1139
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001140 if (link_congested(l_ptr) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +01001141 !list_empty(&l_ptr->b_ptr->cong_links)) {
1142 res = link_schedule_port(l_ptr,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001143 sender->ref, res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001144 goto exit;
1145 }
1146
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001147 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001148 * Message size exceeds max_pkt hint; update hint,
1149 * then re-try fast path or fragment the message
1150 */
1151
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001152 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001153 tipc_node_unlock(node);
1154 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001155
1156
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001157 if ((msg_hdr_sz(hdr) + res) <= sender->max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001158 goto again;
1159
1160 return link_send_sections_long(sender, msg_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001161 num_sect, total_len,
1162 destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001163 }
Per Liden4323add2006-01-18 00:38:21 +01001164 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001165 }
Per Liden4323add2006-01-18 00:38:21 +01001166 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001167
1168 /* Couldn't find a link to the destination node */
1169
1170 if (buf)
1171 return tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1172 if (res >= 0)
Per Liden4323add2006-01-18 00:38:21 +01001173 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001174 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001175 return res;
1176}
1177
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001178/*
1179 * link_send_sections_long(): Entry for long messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001180 * destination node is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001181 * inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001182 * Link and bearer congestion status have been checked to be ok,
1183 * and are ignored if they change.
1184 *
1185 * Note that fragments do not use the full link MTU so that they won't have
1186 * to undergo refragmentation if link changeover causes them to be sent
1187 * over another link with an additional tunnel header added as prefix.
1188 * (Refragmentation will still occur if the other link has a smaller MTU.)
1189 *
1190 * Returns user data length or errno.
1191 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001192static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001193 struct iovec const *msg_sect,
1194 u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001195 unsigned int total_len,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001196 u32 destaddr)
1197{
1198 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001199 struct tipc_node *node;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001200 struct tipc_msg *hdr = &sender->phdr;
Allan Stephens26896902011-04-21 10:42:07 -05001201 u32 dsz = total_len;
Allan Stephens0e659672010-12-31 18:59:32 +00001202 u32 max_pkt, fragm_sz, rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001203 struct tipc_msg fragm_hdr;
Allan Stephens0e659672010-12-31 18:59:32 +00001204 struct sk_buff *buf, *buf_chain, *prev;
1205 u32 fragm_crs, fragm_rest, hsz, sect_rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001206 const unchar *sect_crs;
1207 int curr_sect;
1208 u32 fragm_no;
1209
1210again:
1211 fragm_no = 1;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001212 max_pkt = sender->max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001213 /* leave room for tunnel header in case of link changeover */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001214 fragm_sz = max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001215 /* leave room for fragmentation header in each fragment */
1216 rest = dsz;
1217 fragm_crs = 0;
1218 fragm_rest = 0;
1219 sect_rest = 0;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001220 sect_crs = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001221 curr_sect = -1;
1222
1223 /* Prepare reusable fragment header: */
1224
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001225 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07001226 INT_H_SIZE, msg_destnode(hdr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001227 msg_set_size(&fragm_hdr, max_pkt);
1228 msg_set_fragm_no(&fragm_hdr, 1);
1229
1230 /* Prepare header of first fragment: */
1231
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001232 buf_chain = buf = tipc_buf_acquire(max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001233 if (!buf)
1234 return -ENOMEM;
1235 buf->next = NULL;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001236 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001237 hsz = msg_hdr_sz(hdr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001238 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, hdr, hsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001239
1240 /* Chop up message: */
1241
1242 fragm_crs = INT_H_SIZE + hsz;
1243 fragm_rest = fragm_sz - hsz;
1244
1245 do { /* For all sections */
1246 u32 sz;
1247
1248 if (!sect_rest) {
1249 sect_rest = msg_sect[++curr_sect].iov_len;
1250 sect_crs = (const unchar *)msg_sect[curr_sect].iov_base;
1251 }
1252
1253 if (sect_rest < fragm_rest)
1254 sz = sect_rest;
1255 else
1256 sz = fragm_rest;
1257
1258 if (likely(!sender->user_port)) {
1259 if (copy_from_user(buf->data + fragm_crs, sect_crs, sz)) {
1260error:
1261 for (; buf_chain; buf_chain = buf) {
1262 buf = buf_chain->next;
1263 buf_discard(buf_chain);
1264 }
1265 return -EFAULT;
1266 }
1267 } else
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001268 skb_copy_to_linear_data_offset(buf, fragm_crs,
1269 sect_crs, sz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001270 sect_crs += sz;
1271 sect_rest -= sz;
1272 fragm_crs += sz;
1273 fragm_rest -= sz;
1274 rest -= sz;
1275
1276 if (!fragm_rest && rest) {
1277
1278 /* Initiate new fragment: */
1279 if (rest <= fragm_sz) {
1280 fragm_sz = rest;
Allan Stephens0e659672010-12-31 18:59:32 +00001281 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001282 } else {
1283 msg_set_type(&fragm_hdr, FRAGMENT);
1284 }
1285 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
1286 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
1287 prev = buf;
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001288 buf = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001289 if (!buf)
1290 goto error;
1291
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001292 buf->next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001293 prev->next = buf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001294 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001295 fragm_crs = INT_H_SIZE;
1296 fragm_rest = fragm_sz;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001297 }
Allan Stephens0e659672010-12-31 18:59:32 +00001298 } while (rest > 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001299
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001300 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001301 * Now we have a buffer chain. Select a link and check
1302 * that packet size is still OK
1303 */
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001304 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001305 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001306 tipc_node_lock(node);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001307 l_ptr = node->active_links[sender->ref & 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001308 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01001309 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001310 goto reject;
1311 }
Allan Stephens15e979d2010-05-11 14:30:10 +00001312 if (l_ptr->max_pkt < max_pkt) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001313 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001314 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001315 for (; buf_chain; buf_chain = buf) {
1316 buf = buf_chain->next;
1317 buf_discard(buf_chain);
1318 }
1319 goto again;
1320 }
1321 } else {
1322reject:
1323 for (; buf_chain; buf_chain = buf) {
1324 buf = buf_chain->next;
1325 buf_discard(buf_chain);
1326 }
Per Liden4323add2006-01-18 00:38:21 +01001327 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001328 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001329 }
1330
Allan Stephensdc63d912011-04-21 11:50:42 -04001331 /* Append chain of fragments to send queue & send them */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001332
Allan Stephense0f08592011-04-17 11:44:24 -04001333 l_ptr->long_msg_seq_no++;
Allan Stephensdc63d912011-04-21 11:50:42 -04001334 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
1335 l_ptr->stats.sent_fragments += fragm_no;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001336 l_ptr->stats.sent_fragmented++;
Per Liden4323add2006-01-18 00:38:21 +01001337 tipc_link_push_queue(l_ptr);
1338 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001339 return dsz;
1340}
1341
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001342/*
Per Liden4323add2006-01-18 00:38:21 +01001343 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +01001344 */
Per Liden4323add2006-01-18 00:38:21 +01001345u32 tipc_link_push_packet(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001346{
1347 struct sk_buff *buf = l_ptr->first_out;
1348 u32 r_q_size = l_ptr->retransm_queue_size;
1349 u32 r_q_head = l_ptr->retransm_queue_head;
1350
1351 /* Step to position where retransmission failed, if any, */
1352 /* consider that buffers may have been released in meantime */
1353
1354 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001355 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +01001356 link_last_sent(l_ptr));
Allan Stephensf9057302011-10-24 16:03:12 -04001357 u32 first = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001358
1359 while (buf && less(first, r_q_head)) {
1360 first = mod(first + 1);
1361 buf = buf->next;
1362 }
1363 l_ptr->retransm_queue_head = r_q_head = first;
1364 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1365 }
1366
1367 /* Continue retransmission now, if there is anything: */
1368
Neil Hormanca509102010-03-15 07:58:45 +00001369 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001370 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001371 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001372 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001373 l_ptr->retransm_queue_head = mod(++r_q_head);
1374 l_ptr->retransm_queue_size = --r_q_size;
1375 l_ptr->stats.retransmitted++;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001376 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001377 } else {
1378 l_ptr->stats.bearer_congs++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001379 return PUSH_FAILED;
1380 }
1381 }
1382
1383 /* Send deferred protocol message, if any: */
1384
1385 buf = l_ptr->proto_msg_queue;
1386 if (buf) {
1387 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +00001388 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001389 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001390 l_ptr->unacked_window = 0;
1391 buf_discard(buf);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001392 l_ptr->proto_msg_queue = NULL;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001393 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001394 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001395 l_ptr->stats.bearer_congs++;
1396 return PUSH_FAILED;
1397 }
1398 }
1399
1400 /* Send one deferred data message, if send window not full: */
1401
1402 buf = l_ptr->next_out;
1403 if (buf) {
1404 struct tipc_msg *msg = buf_msg(buf);
1405 u32 next = msg_seqno(msg);
Allan Stephensf9057302011-10-24 16:03:12 -04001406 u32 first = buf_seqno(l_ptr->first_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001407
1408 if (mod(next - first) < l_ptr->queue_limit[0]) {
1409 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001410 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001411 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001412 if (msg_user(msg) == MSG_BUNDLER)
1413 msg_set_type(msg, CLOSED_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001414 l_ptr->next_out = buf->next;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001415 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001416 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001417 l_ptr->stats.bearer_congs++;
1418 return PUSH_FAILED;
1419 }
1420 }
1421 }
1422 return PUSH_FINISHED;
1423}
1424
1425/*
1426 * push_queue(): push out the unsent messages of a link where
1427 * congestion has abated. Node is locked
1428 */
Per Liden4323add2006-01-18 00:38:21 +01001429void tipc_link_push_queue(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001430{
1431 u32 res;
1432
Per Liden4323add2006-01-18 00:38:21 +01001433 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001434 return;
1435
1436 do {
Per Liden4323add2006-01-18 00:38:21 +01001437 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001438 } while (!res);
1439
Per Lidenb97bf3f2006-01-02 19:04:38 +01001440 if (res == PUSH_FAILED)
Per Liden4323add2006-01-18 00:38:21 +01001441 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001442}
1443
Allan Stephensd356eeb2006-06-25 23:40:01 -07001444static void link_reset_all(unsigned long addr)
1445{
David S. Miller6c000552008-09-02 23:38:32 -07001446 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001447 char addr_string[16];
1448 u32 i;
1449
1450 read_lock_bh(&tipc_net_lock);
1451 n_ptr = tipc_node_find((u32)addr);
1452 if (!n_ptr) {
1453 read_unlock_bh(&tipc_net_lock);
1454 return; /* node no longer exists */
1455 }
1456
1457 tipc_node_lock(n_ptr);
1458
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001459 warn("Resetting all links to %s\n",
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001460 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -07001461
1462 for (i = 0; i < MAX_BEARERS; i++) {
1463 if (n_ptr->links[i]) {
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001464 link_print(n_ptr->links[i], "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001465 tipc_link_reset(n_ptr->links[i]);
1466 }
1467 }
1468
1469 tipc_node_unlock(n_ptr);
1470 read_unlock_bh(&tipc_net_lock);
1471}
1472
1473static void link_retransmit_failure(struct link *l_ptr, struct sk_buff *buf)
1474{
1475 struct tipc_msg *msg = buf_msg(buf);
1476
1477 warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001478
1479 if (l_ptr->addr) {
1480
1481 /* Handle failure on standard link */
1482
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001483 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001484 tipc_link_reset(l_ptr);
1485
1486 } else {
1487
1488 /* Handle failure on broadcast link */
1489
David S. Miller6c000552008-09-02 23:38:32 -07001490 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001491 char addr_string[16];
1492
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001493 info("Msg seq number: %u, ", msg_seqno(msg));
1494 info("Outstanding acks: %lu\n",
1495 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -07001496
Allan Stephens01d83ed2011-01-18 13:53:16 -05001497 n_ptr = tipc_bclink_retransmit_to();
Allan Stephensd356eeb2006-06-25 23:40:01 -07001498 tipc_node_lock(n_ptr);
1499
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001500 tipc_addr_string_fill(addr_string, n_ptr->addr);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001501 info("Multicast link info for %s\n", addr_string);
1502 info("Supported: %d, ", n_ptr->bclink.supported);
1503 info("Acked: %u\n", n_ptr->bclink.acked);
1504 info("Last in: %u, ", n_ptr->bclink.last_in);
1505 info("Gap after: %u, ", n_ptr->bclink.gap_after);
1506 info("Gap to: %u\n", n_ptr->bclink.gap_to);
1507 info("Nack sync: %u\n\n", n_ptr->bclink.nack_sync);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001508
1509 tipc_k_signal((Handler)link_reset_all, (unsigned long)n_ptr->addr);
1510
1511 tipc_node_unlock(n_ptr);
1512
1513 l_ptr->stale_count = 0;
1514 }
1515}
1516
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001517void tipc_link_retransmit(struct link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001518 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001519{
1520 struct tipc_msg *msg;
1521
Allan Stephensd356eeb2006-06-25 23:40:01 -07001522 if (!buf)
1523 return;
1524
1525 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001526
Allan Stephensd356eeb2006-06-25 23:40:01 -07001527 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
Neil Hormanca509102010-03-15 07:58:45 +00001528 if (l_ptr->retransm_queue_size == 0) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001529 l_ptr->retransm_queue_head = msg_seqno(msg);
1530 l_ptr->retransm_queue_size = retransmits;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001531 } else {
Neil Hormanca509102010-03-15 07:58:45 +00001532 err("Unexpected retransmit on link %s (qsize=%d)\n",
1533 l_ptr->name, l_ptr->retransm_queue_size);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001534 }
Neil Hormanca509102010-03-15 07:58:45 +00001535 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001536 } else {
1537 /* Detect repeated retransmit failures on uncongested bearer */
1538
1539 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1540 if (++l_ptr->stale_count > 100) {
1541 link_retransmit_failure(l_ptr, buf);
1542 return;
1543 }
1544 } else {
1545 l_ptr->last_retransmitted = msg_seqno(msg);
1546 l_ptr->stale_count = 1;
1547 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001548 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001549
Neil Hormanca509102010-03-15 07:58:45 +00001550 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001551 msg = buf_msg(buf);
1552 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001553 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001554 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001555 buf = buf->next;
1556 retransmits--;
1557 l_ptr->stats.retransmitted++;
1558 } else {
Per Liden4323add2006-01-18 00:38:21 +01001559 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001560 l_ptr->stats.bearer_congs++;
Allan Stephensf9057302011-10-24 16:03:12 -04001561 l_ptr->retransm_queue_head = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001562 l_ptr->retransm_queue_size = retransmits;
1563 return;
1564 }
1565 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001566
Per Lidenb97bf3f2006-01-02 19:04:38 +01001567 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1568}
1569
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001570/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001571 * link_insert_deferred_queue - insert deferred messages back into receive chain
1572 */
1573
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001574static struct sk_buff *link_insert_deferred_queue(struct link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001575 struct sk_buff *buf)
1576{
1577 u32 seq_no;
1578
1579 if (l_ptr->oldest_deferred_in == NULL)
1580 return buf;
1581
Allan Stephensf9057302011-10-24 16:03:12 -04001582 seq_no = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001583 if (seq_no == mod(l_ptr->next_in_no)) {
1584 l_ptr->newest_deferred_in->next = buf;
1585 buf = l_ptr->oldest_deferred_in;
1586 l_ptr->oldest_deferred_in = NULL;
1587 l_ptr->deferred_inqueue_sz = 0;
1588 }
1589 return buf;
1590}
1591
Allan Stephens85035562008-04-15 19:04:54 -07001592/**
1593 * link_recv_buf_validate - validate basic format of received message
1594 *
1595 * This routine ensures a TIPC message has an acceptable header, and at least
1596 * as much data as the header indicates it should. The routine also ensures
1597 * that the entire message header is stored in the main fragment of the message
1598 * buffer, to simplify future access to message header fields.
1599 *
1600 * Note: Having extra info present in the message header or data areas is OK.
1601 * TIPC will ignore the excess, under the assumption that it is optional info
1602 * introduced by a later release of the protocol.
1603 */
1604
1605static int link_recv_buf_validate(struct sk_buff *buf)
1606{
1607 static u32 min_data_hdr_size[8] = {
Allan Stephens741d9eb2011-05-31 15:03:18 -04001608 SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,
Allan Stephens85035562008-04-15 19:04:54 -07001609 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1610 };
1611
1612 struct tipc_msg *msg;
1613 u32 tipc_hdr[2];
1614 u32 size;
1615 u32 hdr_size;
1616 u32 min_hdr_size;
1617
1618 if (unlikely(buf->len < MIN_H_SIZE))
1619 return 0;
1620
1621 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1622 if (msg == NULL)
1623 return 0;
1624
1625 if (unlikely(msg_version(msg) != TIPC_VERSION))
1626 return 0;
1627
1628 size = msg_size(msg);
1629 hdr_size = msg_hdr_sz(msg);
1630 min_hdr_size = msg_isdata(msg) ?
1631 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1632
1633 if (unlikely((hdr_size < min_hdr_size) ||
1634 (size < hdr_size) ||
1635 (buf->len < size) ||
1636 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1637 return 0;
1638
1639 return pskb_may_pull(buf, hdr_size);
1640}
1641
Allan Stephensb02b69c2010-08-17 11:00:07 +00001642/**
1643 * tipc_recv_msg - process TIPC messages arriving from off-node
1644 * @head: pointer to message buffer chain
1645 * @tb_ptr: pointer to bearer message arrived on
1646 *
1647 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1648 * structure (i.e. cannot be NULL), but bearer can be inactive.
1649 */
1650
Allan Stephens2d627b92011-01-07 13:00:11 -05001651void tipc_recv_msg(struct sk_buff *head, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001652{
Per Liden4323add2006-01-18 00:38:21 +01001653 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001654 while (head) {
David S. Miller6c000552008-09-02 23:38:32 -07001655 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001656 struct link *l_ptr;
1657 struct sk_buff *crs;
1658 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001659 struct tipc_msg *msg;
1660 u32 seq_no;
1661 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001662 u32 released = 0;
1663 int type;
1664
Per Lidenb97bf3f2006-01-02 19:04:38 +01001665 head = head->next;
Allan Stephens85035562008-04-15 19:04:54 -07001666
Allan Stephensb02b69c2010-08-17 11:00:07 +00001667 /* Ensure bearer is still enabled */
1668
1669 if (unlikely(!b_ptr->active))
1670 goto cont;
1671
Allan Stephens85035562008-04-15 19:04:54 -07001672 /* Ensure message is well-formed */
1673
1674 if (unlikely(!link_recv_buf_validate(buf)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001675 goto cont;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001676
Allan Stephensfe13dda2008-04-15 19:03:23 -07001677 /* Ensure message data is a single contiguous unit */
1678
Allan Stephensa0168922010-12-31 18:59:35 +00001679 if (unlikely(buf_linearize(buf)))
Allan Stephensfe13dda2008-04-15 19:03:23 -07001680 goto cont;
Allan Stephensfe13dda2008-04-15 19:03:23 -07001681
Allan Stephens85035562008-04-15 19:04:54 -07001682 /* Handle arrival of a non-unicast link message */
1683
1684 msg = buf_msg(buf);
1685
Per Lidenb97bf3f2006-01-02 19:04:38 +01001686 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001687 if (msg_user(msg) == LINK_CONFIG)
1688 tipc_disc_recv_msg(buf, b_ptr);
1689 else
1690 tipc_bclink_recv_pkt(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001691 continue;
1692 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001693
Allan Stephensed33a9c2011-04-05 15:15:04 -04001694 /* Discard unicast link messages destined for another node */
1695
Allan Stephens26008242006-06-25 23:39:31 -07001696 if (unlikely(!msg_short(msg) &&
1697 (msg_destnode(msg) != tipc_own_addr)))
1698 goto cont;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001699
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001700 /* Locate neighboring node that sent message */
Allan Stephens85035562008-04-15 19:04:54 -07001701
Per Liden4323add2006-01-18 00:38:21 +01001702 n_ptr = tipc_node_find(msg_prevnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001703 if (unlikely(!n_ptr))
1704 goto cont;
Per Liden4323add2006-01-18 00:38:21 +01001705 tipc_node_lock(n_ptr);
Allan Stephens85035562008-04-15 19:04:54 -07001706
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001707 /* Locate unicast link endpoint that should handle message */
1708
Per Lidenb97bf3f2006-01-02 19:04:38 +01001709 l_ptr = n_ptr->links[b_ptr->identity];
1710 if (unlikely(!l_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001711 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001712 goto cont;
1713 }
Allan Stephens85035562008-04-15 19:04:54 -07001714
Allan Stephensb4b56102011-05-27 11:00:51 -04001715 /* Verify that communication with node is currently allowed */
1716
1717 if ((n_ptr->block_setup & WAIT_PEER_DOWN) &&
1718 msg_user(msg) == LINK_PROTOCOL &&
1719 (msg_type(msg) == RESET_MSG ||
1720 msg_type(msg) == ACTIVATE_MSG) &&
1721 !msg_redundant_link(msg))
1722 n_ptr->block_setup &= ~WAIT_PEER_DOWN;
1723
1724 if (n_ptr->block_setup) {
1725 tipc_node_unlock(n_ptr);
1726 goto cont;
1727 }
1728
Allan Stephens85035562008-04-15 19:04:54 -07001729 /* Validate message sequence number info */
1730
1731 seq_no = msg_seqno(msg);
1732 ackd = msg_ack(msg);
1733
1734 /* Release acked messages */
1735
Allan Stephens365595912011-10-24 15:26:24 -04001736 if (tipc_node_is_up(n_ptr) && n_ptr->bclink.supported)
1737 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001738
1739 crs = l_ptr->first_out;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001740 while ((crs != l_ptr->next_out) &&
Allan Stephensf9057302011-10-24 16:03:12 -04001741 less_eq(buf_seqno(crs), ackd)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001742 struct sk_buff *next = crs->next;
1743
1744 buf_discard(crs);
1745 crs = next;
1746 released++;
1747 }
1748 if (released) {
1749 l_ptr->first_out = crs;
1750 l_ptr->out_queue_size -= released;
1751 }
Allan Stephens85035562008-04-15 19:04:54 -07001752
1753 /* Try sending any messages link endpoint has pending */
1754
Per Lidenb97bf3f2006-01-02 19:04:38 +01001755 if (unlikely(l_ptr->next_out))
Per Liden4323add2006-01-18 00:38:21 +01001756 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001757 if (unlikely(!list_empty(&l_ptr->waiting_ports)))
Per Liden4323add2006-01-18 00:38:21 +01001758 tipc_link_wakeup_ports(l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001759 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1760 l_ptr->stats.sent_acks++;
Per Liden4323add2006-01-18 00:38:21 +01001761 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001762 }
1763
Allan Stephens85035562008-04-15 19:04:54 -07001764 /* Now (finally!) process the incoming message */
1765
Per Lidenb97bf3f2006-01-02 19:04:38 +01001766protocol_check:
1767 if (likely(link_working_working(l_ptr))) {
1768 if (likely(seq_no == mod(l_ptr->next_in_no))) {
1769 l_ptr->next_in_no++;
1770 if (unlikely(l_ptr->oldest_deferred_in))
1771 head = link_insert_deferred_queue(l_ptr,
1772 head);
1773 if (likely(msg_is_dest(msg, tipc_own_addr))) {
1774deliver:
1775 if (likely(msg_isdata(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01001776 tipc_node_unlock(n_ptr);
1777 tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001778 continue;
1779 }
1780 switch (msg_user(msg)) {
1781 case MSG_BUNDLER:
1782 l_ptr->stats.recv_bundles++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001783 l_ptr->stats.recv_bundled +=
Per Lidenb97bf3f2006-01-02 19:04:38 +01001784 msg_msgcnt(msg);
Per Liden4323add2006-01-18 00:38:21 +01001785 tipc_node_unlock(n_ptr);
1786 tipc_link_recv_bundle(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001787 continue;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001788 case NAME_DISTRIBUTOR:
Per Liden4323add2006-01-18 00:38:21 +01001789 tipc_node_unlock(n_ptr);
1790 tipc_named_recv(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001791 continue;
1792 case CONN_MANAGER:
Per Liden4323add2006-01-18 00:38:21 +01001793 tipc_node_unlock(n_ptr);
1794 tipc_port_recv_proto_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001795 continue;
1796 case MSG_FRAGMENTER:
1797 l_ptr->stats.recv_fragments++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001798 if (tipc_link_recv_fragment(&l_ptr->defragm_buf,
Per Liden4323add2006-01-18 00:38:21 +01001799 &buf, &msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001800 l_ptr->stats.recv_fragmented++;
1801 goto deliver;
1802 }
1803 break;
1804 case CHANGEOVER_PROTOCOL:
1805 type = msg_type(msg);
Per Liden4323add2006-01-18 00:38:21 +01001806 if (link_recv_changeover_msg(&l_ptr, &buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001807 msg = buf_msg(buf);
1808 seq_no = msg_seqno(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001809 if (type == ORIGINAL_MSG)
1810 goto deliver;
1811 goto protocol_check;
1812 }
1813 break;
Allan Stephens7945c1f2011-03-11 13:09:28 -05001814 default:
1815 buf_discard(buf);
1816 buf = NULL;
1817 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001818 }
1819 }
Per Liden4323add2006-01-18 00:38:21 +01001820 tipc_node_unlock(n_ptr);
1821 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001822 continue;
1823 }
1824 link_handle_out_of_seq_msg(l_ptr, buf);
1825 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001826 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001827 continue;
1828 }
1829
1830 if (msg_user(msg) == LINK_PROTOCOL) {
1831 link_recv_proto_msg(l_ptr, buf);
1832 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001833 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001834 continue;
1835 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001836 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1837
1838 if (link_working_working(l_ptr)) {
1839 /* Re-insert in front of queue */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001840 buf->next = head;
1841 head = buf;
Per Liden4323add2006-01-18 00:38:21 +01001842 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001843 continue;
1844 }
Per Liden4323add2006-01-18 00:38:21 +01001845 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001846cont:
1847 buf_discard(buf);
1848 }
Per Liden4323add2006-01-18 00:38:21 +01001849 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001850}
1851
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001852/*
1853 * link_defer_buf(): Sort a received out-of-sequence packet
Per Lidenb97bf3f2006-01-02 19:04:38 +01001854 * into the deferred reception queue.
1855 * Returns the increase of the queue length,i.e. 0 or 1
1856 */
1857
Per Liden4323add2006-01-18 00:38:21 +01001858u32 tipc_link_defer_pkt(struct sk_buff **head,
1859 struct sk_buff **tail,
1860 struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001861{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001862 struct sk_buff *prev = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001863 struct sk_buff *crs = *head;
Allan Stephensf9057302011-10-24 16:03:12 -04001864 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001865
1866 buf->next = NULL;
1867
1868 /* Empty queue ? */
1869 if (*head == NULL) {
1870 *head = *tail = buf;
1871 return 1;
1872 }
1873
1874 /* Last ? */
Allan Stephensf9057302011-10-24 16:03:12 -04001875 if (less(buf_seqno(*tail), seq_no)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001876 (*tail)->next = buf;
1877 *tail = buf;
1878 return 1;
1879 }
1880
1881 /* Scan through queue and sort it in */
1882 do {
1883 struct tipc_msg *msg = buf_msg(crs);
1884
1885 if (less(seq_no, msg_seqno(msg))) {
1886 buf->next = crs;
1887 if (prev)
1888 prev->next = buf;
1889 else
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001890 *head = buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001891 return 1;
1892 }
Allan Stephensa0168922010-12-31 18:59:35 +00001893 if (seq_no == msg_seqno(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001894 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001895 prev = crs;
1896 crs = crs->next;
Allan Stephens0e659672010-12-31 18:59:32 +00001897 } while (crs);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001898
1899 /* Message is a duplicate of an existing message */
1900
1901 buf_discard(buf);
1902 return 0;
1903}
1904
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001905/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001906 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1907 */
1908
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001909static void link_handle_out_of_seq_msg(struct link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001910 struct sk_buff *buf)
1911{
Allan Stephensf9057302011-10-24 16:03:12 -04001912 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001913
1914 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
1915 link_recv_proto_msg(l_ptr, buf);
1916 return;
1917 }
1918
Per Lidenb97bf3f2006-01-02 19:04:38 +01001919 /* Record OOS packet arrival (force mismatch on next timeout) */
1920
1921 l_ptr->checkpoint--;
1922
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001923 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001924 * Discard packet if a duplicate; otherwise add it to deferred queue
1925 * and notify peer of gap as per protocol specification
1926 */
1927
1928 if (less(seq_no, mod(l_ptr->next_in_no))) {
1929 l_ptr->stats.duplicates++;
1930 buf_discard(buf);
1931 return;
1932 }
1933
Per Liden4323add2006-01-18 00:38:21 +01001934 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1935 &l_ptr->newest_deferred_in, buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001936 l_ptr->deferred_inqueue_sz++;
1937 l_ptr->stats.deferred_recv++;
1938 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
Per Liden4323add2006-01-18 00:38:21 +01001939 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001940 } else
1941 l_ptr->stats.duplicates++;
1942}
1943
1944/*
1945 * Send protocol message to the other endpoint.
1946 */
Per Liden4323add2006-01-18 00:38:21 +01001947void tipc_link_send_proto_msg(struct link *l_ptr, u32 msg_typ, int probe_msg,
1948 u32 gap, u32 tolerance, u32 priority, u32 ack_mtu)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001949{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001950 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001951 struct tipc_msg *msg = l_ptr->pmsg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001952 u32 msg_size = sizeof(l_ptr->proto_msg);
Allan Stephens75f0aa42011-02-28 15:30:20 -05001953 int r_flag;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001954
1955 if (link_blocked(l_ptr))
1956 return;
Allan Stephensb4b56102011-05-27 11:00:51 -04001957
1958 /* Abort non-RESET send if communication with node is prohibited */
1959
1960 if ((l_ptr->owner->block_setup) && (msg_typ != RESET_MSG))
1961 return;
1962
Per Lidenb97bf3f2006-01-02 19:04:38 +01001963 msg_set_type(msg, msg_typ);
1964 msg_set_net_plane(msg, l_ptr->b_ptr->net_plane);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001965 msg_set_bcast_ack(msg, mod(l_ptr->owner->bclink.last_in));
Per Liden4323add2006-01-18 00:38:21 +01001966 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
Per Lidenb97bf3f2006-01-02 19:04:38 +01001967
1968 if (msg_typ == STATE_MSG) {
1969 u32 next_sent = mod(l_ptr->next_out_no);
1970
Per Liden4323add2006-01-18 00:38:21 +01001971 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001972 return;
1973 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -04001974 next_sent = buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001975 msg_set_next_sent(msg, next_sent);
1976 if (l_ptr->oldest_deferred_in) {
Allan Stephensf9057302011-10-24 16:03:12 -04001977 u32 rec = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001978 gap = mod(rec - mod(l_ptr->next_in_no));
1979 }
1980 msg_set_seq_gap(msg, gap);
1981 if (gap)
1982 l_ptr->stats.sent_nacks++;
1983 msg_set_link_tolerance(msg, tolerance);
1984 msg_set_linkprio(msg, priority);
1985 msg_set_max_pkt(msg, ack_mtu);
1986 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1987 msg_set_probe(msg, probe_msg != 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001988 if (probe_msg) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001989 u32 mtu = l_ptr->max_pkt;
1990
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001991 if ((mtu < l_ptr->max_pkt_target) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001992 link_working_working(l_ptr) &&
1993 l_ptr->fsm_msg_cnt) {
1994 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001995 if (l_ptr->max_pkt_probes == 10) {
1996 l_ptr->max_pkt_target = (msg_size - 4);
1997 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001998 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001999 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002000 l_ptr->max_pkt_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002001 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002002
2003 l_ptr->stats.sent_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002004 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002005 l_ptr->stats.sent_states++;
2006 } else { /* RESET_MSG or ACTIVATE_MSG */
2007 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
2008 msg_set_seq_gap(msg, 0);
2009 msg_set_next_sent(msg, 1);
Allan Stephensf23d9bf2011-01-18 15:15:34 -05002010 msg_set_probe(msg, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002011 msg_set_link_tolerance(msg, l_ptr->tolerance);
2012 msg_set_linkprio(msg, l_ptr->priority);
2013 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
2014 }
2015
Allan Stephens75f0aa42011-02-28 15:30:20 -05002016 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
2017 msg_set_redundant_link(msg, r_flag);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002018 msg_set_linkprio(msg, l_ptr->priority);
2019
2020 /* Ensure sequence number will not fit : */
2021
2022 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
2023
2024 /* Congestion? */
2025
Per Liden4323add2006-01-18 00:38:21 +01002026 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002027 if (!l_ptr->proto_msg_queue) {
2028 l_ptr->proto_msg_queue =
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002029 tipc_buf_acquire(sizeof(l_ptr->proto_msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002030 }
2031 buf = l_ptr->proto_msg_queue;
2032 if (!buf)
2033 return;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002034 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002035 return;
2036 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002037
2038 /* Message can be sent */
2039
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002040 buf = tipc_buf_acquire(msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002041 if (!buf)
2042 return;
2043
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002044 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002045 msg_set_size(buf_msg(buf), msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002046
Per Liden4323add2006-01-18 00:38:21 +01002047 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002048 l_ptr->unacked_window = 0;
2049 buf_discard(buf);
2050 return;
2051 }
2052
2053 /* New congestion */
Per Liden4323add2006-01-18 00:38:21 +01002054 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002055 l_ptr->proto_msg_queue = buf;
2056 l_ptr->stats.bearer_congs++;
2057}
2058
2059/*
2060 * Receive protocol message :
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002061 * Note that network plane id propagates through the network, and may
2062 * change at any time. The node with lowest address rules
Per Lidenb97bf3f2006-01-02 19:04:38 +01002063 */
2064
2065static void link_recv_proto_msg(struct link *l_ptr, struct sk_buff *buf)
2066{
2067 u32 rec_gap = 0;
2068 u32 max_pkt_info;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002069 u32 max_pkt_ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002070 u32 msg_tol;
2071 struct tipc_msg *msg = buf_msg(buf);
2072
Per Lidenb97bf3f2006-01-02 19:04:38 +01002073 if (link_blocked(l_ptr))
2074 goto exit;
2075
2076 /* record unnumbered packet arrival (force mismatch on next timeout) */
2077
2078 l_ptr->checkpoint--;
2079
2080 if (l_ptr->b_ptr->net_plane != msg_net_plane(msg))
2081 if (tipc_own_addr > msg_prevnode(msg))
2082 l_ptr->b_ptr->net_plane = msg_net_plane(msg);
2083
2084 l_ptr->owner->permit_changeover = msg_redundant_link(msg);
2085
2086 switch (msg_type(msg)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002087
Per Lidenb97bf3f2006-01-02 19:04:38 +01002088 case RESET_MSG:
Allan Stephensa686e682008-06-04 17:29:39 -07002089 if (!link_working_unknown(l_ptr) &&
2090 (l_ptr->peer_session != INVALID_SESSION)) {
Allan Stephens641c2182011-04-07 09:54:43 -04002091 if (less_eq(msg_session(msg), l_ptr->peer_session))
2092 break; /* duplicate or old reset: ignore */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002093 }
Allan Stephensb4b56102011-05-27 11:00:51 -04002094
2095 if (!msg_redundant_link(msg) && (link_working_working(l_ptr) ||
2096 link_working_unknown(l_ptr))) {
2097 /*
2098 * peer has lost contact -- don't allow peer's links
2099 * to reactivate before we recognize loss & clean up
2100 */
2101 l_ptr->owner->block_setup = WAIT_NODE_DOWN;
2102 }
2103
Per Lidenb97bf3f2006-01-02 19:04:38 +01002104 /* fall thru' */
2105 case ACTIVATE_MSG:
2106 /* Update link settings according other endpoint's values */
2107
2108 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
2109
Allan Stephens2db99832010-12-31 18:59:33 +00002110 msg_tol = msg_link_tolerance(msg);
2111 if (msg_tol > l_ptr->tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002112 link_set_supervision_props(l_ptr, msg_tol);
2113
2114 if (msg_linkprio(msg) > l_ptr->priority)
2115 l_ptr->priority = msg_linkprio(msg);
2116
2117 max_pkt_info = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002118 if (max_pkt_info) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002119 if (max_pkt_info < l_ptr->max_pkt_target)
2120 l_ptr->max_pkt_target = max_pkt_info;
2121 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
2122 l_ptr->max_pkt = l_ptr->max_pkt_target;
2123 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002124 l_ptr->max_pkt = l_ptr->max_pkt_target;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002125 }
2126 l_ptr->owner->bclink.supported = (max_pkt_info != 0);
2127
2128 link_state_event(l_ptr, msg_type(msg));
2129
2130 l_ptr->peer_session = msg_session(msg);
2131 l_ptr->peer_bearer_id = msg_bearer_id(msg);
2132
2133 /* Synchronize broadcast sequence numbers */
Paul Gortmaker8f19afb2011-02-28 11:36:21 -04002134 if (!tipc_node_redundant_links(l_ptr->owner))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002135 l_ptr->owner->bclink.last_in = mod(msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002136 break;
2137 case STATE_MSG:
2138
Allan Stephens2db99832010-12-31 18:59:33 +00002139 msg_tol = msg_link_tolerance(msg);
2140 if (msg_tol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002141 link_set_supervision_props(l_ptr, msg_tol);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002142
2143 if (msg_linkprio(msg) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002144 (msg_linkprio(msg) != l_ptr->priority)) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002145 warn("Resetting link <%s>, priority change %u->%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002146 l_ptr->name, l_ptr->priority, msg_linkprio(msg));
2147 l_ptr->priority = msg_linkprio(msg);
Per Liden4323add2006-01-18 00:38:21 +01002148 tipc_link_reset(l_ptr); /* Enforce change to take effect */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002149 break;
2150 }
2151 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
2152 l_ptr->stats.recv_states++;
2153 if (link_reset_unknown(l_ptr))
2154 break;
2155
2156 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002157 rec_gap = mod(msg_next_sent(msg) -
Per Lidenb97bf3f2006-01-02 19:04:38 +01002158 mod(l_ptr->next_in_no));
2159 }
2160
2161 max_pkt_ack = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002162 if (max_pkt_ack > l_ptr->max_pkt) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002163 l_ptr->max_pkt = max_pkt_ack;
2164 l_ptr->max_pkt_probes = 0;
2165 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002166
2167 max_pkt_ack = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002168 if (msg_probe(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002169 l_ptr->stats.recv_probes++;
Allan Stephensa0168922010-12-31 18:59:35 +00002170 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002171 max_pkt_ack = msg_size(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002172 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002173
2174 /* Protocol message before retransmits, reduce loss risk */
2175
Per Liden4323add2006-01-18 00:38:21 +01002176 tipc_bclink_check_gap(l_ptr->owner, msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002177
2178 if (rec_gap || (msg_probe(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01002179 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
2180 0, rec_gap, 0, 0, max_pkt_ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002181 }
2182 if (msg_seq_gap(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002183 l_ptr->stats.recv_nacks++;
Per Liden4323add2006-01-18 00:38:21 +01002184 tipc_link_retransmit(l_ptr, l_ptr->first_out,
2185 msg_seq_gap(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002186 }
2187 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002188 }
2189exit:
2190 buf_discard(buf);
2191}
2192
2193
2194/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002195 * tipc_link_tunnel(): Send one message via a link belonging to
Per Lidenb97bf3f2006-01-02 19:04:38 +01002196 * another bearer. Owner node is locked.
2197 */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002198static void tipc_link_tunnel(struct link *l_ptr,
2199 struct tipc_msg *tunnel_hdr,
2200 struct tipc_msg *msg,
2201 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002202{
2203 struct link *tunnel;
2204 struct sk_buff *buf;
2205 u32 length = msg_size(msg);
2206
2207 tunnel = l_ptr->owner->active_links[selector & 1];
Allan Stephens5392d642006-06-25 23:52:50 -07002208 if (!tipc_link_is_up(tunnel)) {
2209 warn("Link changeover error, "
2210 "tunnel link no longer available\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002211 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002212 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002213 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002214 buf = tipc_buf_acquire(length + INT_H_SIZE);
Allan Stephens5392d642006-06-25 23:52:50 -07002215 if (!buf) {
2216 warn("Link changeover error, "
2217 "unable to send tunnel msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002218 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002219 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002220 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
2221 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
Per Liden4323add2006-01-18 00:38:21 +01002222 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002223}
2224
2225
2226
2227/*
2228 * changeover(): Send whole message queue via the remaining link
2229 * Owner node is locked.
2230 */
2231
Per Liden4323add2006-01-18 00:38:21 +01002232void tipc_link_changeover(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002233{
2234 u32 msgcount = l_ptr->out_queue_size;
2235 struct sk_buff *crs = l_ptr->first_out;
2236 struct link *tunnel = l_ptr->owner->active_links[0];
Per Lidenb97bf3f2006-01-02 19:04:38 +01002237 struct tipc_msg tunnel_hdr;
Allan Stephens5392d642006-06-25 23:52:50 -07002238 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002239
2240 if (!tunnel)
2241 return;
2242
Allan Stephens5392d642006-06-25 23:52:50 -07002243 if (!l_ptr->owner->permit_changeover) {
2244 warn("Link changeover error, "
2245 "peer did not permit changeover\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002246 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002247 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002248
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002249 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002250 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002251 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2252 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07002253
Per Lidenb97bf3f2006-01-02 19:04:38 +01002254 if (!l_ptr->first_out) {
2255 struct sk_buff *buf;
2256
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002257 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002258 if (buf) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002259 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002260 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Per Liden4323add2006-01-18 00:38:21 +01002261 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002262 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002263 warn("Link changeover error, "
2264 "unable to send changeover msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002265 }
2266 return;
2267 }
Allan Stephensf1310722006-06-25 23:51:37 -07002268
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002269 split_bundles = (l_ptr->owner->active_links[0] !=
Allan Stephens5392d642006-06-25 23:52:50 -07002270 l_ptr->owner->active_links[1]);
2271
Per Lidenb97bf3f2006-01-02 19:04:38 +01002272 while (crs) {
2273 struct tipc_msg *msg = buf_msg(crs);
2274
2275 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002276 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00002277 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002278
Florian Westphald788d802007-08-02 19:28:06 -07002279 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002280 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00002281 msg_set_seqno(m, msg_seqno(msg));
Per Liden4323add2006-01-18 00:38:21 +01002282 tipc_link_tunnel(l_ptr, &tunnel_hdr, m,
2283 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002284 pos += align(msg_size(m));
2285 m = (struct tipc_msg *)pos;
2286 }
2287 } else {
Per Liden4323add2006-01-18 00:38:21 +01002288 tipc_link_tunnel(l_ptr, &tunnel_hdr, msg,
2289 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002290 }
2291 crs = crs->next;
2292 }
2293}
2294
Per Liden4323add2006-01-18 00:38:21 +01002295void tipc_link_send_duplicate(struct link *l_ptr, struct link *tunnel)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002296{
2297 struct sk_buff *iter;
2298 struct tipc_msg tunnel_hdr;
2299
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002300 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002301 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002302 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
2303 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2304 iter = l_ptr->first_out;
2305 while (iter) {
2306 struct sk_buff *outbuf;
2307 struct tipc_msg *msg = buf_msg(iter);
2308 u32 length = msg_size(msg);
2309
2310 if (msg_user(msg) == MSG_BUNDLER)
2311 msg_set_type(msg, CLOSED_MSG);
2312 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002313 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002314 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002315 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002316 if (outbuf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002317 warn("Link changeover error, "
2318 "unable to send duplicate msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002319 return;
2320 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002321 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
2322 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
2323 length);
Per Liden4323add2006-01-18 00:38:21 +01002324 tipc_link_send_buf(tunnel, outbuf);
2325 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002326 return;
2327 iter = iter->next;
2328 }
2329}
2330
2331
2332
2333/**
2334 * buf_extract - extracts embedded TIPC message from another message
2335 * @skb: encapsulating message buffer
2336 * @from_pos: offset to extract from
2337 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002338 * Returns a new message buffer containing an embedded message. The
Per Lidenb97bf3f2006-01-02 19:04:38 +01002339 * encapsulating message itself is left unchanged.
2340 */
2341
2342static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
2343{
2344 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
2345 u32 size = msg_size(msg);
2346 struct sk_buff *eb;
2347
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002348 eb = tipc_buf_acquire(size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002349 if (eb)
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002350 skb_copy_to_linear_data(eb, msg, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002351 return eb;
2352}
2353
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002354/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01002355 * link_recv_changeover_msg(): Receive tunneled packet sent
2356 * via other link. Node is locked. Return extracted buffer.
2357 */
2358
2359static int link_recv_changeover_msg(struct link **l_ptr,
2360 struct sk_buff **buf)
2361{
2362 struct sk_buff *tunnel_buf = *buf;
2363 struct link *dest_link;
2364 struct tipc_msg *msg;
2365 struct tipc_msg *tunnel_msg = buf_msg(tunnel_buf);
2366 u32 msg_typ = msg_type(tunnel_msg);
2367 u32 msg_count = msg_msgcnt(tunnel_msg);
2368
2369 dest_link = (*l_ptr)->owner->links[msg_bearer_id(tunnel_msg)];
Allan Stephensb29f1422010-12-31 18:59:25 +00002370 if (!dest_link)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002371 goto exit;
Allan Stephensf1310722006-06-25 23:51:37 -07002372 if (dest_link == *l_ptr) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002373 err("Unexpected changeover message on link <%s>\n",
Allan Stephensf1310722006-06-25 23:51:37 -07002374 (*l_ptr)->name);
2375 goto exit;
2376 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002377 *l_ptr = dest_link;
2378 msg = msg_get_wrapped(tunnel_msg);
2379
2380 if (msg_typ == DUPLICATE_MSG) {
Allan Stephensb29f1422010-12-31 18:59:25 +00002381 if (less(msg_seqno(msg), mod(dest_link->next_in_no)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002382 goto exit;
Allan Stephens0e659672010-12-31 18:59:32 +00002383 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002384 if (*buf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002385 warn("Link changeover error, duplicate msg dropped\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002386 goto exit;
2387 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002388 buf_discard(tunnel_buf);
2389 return 1;
2390 }
2391
2392 /* First original message ?: */
2393
Per Liden4323add2006-01-18 00:38:21 +01002394 if (tipc_link_is_up(dest_link)) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002395 info("Resetting link <%s>, changeover initiated by peer\n",
2396 dest_link->name);
Per Liden4323add2006-01-18 00:38:21 +01002397 tipc_link_reset(dest_link);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002398 dest_link->exp_msg_count = msg_count;
2399 if (!msg_count)
2400 goto exit;
2401 } else if (dest_link->exp_msg_count == START_CHANGEOVER) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002402 dest_link->exp_msg_count = msg_count;
2403 if (!msg_count)
2404 goto exit;
2405 }
2406
2407 /* Receive original message */
2408
2409 if (dest_link->exp_msg_count == 0) {
Allan Stephens5392d642006-06-25 23:52:50 -07002410 warn("Link switchover error, "
2411 "got too many tunnelled messages\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002412 goto exit;
2413 }
2414 dest_link->exp_msg_count--;
2415 if (less(msg_seqno(msg), dest_link->reset_checkpoint)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002416 goto exit;
2417 } else {
2418 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
2419 if (*buf != NULL) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002420 buf_discard(tunnel_buf);
2421 return 1;
2422 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002423 warn("Link changeover error, original msg dropped\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002424 }
2425 }
2426exit:
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002427 *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002428 buf_discard(tunnel_buf);
2429 return 0;
2430}
2431
2432/*
2433 * Bundler functionality:
2434 */
Per Liden4323add2006-01-18 00:38:21 +01002435void tipc_link_recv_bundle(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002436{
2437 u32 msgcount = msg_msgcnt(buf_msg(buf));
2438 u32 pos = INT_H_SIZE;
2439 struct sk_buff *obuf;
2440
Per Lidenb97bf3f2006-01-02 19:04:38 +01002441 while (msgcount--) {
2442 obuf = buf_extract(buf, pos);
2443 if (obuf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002444 warn("Link unable to unbundle message(s)\n");
2445 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002446 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002447 pos += align(msg_size(buf_msg(obuf)));
Per Liden4323add2006-01-18 00:38:21 +01002448 tipc_net_route_msg(obuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002449 }
2450 buf_discard(buf);
2451}
2452
2453/*
2454 * Fragmentation/defragmentation:
2455 */
2456
2457
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002458/*
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002459 * link_send_long_buf: Entry for buffers needing fragmentation.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002460 * The buffer is complete, inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002461 * Returns user data length.
2462 */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002463static int link_send_long_buf(struct link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002464{
Allan Stephens77561552011-04-17 13:06:23 -04002465 struct sk_buff *buf_chain = NULL;
2466 struct sk_buff *buf_chain_tail = (struct sk_buff *)&buf_chain;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002467 struct tipc_msg *inmsg = buf_msg(buf);
2468 struct tipc_msg fragm_hdr;
2469 u32 insize = msg_size(inmsg);
2470 u32 dsz = msg_data_sz(inmsg);
2471 unchar *crs = buf->data;
2472 u32 rest = insize;
Allan Stephens15e979d2010-05-11 14:30:10 +00002473 u32 pack_sz = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002474 u32 fragm_sz = pack_sz - INT_H_SIZE;
Allan Stephens77561552011-04-17 13:06:23 -04002475 u32 fragm_no = 0;
Allan Stephens9c396a72008-06-04 17:36:58 -07002476 u32 destaddr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002477
2478 if (msg_short(inmsg))
2479 destaddr = l_ptr->addr;
Allan Stephens9c396a72008-06-04 17:36:58 -07002480 else
2481 destaddr = msg_destnode(inmsg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002482
Per Lidenb97bf3f2006-01-02 19:04:38 +01002483 /* Prepare reusable fragment header: */
2484
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002485 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07002486 INT_H_SIZE, destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002487
2488 /* Chop up message: */
2489
2490 while (rest > 0) {
2491 struct sk_buff *fragm;
2492
2493 if (rest <= fragm_sz) {
2494 fragm_sz = rest;
2495 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
2496 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002497 fragm = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002498 if (fragm == NULL) {
Allan Stephens77561552011-04-17 13:06:23 -04002499 buf_discard(buf);
2500 while (buf_chain) {
2501 buf = buf_chain;
2502 buf_chain = buf_chain->next;
2503 buf_discard(buf);
2504 }
2505 return -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002506 }
2507 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
Allan Stephens77561552011-04-17 13:06:23 -04002508 fragm_no++;
2509 msg_set_fragm_no(&fragm_hdr, fragm_no);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002510 skb_copy_to_linear_data(fragm, &fragm_hdr, INT_H_SIZE);
2511 skb_copy_to_linear_data_offset(fragm, INT_H_SIZE, crs,
2512 fragm_sz);
Allan Stephens77561552011-04-17 13:06:23 -04002513 buf_chain_tail->next = fragm;
2514 buf_chain_tail = fragm;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002515
Per Lidenb97bf3f2006-01-02 19:04:38 +01002516 rest -= fragm_sz;
2517 crs += fragm_sz;
2518 msg_set_type(&fragm_hdr, FRAGMENT);
2519 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002520 buf_discard(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002521
2522 /* Append chain of fragments to send queue & send them */
2523
2524 l_ptr->long_msg_seq_no++;
2525 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
2526 l_ptr->stats.sent_fragments += fragm_no;
2527 l_ptr->stats.sent_fragmented++;
2528 tipc_link_push_queue(l_ptr);
2529
Per Lidenb97bf3f2006-01-02 19:04:38 +01002530 return dsz;
2531}
2532
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002533/*
2534 * A pending message being re-assembled must store certain values
2535 * to handle subsequent fragments correctly. The following functions
Per Lidenb97bf3f2006-01-02 19:04:38 +01002536 * help storing these values in unused, available fields in the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002537 * pending message. This makes dynamic memory allocation unnecessary.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002538 */
2539
Sam Ravnborg05790c62006-03-20 22:37:04 -08002540static void set_long_msg_seqno(struct sk_buff *buf, u32 seqno)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002541{
2542 msg_set_seqno(buf_msg(buf), seqno);
2543}
2544
Sam Ravnborg05790c62006-03-20 22:37:04 -08002545static u32 get_fragm_size(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002546{
2547 return msg_ack(buf_msg(buf));
2548}
2549
Sam Ravnborg05790c62006-03-20 22:37:04 -08002550static void set_fragm_size(struct sk_buff *buf, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002551{
2552 msg_set_ack(buf_msg(buf), sz);
2553}
2554
Sam Ravnborg05790c62006-03-20 22:37:04 -08002555static u32 get_expected_frags(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002556{
2557 return msg_bcast_ack(buf_msg(buf));
2558}
2559
Sam Ravnborg05790c62006-03-20 22:37:04 -08002560static void set_expected_frags(struct sk_buff *buf, u32 exp)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002561{
2562 msg_set_bcast_ack(buf_msg(buf), exp);
2563}
2564
Sam Ravnborg05790c62006-03-20 22:37:04 -08002565static u32 get_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002566{
2567 return msg_reroute_cnt(buf_msg(buf));
2568}
2569
Sam Ravnborg05790c62006-03-20 22:37:04 -08002570static void incr_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002571{
2572 msg_incr_reroute_cnt(buf_msg(buf));
2573}
2574
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002575/*
2576 * tipc_link_recv_fragment(): Called with node lock on. Returns
Per Lidenb97bf3f2006-01-02 19:04:38 +01002577 * the reassembled buffer if message is complete.
2578 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002579int tipc_link_recv_fragment(struct sk_buff **pending, struct sk_buff **fb,
Per Liden4323add2006-01-18 00:38:21 +01002580 struct tipc_msg **m)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002581{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002582 struct sk_buff *prev = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002583 struct sk_buff *fbuf = *fb;
2584 struct tipc_msg *fragm = buf_msg(fbuf);
2585 struct sk_buff *pbuf = *pending;
2586 u32 long_msg_seq_no = msg_long_msgno(fragm);
2587
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002588 *fb = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002589
2590 /* Is there an incomplete message waiting for this fragment? */
2591
Allan Stephensf9057302011-10-24 16:03:12 -04002592 while (pbuf && ((buf_seqno(pbuf) != long_msg_seq_no) ||
Joe Perchesf64f9e72009-11-29 16:55:45 -08002593 (msg_orignode(fragm) != msg_orignode(buf_msg(pbuf))))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002594 prev = pbuf;
2595 pbuf = pbuf->next;
2596 }
2597
2598 if (!pbuf && (msg_type(fragm) == FIRST_FRAGMENT)) {
2599 struct tipc_msg *imsg = (struct tipc_msg *)msg_data(fragm);
2600 u32 msg_sz = msg_size(imsg);
2601 u32 fragm_sz = msg_data_sz(fragm);
2602 u32 exp_fragm_cnt = msg_sz/fragm_sz + !!(msg_sz % fragm_sz);
Allan Stephens741d9eb2011-05-31 15:03:18 -04002603 u32 max = TIPC_MAX_USER_MSG_SIZE + NAMED_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002604 if (msg_type(imsg) == TIPC_MCAST_MSG)
2605 max = TIPC_MAX_USER_MSG_SIZE + MCAST_H_SIZE;
2606 if (msg_size(imsg) > max) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002607 buf_discard(fbuf);
2608 return 0;
2609 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002610 pbuf = tipc_buf_acquire(msg_size(imsg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002611 if (pbuf != NULL) {
2612 pbuf->next = *pending;
2613 *pending = pbuf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002614 skb_copy_to_linear_data(pbuf, imsg,
2615 msg_data_sz(fragm));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002616 /* Prepare buffer for subsequent fragments. */
2617
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002618 set_long_msg_seqno(pbuf, long_msg_seq_no);
Allan Stephens0e659672010-12-31 18:59:32 +00002619 set_fragm_size(pbuf, fragm_sz);
2620 set_expected_frags(pbuf, exp_fragm_cnt - 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002621 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002622 warn("Link unable to reassemble fragmented message\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002623 }
2624 buf_discard(fbuf);
2625 return 0;
2626 } else if (pbuf && (msg_type(fragm) != FIRST_FRAGMENT)) {
2627 u32 dsz = msg_data_sz(fragm);
2628 u32 fsz = get_fragm_size(pbuf);
2629 u32 crs = ((msg_fragm_no(fragm) - 1) * fsz);
2630 u32 exp_frags = get_expected_frags(pbuf) - 1;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002631 skb_copy_to_linear_data_offset(pbuf, crs,
2632 msg_data(fragm), dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002633 buf_discard(fbuf);
2634
2635 /* Is message complete? */
2636
2637 if (exp_frags == 0) {
2638 if (prev)
2639 prev->next = pbuf->next;
2640 else
2641 *pending = pbuf->next;
2642 msg_reset_reroute_cnt(buf_msg(pbuf));
2643 *fb = pbuf;
2644 *m = buf_msg(pbuf);
2645 return 1;
2646 }
Allan Stephens0e659672010-12-31 18:59:32 +00002647 set_expected_frags(pbuf, exp_frags);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002648 return 0;
2649 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002650 buf_discard(fbuf);
2651 return 0;
2652}
2653
2654/**
2655 * link_check_defragm_bufs - flush stale incoming message fragments
2656 * @l_ptr: pointer to link
2657 */
2658
2659static void link_check_defragm_bufs(struct link *l_ptr)
2660{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002661 struct sk_buff *prev = NULL;
2662 struct sk_buff *next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002663 struct sk_buff *buf = l_ptr->defragm_buf;
2664
2665 if (!buf)
2666 return;
2667 if (!link_working_working(l_ptr))
2668 return;
2669 while (buf) {
2670 u32 cnt = get_timer_cnt(buf);
2671
2672 next = buf->next;
2673 if (cnt < 4) {
2674 incr_timer_cnt(buf);
2675 prev = buf;
2676 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002677 if (prev)
2678 prev->next = buf->next;
2679 else
2680 l_ptr->defragm_buf = buf->next;
2681 buf_discard(buf);
2682 }
2683 buf = next;
2684 }
2685}
2686
2687
2688
2689static void link_set_supervision_props(struct link *l_ptr, u32 tolerance)
2690{
Allan Stephens5413b4c2011-01-18 13:24:55 -05002691 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
2692 return;
2693
Per Lidenb97bf3f2006-01-02 19:04:38 +01002694 l_ptr->tolerance = tolerance;
2695 l_ptr->continuity_interval =
2696 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
2697 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
2698}
2699
2700
Per Liden4323add2006-01-18 00:38:21 +01002701void tipc_link_set_queue_limits(struct link *l_ptr, u32 window)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002702{
2703 /* Data messages from this node, inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002704 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
2705 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
2706 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
2707 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002708 /* Transiting data messages,inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002709 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
2710 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
2711 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
2712 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002713 l_ptr->queue_limit[CONN_MANAGER] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002714 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
2715 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
2716 /* FRAGMENT and LAST_FRAGMENT packets */
2717 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
2718}
2719
2720/**
2721 * link_find_link - locate link by name
2722 * @name - ptr to link name string
2723 * @node - ptr to area to be filled with ptr to associated node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002724 *
Per Liden4323add2006-01-18 00:38:21 +01002725 * Caller must hold 'tipc_net_lock' to ensure node and bearer are not deleted;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002726 * this also prevents link deletion.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002727 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002728 * Returns pointer to link (or 0 if invalid link name).
2729 */
2730
David S. Miller6c000552008-09-02 23:38:32 -07002731static struct link *link_find_link(const char *name, struct tipc_node **node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002732{
2733 struct link_name link_name_parts;
Allan Stephens2d627b92011-01-07 13:00:11 -05002734 struct tipc_bearer *b_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002735 struct link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002736
2737 if (!link_name_validate(name, &link_name_parts))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002738 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002739
Per Liden4323add2006-01-18 00:38:21 +01002740 b_ptr = tipc_bearer_find_interface(link_name_parts.if_local);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002741 if (!b_ptr)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002742 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002743
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002744 *node = tipc_node_find(link_name_parts.addr_peer);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002745 if (!*node)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002746 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002747
2748 l_ptr = (*node)->links[b_ptr->identity];
2749 if (!l_ptr || strcmp(l_ptr->name, name))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002750 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002751
2752 return l_ptr;
2753}
2754
Allan Stephens5c216e12011-10-18 11:34:29 -04002755/**
2756 * link_value_is_valid -- validate proposed link tolerance/priority/window
2757 *
2758 * @cmd - value type (TIPC_CMD_SET_LINK_*)
2759 * @new_value - the new value
2760 *
2761 * Returns 1 if value is within range, 0 if not.
2762 */
2763
2764static int link_value_is_valid(u16 cmd, u32 new_value)
2765{
2766 switch (cmd) {
2767 case TIPC_CMD_SET_LINK_TOL:
2768 return (new_value >= TIPC_MIN_LINK_TOL) &&
2769 (new_value <= TIPC_MAX_LINK_TOL);
2770 case TIPC_CMD_SET_LINK_PRI:
2771 return (new_value <= TIPC_MAX_LINK_PRI);
2772 case TIPC_CMD_SET_LINK_WINDOW:
2773 return (new_value >= TIPC_MIN_LINK_WIN) &&
2774 (new_value <= TIPC_MAX_LINK_WIN);
2775 }
2776 return 0;
2777}
2778
2779
2780/**
2781 * link_cmd_set_value - change priority/tolerance/window for link/bearer/media
2782 * @name - ptr to link, bearer, or media name
2783 * @new_value - new value of link, bearer, or media setting
2784 * @cmd - which link, bearer, or media attribute to set (TIPC_CMD_SET_LINK_*)
2785 *
2786 * Caller must hold 'tipc_net_lock' to ensure link/bearer/media is not deleted.
2787 *
2788 * Returns 0 if value updated and negative value on error.
2789 */
2790
2791static int link_cmd_set_value(const char *name, u32 new_value, u16 cmd)
2792{
2793 struct tipc_node *node;
2794 struct link *l_ptr;
2795 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -05002796 struct tipc_media *m_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002797
2798 l_ptr = link_find_link(name, &node);
2799 if (l_ptr) {
2800 /*
2801 * acquire node lock for tipc_link_send_proto_msg().
2802 * see "TIPC locking policy" in net.c.
2803 */
2804 tipc_node_lock(node);
2805 switch (cmd) {
2806 case TIPC_CMD_SET_LINK_TOL:
2807 link_set_supervision_props(l_ptr, new_value);
2808 tipc_link_send_proto_msg(l_ptr,
2809 STATE_MSG, 0, 0, new_value, 0, 0);
2810 break;
2811 case TIPC_CMD_SET_LINK_PRI:
2812 l_ptr->priority = new_value;
2813 tipc_link_send_proto_msg(l_ptr,
2814 STATE_MSG, 0, 0, 0, new_value, 0);
2815 break;
2816 case TIPC_CMD_SET_LINK_WINDOW:
2817 tipc_link_set_queue_limits(l_ptr, new_value);
2818 break;
2819 }
2820 tipc_node_unlock(node);
2821 return 0;
2822 }
2823
2824 b_ptr = tipc_bearer_find(name);
2825 if (b_ptr) {
2826 switch (cmd) {
2827 case TIPC_CMD_SET_LINK_TOL:
2828 b_ptr->tolerance = new_value;
2829 return 0;
2830 case TIPC_CMD_SET_LINK_PRI:
2831 b_ptr->priority = new_value;
2832 return 0;
2833 case TIPC_CMD_SET_LINK_WINDOW:
2834 b_ptr->window = new_value;
2835 return 0;
2836 }
2837 return -EINVAL;
2838 }
2839
2840 m_ptr = tipc_media_find(name);
2841 if (!m_ptr)
2842 return -ENODEV;
2843 switch (cmd) {
2844 case TIPC_CMD_SET_LINK_TOL:
2845 m_ptr->tolerance = new_value;
2846 return 0;
2847 case TIPC_CMD_SET_LINK_PRI:
2848 m_ptr->priority = new_value;
2849 return 0;
2850 case TIPC_CMD_SET_LINK_WINDOW:
2851 m_ptr->window = new_value;
2852 return 0;
2853 }
2854 return -EINVAL;
2855}
2856
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002857struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
Per Liden4323add2006-01-18 00:38:21 +01002858 u16 cmd)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002859{
2860 struct tipc_link_config *args;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002861 u32 new_value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002862 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002863
2864 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
Per Liden4323add2006-01-18 00:38:21 +01002865 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002866
2867 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2868 new_value = ntohl(args->value);
2869
Allan Stephens5c216e12011-10-18 11:34:29 -04002870 if (!link_value_is_valid(cmd, new_value))
2871 return tipc_cfg_reply_error_string(
2872 "cannot change, value invalid");
2873
Per Liden4323add2006-01-18 00:38:21 +01002874 if (!strcmp(args->name, tipc_bclink_name)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002875 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
Per Liden4323add2006-01-18 00:38:21 +01002876 (tipc_bclink_set_queue_limits(new_value) == 0))
2877 return tipc_cfg_reply_none();
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002878 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
Per Liden4323add2006-01-18 00:38:21 +01002879 " (cannot change setting on broadcast link)");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002880 }
2881
Per Liden4323add2006-01-18 00:38:21 +01002882 read_lock_bh(&tipc_net_lock);
Allan Stephens5c216e12011-10-18 11:34:29 -04002883 res = link_cmd_set_value(args->name, new_value, cmd);
Per Liden4323add2006-01-18 00:38:21 +01002884 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002885 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002886 return tipc_cfg_reply_error_string("cannot change link setting");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002887
Per Liden4323add2006-01-18 00:38:21 +01002888 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002889}
2890
2891/**
2892 * link_reset_statistics - reset link statistics
2893 * @l_ptr: pointer to link
2894 */
2895
2896static void link_reset_statistics(struct link *l_ptr)
2897{
2898 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2899 l_ptr->stats.sent_info = l_ptr->next_out_no;
2900 l_ptr->stats.recv_info = l_ptr->next_in_no;
2901}
2902
Per Liden4323add2006-01-18 00:38:21 +01002903struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002904{
2905 char *link_name;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002906 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002907 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002908
2909 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002910 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002911
2912 link_name = (char *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +01002913 if (!strcmp(link_name, tipc_bclink_name)) {
2914 if (tipc_bclink_reset_stats())
2915 return tipc_cfg_reply_error_string("link not found");
2916 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002917 }
2918
Per Liden4323add2006-01-18 00:38:21 +01002919 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002920 l_ptr = link_find_link(link_name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002921 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002922 read_unlock_bh(&tipc_net_lock);
2923 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002924 }
2925
Per Liden4323add2006-01-18 00:38:21 +01002926 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002927 link_reset_statistics(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +01002928 tipc_node_unlock(node);
2929 read_unlock_bh(&tipc_net_lock);
2930 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002931}
2932
2933/**
2934 * percent - convert count to a percentage of total (rounding up or down)
2935 */
2936
2937static u32 percent(u32 count, u32 total)
2938{
2939 return (count * 100 + (total / 2)) / total;
2940}
2941
2942/**
Per Liden4323add2006-01-18 00:38:21 +01002943 * tipc_link_stats - print link statistics
Per Lidenb97bf3f2006-01-02 19:04:38 +01002944 * @name: link name
2945 * @buf: print buffer area
2946 * @buf_size: size of print buffer area
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002947 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002948 * Returns length of print buffer data string (or 0 if error)
2949 */
2950
Per Liden4323add2006-01-18 00:38:21 +01002951static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002952{
2953 struct print_buf pb;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002954 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002955 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002956 char *status;
2957 u32 profile_total = 0;
2958
Per Liden4323add2006-01-18 00:38:21 +01002959 if (!strcmp(name, tipc_bclink_name))
2960 return tipc_bclink_stats(buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002961
Per Liden4323add2006-01-18 00:38:21 +01002962 tipc_printbuf_init(&pb, buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002963
Per Liden4323add2006-01-18 00:38:21 +01002964 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002965 l_ptr = link_find_link(name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002966 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002967 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002968 return 0;
2969 }
Per Liden4323add2006-01-18 00:38:21 +01002970 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002971
Per Liden4323add2006-01-18 00:38:21 +01002972 if (tipc_link_is_active(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002973 status = "ACTIVE";
Per Liden4323add2006-01-18 00:38:21 +01002974 else if (tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002975 status = "STANDBY";
2976 else
2977 status = "DEFUNCT";
2978 tipc_printf(&pb, "Link <%s>\n"
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002979 " %s MTU:%u Priority:%u Tolerance:%u ms"
2980 " Window:%u packets\n",
Allan Stephens15e979d2010-05-11 14:30:10 +00002981 l_ptr->name, status, l_ptr->max_pkt,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002982 l_ptr->priority, l_ptr->tolerance, l_ptr->queue_limit[0]);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002983 tipc_printf(&pb, " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002984 l_ptr->next_in_no - l_ptr->stats.recv_info,
2985 l_ptr->stats.recv_fragments,
2986 l_ptr->stats.recv_fragmented,
2987 l_ptr->stats.recv_bundles,
2988 l_ptr->stats.recv_bundled);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002989 tipc_printf(&pb, " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002990 l_ptr->next_out_no - l_ptr->stats.sent_info,
2991 l_ptr->stats.sent_fragments,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002992 l_ptr->stats.sent_fragmented,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002993 l_ptr->stats.sent_bundles,
2994 l_ptr->stats.sent_bundled);
2995 profile_total = l_ptr->stats.msg_length_counts;
2996 if (!profile_total)
2997 profile_total = 1;
2998 tipc_printf(&pb, " TX profile sample:%u packets average:%u octets\n"
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002999 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
Allan Stephens0f305bf2011-05-30 15:36:56 -04003000 "-16384:%u%% -32768:%u%% -66000:%u%%\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01003001 l_ptr->stats.msg_length_counts,
3002 l_ptr->stats.msg_lengths_total / profile_total,
3003 percent(l_ptr->stats.msg_length_profile[0], profile_total),
3004 percent(l_ptr->stats.msg_length_profile[1], profile_total),
3005 percent(l_ptr->stats.msg_length_profile[2], profile_total),
3006 percent(l_ptr->stats.msg_length_profile[3], profile_total),
3007 percent(l_ptr->stats.msg_length_profile[4], profile_total),
3008 percent(l_ptr->stats.msg_length_profile[5], profile_total),
3009 percent(l_ptr->stats.msg_length_profile[6], profile_total));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003010 tipc_printf(&pb, " RX states:%u probes:%u naks:%u defs:%u dups:%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01003011 l_ptr->stats.recv_states,
3012 l_ptr->stats.recv_probes,
3013 l_ptr->stats.recv_nacks,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003014 l_ptr->stats.deferred_recv,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003015 l_ptr->stats.duplicates);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003016 tipc_printf(&pb, " TX states:%u probes:%u naks:%u acks:%u dups:%u\n",
3017 l_ptr->stats.sent_states,
3018 l_ptr->stats.sent_probes,
3019 l_ptr->stats.sent_nacks,
3020 l_ptr->stats.sent_acks,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003021 l_ptr->stats.retransmitted);
3022 tipc_printf(&pb, " Congestion bearer:%u link:%u Send queue max:%u avg:%u\n",
3023 l_ptr->stats.bearer_congs,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003024 l_ptr->stats.link_congs,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003025 l_ptr->stats.max_queue_sz,
3026 l_ptr->stats.queue_sz_counts
3027 ? (l_ptr->stats.accu_queue_sz / l_ptr->stats.queue_sz_counts)
3028 : 0);
3029
Per Liden4323add2006-01-18 00:38:21 +01003030 tipc_node_unlock(node);
3031 read_unlock_bh(&tipc_net_lock);
3032 return tipc_printbuf_validate(&pb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003033}
3034
3035#define MAX_LINK_STATS_INFO 2000
3036
Per Liden4323add2006-01-18 00:38:21 +01003037struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003038{
3039 struct sk_buff *buf;
3040 struct tlv_desc *rep_tlv;
3041 int str_len;
3042
3043 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01003044 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003045
Per Liden4323add2006-01-18 00:38:21 +01003046 buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_LINK_STATS_INFO));
Per Lidenb97bf3f2006-01-02 19:04:38 +01003047 if (!buf)
3048 return NULL;
3049
3050 rep_tlv = (struct tlv_desc *)buf->data;
3051
Per Liden4323add2006-01-18 00:38:21 +01003052 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
3053 (char *)TLV_DATA(rep_tlv), MAX_LINK_STATS_INFO);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003054 if (!str_len) {
3055 buf_discard(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003056 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01003057 }
3058
3059 skb_put(buf, TLV_SPACE(str_len));
3060 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
3061
3062 return buf;
3063}
3064
Per Lidenb97bf3f2006-01-02 19:04:38 +01003065/**
Per Liden4323add2006-01-18 00:38:21 +01003066 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
Per Lidenb97bf3f2006-01-02 19:04:38 +01003067 * @dest: network address of destination node
3068 * @selector: used to select from set of active links
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003069 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01003070 * If no active link can be found, uses default maximum packet size.
3071 */
3072
Per Liden4323add2006-01-18 00:38:21 +01003073u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003074{
David S. Miller6c000552008-09-02 23:38:32 -07003075 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01003076 struct link *l_ptr;
3077 u32 res = MAX_PKT_DEFAULT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003078
Per Lidenb97bf3f2006-01-02 19:04:38 +01003079 if (dest == tipc_own_addr)
3080 return MAX_MSG_SIZE;
3081
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003082 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00003083 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003084 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01003085 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003086 l_ptr = n_ptr->active_links[selector & 1];
3087 if (l_ptr)
Allan Stephens15e979d2010-05-11 14:30:10 +00003088 res = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01003089 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003090 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003091 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003092 return res;
3093}
3094
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003095static void link_print(struct link *l_ptr, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003096{
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003097 char print_area[256];
3098 struct print_buf pb;
3099 struct print_buf *buf = &pb;
3100
3101 tipc_printbuf_init(buf, print_area, sizeof(print_area));
3102
Per Lidenb97bf3f2006-01-02 19:04:38 +01003103 tipc_printf(buf, str);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003104 tipc_printf(buf, "Link %x<%s>:",
Allan Stephens2d627b92011-01-07 13:00:11 -05003105 l_ptr->addr, l_ptr->b_ptr->name);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003106
3107#ifdef CONFIG_TIPC_DEBUG
3108 if (link_reset_reset(l_ptr) || link_reset_unknown(l_ptr))
3109 goto print_state;
3110
Per Lidenb97bf3f2006-01-02 19:04:38 +01003111 tipc_printf(buf, ": NXO(%u):", mod(l_ptr->next_out_no));
3112 tipc_printf(buf, "NXI(%u):", mod(l_ptr->next_in_no));
3113 tipc_printf(buf, "SQUE");
3114 if (l_ptr->first_out) {
Allan Stephensf9057302011-10-24 16:03:12 -04003115 tipc_printf(buf, "[%u..", buf_seqno(l_ptr->first_out));
Per Lidenb97bf3f2006-01-02 19:04:38 +01003116 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -04003117 tipc_printf(buf, "%u..", buf_seqno(l_ptr->next_out));
3118 tipc_printf(buf, "%u]", buf_seqno(l_ptr->last_out));
3119 if ((mod(buf_seqno(l_ptr->last_out) -
3120 buf_seqno(l_ptr->first_out))
Joe Perchesf64f9e72009-11-29 16:55:45 -08003121 != (l_ptr->out_queue_size - 1)) ||
3122 (l_ptr->last_out->next != NULL)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01003123 tipc_printf(buf, "\nSend queue inconsistency\n");
Allan Stephensc8a61b52011-01-18 13:31:32 -05003124 tipc_printf(buf, "first_out= %p ", l_ptr->first_out);
3125 tipc_printf(buf, "next_out= %p ", l_ptr->next_out);
3126 tipc_printf(buf, "last_out= %p ", l_ptr->last_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003127 }
3128 } else
3129 tipc_printf(buf, "[]");
3130 tipc_printf(buf, "SQSIZ(%u)", l_ptr->out_queue_size);
3131 if (l_ptr->oldest_deferred_in) {
Allan Stephensf9057302011-10-24 16:03:12 -04003132 u32 o = buf_seqno(l_ptr->oldest_deferred_in);
3133 u32 n = buf_seqno(l_ptr->newest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003134 tipc_printf(buf, ":RQUE[%u..%u]", o, n);
3135 if (l_ptr->deferred_inqueue_sz != mod((n + 1) - o)) {
3136 tipc_printf(buf, ":RQSIZ(%u)",
3137 l_ptr->deferred_inqueue_sz);
3138 }
3139 }
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003140print_state:
3141#endif
3142
Per Lidenb97bf3f2006-01-02 19:04:38 +01003143 if (link_working_unknown(l_ptr))
3144 tipc_printf(buf, ":WU");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003145 else if (link_reset_reset(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003146 tipc_printf(buf, ":RR");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003147 else if (link_reset_unknown(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003148 tipc_printf(buf, ":RU");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003149 else if (link_working_working(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003150 tipc_printf(buf, ":WW");
3151 tipc_printf(buf, "\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003152
3153 tipc_printbuf_validate(buf);
3154 info("%s", print_area);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003155}
3156