blob: 2ea3f22b7986479ad7055f6131af80ffb5977a97 [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)
133 return msg_seqno(buf_msg(l_ptr->next_out));
134 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 Stephensf882cb72011-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;
346 link_set_supervision_props(l_ptr, b_ptr->media->tolerance);
347 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;
Per Liden4323add2006-01-18 00:38:21 +0100358 tipc_link_set_queue_limits(l_ptr, b_ptr->media->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 Lidenb97bf3f2006-01-02 19:04:38 +0100540/* LINK EVENT CODE IS NOT SUPPORTED AT PRESENT */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100541#define link_send_event(fcn, l_ptr, up) do { } while (0)
542
Per Liden4323add2006-01-18 00:38:21 +0100543void tipc_link_reset(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100544{
545 struct sk_buff *buf;
546 u32 prev_state = l_ptr->state;
547 u32 checkpoint = l_ptr->next_in_no;
Allan Stephens5392d642006-06-25 23:52:50 -0700548 int was_active_link = tipc_link_is_active(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900549
Allan Stephensa686e682008-06-04 17:29:39 -0700550 msg_set_session(l_ptr->pmsg, ((msg_session(l_ptr->pmsg) + 1) & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100551
Allan Stephensa686e682008-06-04 17:29:39 -0700552 /* Link is down, accept any session */
553 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100554
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900555 /* Prepare for max packet size negotiation */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100556 link_init_max_pkt(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900557
Per Lidenb97bf3f2006-01-02 19:04:38 +0100558 l_ptr->state = RESET_UNKNOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100559
560 if ((prev_state == RESET_UNKNOWN) || (prev_state == RESET_RESET))
561 return;
562
Per Liden4323add2006-01-18 00:38:21 +0100563 tipc_node_link_down(l_ptr->owner, l_ptr);
564 tipc_bearer_remove_dest(l_ptr->b_ptr, l_ptr->addr);
Paul Gortmaker7368ddf2010-10-12 14:25:58 +0000565
Paul Gortmaker8f19afb2011-02-28 11:36:21 -0400566 if (was_active_link && tipc_node_active_links(l_ptr->owner) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100567 l_ptr->owner->permit_changeover) {
568 l_ptr->reset_checkpoint = checkpoint;
569 l_ptr->exp_msg_count = START_CHANGEOVER;
570 }
571
572 /* Clean up all queues: */
573
574 link_release_outqueue(l_ptr);
575 buf_discard(l_ptr->proto_msg_queue);
576 l_ptr->proto_msg_queue = NULL;
577 buf = l_ptr->oldest_deferred_in;
578 while (buf) {
579 struct sk_buff *next = buf->next;
580 buf_discard(buf);
581 buf = next;
582 }
583 if (!list_empty(&l_ptr->waiting_ports))
Per Liden4323add2006-01-18 00:38:21 +0100584 tipc_link_wakeup_ports(l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100585
586 l_ptr->retransm_queue_head = 0;
587 l_ptr->retransm_queue_size = 0;
588 l_ptr->last_out = NULL;
589 l_ptr->first_out = NULL;
590 l_ptr->next_out = NULL;
591 l_ptr->unacked_window = 0;
592 l_ptr->checkpoint = 1;
593 l_ptr->next_out_no = 1;
594 l_ptr->deferred_inqueue_sz = 0;
595 l_ptr->oldest_deferred_in = NULL;
596 l_ptr->newest_deferred_in = NULL;
597 l_ptr->fsm_msg_cnt = 0;
598 l_ptr->stale_count = 0;
599 link_reset_statistics(l_ptr);
600
Per Liden4323add2006-01-18 00:38:21 +0100601 link_send_event(tipc_cfg_link_event, l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100602 if (!in_own_cluster(l_ptr->addr))
Per Liden4323add2006-01-18 00:38:21 +0100603 link_send_event(tipc_disc_link_event, l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100604}
605
606
607static void link_activate(struct link *l_ptr)
608{
Allan Stephens5392d642006-06-25 23:52:50 -0700609 l_ptr->next_in_no = l_ptr->stats.recv_info = 1;
Per Liden4323add2006-01-18 00:38:21 +0100610 tipc_node_link_up(l_ptr->owner, l_ptr);
611 tipc_bearer_add_dest(l_ptr->b_ptr, l_ptr->addr);
612 link_send_event(tipc_cfg_link_event, l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100613 if (!in_own_cluster(l_ptr->addr))
Per Liden4323add2006-01-18 00:38:21 +0100614 link_send_event(tipc_disc_link_event, l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100615}
616
617/**
618 * link_state_event - link finite state machine
619 * @l_ptr: pointer to link
620 * @event: state machine event to process
621 */
622
623static void link_state_event(struct link *l_ptr, unsigned event)
624{
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900625 struct link *other;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100626 u32 cont_intv = l_ptr->continuity_interval;
627
628 if (!l_ptr->started && (event != STARTING_EVT))
629 return; /* Not yet. */
630
631 if (link_blocked(l_ptr)) {
Allan Stephensa0168922010-12-31 18:59:35 +0000632 if (event == TIMEOUT_EVT)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100633 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100634 return; /* Changeover going on */
635 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100636
637 switch (l_ptr->state) {
638 case WORKING_WORKING:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100639 switch (event) {
640 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100641 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100642 break;
643 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100644 if (l_ptr->next_in_no != l_ptr->checkpoint) {
645 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100646 if (tipc_bclink_acks_missing(l_ptr->owner)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900647 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100648 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100649 l_ptr->fsm_msg_cnt++;
650 } else if (l_ptr->max_pkt < l_ptr->max_pkt_target) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900651 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100652 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100653 l_ptr->fsm_msg_cnt++;
654 }
655 link_set_timer(l_ptr, cont_intv);
656 break;
657 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100658 l_ptr->state = WORKING_UNKNOWN;
659 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100660 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 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 / 4);
663 break;
664 case RESET_MSG:
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900665 info("Resetting link <%s>, requested by peer\n",
Allan Stephensa10bd922006-06-25 23:52:17 -0700666 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100667 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100668 l_ptr->state = RESET_RESET;
669 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100670 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100671 l_ptr->fsm_msg_cnt++;
672 link_set_timer(l_ptr, cont_intv);
673 break;
674 default:
675 err("Unknown link event %u in WW state\n", event);
676 }
677 break;
678 case WORKING_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100679 switch (event) {
680 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100681 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100682 l_ptr->state = WORKING_WORKING;
683 l_ptr->fsm_msg_cnt = 0;
684 link_set_timer(l_ptr, cont_intv);
685 break;
686 case RESET_MSG:
Allan Stephensa10bd922006-06-25 23:52:17 -0700687 info("Resetting link <%s>, requested by peer "
688 "while probing\n", l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100689 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100690 l_ptr->state = RESET_RESET;
691 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100692 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100693 l_ptr->fsm_msg_cnt++;
694 link_set_timer(l_ptr, cont_intv);
695 break;
696 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100697 if (l_ptr->next_in_no != l_ptr->checkpoint) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100698 l_ptr->state = WORKING_WORKING;
699 l_ptr->fsm_msg_cnt = 0;
700 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100701 if (tipc_bclink_acks_missing(l_ptr->owner)) {
702 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
703 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100704 l_ptr->fsm_msg_cnt++;
705 }
706 link_set_timer(l_ptr, cont_intv);
707 } else if (l_ptr->fsm_msg_cnt < l_ptr->abort_limit) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900708 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100709 1, 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 / 4);
712 } else { /* Link has failed */
Allan Stephensa10bd922006-06-25 23:52:17 -0700713 warn("Resetting link <%s>, peer not responding\n",
714 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100715 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100716 l_ptr->state = RESET_UNKNOWN;
717 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100718 tipc_link_send_proto_msg(l_ptr, RESET_MSG,
719 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100720 l_ptr->fsm_msg_cnt++;
721 link_set_timer(l_ptr, cont_intv);
722 }
723 break;
724 default:
725 err("Unknown link event %u in WU state\n", event);
726 }
727 break;
728 case RESET_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100729 switch (event) {
730 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100731 break;
732 case ACTIVATE_MSG:
733 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000734 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100735 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100736 l_ptr->state = WORKING_WORKING;
737 l_ptr->fsm_msg_cnt = 0;
738 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100739 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100740 l_ptr->fsm_msg_cnt++;
741 link_set_timer(l_ptr, cont_intv);
742 break;
743 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100744 l_ptr->state = RESET_RESET;
745 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100746 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100747 l_ptr->fsm_msg_cnt++;
748 link_set_timer(l_ptr, cont_intv);
749 break;
750 case STARTING_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100751 l_ptr->started = 1;
752 /* fall through */
753 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100754 tipc_link_send_proto_msg(l_ptr, RESET_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100755 l_ptr->fsm_msg_cnt++;
756 link_set_timer(l_ptr, cont_intv);
757 break;
758 default:
759 err("Unknown link event %u in RU state\n", event);
760 }
761 break;
762 case RESET_RESET:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100763 switch (event) {
764 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100765 case ACTIVATE_MSG:
766 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000767 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100768 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100769 l_ptr->state = WORKING_WORKING;
770 l_ptr->fsm_msg_cnt = 0;
771 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100772 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100773 l_ptr->fsm_msg_cnt++;
774 link_set_timer(l_ptr, cont_intv);
775 break;
776 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100777 break;
778 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100779 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100780 l_ptr->fsm_msg_cnt++;
781 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100782 break;
783 default:
784 err("Unknown link event %u in RR state\n", event);
785 }
786 break;
787 default:
788 err("Unknown link state %u/%u\n", l_ptr->state, event);
789 }
790}
791
792/*
793 * link_bundle_buf(): Append contents of a buffer to
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900794 * the tail of an existing one.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100795 */
796
797static int link_bundle_buf(struct link *l_ptr,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900798 struct sk_buff *bundler,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100799 struct sk_buff *buf)
800{
801 struct tipc_msg *bundler_msg = buf_msg(bundler);
802 struct tipc_msg *msg = buf_msg(buf);
803 u32 size = msg_size(msg);
Allan Stephense49060c2006-06-29 12:32:46 -0700804 u32 bundle_size = msg_size(bundler_msg);
805 u32 to_pos = align(bundle_size);
806 u32 pad = to_pos - bundle_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100807
808 if (msg_user(bundler_msg) != MSG_BUNDLER)
809 return 0;
810 if (msg_type(bundler_msg) != OPEN_MSG)
811 return 0;
Allan Stephense49060c2006-06-29 12:32:46 -0700812 if (skb_tailroom(bundler) < (pad + size))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100813 return 0;
Allan Stephens15e979d2010-05-11 14:30:10 +0000814 if (l_ptr->max_pkt < (to_pos + size))
Allan Stephens863fae62006-07-03 19:39:36 -0700815 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100816
Allan Stephense49060c2006-06-29 12:32:46 -0700817 skb_put(bundler, pad + size);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300818 skb_copy_to_linear_data_offset(bundler, to_pos, buf->data, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100819 msg_set_size(bundler_msg, to_pos + size);
820 msg_set_msgcnt(bundler_msg, msg_msgcnt(bundler_msg) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100821 buf_discard(buf);
822 l_ptr->stats.sent_bundled++;
823 return 1;
824}
825
Sam Ravnborg05790c62006-03-20 22:37:04 -0800826static void link_add_to_outqueue(struct link *l_ptr,
827 struct sk_buff *buf,
828 struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100829{
830 u32 ack = mod(l_ptr->next_in_no - 1);
831 u32 seqno = mod(l_ptr->next_out_no++);
832
833 msg_set_word(msg, 2, ((ack << 16) | seqno));
834 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
835 buf->next = NULL;
836 if (l_ptr->first_out) {
837 l_ptr->last_out->next = buf;
838 l_ptr->last_out = buf;
839 } else
840 l_ptr->first_out = l_ptr->last_out = buf;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500841
Per Lidenb97bf3f2006-01-02 19:04:38 +0100842 l_ptr->out_queue_size++;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500843 if (l_ptr->out_queue_size > l_ptr->stats.max_queue_sz)
844 l_ptr->stats.max_queue_sz = l_ptr->out_queue_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100845}
846
Allan Stephensdc63d912011-04-21 11:50:42 -0400847static void link_add_chain_to_outqueue(struct link *l_ptr,
848 struct sk_buff *buf_chain,
849 u32 long_msgno)
850{
851 struct sk_buff *buf;
852 struct tipc_msg *msg;
853
854 if (!l_ptr->next_out)
855 l_ptr->next_out = buf_chain;
856 while (buf_chain) {
857 buf = buf_chain;
858 buf_chain = buf_chain->next;
859
860 msg = buf_msg(buf);
861 msg_set_long_msgno(msg, long_msgno);
862 link_add_to_outqueue(l_ptr, buf, msg);
863 }
864}
865
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900866/*
867 * tipc_link_send_buf() is the 'full path' for messages, called from
Per Lidenb97bf3f2006-01-02 19:04:38 +0100868 * inside TIPC when the 'fast path' in tipc_send_buf
869 * has failed, and from link_send()
870 */
871
Per Liden4323add2006-01-18 00:38:21 +0100872int tipc_link_send_buf(struct link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100873{
874 struct tipc_msg *msg = buf_msg(buf);
875 u32 size = msg_size(msg);
876 u32 dsz = msg_data_sz(msg);
877 u32 queue_size = l_ptr->out_queue_size;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000878 u32 imp = tipc_msg_tot_importance(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100879 u32 queue_limit = l_ptr->queue_limit[imp];
Allan Stephens15e979d2010-05-11 14:30:10 +0000880 u32 max_packet = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100881
882 msg_set_prevnode(msg, tipc_own_addr); /* If routed message */
883
884 /* Match msg importance against queue limits: */
885
886 if (unlikely(queue_size >= queue_limit)) {
887 if (imp <= TIPC_CRITICAL_IMPORTANCE) {
Allan Stephensbebc55a2011-04-19 10:17:58 -0400888 link_schedule_port(l_ptr, msg_origport(msg), size);
889 buf_discard(buf);
890 return -ELINKCONG;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100891 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100892 buf_discard(buf);
893 if (imp > CONN_MANAGER) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700894 warn("Resetting link <%s>, send queue full", l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100895 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100896 }
897 return dsz;
898 }
899
900 /* Fragmentation needed ? */
901
902 if (size > max_packet)
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000903 return link_send_long_buf(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100904
905 /* Packet can be queued or sent: */
906
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900907 if (likely(!tipc_bearer_congested(l_ptr->b_ptr, l_ptr) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100908 !link_congested(l_ptr))) {
909 link_add_to_outqueue(l_ptr, buf, msg);
910
Per Liden4323add2006-01-18 00:38:21 +0100911 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100912 l_ptr->unacked_window = 0;
913 } else {
Per Liden4323add2006-01-18 00:38:21 +0100914 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100915 l_ptr->stats.bearer_congs++;
916 l_ptr->next_out = buf;
917 }
918 return dsz;
919 }
920 /* Congestion: can message be bundled ?: */
921
922 if ((msg_user(msg) != CHANGEOVER_PROTOCOL) &&
923 (msg_user(msg) != MSG_FRAGMENTER)) {
924
925 /* Try adding message to an existing bundle */
926
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900927 if (l_ptr->next_out &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100928 link_bundle_buf(l_ptr, l_ptr->last_out, buf)) {
Per Liden4323add2006-01-18 00:38:21 +0100929 tipc_bearer_resolve_congestion(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100930 return dsz;
931 }
932
933 /* Try creating a new bundle */
934
935 if (size <= max_packet * 2 / 3) {
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000936 struct sk_buff *bundler = tipc_buf_acquire(max_packet);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100937 struct tipc_msg bundler_hdr;
938
939 if (bundler) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000940 tipc_msg_init(&bundler_hdr, MSG_BUNDLER, OPEN_MSG,
Allan Stephens75715212008-06-04 17:37:34 -0700941 INT_H_SIZE, l_ptr->addr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300942 skb_copy_to_linear_data(bundler, &bundler_hdr,
943 INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100944 skb_trim(bundler, INT_H_SIZE);
945 link_bundle_buf(l_ptr, bundler, buf);
946 buf = bundler;
947 msg = buf_msg(buf);
948 l_ptr->stats.sent_bundles++;
949 }
950 }
951 }
952 if (!l_ptr->next_out)
953 l_ptr->next_out = buf;
954 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +0100955 tipc_bearer_resolve_congestion(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100956 return dsz;
957}
958
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900959/*
960 * tipc_link_send(): same as tipc_link_send_buf(), but the link to use has
Per Lidenb97bf3f2006-01-02 19:04:38 +0100961 * not been selected yet, and the the owner node is not locked
962 * Called by TIPC internal users, e.g. the name distributor
963 */
964
Per Liden4323add2006-01-18 00:38:21 +0100965int tipc_link_send(struct sk_buff *buf, u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100966{
967 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700968 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100969 int res = -ELINKCONG;
970
Per Liden4323add2006-01-18 00:38:21 +0100971 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000972 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100973 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +0100974 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100975 l_ptr = n_ptr->active_links[selector & 1];
Allan Stephensa0168922010-12-31 18:59:35 +0000976 if (l_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100977 res = tipc_link_send_buf(l_ptr, buf);
Allan Stephensa0168922010-12-31 18:59:35 +0000978 else
Allan Stephensc33d53b2006-06-25 23:50:30 -0700979 buf_discard(buf);
Per Liden4323add2006-01-18 00:38:21 +0100980 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100981 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100982 buf_discard(buf);
983 }
Per Liden4323add2006-01-18 00:38:21 +0100984 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100985 return res;
986}
987
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900988/*
Allan Stephens9aa88c22011-05-31 13:38:02 -0400989 * tipc_link_send_names - send name table entries to new neighbor
990 *
991 * Send routine for bulk delivery of name table messages when contact
992 * with a new neighbor occurs. No link congestion checking is performed
993 * because name table messages *must* be delivered. The messages must be
994 * small enough not to require fragmentation.
995 * Called without any locks held.
996 */
997
998void tipc_link_send_names(struct list_head *message_list, u32 dest)
999{
1000 struct tipc_node *n_ptr;
1001 struct link *l_ptr;
1002 struct sk_buff *buf;
1003 struct sk_buff *temp_buf;
1004
1005 if (list_empty(message_list))
1006 return;
1007
1008 read_lock_bh(&tipc_net_lock);
1009 n_ptr = tipc_node_find(dest);
1010 if (n_ptr) {
1011 tipc_node_lock(n_ptr);
1012 l_ptr = n_ptr->active_links[0];
1013 if (l_ptr) {
1014 /* convert circular list to linear list */
1015 ((struct sk_buff *)message_list->prev)->next = NULL;
1016 link_add_chain_to_outqueue(l_ptr,
1017 (struct sk_buff *)message_list->next, 0);
1018 tipc_link_push_queue(l_ptr);
1019 INIT_LIST_HEAD(message_list);
1020 }
1021 tipc_node_unlock(n_ptr);
1022 }
1023 read_unlock_bh(&tipc_net_lock);
1024
1025 /* discard the messages if they couldn't be sent */
1026
1027 list_for_each_safe(buf, temp_buf, ((struct sk_buff *)message_list)) {
1028 list_del((struct list_head *)buf);
1029 buf_discard(buf);
1030 }
1031}
1032
1033/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001034 * link_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001035 * destination link is known and the header is complete,
1036 * inclusive total message length. Very time critical.
1037 * Link is locked. Returns user data length.
1038 */
1039
Sam Ravnborg05790c62006-03-20 22:37:04 -08001040static int link_send_buf_fast(struct link *l_ptr, struct sk_buff *buf,
1041 u32 *used_max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001042{
1043 struct tipc_msg *msg = buf_msg(buf);
1044 int res = msg_data_sz(msg);
1045
1046 if (likely(!link_congested(l_ptr))) {
Allan Stephens15e979d2010-05-11 14:30:10 +00001047 if (likely(msg_size(msg) <= l_ptr->max_pkt)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001048 if (likely(list_empty(&l_ptr->b_ptr->cong_links))) {
1049 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +01001050 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf,
1051 &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001052 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001053 return res;
1054 }
Per Liden4323add2006-01-18 00:38:21 +01001055 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001056 l_ptr->stats.bearer_congs++;
1057 l_ptr->next_out = buf;
1058 return res;
1059 }
Allan Stephens0e659672010-12-31 18:59:32 +00001060 } else
Allan Stephens15e979d2010-05-11 14:30:10 +00001061 *used_max_pkt = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001062 }
Per Liden4323add2006-01-18 00:38:21 +01001063 return tipc_link_send_buf(l_ptr, buf); /* All other cases */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001064}
1065
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001066/*
1067 * tipc_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001068 * destination node is known and the header is complete,
1069 * inclusive total message length.
1070 * Returns user data length.
1071 */
1072int tipc_send_buf_fast(struct sk_buff *buf, u32 destnode)
1073{
1074 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001075 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001076 int res;
1077 u32 selector = msg_origport(buf_msg(buf)) & 1;
1078 u32 dummy;
1079
Per Liden4323add2006-01-18 00:38:21 +01001080 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001081 n_ptr = tipc_node_find(destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001082 if (likely(n_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001083 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001084 l_ptr = n_ptr->active_links[selector];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001085 if (likely(l_ptr)) {
1086 res = link_send_buf_fast(l_ptr, buf, &dummy);
Per Liden4323add2006-01-18 00:38:21 +01001087 tipc_node_unlock(n_ptr);
1088 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001089 return res;
1090 }
Per Liden4323add2006-01-18 00:38:21 +01001091 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001092 }
Per Liden4323add2006-01-18 00:38:21 +01001093 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001094 res = msg_data_sz(buf_msg(buf));
1095 tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1096 return res;
1097}
1098
1099
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001100/*
1101 * tipc_link_send_sections_fast: Entry for messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001102 * destination processor is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001103 * except for total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001104 * Returns user data length or errno.
1105 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001106int tipc_link_send_sections_fast(struct tipc_port *sender,
Per Liden4323add2006-01-18 00:38:21 +01001107 struct iovec const *msg_sect,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001108 const u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001109 unsigned int total_len,
Per Liden4323add2006-01-18 00:38:21 +01001110 u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001111{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001112 struct tipc_msg *hdr = &sender->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001113 struct link *l_ptr;
1114 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -07001115 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001116 int res;
1117 u32 selector = msg_origport(hdr) & 1;
1118
Per Lidenb97bf3f2006-01-02 19:04:38 +01001119again:
1120 /*
1121 * Try building message using port's max_pkt hint.
1122 * (Must not hold any locks while building message.)
1123 */
1124
Allan Stephens26896902011-04-21 10:42:07 -05001125 res = tipc_msg_build(hdr, msg_sect, num_sect, total_len,
1126 sender->max_pkt, !sender->user_port, &buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001127
Per Liden4323add2006-01-18 00:38:21 +01001128 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001129 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001130 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001131 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001132 l_ptr = node->active_links[selector];
1133 if (likely(l_ptr)) {
1134 if (likely(buf)) {
1135 res = link_send_buf_fast(l_ptr, buf,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001136 &sender->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001137exit:
Per Liden4323add2006-01-18 00:38:21 +01001138 tipc_node_unlock(node);
1139 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001140 return res;
1141 }
1142
1143 /* Exit if build request was invalid */
1144
1145 if (unlikely(res < 0))
1146 goto exit;
1147
1148 /* Exit if link (or bearer) is congested */
1149
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001150 if (link_congested(l_ptr) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +01001151 !list_empty(&l_ptr->b_ptr->cong_links)) {
1152 res = link_schedule_port(l_ptr,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001153 sender->ref, res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001154 goto exit;
1155 }
1156
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001157 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001158 * Message size exceeds max_pkt hint; update hint,
1159 * then re-try fast path or fragment the message
1160 */
1161
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001162 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001163 tipc_node_unlock(node);
1164 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001165
1166
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001167 if ((msg_hdr_sz(hdr) + res) <= sender->max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001168 goto again;
1169
1170 return link_send_sections_long(sender, msg_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001171 num_sect, total_len,
1172 destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001173 }
Per Liden4323add2006-01-18 00:38:21 +01001174 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001175 }
Per Liden4323add2006-01-18 00:38:21 +01001176 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001177
1178 /* Couldn't find a link to the destination node */
1179
1180 if (buf)
1181 return tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1182 if (res >= 0)
Per Liden4323add2006-01-18 00:38:21 +01001183 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001184 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001185 return res;
1186}
1187
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001188/*
1189 * link_send_sections_long(): Entry for long messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001190 * destination node is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001191 * inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001192 * Link and bearer congestion status have been checked to be ok,
1193 * and are ignored if they change.
1194 *
1195 * Note that fragments do not use the full link MTU so that they won't have
1196 * to undergo refragmentation if link changeover causes them to be sent
1197 * over another link with an additional tunnel header added as prefix.
1198 * (Refragmentation will still occur if the other link has a smaller MTU.)
1199 *
1200 * Returns user data length or errno.
1201 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001202static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001203 struct iovec const *msg_sect,
1204 u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001205 unsigned int total_len,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001206 u32 destaddr)
1207{
1208 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001209 struct tipc_node *node;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001210 struct tipc_msg *hdr = &sender->phdr;
Allan Stephens26896902011-04-21 10:42:07 -05001211 u32 dsz = total_len;
Allan Stephens0e659672010-12-31 18:59:32 +00001212 u32 max_pkt, fragm_sz, rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001213 struct tipc_msg fragm_hdr;
Allan Stephens0e659672010-12-31 18:59:32 +00001214 struct sk_buff *buf, *buf_chain, *prev;
1215 u32 fragm_crs, fragm_rest, hsz, sect_rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001216 const unchar *sect_crs;
1217 int curr_sect;
1218 u32 fragm_no;
1219
1220again:
1221 fragm_no = 1;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001222 max_pkt = sender->max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001223 /* leave room for tunnel header in case of link changeover */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001224 fragm_sz = max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001225 /* leave room for fragmentation header in each fragment */
1226 rest = dsz;
1227 fragm_crs = 0;
1228 fragm_rest = 0;
1229 sect_rest = 0;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001230 sect_crs = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001231 curr_sect = -1;
1232
1233 /* Prepare reusable fragment header: */
1234
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001235 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07001236 INT_H_SIZE, msg_destnode(hdr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001237 msg_set_size(&fragm_hdr, max_pkt);
1238 msg_set_fragm_no(&fragm_hdr, 1);
1239
1240 /* Prepare header of first fragment: */
1241
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001242 buf_chain = buf = tipc_buf_acquire(max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001243 if (!buf)
1244 return -ENOMEM;
1245 buf->next = NULL;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001246 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001247 hsz = msg_hdr_sz(hdr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001248 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, hdr, hsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001249
1250 /* Chop up message: */
1251
1252 fragm_crs = INT_H_SIZE + hsz;
1253 fragm_rest = fragm_sz - hsz;
1254
1255 do { /* For all sections */
1256 u32 sz;
1257
1258 if (!sect_rest) {
1259 sect_rest = msg_sect[++curr_sect].iov_len;
1260 sect_crs = (const unchar *)msg_sect[curr_sect].iov_base;
1261 }
1262
1263 if (sect_rest < fragm_rest)
1264 sz = sect_rest;
1265 else
1266 sz = fragm_rest;
1267
1268 if (likely(!sender->user_port)) {
1269 if (copy_from_user(buf->data + fragm_crs, sect_crs, sz)) {
1270error:
1271 for (; buf_chain; buf_chain = buf) {
1272 buf = buf_chain->next;
1273 buf_discard(buf_chain);
1274 }
1275 return -EFAULT;
1276 }
1277 } else
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001278 skb_copy_to_linear_data_offset(buf, fragm_crs,
1279 sect_crs, sz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001280 sect_crs += sz;
1281 sect_rest -= sz;
1282 fragm_crs += sz;
1283 fragm_rest -= sz;
1284 rest -= sz;
1285
1286 if (!fragm_rest && rest) {
1287
1288 /* Initiate new fragment: */
1289 if (rest <= fragm_sz) {
1290 fragm_sz = rest;
Allan Stephens0e659672010-12-31 18:59:32 +00001291 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001292 } else {
1293 msg_set_type(&fragm_hdr, FRAGMENT);
1294 }
1295 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
1296 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
1297 prev = buf;
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001298 buf = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001299 if (!buf)
1300 goto error;
1301
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001302 buf->next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001303 prev->next = buf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001304 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001305 fragm_crs = INT_H_SIZE;
1306 fragm_rest = fragm_sz;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001307 }
Allan Stephens0e659672010-12-31 18:59:32 +00001308 } while (rest > 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001309
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001310 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001311 * Now we have a buffer chain. Select a link and check
1312 * that packet size is still OK
1313 */
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001314 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001315 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001316 tipc_node_lock(node);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001317 l_ptr = node->active_links[sender->ref & 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001318 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01001319 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001320 goto reject;
1321 }
Allan Stephens15e979d2010-05-11 14:30:10 +00001322 if (l_ptr->max_pkt < max_pkt) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001323 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001324 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001325 for (; buf_chain; buf_chain = buf) {
1326 buf = buf_chain->next;
1327 buf_discard(buf_chain);
1328 }
1329 goto again;
1330 }
1331 } else {
1332reject:
1333 for (; buf_chain; buf_chain = buf) {
1334 buf = buf_chain->next;
1335 buf_discard(buf_chain);
1336 }
Per Liden4323add2006-01-18 00:38:21 +01001337 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001338 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001339 }
1340
Allan Stephensdc63d912011-04-21 11:50:42 -04001341 /* Append chain of fragments to send queue & send them */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001342
Allan Stephense0f08592011-04-17 11:44:24 -04001343 l_ptr->long_msg_seq_no++;
Allan Stephensdc63d912011-04-21 11:50:42 -04001344 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
1345 l_ptr->stats.sent_fragments += fragm_no;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001346 l_ptr->stats.sent_fragmented++;
Per Liden4323add2006-01-18 00:38:21 +01001347 tipc_link_push_queue(l_ptr);
1348 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001349 return dsz;
1350}
1351
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001352/*
Per Liden4323add2006-01-18 00:38:21 +01001353 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +01001354 */
Per Liden4323add2006-01-18 00:38:21 +01001355u32 tipc_link_push_packet(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001356{
1357 struct sk_buff *buf = l_ptr->first_out;
1358 u32 r_q_size = l_ptr->retransm_queue_size;
1359 u32 r_q_head = l_ptr->retransm_queue_head;
1360
1361 /* Step to position where retransmission failed, if any, */
1362 /* consider that buffers may have been released in meantime */
1363
1364 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001365 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +01001366 link_last_sent(l_ptr));
1367 u32 first = msg_seqno(buf_msg(buf));
1368
1369 while (buf && less(first, r_q_head)) {
1370 first = mod(first + 1);
1371 buf = buf->next;
1372 }
1373 l_ptr->retransm_queue_head = r_q_head = first;
1374 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1375 }
1376
1377 /* Continue retransmission now, if there is anything: */
1378
Neil Hormanca509102010-03-15 07:58:45 +00001379 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001380 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001381 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001382 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001383 l_ptr->retransm_queue_head = mod(++r_q_head);
1384 l_ptr->retransm_queue_size = --r_q_size;
1385 l_ptr->stats.retransmitted++;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001386 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001387 } else {
1388 l_ptr->stats.bearer_congs++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001389 return PUSH_FAILED;
1390 }
1391 }
1392
1393 /* Send deferred protocol message, if any: */
1394
1395 buf = l_ptr->proto_msg_queue;
1396 if (buf) {
1397 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +00001398 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001399 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001400 l_ptr->unacked_window = 0;
1401 buf_discard(buf);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001402 l_ptr->proto_msg_queue = NULL;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001403 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001404 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001405 l_ptr->stats.bearer_congs++;
1406 return PUSH_FAILED;
1407 }
1408 }
1409
1410 /* Send one deferred data message, if send window not full: */
1411
1412 buf = l_ptr->next_out;
1413 if (buf) {
1414 struct tipc_msg *msg = buf_msg(buf);
1415 u32 next = msg_seqno(msg);
1416 u32 first = msg_seqno(buf_msg(l_ptr->first_out));
1417
1418 if (mod(next - first) < l_ptr->queue_limit[0]) {
1419 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001420 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001421 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001422 if (msg_user(msg) == MSG_BUNDLER)
1423 msg_set_type(msg, CLOSED_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001424 l_ptr->next_out = buf->next;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001425 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001426 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001427 l_ptr->stats.bearer_congs++;
1428 return PUSH_FAILED;
1429 }
1430 }
1431 }
1432 return PUSH_FINISHED;
1433}
1434
1435/*
1436 * push_queue(): push out the unsent messages of a link where
1437 * congestion has abated. Node is locked
1438 */
Per Liden4323add2006-01-18 00:38:21 +01001439void tipc_link_push_queue(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001440{
1441 u32 res;
1442
Per Liden4323add2006-01-18 00:38:21 +01001443 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001444 return;
1445
1446 do {
Per Liden4323add2006-01-18 00:38:21 +01001447 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001448 } while (!res);
1449
Per Lidenb97bf3f2006-01-02 19:04:38 +01001450 if (res == PUSH_FAILED)
Per Liden4323add2006-01-18 00:38:21 +01001451 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001452}
1453
Allan Stephensd356eeb2006-06-25 23:40:01 -07001454static void link_reset_all(unsigned long addr)
1455{
David S. Miller6c000552008-09-02 23:38:32 -07001456 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001457 char addr_string[16];
1458 u32 i;
1459
1460 read_lock_bh(&tipc_net_lock);
1461 n_ptr = tipc_node_find((u32)addr);
1462 if (!n_ptr) {
1463 read_unlock_bh(&tipc_net_lock);
1464 return; /* node no longer exists */
1465 }
1466
1467 tipc_node_lock(n_ptr);
1468
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001469 warn("Resetting all links to %s\n",
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001470 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -07001471
1472 for (i = 0; i < MAX_BEARERS; i++) {
1473 if (n_ptr->links[i]) {
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001474 link_print(n_ptr->links[i], "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001475 tipc_link_reset(n_ptr->links[i]);
1476 }
1477 }
1478
1479 tipc_node_unlock(n_ptr);
1480 read_unlock_bh(&tipc_net_lock);
1481}
1482
1483static void link_retransmit_failure(struct link *l_ptr, struct sk_buff *buf)
1484{
1485 struct tipc_msg *msg = buf_msg(buf);
1486
1487 warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001488
1489 if (l_ptr->addr) {
1490
1491 /* Handle failure on standard link */
1492
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001493 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001494 tipc_link_reset(l_ptr);
1495
1496 } else {
1497
1498 /* Handle failure on broadcast link */
1499
David S. Miller6c000552008-09-02 23:38:32 -07001500 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001501 char addr_string[16];
1502
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001503 info("Msg seq number: %u, ", msg_seqno(msg));
1504 info("Outstanding acks: %lu\n",
1505 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -07001506
Allan Stephens01d83ed2011-01-18 13:53:16 -05001507 n_ptr = tipc_bclink_retransmit_to();
Allan Stephensd356eeb2006-06-25 23:40:01 -07001508 tipc_node_lock(n_ptr);
1509
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001510 tipc_addr_string_fill(addr_string, n_ptr->addr);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001511 info("Multicast link info for %s\n", addr_string);
1512 info("Supported: %d, ", n_ptr->bclink.supported);
1513 info("Acked: %u\n", n_ptr->bclink.acked);
1514 info("Last in: %u, ", n_ptr->bclink.last_in);
1515 info("Gap after: %u, ", n_ptr->bclink.gap_after);
1516 info("Gap to: %u\n", n_ptr->bclink.gap_to);
1517 info("Nack sync: %u\n\n", n_ptr->bclink.nack_sync);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001518
1519 tipc_k_signal((Handler)link_reset_all, (unsigned long)n_ptr->addr);
1520
1521 tipc_node_unlock(n_ptr);
1522
1523 l_ptr->stale_count = 0;
1524 }
1525}
1526
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001527void tipc_link_retransmit(struct link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001528 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001529{
1530 struct tipc_msg *msg;
1531
Allan Stephensd356eeb2006-06-25 23:40:01 -07001532 if (!buf)
1533 return;
1534
1535 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001536
Allan Stephensd356eeb2006-06-25 23:40:01 -07001537 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
Neil Hormanca509102010-03-15 07:58:45 +00001538 if (l_ptr->retransm_queue_size == 0) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001539 l_ptr->retransm_queue_head = msg_seqno(msg);
1540 l_ptr->retransm_queue_size = retransmits;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001541 } else {
Neil Hormanca509102010-03-15 07:58:45 +00001542 err("Unexpected retransmit on link %s (qsize=%d)\n",
1543 l_ptr->name, l_ptr->retransm_queue_size);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001544 }
Neil Hormanca509102010-03-15 07:58:45 +00001545 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001546 } else {
1547 /* Detect repeated retransmit failures on uncongested bearer */
1548
1549 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1550 if (++l_ptr->stale_count > 100) {
1551 link_retransmit_failure(l_ptr, buf);
1552 return;
1553 }
1554 } else {
1555 l_ptr->last_retransmitted = msg_seqno(msg);
1556 l_ptr->stale_count = 1;
1557 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001558 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001559
Neil Hormanca509102010-03-15 07:58:45 +00001560 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001561 msg = buf_msg(buf);
1562 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001563 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001564 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001565 buf = buf->next;
1566 retransmits--;
1567 l_ptr->stats.retransmitted++;
1568 } else {
Per Liden4323add2006-01-18 00:38:21 +01001569 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001570 l_ptr->stats.bearer_congs++;
1571 l_ptr->retransm_queue_head = msg_seqno(buf_msg(buf));
1572 l_ptr->retransm_queue_size = retransmits;
1573 return;
1574 }
1575 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001576
Per Lidenb97bf3f2006-01-02 19:04:38 +01001577 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1578}
1579
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001580/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001581 * link_insert_deferred_queue - insert deferred messages back into receive chain
1582 */
1583
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001584static struct sk_buff *link_insert_deferred_queue(struct link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001585 struct sk_buff *buf)
1586{
1587 u32 seq_no;
1588
1589 if (l_ptr->oldest_deferred_in == NULL)
1590 return buf;
1591
1592 seq_no = msg_seqno(buf_msg(l_ptr->oldest_deferred_in));
1593 if (seq_no == mod(l_ptr->next_in_no)) {
1594 l_ptr->newest_deferred_in->next = buf;
1595 buf = l_ptr->oldest_deferred_in;
1596 l_ptr->oldest_deferred_in = NULL;
1597 l_ptr->deferred_inqueue_sz = 0;
1598 }
1599 return buf;
1600}
1601
Allan Stephens85035562008-04-15 19:04:54 -07001602/**
1603 * link_recv_buf_validate - validate basic format of received message
1604 *
1605 * This routine ensures a TIPC message has an acceptable header, and at least
1606 * as much data as the header indicates it should. The routine also ensures
1607 * that the entire message header is stored in the main fragment of the message
1608 * buffer, to simplify future access to message header fields.
1609 *
1610 * Note: Having extra info present in the message header or data areas is OK.
1611 * TIPC will ignore the excess, under the assumption that it is optional info
1612 * introduced by a later release of the protocol.
1613 */
1614
1615static int link_recv_buf_validate(struct sk_buff *buf)
1616{
1617 static u32 min_data_hdr_size[8] = {
Allan Stephens741d9eb2011-05-31 15:03:18 -04001618 SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,
Allan Stephens85035562008-04-15 19:04:54 -07001619 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1620 };
1621
1622 struct tipc_msg *msg;
1623 u32 tipc_hdr[2];
1624 u32 size;
1625 u32 hdr_size;
1626 u32 min_hdr_size;
1627
1628 if (unlikely(buf->len < MIN_H_SIZE))
1629 return 0;
1630
1631 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1632 if (msg == NULL)
1633 return 0;
1634
1635 if (unlikely(msg_version(msg) != TIPC_VERSION))
1636 return 0;
1637
1638 size = msg_size(msg);
1639 hdr_size = msg_hdr_sz(msg);
1640 min_hdr_size = msg_isdata(msg) ?
1641 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1642
1643 if (unlikely((hdr_size < min_hdr_size) ||
1644 (size < hdr_size) ||
1645 (buf->len < size) ||
1646 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1647 return 0;
1648
1649 return pskb_may_pull(buf, hdr_size);
1650}
1651
Allan Stephensb02b69c2010-08-17 11:00:07 +00001652/**
1653 * tipc_recv_msg - process TIPC messages arriving from off-node
1654 * @head: pointer to message buffer chain
1655 * @tb_ptr: pointer to bearer message arrived on
1656 *
1657 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1658 * structure (i.e. cannot be NULL), but bearer can be inactive.
1659 */
1660
Allan Stephens2d627b92011-01-07 13:00:11 -05001661void tipc_recv_msg(struct sk_buff *head, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001662{
Per Liden4323add2006-01-18 00:38:21 +01001663 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001664 while (head) {
David S. Miller6c000552008-09-02 23:38:32 -07001665 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001666 struct link *l_ptr;
1667 struct sk_buff *crs;
1668 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001669 struct tipc_msg *msg;
1670 u32 seq_no;
1671 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001672 u32 released = 0;
1673 int type;
1674
Per Lidenb97bf3f2006-01-02 19:04:38 +01001675 head = head->next;
Allan Stephens85035562008-04-15 19:04:54 -07001676
Allan Stephensb02b69c2010-08-17 11:00:07 +00001677 /* Ensure bearer is still enabled */
1678
1679 if (unlikely(!b_ptr->active))
1680 goto cont;
1681
Allan Stephens85035562008-04-15 19:04:54 -07001682 /* Ensure message is well-formed */
1683
1684 if (unlikely(!link_recv_buf_validate(buf)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001685 goto cont;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001686
Allan Stephensfe13dda2008-04-15 19:03:23 -07001687 /* Ensure message data is a single contiguous unit */
1688
Allan Stephensa0168922010-12-31 18:59:35 +00001689 if (unlikely(buf_linearize(buf)))
Allan Stephensfe13dda2008-04-15 19:03:23 -07001690 goto cont;
Allan Stephensfe13dda2008-04-15 19:03:23 -07001691
Allan Stephens85035562008-04-15 19:04:54 -07001692 /* Handle arrival of a non-unicast link message */
1693
1694 msg = buf_msg(buf);
1695
Per Lidenb97bf3f2006-01-02 19:04:38 +01001696 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001697 if (msg_user(msg) == LINK_CONFIG)
1698 tipc_disc_recv_msg(buf, b_ptr);
1699 else
1700 tipc_bclink_recv_pkt(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001701 continue;
1702 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001703
Allan Stephensed33a9c2011-04-05 15:15:04 -04001704 /* Discard unicast link messages destined for another node */
1705
Allan Stephens26008242006-06-25 23:39:31 -07001706 if (unlikely(!msg_short(msg) &&
1707 (msg_destnode(msg) != tipc_own_addr)))
1708 goto cont;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001709
Allan Stephens5a68d5ee2010-08-17 11:00:16 +00001710 /* Locate neighboring node that sent message */
Allan Stephens85035562008-04-15 19:04:54 -07001711
Per Liden4323add2006-01-18 00:38:21 +01001712 n_ptr = tipc_node_find(msg_prevnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001713 if (unlikely(!n_ptr))
1714 goto cont;
Per Liden4323add2006-01-18 00:38:21 +01001715 tipc_node_lock(n_ptr);
Allan Stephens85035562008-04-15 19:04:54 -07001716
Allan Stephens5a68d5ee2010-08-17 11:00:16 +00001717 /* Locate unicast link endpoint that should handle message */
1718
Per Lidenb97bf3f2006-01-02 19:04:38 +01001719 l_ptr = n_ptr->links[b_ptr->identity];
1720 if (unlikely(!l_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001721 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001722 goto cont;
1723 }
Allan Stephens85035562008-04-15 19:04:54 -07001724
Allan Stephensb4b56102011-05-27 11:00:51 -04001725 /* Verify that communication with node is currently allowed */
1726
1727 if ((n_ptr->block_setup & WAIT_PEER_DOWN) &&
1728 msg_user(msg) == LINK_PROTOCOL &&
1729 (msg_type(msg) == RESET_MSG ||
1730 msg_type(msg) == ACTIVATE_MSG) &&
1731 !msg_redundant_link(msg))
1732 n_ptr->block_setup &= ~WAIT_PEER_DOWN;
1733
1734 if (n_ptr->block_setup) {
1735 tipc_node_unlock(n_ptr);
1736 goto cont;
1737 }
1738
Allan Stephens85035562008-04-15 19:04:54 -07001739 /* Validate message sequence number info */
1740
1741 seq_no = msg_seqno(msg);
1742 ackd = msg_ack(msg);
1743
1744 /* Release acked messages */
1745
Per Lidenb97bf3f2006-01-02 19:04:38 +01001746 if (less(n_ptr->bclink.acked, msg_bcast_ack(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01001747 if (tipc_node_is_up(n_ptr) && n_ptr->bclink.supported)
1748 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001749 }
1750
1751 crs = l_ptr->first_out;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001752 while ((crs != l_ptr->next_out) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001753 less_eq(msg_seqno(buf_msg(crs)), ackd)) {
1754 struct sk_buff *next = crs->next;
1755
1756 buf_discard(crs);
1757 crs = next;
1758 released++;
1759 }
1760 if (released) {
1761 l_ptr->first_out = crs;
1762 l_ptr->out_queue_size -= released;
1763 }
Allan Stephens85035562008-04-15 19:04:54 -07001764
1765 /* Try sending any messages link endpoint has pending */
1766
Per Lidenb97bf3f2006-01-02 19:04:38 +01001767 if (unlikely(l_ptr->next_out))
Per Liden4323add2006-01-18 00:38:21 +01001768 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001769 if (unlikely(!list_empty(&l_ptr->waiting_ports)))
Per Liden4323add2006-01-18 00:38:21 +01001770 tipc_link_wakeup_ports(l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001771 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1772 l_ptr->stats.sent_acks++;
Per Liden4323add2006-01-18 00:38:21 +01001773 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001774 }
1775
Allan Stephens85035562008-04-15 19:04:54 -07001776 /* Now (finally!) process the incoming message */
1777
Per Lidenb97bf3f2006-01-02 19:04:38 +01001778protocol_check:
1779 if (likely(link_working_working(l_ptr))) {
1780 if (likely(seq_no == mod(l_ptr->next_in_no))) {
1781 l_ptr->next_in_no++;
1782 if (unlikely(l_ptr->oldest_deferred_in))
1783 head = link_insert_deferred_queue(l_ptr,
1784 head);
1785 if (likely(msg_is_dest(msg, tipc_own_addr))) {
1786deliver:
1787 if (likely(msg_isdata(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01001788 tipc_node_unlock(n_ptr);
1789 tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001790 continue;
1791 }
1792 switch (msg_user(msg)) {
1793 case MSG_BUNDLER:
1794 l_ptr->stats.recv_bundles++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001795 l_ptr->stats.recv_bundled +=
Per Lidenb97bf3f2006-01-02 19:04:38 +01001796 msg_msgcnt(msg);
Per Liden4323add2006-01-18 00:38:21 +01001797 tipc_node_unlock(n_ptr);
1798 tipc_link_recv_bundle(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001799 continue;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001800 case NAME_DISTRIBUTOR:
Per Liden4323add2006-01-18 00:38:21 +01001801 tipc_node_unlock(n_ptr);
1802 tipc_named_recv(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001803 continue;
1804 case CONN_MANAGER:
Per Liden4323add2006-01-18 00:38:21 +01001805 tipc_node_unlock(n_ptr);
1806 tipc_port_recv_proto_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001807 continue;
1808 case MSG_FRAGMENTER:
1809 l_ptr->stats.recv_fragments++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001810 if (tipc_link_recv_fragment(&l_ptr->defragm_buf,
Per Liden4323add2006-01-18 00:38:21 +01001811 &buf, &msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001812 l_ptr->stats.recv_fragmented++;
1813 goto deliver;
1814 }
1815 break;
1816 case CHANGEOVER_PROTOCOL:
1817 type = msg_type(msg);
Per Liden4323add2006-01-18 00:38:21 +01001818 if (link_recv_changeover_msg(&l_ptr, &buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001819 msg = buf_msg(buf);
1820 seq_no = msg_seqno(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001821 if (type == ORIGINAL_MSG)
1822 goto deliver;
1823 goto protocol_check;
1824 }
1825 break;
Allan Stephens7945c1f2011-03-11 13:09:28 -05001826 default:
1827 buf_discard(buf);
1828 buf = NULL;
1829 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001830 }
1831 }
Per Liden4323add2006-01-18 00:38:21 +01001832 tipc_node_unlock(n_ptr);
1833 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001834 continue;
1835 }
1836 link_handle_out_of_seq_msg(l_ptr, buf);
1837 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001838 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001839 continue;
1840 }
1841
1842 if (msg_user(msg) == LINK_PROTOCOL) {
1843 link_recv_proto_msg(l_ptr, buf);
1844 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001845 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001846 continue;
1847 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001848 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1849
1850 if (link_working_working(l_ptr)) {
1851 /* Re-insert in front of queue */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001852 buf->next = head;
1853 head = buf;
Per Liden4323add2006-01-18 00:38:21 +01001854 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001855 continue;
1856 }
Per Liden4323add2006-01-18 00:38:21 +01001857 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001858cont:
1859 buf_discard(buf);
1860 }
Per Liden4323add2006-01-18 00:38:21 +01001861 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001862}
1863
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001864/*
1865 * link_defer_buf(): Sort a received out-of-sequence packet
Per Lidenb97bf3f2006-01-02 19:04:38 +01001866 * into the deferred reception queue.
1867 * Returns the increase of the queue length,i.e. 0 or 1
1868 */
1869
Per Liden4323add2006-01-18 00:38:21 +01001870u32 tipc_link_defer_pkt(struct sk_buff **head,
1871 struct sk_buff **tail,
1872 struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001873{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001874 struct sk_buff *prev = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001875 struct sk_buff *crs = *head;
1876 u32 seq_no = msg_seqno(buf_msg(buf));
1877
1878 buf->next = NULL;
1879
1880 /* Empty queue ? */
1881 if (*head == NULL) {
1882 *head = *tail = buf;
1883 return 1;
1884 }
1885
1886 /* Last ? */
1887 if (less(msg_seqno(buf_msg(*tail)), seq_no)) {
1888 (*tail)->next = buf;
1889 *tail = buf;
1890 return 1;
1891 }
1892
1893 /* Scan through queue and sort it in */
1894 do {
1895 struct tipc_msg *msg = buf_msg(crs);
1896
1897 if (less(seq_no, msg_seqno(msg))) {
1898 buf->next = crs;
1899 if (prev)
1900 prev->next = buf;
1901 else
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001902 *head = buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001903 return 1;
1904 }
Allan Stephensa0168922010-12-31 18:59:35 +00001905 if (seq_no == msg_seqno(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001906 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001907 prev = crs;
1908 crs = crs->next;
Allan Stephens0e659672010-12-31 18:59:32 +00001909 } while (crs);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001910
1911 /* Message is a duplicate of an existing message */
1912
1913 buf_discard(buf);
1914 return 0;
1915}
1916
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001917/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001918 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1919 */
1920
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001921static void link_handle_out_of_seq_msg(struct link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001922 struct sk_buff *buf)
1923{
1924 u32 seq_no = msg_seqno(buf_msg(buf));
1925
1926 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
1927 link_recv_proto_msg(l_ptr, buf);
1928 return;
1929 }
1930
Per Lidenb97bf3f2006-01-02 19:04:38 +01001931 /* Record OOS packet arrival (force mismatch on next timeout) */
1932
1933 l_ptr->checkpoint--;
1934
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001935 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001936 * Discard packet if a duplicate; otherwise add it to deferred queue
1937 * and notify peer of gap as per protocol specification
1938 */
1939
1940 if (less(seq_no, mod(l_ptr->next_in_no))) {
1941 l_ptr->stats.duplicates++;
1942 buf_discard(buf);
1943 return;
1944 }
1945
Per Liden4323add2006-01-18 00:38:21 +01001946 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1947 &l_ptr->newest_deferred_in, buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001948 l_ptr->deferred_inqueue_sz++;
1949 l_ptr->stats.deferred_recv++;
1950 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
Per Liden4323add2006-01-18 00:38:21 +01001951 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001952 } else
1953 l_ptr->stats.duplicates++;
1954}
1955
1956/*
1957 * Send protocol message to the other endpoint.
1958 */
Per Liden4323add2006-01-18 00:38:21 +01001959void tipc_link_send_proto_msg(struct link *l_ptr, u32 msg_typ, int probe_msg,
1960 u32 gap, u32 tolerance, u32 priority, u32 ack_mtu)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001961{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001962 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001963 struct tipc_msg *msg = l_ptr->pmsg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001964 u32 msg_size = sizeof(l_ptr->proto_msg);
Allan Stephens75f0aa42011-02-28 15:30:20 -05001965 int r_flag;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001966
1967 if (link_blocked(l_ptr))
1968 return;
Allan Stephensb4b56102011-05-27 11:00:51 -04001969
1970 /* Abort non-RESET send if communication with node is prohibited */
1971
1972 if ((l_ptr->owner->block_setup) && (msg_typ != RESET_MSG))
1973 return;
1974
Per Lidenb97bf3f2006-01-02 19:04:38 +01001975 msg_set_type(msg, msg_typ);
1976 msg_set_net_plane(msg, l_ptr->b_ptr->net_plane);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001977 msg_set_bcast_ack(msg, mod(l_ptr->owner->bclink.last_in));
Per Liden4323add2006-01-18 00:38:21 +01001978 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
Per Lidenb97bf3f2006-01-02 19:04:38 +01001979
1980 if (msg_typ == STATE_MSG) {
1981 u32 next_sent = mod(l_ptr->next_out_no);
1982
Per Liden4323add2006-01-18 00:38:21 +01001983 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001984 return;
1985 if (l_ptr->next_out)
1986 next_sent = msg_seqno(buf_msg(l_ptr->next_out));
1987 msg_set_next_sent(msg, next_sent);
1988 if (l_ptr->oldest_deferred_in) {
1989 u32 rec = msg_seqno(buf_msg(l_ptr->oldest_deferred_in));
1990 gap = mod(rec - mod(l_ptr->next_in_no));
1991 }
1992 msg_set_seq_gap(msg, gap);
1993 if (gap)
1994 l_ptr->stats.sent_nacks++;
1995 msg_set_link_tolerance(msg, tolerance);
1996 msg_set_linkprio(msg, priority);
1997 msg_set_max_pkt(msg, ack_mtu);
1998 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1999 msg_set_probe(msg, probe_msg != 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002000 if (probe_msg) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002001 u32 mtu = l_ptr->max_pkt;
2002
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002003 if ((mtu < l_ptr->max_pkt_target) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002004 link_working_working(l_ptr) &&
2005 l_ptr->fsm_msg_cnt) {
2006 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002007 if (l_ptr->max_pkt_probes == 10) {
2008 l_ptr->max_pkt_target = (msg_size - 4);
2009 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002010 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002011 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002012 l_ptr->max_pkt_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002013 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002014
2015 l_ptr->stats.sent_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002016 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002017 l_ptr->stats.sent_states++;
2018 } else { /* RESET_MSG or ACTIVATE_MSG */
2019 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
2020 msg_set_seq_gap(msg, 0);
2021 msg_set_next_sent(msg, 1);
Allan Stephensf23d9bf2011-01-18 15:15:34 -05002022 msg_set_probe(msg, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002023 msg_set_link_tolerance(msg, l_ptr->tolerance);
2024 msg_set_linkprio(msg, l_ptr->priority);
2025 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
2026 }
2027
Allan Stephens75f0aa42011-02-28 15:30:20 -05002028 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
2029 msg_set_redundant_link(msg, r_flag);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002030 msg_set_linkprio(msg, l_ptr->priority);
2031
2032 /* Ensure sequence number will not fit : */
2033
2034 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
2035
2036 /* Congestion? */
2037
Per Liden4323add2006-01-18 00:38:21 +01002038 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002039 if (!l_ptr->proto_msg_queue) {
2040 l_ptr->proto_msg_queue =
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002041 tipc_buf_acquire(sizeof(l_ptr->proto_msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002042 }
2043 buf = l_ptr->proto_msg_queue;
2044 if (!buf)
2045 return;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002046 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002047 return;
2048 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002049
2050 /* Message can be sent */
2051
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002052 buf = tipc_buf_acquire(msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002053 if (!buf)
2054 return;
2055
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002056 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002057 msg_set_size(buf_msg(buf), msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002058
Per Liden4323add2006-01-18 00:38:21 +01002059 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002060 l_ptr->unacked_window = 0;
2061 buf_discard(buf);
2062 return;
2063 }
2064
2065 /* New congestion */
Per Liden4323add2006-01-18 00:38:21 +01002066 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002067 l_ptr->proto_msg_queue = buf;
2068 l_ptr->stats.bearer_congs++;
2069}
2070
2071/*
2072 * Receive protocol message :
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002073 * Note that network plane id propagates through the network, and may
2074 * change at any time. The node with lowest address rules
Per Lidenb97bf3f2006-01-02 19:04:38 +01002075 */
2076
2077static void link_recv_proto_msg(struct link *l_ptr, struct sk_buff *buf)
2078{
2079 u32 rec_gap = 0;
2080 u32 max_pkt_info;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002081 u32 max_pkt_ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002082 u32 msg_tol;
2083 struct tipc_msg *msg = buf_msg(buf);
2084
Per Lidenb97bf3f2006-01-02 19:04:38 +01002085 if (link_blocked(l_ptr))
2086 goto exit;
2087
2088 /* record unnumbered packet arrival (force mismatch on next timeout) */
2089
2090 l_ptr->checkpoint--;
2091
2092 if (l_ptr->b_ptr->net_plane != msg_net_plane(msg))
2093 if (tipc_own_addr > msg_prevnode(msg))
2094 l_ptr->b_ptr->net_plane = msg_net_plane(msg);
2095
2096 l_ptr->owner->permit_changeover = msg_redundant_link(msg);
2097
2098 switch (msg_type(msg)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002099
Per Lidenb97bf3f2006-01-02 19:04:38 +01002100 case RESET_MSG:
Allan Stephensa686e682008-06-04 17:29:39 -07002101 if (!link_working_unknown(l_ptr) &&
2102 (l_ptr->peer_session != INVALID_SESSION)) {
Allan Stephens641c2182011-04-07 09:54:43 -04002103 if (less_eq(msg_session(msg), l_ptr->peer_session))
2104 break; /* duplicate or old reset: ignore */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002105 }
Allan Stephensb4b56102011-05-27 11:00:51 -04002106
2107 if (!msg_redundant_link(msg) && (link_working_working(l_ptr) ||
2108 link_working_unknown(l_ptr))) {
2109 /*
2110 * peer has lost contact -- don't allow peer's links
2111 * to reactivate before we recognize loss & clean up
2112 */
2113 l_ptr->owner->block_setup = WAIT_NODE_DOWN;
2114 }
2115
Per Lidenb97bf3f2006-01-02 19:04:38 +01002116 /* fall thru' */
2117 case ACTIVATE_MSG:
2118 /* Update link settings according other endpoint's values */
2119
2120 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
2121
Allan Stephens2db99832010-12-31 18:59:33 +00002122 msg_tol = msg_link_tolerance(msg);
2123 if (msg_tol > l_ptr->tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002124 link_set_supervision_props(l_ptr, msg_tol);
2125
2126 if (msg_linkprio(msg) > l_ptr->priority)
2127 l_ptr->priority = msg_linkprio(msg);
2128
2129 max_pkt_info = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002130 if (max_pkt_info) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002131 if (max_pkt_info < l_ptr->max_pkt_target)
2132 l_ptr->max_pkt_target = max_pkt_info;
2133 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
2134 l_ptr->max_pkt = l_ptr->max_pkt_target;
2135 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002136 l_ptr->max_pkt = l_ptr->max_pkt_target;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002137 }
2138 l_ptr->owner->bclink.supported = (max_pkt_info != 0);
2139
2140 link_state_event(l_ptr, msg_type(msg));
2141
2142 l_ptr->peer_session = msg_session(msg);
2143 l_ptr->peer_bearer_id = msg_bearer_id(msg);
2144
2145 /* Synchronize broadcast sequence numbers */
Paul Gortmaker8f19afb2011-02-28 11:36:21 -04002146 if (!tipc_node_redundant_links(l_ptr->owner))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002147 l_ptr->owner->bclink.last_in = mod(msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002148 break;
2149 case STATE_MSG:
2150
Allan Stephens2db99832010-12-31 18:59:33 +00002151 msg_tol = msg_link_tolerance(msg);
2152 if (msg_tol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002153 link_set_supervision_props(l_ptr, msg_tol);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002154
2155 if (msg_linkprio(msg) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002156 (msg_linkprio(msg) != l_ptr->priority)) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002157 warn("Resetting link <%s>, priority change %u->%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002158 l_ptr->name, l_ptr->priority, msg_linkprio(msg));
2159 l_ptr->priority = msg_linkprio(msg);
Per Liden4323add2006-01-18 00:38:21 +01002160 tipc_link_reset(l_ptr); /* Enforce change to take effect */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002161 break;
2162 }
2163 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
2164 l_ptr->stats.recv_states++;
2165 if (link_reset_unknown(l_ptr))
2166 break;
2167
2168 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002169 rec_gap = mod(msg_next_sent(msg) -
Per Lidenb97bf3f2006-01-02 19:04:38 +01002170 mod(l_ptr->next_in_no));
2171 }
2172
2173 max_pkt_ack = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002174 if (max_pkt_ack > l_ptr->max_pkt) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002175 l_ptr->max_pkt = max_pkt_ack;
2176 l_ptr->max_pkt_probes = 0;
2177 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002178
2179 max_pkt_ack = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002180 if (msg_probe(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002181 l_ptr->stats.recv_probes++;
Allan Stephensa0168922010-12-31 18:59:35 +00002182 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002183 max_pkt_ack = msg_size(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002184 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002185
2186 /* Protocol message before retransmits, reduce loss risk */
2187
Per Liden4323add2006-01-18 00:38:21 +01002188 tipc_bclink_check_gap(l_ptr->owner, msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002189
2190 if (rec_gap || (msg_probe(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01002191 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
2192 0, rec_gap, 0, 0, max_pkt_ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002193 }
2194 if (msg_seq_gap(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002195 l_ptr->stats.recv_nacks++;
Per Liden4323add2006-01-18 00:38:21 +01002196 tipc_link_retransmit(l_ptr, l_ptr->first_out,
2197 msg_seq_gap(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002198 }
2199 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002200 }
2201exit:
2202 buf_discard(buf);
2203}
2204
2205
2206/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002207 * tipc_link_tunnel(): Send one message via a link belonging to
Per Lidenb97bf3f2006-01-02 19:04:38 +01002208 * another bearer. Owner node is locked.
2209 */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002210static void tipc_link_tunnel(struct link *l_ptr,
2211 struct tipc_msg *tunnel_hdr,
2212 struct tipc_msg *msg,
2213 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002214{
2215 struct link *tunnel;
2216 struct sk_buff *buf;
2217 u32 length = msg_size(msg);
2218
2219 tunnel = l_ptr->owner->active_links[selector & 1];
Allan Stephens5392d642006-06-25 23:52:50 -07002220 if (!tipc_link_is_up(tunnel)) {
2221 warn("Link changeover error, "
2222 "tunnel link no longer available\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002223 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002224 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002225 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002226 buf = tipc_buf_acquire(length + INT_H_SIZE);
Allan Stephens5392d642006-06-25 23:52:50 -07002227 if (!buf) {
2228 warn("Link changeover error, "
2229 "unable to send tunnel msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002230 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002231 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002232 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
2233 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
Per Liden4323add2006-01-18 00:38:21 +01002234 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002235}
2236
2237
2238
2239/*
2240 * changeover(): Send whole message queue via the remaining link
2241 * Owner node is locked.
2242 */
2243
Per Liden4323add2006-01-18 00:38:21 +01002244void tipc_link_changeover(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002245{
2246 u32 msgcount = l_ptr->out_queue_size;
2247 struct sk_buff *crs = l_ptr->first_out;
2248 struct link *tunnel = l_ptr->owner->active_links[0];
Per Lidenb97bf3f2006-01-02 19:04:38 +01002249 struct tipc_msg tunnel_hdr;
Allan Stephens5392d642006-06-25 23:52:50 -07002250 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002251
2252 if (!tunnel)
2253 return;
2254
Allan Stephens5392d642006-06-25 23:52:50 -07002255 if (!l_ptr->owner->permit_changeover) {
2256 warn("Link changeover error, "
2257 "peer did not permit changeover\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002258 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002259 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002260
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002261 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002262 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002263 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2264 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07002265
Per Lidenb97bf3f2006-01-02 19:04:38 +01002266 if (!l_ptr->first_out) {
2267 struct sk_buff *buf;
2268
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002269 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002270 if (buf) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002271 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002272 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Per Liden4323add2006-01-18 00:38:21 +01002273 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002274 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002275 warn("Link changeover error, "
2276 "unable to send changeover msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002277 }
2278 return;
2279 }
Allan Stephensf1310722006-06-25 23:51:37 -07002280
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002281 split_bundles = (l_ptr->owner->active_links[0] !=
Allan Stephens5392d642006-06-25 23:52:50 -07002282 l_ptr->owner->active_links[1]);
2283
Per Lidenb97bf3f2006-01-02 19:04:38 +01002284 while (crs) {
2285 struct tipc_msg *msg = buf_msg(crs);
2286
2287 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002288 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00002289 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002290
Florian Westphald788d802007-08-02 19:28:06 -07002291 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002292 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00002293 msg_set_seqno(m, msg_seqno(msg));
Per Liden4323add2006-01-18 00:38:21 +01002294 tipc_link_tunnel(l_ptr, &tunnel_hdr, m,
2295 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002296 pos += align(msg_size(m));
2297 m = (struct tipc_msg *)pos;
2298 }
2299 } else {
Per Liden4323add2006-01-18 00:38:21 +01002300 tipc_link_tunnel(l_ptr, &tunnel_hdr, msg,
2301 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002302 }
2303 crs = crs->next;
2304 }
2305}
2306
Per Liden4323add2006-01-18 00:38:21 +01002307void tipc_link_send_duplicate(struct link *l_ptr, struct link *tunnel)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002308{
2309 struct sk_buff *iter;
2310 struct tipc_msg tunnel_hdr;
2311
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002312 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002313 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002314 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
2315 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2316 iter = l_ptr->first_out;
2317 while (iter) {
2318 struct sk_buff *outbuf;
2319 struct tipc_msg *msg = buf_msg(iter);
2320 u32 length = msg_size(msg);
2321
2322 if (msg_user(msg) == MSG_BUNDLER)
2323 msg_set_type(msg, CLOSED_MSG);
2324 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002325 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002326 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002327 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002328 if (outbuf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002329 warn("Link changeover error, "
2330 "unable to send duplicate msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002331 return;
2332 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002333 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
2334 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
2335 length);
Per Liden4323add2006-01-18 00:38:21 +01002336 tipc_link_send_buf(tunnel, outbuf);
2337 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002338 return;
2339 iter = iter->next;
2340 }
2341}
2342
2343
2344
2345/**
2346 * buf_extract - extracts embedded TIPC message from another message
2347 * @skb: encapsulating message buffer
2348 * @from_pos: offset to extract from
2349 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002350 * Returns a new message buffer containing an embedded message. The
Per Lidenb97bf3f2006-01-02 19:04:38 +01002351 * encapsulating message itself is left unchanged.
2352 */
2353
2354static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
2355{
2356 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
2357 u32 size = msg_size(msg);
2358 struct sk_buff *eb;
2359
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002360 eb = tipc_buf_acquire(size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002361 if (eb)
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002362 skb_copy_to_linear_data(eb, msg, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002363 return eb;
2364}
2365
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002366/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01002367 * link_recv_changeover_msg(): Receive tunneled packet sent
2368 * via other link. Node is locked. Return extracted buffer.
2369 */
2370
2371static int link_recv_changeover_msg(struct link **l_ptr,
2372 struct sk_buff **buf)
2373{
2374 struct sk_buff *tunnel_buf = *buf;
2375 struct link *dest_link;
2376 struct tipc_msg *msg;
2377 struct tipc_msg *tunnel_msg = buf_msg(tunnel_buf);
2378 u32 msg_typ = msg_type(tunnel_msg);
2379 u32 msg_count = msg_msgcnt(tunnel_msg);
2380
2381 dest_link = (*l_ptr)->owner->links[msg_bearer_id(tunnel_msg)];
Allan Stephensb29f1422010-12-31 18:59:25 +00002382 if (!dest_link)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002383 goto exit;
Allan Stephensf1310722006-06-25 23:51:37 -07002384 if (dest_link == *l_ptr) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002385 err("Unexpected changeover message on link <%s>\n",
Allan Stephensf1310722006-06-25 23:51:37 -07002386 (*l_ptr)->name);
2387 goto exit;
2388 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002389 *l_ptr = dest_link;
2390 msg = msg_get_wrapped(tunnel_msg);
2391
2392 if (msg_typ == DUPLICATE_MSG) {
Allan Stephensb29f1422010-12-31 18:59:25 +00002393 if (less(msg_seqno(msg), mod(dest_link->next_in_no)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002394 goto exit;
Allan Stephens0e659672010-12-31 18:59:32 +00002395 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002396 if (*buf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002397 warn("Link changeover error, duplicate msg dropped\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002398 goto exit;
2399 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002400 buf_discard(tunnel_buf);
2401 return 1;
2402 }
2403
2404 /* First original message ?: */
2405
Per Liden4323add2006-01-18 00:38:21 +01002406 if (tipc_link_is_up(dest_link)) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002407 info("Resetting link <%s>, changeover initiated by peer\n",
2408 dest_link->name);
Per Liden4323add2006-01-18 00:38:21 +01002409 tipc_link_reset(dest_link);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002410 dest_link->exp_msg_count = msg_count;
2411 if (!msg_count)
2412 goto exit;
2413 } else if (dest_link->exp_msg_count == START_CHANGEOVER) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002414 dest_link->exp_msg_count = msg_count;
2415 if (!msg_count)
2416 goto exit;
2417 }
2418
2419 /* Receive original message */
2420
2421 if (dest_link->exp_msg_count == 0) {
Allan Stephens5392d642006-06-25 23:52:50 -07002422 warn("Link switchover error, "
2423 "got too many tunnelled messages\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002424 goto exit;
2425 }
2426 dest_link->exp_msg_count--;
2427 if (less(msg_seqno(msg), dest_link->reset_checkpoint)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002428 goto exit;
2429 } else {
2430 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
2431 if (*buf != NULL) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002432 buf_discard(tunnel_buf);
2433 return 1;
2434 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002435 warn("Link changeover error, original msg dropped\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002436 }
2437 }
2438exit:
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002439 *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002440 buf_discard(tunnel_buf);
2441 return 0;
2442}
2443
2444/*
2445 * Bundler functionality:
2446 */
Per Liden4323add2006-01-18 00:38:21 +01002447void tipc_link_recv_bundle(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002448{
2449 u32 msgcount = msg_msgcnt(buf_msg(buf));
2450 u32 pos = INT_H_SIZE;
2451 struct sk_buff *obuf;
2452
Per Lidenb97bf3f2006-01-02 19:04:38 +01002453 while (msgcount--) {
2454 obuf = buf_extract(buf, pos);
2455 if (obuf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002456 warn("Link unable to unbundle message(s)\n");
2457 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002458 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002459 pos += align(msg_size(buf_msg(obuf)));
Per Liden4323add2006-01-18 00:38:21 +01002460 tipc_net_route_msg(obuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002461 }
2462 buf_discard(buf);
2463}
2464
2465/*
2466 * Fragmentation/defragmentation:
2467 */
2468
2469
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002470/*
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002471 * link_send_long_buf: Entry for buffers needing fragmentation.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002472 * The buffer is complete, inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002473 * Returns user data length.
2474 */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002475static int link_send_long_buf(struct link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002476{
Allan Stephens77561552011-04-17 13:06:23 -04002477 struct sk_buff *buf_chain = NULL;
2478 struct sk_buff *buf_chain_tail = (struct sk_buff *)&buf_chain;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002479 struct tipc_msg *inmsg = buf_msg(buf);
2480 struct tipc_msg fragm_hdr;
2481 u32 insize = msg_size(inmsg);
2482 u32 dsz = msg_data_sz(inmsg);
2483 unchar *crs = buf->data;
2484 u32 rest = insize;
Allan Stephens15e979d2010-05-11 14:30:10 +00002485 u32 pack_sz = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002486 u32 fragm_sz = pack_sz - INT_H_SIZE;
Allan Stephens77561552011-04-17 13:06:23 -04002487 u32 fragm_no = 0;
Allan Stephens9c396a72008-06-04 17:36:58 -07002488 u32 destaddr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002489
2490 if (msg_short(inmsg))
2491 destaddr = l_ptr->addr;
Allan Stephens9c396a72008-06-04 17:36:58 -07002492 else
2493 destaddr = msg_destnode(inmsg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002494
Per Lidenb97bf3f2006-01-02 19:04:38 +01002495 /* Prepare reusable fragment header: */
2496
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002497 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07002498 INT_H_SIZE, destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002499
2500 /* Chop up message: */
2501
2502 while (rest > 0) {
2503 struct sk_buff *fragm;
2504
2505 if (rest <= fragm_sz) {
2506 fragm_sz = rest;
2507 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
2508 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002509 fragm = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002510 if (fragm == NULL) {
Allan Stephens77561552011-04-17 13:06:23 -04002511 buf_discard(buf);
2512 while (buf_chain) {
2513 buf = buf_chain;
2514 buf_chain = buf_chain->next;
2515 buf_discard(buf);
2516 }
2517 return -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002518 }
2519 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
Allan Stephens77561552011-04-17 13:06:23 -04002520 fragm_no++;
2521 msg_set_fragm_no(&fragm_hdr, fragm_no);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002522 skb_copy_to_linear_data(fragm, &fragm_hdr, INT_H_SIZE);
2523 skb_copy_to_linear_data_offset(fragm, INT_H_SIZE, crs,
2524 fragm_sz);
Allan Stephens77561552011-04-17 13:06:23 -04002525 buf_chain_tail->next = fragm;
2526 buf_chain_tail = fragm;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002527
Per Lidenb97bf3f2006-01-02 19:04:38 +01002528 rest -= fragm_sz;
2529 crs += fragm_sz;
2530 msg_set_type(&fragm_hdr, FRAGMENT);
2531 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002532 buf_discard(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002533
2534 /* Append chain of fragments to send queue & send them */
2535
2536 l_ptr->long_msg_seq_no++;
2537 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
2538 l_ptr->stats.sent_fragments += fragm_no;
2539 l_ptr->stats.sent_fragmented++;
2540 tipc_link_push_queue(l_ptr);
2541
Per Lidenb97bf3f2006-01-02 19:04:38 +01002542 return dsz;
2543}
2544
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002545/*
2546 * A pending message being re-assembled must store certain values
2547 * to handle subsequent fragments correctly. The following functions
Per Lidenb97bf3f2006-01-02 19:04:38 +01002548 * help storing these values in unused, available fields in the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002549 * pending message. This makes dynamic memory allocation unnecessary.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002550 */
2551
Sam Ravnborg05790c62006-03-20 22:37:04 -08002552static void set_long_msg_seqno(struct sk_buff *buf, u32 seqno)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002553{
2554 msg_set_seqno(buf_msg(buf), seqno);
2555}
2556
Sam Ravnborg05790c62006-03-20 22:37:04 -08002557static u32 get_fragm_size(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002558{
2559 return msg_ack(buf_msg(buf));
2560}
2561
Sam Ravnborg05790c62006-03-20 22:37:04 -08002562static void set_fragm_size(struct sk_buff *buf, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002563{
2564 msg_set_ack(buf_msg(buf), sz);
2565}
2566
Sam Ravnborg05790c62006-03-20 22:37:04 -08002567static u32 get_expected_frags(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002568{
2569 return msg_bcast_ack(buf_msg(buf));
2570}
2571
Sam Ravnborg05790c62006-03-20 22:37:04 -08002572static void set_expected_frags(struct sk_buff *buf, u32 exp)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002573{
2574 msg_set_bcast_ack(buf_msg(buf), exp);
2575}
2576
Sam Ravnborg05790c62006-03-20 22:37:04 -08002577static u32 get_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002578{
2579 return msg_reroute_cnt(buf_msg(buf));
2580}
2581
Sam Ravnborg05790c62006-03-20 22:37:04 -08002582static void incr_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002583{
2584 msg_incr_reroute_cnt(buf_msg(buf));
2585}
2586
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002587/*
2588 * tipc_link_recv_fragment(): Called with node lock on. Returns
Per Lidenb97bf3f2006-01-02 19:04:38 +01002589 * the reassembled buffer if message is complete.
2590 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002591int tipc_link_recv_fragment(struct sk_buff **pending, struct sk_buff **fb,
Per Liden4323add2006-01-18 00:38:21 +01002592 struct tipc_msg **m)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002593{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002594 struct sk_buff *prev = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002595 struct sk_buff *fbuf = *fb;
2596 struct tipc_msg *fragm = buf_msg(fbuf);
2597 struct sk_buff *pbuf = *pending;
2598 u32 long_msg_seq_no = msg_long_msgno(fragm);
2599
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002600 *fb = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002601
2602 /* Is there an incomplete message waiting for this fragment? */
2603
Joe Perchesf64f9e72009-11-29 16:55:45 -08002604 while (pbuf && ((msg_seqno(buf_msg(pbuf)) != long_msg_seq_no) ||
2605 (msg_orignode(fragm) != msg_orignode(buf_msg(pbuf))))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002606 prev = pbuf;
2607 pbuf = pbuf->next;
2608 }
2609
2610 if (!pbuf && (msg_type(fragm) == FIRST_FRAGMENT)) {
2611 struct tipc_msg *imsg = (struct tipc_msg *)msg_data(fragm);
2612 u32 msg_sz = msg_size(imsg);
2613 u32 fragm_sz = msg_data_sz(fragm);
2614 u32 exp_fragm_cnt = msg_sz/fragm_sz + !!(msg_sz % fragm_sz);
Allan Stephens741d9eb2011-05-31 15:03:18 -04002615 u32 max = TIPC_MAX_USER_MSG_SIZE + NAMED_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002616 if (msg_type(imsg) == TIPC_MCAST_MSG)
2617 max = TIPC_MAX_USER_MSG_SIZE + MCAST_H_SIZE;
2618 if (msg_size(imsg) > max) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002619 buf_discard(fbuf);
2620 return 0;
2621 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002622 pbuf = tipc_buf_acquire(msg_size(imsg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002623 if (pbuf != NULL) {
2624 pbuf->next = *pending;
2625 *pending = pbuf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002626 skb_copy_to_linear_data(pbuf, imsg,
2627 msg_data_sz(fragm));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002628 /* Prepare buffer for subsequent fragments. */
2629
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002630 set_long_msg_seqno(pbuf, long_msg_seq_no);
Allan Stephens0e659672010-12-31 18:59:32 +00002631 set_fragm_size(pbuf, fragm_sz);
2632 set_expected_frags(pbuf, exp_fragm_cnt - 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002633 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002634 warn("Link unable to reassemble fragmented message\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002635 }
2636 buf_discard(fbuf);
2637 return 0;
2638 } else if (pbuf && (msg_type(fragm) != FIRST_FRAGMENT)) {
2639 u32 dsz = msg_data_sz(fragm);
2640 u32 fsz = get_fragm_size(pbuf);
2641 u32 crs = ((msg_fragm_no(fragm) - 1) * fsz);
2642 u32 exp_frags = get_expected_frags(pbuf) - 1;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002643 skb_copy_to_linear_data_offset(pbuf, crs,
2644 msg_data(fragm), dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002645 buf_discard(fbuf);
2646
2647 /* Is message complete? */
2648
2649 if (exp_frags == 0) {
2650 if (prev)
2651 prev->next = pbuf->next;
2652 else
2653 *pending = pbuf->next;
2654 msg_reset_reroute_cnt(buf_msg(pbuf));
2655 *fb = pbuf;
2656 *m = buf_msg(pbuf);
2657 return 1;
2658 }
Allan Stephens0e659672010-12-31 18:59:32 +00002659 set_expected_frags(pbuf, exp_frags);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002660 return 0;
2661 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002662 buf_discard(fbuf);
2663 return 0;
2664}
2665
2666/**
2667 * link_check_defragm_bufs - flush stale incoming message fragments
2668 * @l_ptr: pointer to link
2669 */
2670
2671static void link_check_defragm_bufs(struct link *l_ptr)
2672{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002673 struct sk_buff *prev = NULL;
2674 struct sk_buff *next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002675 struct sk_buff *buf = l_ptr->defragm_buf;
2676
2677 if (!buf)
2678 return;
2679 if (!link_working_working(l_ptr))
2680 return;
2681 while (buf) {
2682 u32 cnt = get_timer_cnt(buf);
2683
2684 next = buf->next;
2685 if (cnt < 4) {
2686 incr_timer_cnt(buf);
2687 prev = buf;
2688 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002689 if (prev)
2690 prev->next = buf->next;
2691 else
2692 l_ptr->defragm_buf = buf->next;
2693 buf_discard(buf);
2694 }
2695 buf = next;
2696 }
2697}
2698
2699
2700
2701static void link_set_supervision_props(struct link *l_ptr, u32 tolerance)
2702{
Allan Stephens5413b4c2011-01-18 13:24:55 -05002703 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
2704 return;
2705
Per Lidenb97bf3f2006-01-02 19:04:38 +01002706 l_ptr->tolerance = tolerance;
2707 l_ptr->continuity_interval =
2708 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
2709 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
2710}
2711
2712
Per Liden4323add2006-01-18 00:38:21 +01002713void tipc_link_set_queue_limits(struct link *l_ptr, u32 window)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002714{
2715 /* Data messages from this node, inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002716 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
2717 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
2718 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
2719 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002720 /* Transiting data messages,inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002721 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
2722 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
2723 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
2724 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002725 l_ptr->queue_limit[CONN_MANAGER] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002726 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
2727 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
2728 /* FRAGMENT and LAST_FRAGMENT packets */
2729 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
2730}
2731
2732/**
2733 * link_find_link - locate link by name
2734 * @name - ptr to link name string
2735 * @node - ptr to area to be filled with ptr to associated node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002736 *
Per Liden4323add2006-01-18 00:38:21 +01002737 * Caller must hold 'tipc_net_lock' to ensure node and bearer are not deleted;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002738 * this also prevents link deletion.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002739 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002740 * Returns pointer to link (or 0 if invalid link name).
2741 */
2742
David S. Miller6c000552008-09-02 23:38:32 -07002743static struct link *link_find_link(const char *name, struct tipc_node **node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002744{
2745 struct link_name link_name_parts;
Allan Stephens2d627b92011-01-07 13:00:11 -05002746 struct tipc_bearer *b_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002747 struct link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002748
2749 if (!link_name_validate(name, &link_name_parts))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002750 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002751
Per Liden4323add2006-01-18 00:38:21 +01002752 b_ptr = tipc_bearer_find_interface(link_name_parts.if_local);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002753 if (!b_ptr)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002754 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002755
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002756 *node = tipc_node_find(link_name_parts.addr_peer);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002757 if (!*node)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002758 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002759
2760 l_ptr = (*node)->links[b_ptr->identity];
2761 if (!l_ptr || strcmp(l_ptr->name, name))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002762 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002763
2764 return l_ptr;
2765}
2766
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002767struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
Per Liden4323add2006-01-18 00:38:21 +01002768 u16 cmd)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002769{
2770 struct tipc_link_config *args;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002771 u32 new_value;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002772 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002773 struct tipc_node *node;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002774 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002775
2776 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
Per Liden4323add2006-01-18 00:38:21 +01002777 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002778
2779 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2780 new_value = ntohl(args->value);
2781
Per Liden4323add2006-01-18 00:38:21 +01002782 if (!strcmp(args->name, tipc_bclink_name)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002783 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
Per Liden4323add2006-01-18 00:38:21 +01002784 (tipc_bclink_set_queue_limits(new_value) == 0))
2785 return tipc_cfg_reply_none();
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002786 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
Per Liden4323add2006-01-18 00:38:21 +01002787 " (cannot change setting on broadcast link)");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002788 }
2789
Per Liden4323add2006-01-18 00:38:21 +01002790 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002791 l_ptr = link_find_link(args->name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002792 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002793 read_unlock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002794 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002795 }
2796
Per Liden4323add2006-01-18 00:38:21 +01002797 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002798 res = -EINVAL;
2799 switch (cmd) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002800 case TIPC_CMD_SET_LINK_TOL:
2801 if ((new_value >= TIPC_MIN_LINK_TOL) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002802 (new_value <= TIPC_MAX_LINK_TOL)) {
2803 link_set_supervision_props(l_ptr, new_value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002804 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +01002805 0, 0, new_value, 0, 0);
Allan Stephens0e35fd52008-07-14 22:44:01 -07002806 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002807 }
2808 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002809 case TIPC_CMD_SET_LINK_PRI:
Per Liden16cb4b32006-01-13 22:22:22 +01002810 if ((new_value >= TIPC_MIN_LINK_PRI) &&
2811 (new_value <= TIPC_MAX_LINK_PRI)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002812 l_ptr->priority = new_value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002813 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +01002814 0, 0, 0, new_value, 0);
Allan Stephens0e35fd52008-07-14 22:44:01 -07002815 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002816 }
2817 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002818 case TIPC_CMD_SET_LINK_WINDOW:
2819 if ((new_value >= TIPC_MIN_LINK_WIN) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002820 (new_value <= TIPC_MAX_LINK_WIN)) {
Per Liden4323add2006-01-18 00:38:21 +01002821 tipc_link_set_queue_limits(l_ptr, new_value);
Allan Stephens0e35fd52008-07-14 22:44:01 -07002822 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002823 }
2824 break;
2825 }
Per Liden4323add2006-01-18 00:38:21 +01002826 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002827
Per Liden4323add2006-01-18 00:38:21 +01002828 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002829 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002830 return tipc_cfg_reply_error_string("cannot change link setting");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002831
Per Liden4323add2006-01-18 00:38:21 +01002832 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002833}
2834
2835/**
2836 * link_reset_statistics - reset link statistics
2837 * @l_ptr: pointer to link
2838 */
2839
2840static void link_reset_statistics(struct link *l_ptr)
2841{
2842 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2843 l_ptr->stats.sent_info = l_ptr->next_out_no;
2844 l_ptr->stats.recv_info = l_ptr->next_in_no;
2845}
2846
Per Liden4323add2006-01-18 00:38:21 +01002847struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002848{
2849 char *link_name;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002850 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002851 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002852
2853 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002854 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002855
2856 link_name = (char *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +01002857 if (!strcmp(link_name, tipc_bclink_name)) {
2858 if (tipc_bclink_reset_stats())
2859 return tipc_cfg_reply_error_string("link not found");
2860 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002861 }
2862
Per Liden4323add2006-01-18 00:38:21 +01002863 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002864 l_ptr = link_find_link(link_name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002865 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002866 read_unlock_bh(&tipc_net_lock);
2867 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002868 }
2869
Per Liden4323add2006-01-18 00:38:21 +01002870 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002871 link_reset_statistics(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +01002872 tipc_node_unlock(node);
2873 read_unlock_bh(&tipc_net_lock);
2874 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002875}
2876
2877/**
2878 * percent - convert count to a percentage of total (rounding up or down)
2879 */
2880
2881static u32 percent(u32 count, u32 total)
2882{
2883 return (count * 100 + (total / 2)) / total;
2884}
2885
2886/**
Per Liden4323add2006-01-18 00:38:21 +01002887 * tipc_link_stats - print link statistics
Per Lidenb97bf3f2006-01-02 19:04:38 +01002888 * @name: link name
2889 * @buf: print buffer area
2890 * @buf_size: size of print buffer area
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002891 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002892 * Returns length of print buffer data string (or 0 if error)
2893 */
2894
Per Liden4323add2006-01-18 00:38:21 +01002895static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002896{
2897 struct print_buf pb;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002898 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002899 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002900 char *status;
2901 u32 profile_total = 0;
2902
Per Liden4323add2006-01-18 00:38:21 +01002903 if (!strcmp(name, tipc_bclink_name))
2904 return tipc_bclink_stats(buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002905
Per Liden4323add2006-01-18 00:38:21 +01002906 tipc_printbuf_init(&pb, buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002907
Per Liden4323add2006-01-18 00:38:21 +01002908 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002909 l_ptr = link_find_link(name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002910 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002911 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002912 return 0;
2913 }
Per Liden4323add2006-01-18 00:38:21 +01002914 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002915
Per Liden4323add2006-01-18 00:38:21 +01002916 if (tipc_link_is_active(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002917 status = "ACTIVE";
Per Liden4323add2006-01-18 00:38:21 +01002918 else if (tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002919 status = "STANDBY";
2920 else
2921 status = "DEFUNCT";
2922 tipc_printf(&pb, "Link <%s>\n"
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002923 " %s MTU:%u Priority:%u Tolerance:%u ms"
2924 " Window:%u packets\n",
Allan Stephens15e979d2010-05-11 14:30:10 +00002925 l_ptr->name, status, l_ptr->max_pkt,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002926 l_ptr->priority, l_ptr->tolerance, l_ptr->queue_limit[0]);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002927 tipc_printf(&pb, " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002928 l_ptr->next_in_no - l_ptr->stats.recv_info,
2929 l_ptr->stats.recv_fragments,
2930 l_ptr->stats.recv_fragmented,
2931 l_ptr->stats.recv_bundles,
2932 l_ptr->stats.recv_bundled);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002933 tipc_printf(&pb, " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002934 l_ptr->next_out_no - l_ptr->stats.sent_info,
2935 l_ptr->stats.sent_fragments,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002936 l_ptr->stats.sent_fragmented,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002937 l_ptr->stats.sent_bundles,
2938 l_ptr->stats.sent_bundled);
2939 profile_total = l_ptr->stats.msg_length_counts;
2940 if (!profile_total)
2941 profile_total = 1;
2942 tipc_printf(&pb, " TX profile sample:%u packets average:%u octets\n"
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002943 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
Allan Stephens0f305bf2011-05-30 15:36:56 -04002944 "-16384:%u%% -32768:%u%% -66000:%u%%\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002945 l_ptr->stats.msg_length_counts,
2946 l_ptr->stats.msg_lengths_total / profile_total,
2947 percent(l_ptr->stats.msg_length_profile[0], profile_total),
2948 percent(l_ptr->stats.msg_length_profile[1], profile_total),
2949 percent(l_ptr->stats.msg_length_profile[2], profile_total),
2950 percent(l_ptr->stats.msg_length_profile[3], profile_total),
2951 percent(l_ptr->stats.msg_length_profile[4], profile_total),
2952 percent(l_ptr->stats.msg_length_profile[5], profile_total),
2953 percent(l_ptr->stats.msg_length_profile[6], profile_total));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002954 tipc_printf(&pb, " RX states:%u probes:%u naks:%u defs:%u dups:%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002955 l_ptr->stats.recv_states,
2956 l_ptr->stats.recv_probes,
2957 l_ptr->stats.recv_nacks,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002958 l_ptr->stats.deferred_recv,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002959 l_ptr->stats.duplicates);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002960 tipc_printf(&pb, " TX states:%u probes:%u naks:%u acks:%u dups:%u\n",
2961 l_ptr->stats.sent_states,
2962 l_ptr->stats.sent_probes,
2963 l_ptr->stats.sent_nacks,
2964 l_ptr->stats.sent_acks,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002965 l_ptr->stats.retransmitted);
2966 tipc_printf(&pb, " Congestion bearer:%u link:%u Send queue max:%u avg:%u\n",
2967 l_ptr->stats.bearer_congs,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002968 l_ptr->stats.link_congs,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002969 l_ptr->stats.max_queue_sz,
2970 l_ptr->stats.queue_sz_counts
2971 ? (l_ptr->stats.accu_queue_sz / l_ptr->stats.queue_sz_counts)
2972 : 0);
2973
Per Liden4323add2006-01-18 00:38:21 +01002974 tipc_node_unlock(node);
2975 read_unlock_bh(&tipc_net_lock);
2976 return tipc_printbuf_validate(&pb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002977}
2978
2979#define MAX_LINK_STATS_INFO 2000
2980
Per Liden4323add2006-01-18 00:38:21 +01002981struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002982{
2983 struct sk_buff *buf;
2984 struct tlv_desc *rep_tlv;
2985 int str_len;
2986
2987 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002988 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002989
Per Liden4323add2006-01-18 00:38:21 +01002990 buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_LINK_STATS_INFO));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002991 if (!buf)
2992 return NULL;
2993
2994 rep_tlv = (struct tlv_desc *)buf->data;
2995
Per Liden4323add2006-01-18 00:38:21 +01002996 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
2997 (char *)TLV_DATA(rep_tlv), MAX_LINK_STATS_INFO);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002998 if (!str_len) {
2999 buf_discard(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003000 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01003001 }
3002
3003 skb_put(buf, TLV_SPACE(str_len));
3004 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
3005
3006 return buf;
3007}
3008
Per Lidenb97bf3f2006-01-02 19:04:38 +01003009/**
Per Liden4323add2006-01-18 00:38:21 +01003010 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
Per Lidenb97bf3f2006-01-02 19:04:38 +01003011 * @dest: network address of destination node
3012 * @selector: used to select from set of active links
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003013 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01003014 * If no active link can be found, uses default maximum packet size.
3015 */
3016
Per Liden4323add2006-01-18 00:38:21 +01003017u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003018{
David S. Miller6c000552008-09-02 23:38:32 -07003019 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01003020 struct link *l_ptr;
3021 u32 res = MAX_PKT_DEFAULT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003022
Per Lidenb97bf3f2006-01-02 19:04:38 +01003023 if (dest == tipc_own_addr)
3024 return MAX_MSG_SIZE;
3025
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003026 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00003027 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003028 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01003029 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003030 l_ptr = n_ptr->active_links[selector & 1];
3031 if (l_ptr)
Allan Stephens15e979d2010-05-11 14:30:10 +00003032 res = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01003033 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003034 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003035 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003036 return res;
3037}
3038
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003039static void link_print(struct link *l_ptr, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003040{
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003041 char print_area[256];
3042 struct print_buf pb;
3043 struct print_buf *buf = &pb;
3044
3045 tipc_printbuf_init(buf, print_area, sizeof(print_area));
3046
Per Lidenb97bf3f2006-01-02 19:04:38 +01003047 tipc_printf(buf, str);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003048 tipc_printf(buf, "Link %x<%s>:",
Allan Stephens2d627b92011-01-07 13:00:11 -05003049 l_ptr->addr, l_ptr->b_ptr->name);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003050
3051#ifdef CONFIG_TIPC_DEBUG
3052 if (link_reset_reset(l_ptr) || link_reset_unknown(l_ptr))
3053 goto print_state;
3054
Per Lidenb97bf3f2006-01-02 19:04:38 +01003055 tipc_printf(buf, ": NXO(%u):", mod(l_ptr->next_out_no));
3056 tipc_printf(buf, "NXI(%u):", mod(l_ptr->next_in_no));
3057 tipc_printf(buf, "SQUE");
3058 if (l_ptr->first_out) {
3059 tipc_printf(buf, "[%u..", msg_seqno(buf_msg(l_ptr->first_out)));
3060 if (l_ptr->next_out)
3061 tipc_printf(buf, "%u..",
3062 msg_seqno(buf_msg(l_ptr->next_out)));
Allan Stephensb82834e2010-05-11 14:30:04 +00003063 tipc_printf(buf, "%u]", msg_seqno(buf_msg(l_ptr->last_out)));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003064 if ((mod(msg_seqno(buf_msg(l_ptr->last_out)) -
3065 msg_seqno(buf_msg(l_ptr->first_out)))
Joe Perchesf64f9e72009-11-29 16:55:45 -08003066 != (l_ptr->out_queue_size - 1)) ||
3067 (l_ptr->last_out->next != NULL)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01003068 tipc_printf(buf, "\nSend queue inconsistency\n");
Allan Stephensc8a61b52011-01-18 13:31:32 -05003069 tipc_printf(buf, "first_out= %p ", l_ptr->first_out);
3070 tipc_printf(buf, "next_out= %p ", l_ptr->next_out);
3071 tipc_printf(buf, "last_out= %p ", l_ptr->last_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003072 }
3073 } else
3074 tipc_printf(buf, "[]");
3075 tipc_printf(buf, "SQSIZ(%u)", l_ptr->out_queue_size);
3076 if (l_ptr->oldest_deferred_in) {
3077 u32 o = msg_seqno(buf_msg(l_ptr->oldest_deferred_in));
3078 u32 n = msg_seqno(buf_msg(l_ptr->newest_deferred_in));
3079 tipc_printf(buf, ":RQUE[%u..%u]", o, n);
3080 if (l_ptr->deferred_inqueue_sz != mod((n + 1) - o)) {
3081 tipc_printf(buf, ":RQSIZ(%u)",
3082 l_ptr->deferred_inqueue_sz);
3083 }
3084 }
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003085print_state:
3086#endif
3087
Per Lidenb97bf3f2006-01-02 19:04:38 +01003088 if (link_working_unknown(l_ptr))
3089 tipc_printf(buf, ":WU");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003090 else if (link_reset_reset(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003091 tipc_printf(buf, ":RR");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003092 else if (link_reset_unknown(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003093 tipc_printf(buf, ":RU");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003094 else if (link_working_working(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003095 tipc_printf(buf, ":WW");
3096 tipc_printf(buf, "\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003097
3098 tipc_printbuf_validate(buf);
3099 info("%s", print_area);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003100}
3101