blob: b43beea54108205f1ef2ad7a7bbe7b247c37c03e [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/*
989 * link_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +0100990 * destination link is known and the header is complete,
991 * inclusive total message length. Very time critical.
992 * Link is locked. Returns user data length.
993 */
994
Sam Ravnborg05790c62006-03-20 22:37:04 -0800995static int link_send_buf_fast(struct link *l_ptr, struct sk_buff *buf,
996 u32 *used_max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100997{
998 struct tipc_msg *msg = buf_msg(buf);
999 int res = msg_data_sz(msg);
1000
1001 if (likely(!link_congested(l_ptr))) {
Allan Stephens15e979d2010-05-11 14:30:10 +00001002 if (likely(msg_size(msg) <= l_ptr->max_pkt)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001003 if (likely(list_empty(&l_ptr->b_ptr->cong_links))) {
1004 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +01001005 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf,
1006 &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001007 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001008 return res;
1009 }
Per Liden4323add2006-01-18 00:38:21 +01001010 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001011 l_ptr->stats.bearer_congs++;
1012 l_ptr->next_out = buf;
1013 return res;
1014 }
Allan Stephens0e659672010-12-31 18:59:32 +00001015 } else
Allan Stephens15e979d2010-05-11 14:30:10 +00001016 *used_max_pkt = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001017 }
Per Liden4323add2006-01-18 00:38:21 +01001018 return tipc_link_send_buf(l_ptr, buf); /* All other cases */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001019}
1020
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001021/*
1022 * tipc_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001023 * destination node is known and the header is complete,
1024 * inclusive total message length.
1025 * Returns user data length.
1026 */
1027int tipc_send_buf_fast(struct sk_buff *buf, u32 destnode)
1028{
1029 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001030 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001031 int res;
1032 u32 selector = msg_origport(buf_msg(buf)) & 1;
1033 u32 dummy;
1034
1035 if (destnode == tipc_own_addr)
Per Liden4323add2006-01-18 00:38:21 +01001036 return tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001037
Per Liden4323add2006-01-18 00:38:21 +01001038 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001039 n_ptr = tipc_node_find(destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001040 if (likely(n_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001041 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001042 l_ptr = n_ptr->active_links[selector];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001043 if (likely(l_ptr)) {
1044 res = link_send_buf_fast(l_ptr, buf, &dummy);
Per Liden4323add2006-01-18 00:38:21 +01001045 tipc_node_unlock(n_ptr);
1046 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001047 return res;
1048 }
Per Liden4323add2006-01-18 00:38:21 +01001049 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001050 }
Per Liden4323add2006-01-18 00:38:21 +01001051 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001052 res = msg_data_sz(buf_msg(buf));
1053 tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1054 return res;
1055}
1056
1057
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001058/*
1059 * tipc_link_send_sections_fast: Entry for messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001060 * destination processor is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001061 * except for total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001062 * Returns user data length or errno.
1063 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001064int tipc_link_send_sections_fast(struct tipc_port *sender,
Per Liden4323add2006-01-18 00:38:21 +01001065 struct iovec const *msg_sect,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001066 const u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001067 unsigned int total_len,
Per Liden4323add2006-01-18 00:38:21 +01001068 u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001069{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001070 struct tipc_msg *hdr = &sender->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001071 struct link *l_ptr;
1072 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -07001073 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001074 int res;
1075 u32 selector = msg_origport(hdr) & 1;
1076
Per Lidenb97bf3f2006-01-02 19:04:38 +01001077again:
1078 /*
1079 * Try building message using port's max_pkt hint.
1080 * (Must not hold any locks while building message.)
1081 */
1082
Allan Stephens26896902011-04-21 10:42:07 -05001083 res = tipc_msg_build(hdr, msg_sect, num_sect, total_len,
1084 sender->max_pkt, !sender->user_port, &buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001085
Per Liden4323add2006-01-18 00:38:21 +01001086 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001087 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001088 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001089 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001090 l_ptr = node->active_links[selector];
1091 if (likely(l_ptr)) {
1092 if (likely(buf)) {
1093 res = link_send_buf_fast(l_ptr, buf,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001094 &sender->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001095exit:
Per Liden4323add2006-01-18 00:38:21 +01001096 tipc_node_unlock(node);
1097 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001098 return res;
1099 }
1100
1101 /* Exit if build request was invalid */
1102
1103 if (unlikely(res < 0))
1104 goto exit;
1105
1106 /* Exit if link (or bearer) is congested */
1107
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001108 if (link_congested(l_ptr) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +01001109 !list_empty(&l_ptr->b_ptr->cong_links)) {
1110 res = link_schedule_port(l_ptr,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001111 sender->ref, res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001112 goto exit;
1113 }
1114
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001115 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001116 * Message size exceeds max_pkt hint; update hint,
1117 * then re-try fast path or fragment the message
1118 */
1119
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001120 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001121 tipc_node_unlock(node);
1122 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001123
1124
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001125 if ((msg_hdr_sz(hdr) + res) <= sender->max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001126 goto again;
1127
1128 return link_send_sections_long(sender, msg_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001129 num_sect, total_len,
1130 destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001131 }
Per Liden4323add2006-01-18 00:38:21 +01001132 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001133 }
Per Liden4323add2006-01-18 00:38:21 +01001134 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001135
1136 /* Couldn't find a link to the destination node */
1137
1138 if (buf)
1139 return tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1140 if (res >= 0)
Per Liden4323add2006-01-18 00:38:21 +01001141 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001142 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001143 return res;
1144}
1145
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001146/*
1147 * link_send_sections_long(): Entry for long messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001148 * destination node is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001149 * inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001150 * Link and bearer congestion status have been checked to be ok,
1151 * and are ignored if they change.
1152 *
1153 * Note that fragments do not use the full link MTU so that they won't have
1154 * to undergo refragmentation if link changeover causes them to be sent
1155 * over another link with an additional tunnel header added as prefix.
1156 * (Refragmentation will still occur if the other link has a smaller MTU.)
1157 *
1158 * Returns user data length or errno.
1159 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001160static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001161 struct iovec const *msg_sect,
1162 u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001163 unsigned int total_len,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001164 u32 destaddr)
1165{
1166 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001167 struct tipc_node *node;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001168 struct tipc_msg *hdr = &sender->phdr;
Allan Stephens26896902011-04-21 10:42:07 -05001169 u32 dsz = total_len;
Allan Stephens0e659672010-12-31 18:59:32 +00001170 u32 max_pkt, fragm_sz, rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001171 struct tipc_msg fragm_hdr;
Allan Stephens0e659672010-12-31 18:59:32 +00001172 struct sk_buff *buf, *buf_chain, *prev;
1173 u32 fragm_crs, fragm_rest, hsz, sect_rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001174 const unchar *sect_crs;
1175 int curr_sect;
1176 u32 fragm_no;
1177
1178again:
1179 fragm_no = 1;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001180 max_pkt = sender->max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001181 /* leave room for tunnel header in case of link changeover */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001182 fragm_sz = max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001183 /* leave room for fragmentation header in each fragment */
1184 rest = dsz;
1185 fragm_crs = 0;
1186 fragm_rest = 0;
1187 sect_rest = 0;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001188 sect_crs = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001189 curr_sect = -1;
1190
1191 /* Prepare reusable fragment header: */
1192
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001193 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07001194 INT_H_SIZE, msg_destnode(hdr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001195 msg_set_size(&fragm_hdr, max_pkt);
1196 msg_set_fragm_no(&fragm_hdr, 1);
1197
1198 /* Prepare header of first fragment: */
1199
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001200 buf_chain = buf = tipc_buf_acquire(max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001201 if (!buf)
1202 return -ENOMEM;
1203 buf->next = NULL;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001204 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001205 hsz = msg_hdr_sz(hdr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001206 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, hdr, hsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001207
1208 /* Chop up message: */
1209
1210 fragm_crs = INT_H_SIZE + hsz;
1211 fragm_rest = fragm_sz - hsz;
1212
1213 do { /* For all sections */
1214 u32 sz;
1215
1216 if (!sect_rest) {
1217 sect_rest = msg_sect[++curr_sect].iov_len;
1218 sect_crs = (const unchar *)msg_sect[curr_sect].iov_base;
1219 }
1220
1221 if (sect_rest < fragm_rest)
1222 sz = sect_rest;
1223 else
1224 sz = fragm_rest;
1225
1226 if (likely(!sender->user_port)) {
1227 if (copy_from_user(buf->data + fragm_crs, sect_crs, sz)) {
1228error:
1229 for (; buf_chain; buf_chain = buf) {
1230 buf = buf_chain->next;
1231 buf_discard(buf_chain);
1232 }
1233 return -EFAULT;
1234 }
1235 } else
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001236 skb_copy_to_linear_data_offset(buf, fragm_crs,
1237 sect_crs, sz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001238 sect_crs += sz;
1239 sect_rest -= sz;
1240 fragm_crs += sz;
1241 fragm_rest -= sz;
1242 rest -= sz;
1243
1244 if (!fragm_rest && rest) {
1245
1246 /* Initiate new fragment: */
1247 if (rest <= fragm_sz) {
1248 fragm_sz = rest;
Allan Stephens0e659672010-12-31 18:59:32 +00001249 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001250 } else {
1251 msg_set_type(&fragm_hdr, FRAGMENT);
1252 }
1253 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
1254 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
1255 prev = buf;
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001256 buf = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001257 if (!buf)
1258 goto error;
1259
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001260 buf->next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001261 prev->next = buf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001262 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001263 fragm_crs = INT_H_SIZE;
1264 fragm_rest = fragm_sz;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001265 }
Allan Stephens0e659672010-12-31 18:59:32 +00001266 } while (rest > 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001267
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001268 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001269 * Now we have a buffer chain. Select a link and check
1270 * that packet size is still OK
1271 */
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001272 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001273 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001274 tipc_node_lock(node);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001275 l_ptr = node->active_links[sender->ref & 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001276 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01001277 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001278 goto reject;
1279 }
Allan Stephens15e979d2010-05-11 14:30:10 +00001280 if (l_ptr->max_pkt < max_pkt) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001281 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001282 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001283 for (; buf_chain; buf_chain = buf) {
1284 buf = buf_chain->next;
1285 buf_discard(buf_chain);
1286 }
1287 goto again;
1288 }
1289 } else {
1290reject:
1291 for (; buf_chain; buf_chain = buf) {
1292 buf = buf_chain->next;
1293 buf_discard(buf_chain);
1294 }
Per Liden4323add2006-01-18 00:38:21 +01001295 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001296 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001297 }
1298
Allan Stephensdc63d912011-04-21 11:50:42 -04001299 /* Append chain of fragments to send queue & send them */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001300
Allan Stephense0f08592011-04-17 11:44:24 -04001301 l_ptr->long_msg_seq_no++;
Allan Stephensdc63d912011-04-21 11:50:42 -04001302 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
1303 l_ptr->stats.sent_fragments += fragm_no;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001304 l_ptr->stats.sent_fragmented++;
Per Liden4323add2006-01-18 00:38:21 +01001305 tipc_link_push_queue(l_ptr);
1306 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001307 return dsz;
1308}
1309
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001310/*
Per Liden4323add2006-01-18 00:38:21 +01001311 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +01001312 */
Per Liden4323add2006-01-18 00:38:21 +01001313u32 tipc_link_push_packet(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001314{
1315 struct sk_buff *buf = l_ptr->first_out;
1316 u32 r_q_size = l_ptr->retransm_queue_size;
1317 u32 r_q_head = l_ptr->retransm_queue_head;
1318
1319 /* Step to position where retransmission failed, if any, */
1320 /* consider that buffers may have been released in meantime */
1321
1322 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001323 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +01001324 link_last_sent(l_ptr));
1325 u32 first = msg_seqno(buf_msg(buf));
1326
1327 while (buf && less(first, r_q_head)) {
1328 first = mod(first + 1);
1329 buf = buf->next;
1330 }
1331 l_ptr->retransm_queue_head = r_q_head = first;
1332 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1333 }
1334
1335 /* Continue retransmission now, if there is anything: */
1336
Neil Hormanca509102010-03-15 07:58:45 +00001337 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001338 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001339 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001340 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001341 l_ptr->retransm_queue_head = mod(++r_q_head);
1342 l_ptr->retransm_queue_size = --r_q_size;
1343 l_ptr->stats.retransmitted++;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001344 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001345 } else {
1346 l_ptr->stats.bearer_congs++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001347 return PUSH_FAILED;
1348 }
1349 }
1350
1351 /* Send deferred protocol message, if any: */
1352
1353 buf = l_ptr->proto_msg_queue;
1354 if (buf) {
1355 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +00001356 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001357 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001358 l_ptr->unacked_window = 0;
1359 buf_discard(buf);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001360 l_ptr->proto_msg_queue = NULL;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001361 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001362 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001363 l_ptr->stats.bearer_congs++;
1364 return PUSH_FAILED;
1365 }
1366 }
1367
1368 /* Send one deferred data message, if send window not full: */
1369
1370 buf = l_ptr->next_out;
1371 if (buf) {
1372 struct tipc_msg *msg = buf_msg(buf);
1373 u32 next = msg_seqno(msg);
1374 u32 first = msg_seqno(buf_msg(l_ptr->first_out));
1375
1376 if (mod(next - first) < l_ptr->queue_limit[0]) {
1377 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001378 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001379 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001380 if (msg_user(msg) == MSG_BUNDLER)
1381 msg_set_type(msg, CLOSED_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001382 l_ptr->next_out = buf->next;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001383 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001384 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001385 l_ptr->stats.bearer_congs++;
1386 return PUSH_FAILED;
1387 }
1388 }
1389 }
1390 return PUSH_FINISHED;
1391}
1392
1393/*
1394 * push_queue(): push out the unsent messages of a link where
1395 * congestion has abated. Node is locked
1396 */
Per Liden4323add2006-01-18 00:38:21 +01001397void tipc_link_push_queue(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001398{
1399 u32 res;
1400
Per Liden4323add2006-01-18 00:38:21 +01001401 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001402 return;
1403
1404 do {
Per Liden4323add2006-01-18 00:38:21 +01001405 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001406 } while (!res);
1407
Per Lidenb97bf3f2006-01-02 19:04:38 +01001408 if (res == PUSH_FAILED)
Per Liden4323add2006-01-18 00:38:21 +01001409 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001410}
1411
Allan Stephensd356eeb2006-06-25 23:40:01 -07001412static void link_reset_all(unsigned long addr)
1413{
David S. Miller6c000552008-09-02 23:38:32 -07001414 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001415 char addr_string[16];
1416 u32 i;
1417
1418 read_lock_bh(&tipc_net_lock);
1419 n_ptr = tipc_node_find((u32)addr);
1420 if (!n_ptr) {
1421 read_unlock_bh(&tipc_net_lock);
1422 return; /* node no longer exists */
1423 }
1424
1425 tipc_node_lock(n_ptr);
1426
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001427 warn("Resetting all links to %s\n",
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001428 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -07001429
1430 for (i = 0; i < MAX_BEARERS; i++) {
1431 if (n_ptr->links[i]) {
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001432 link_print(n_ptr->links[i], "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001433 tipc_link_reset(n_ptr->links[i]);
1434 }
1435 }
1436
1437 tipc_node_unlock(n_ptr);
1438 read_unlock_bh(&tipc_net_lock);
1439}
1440
1441static void link_retransmit_failure(struct link *l_ptr, struct sk_buff *buf)
1442{
1443 struct tipc_msg *msg = buf_msg(buf);
1444
1445 warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001446
1447 if (l_ptr->addr) {
1448
1449 /* Handle failure on standard link */
1450
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001451 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001452 tipc_link_reset(l_ptr);
1453
1454 } else {
1455
1456 /* Handle failure on broadcast link */
1457
David S. Miller6c000552008-09-02 23:38:32 -07001458 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001459 char addr_string[16];
1460
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001461 info("Msg seq number: %u, ", msg_seqno(msg));
1462 info("Outstanding acks: %lu\n",
1463 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -07001464
Allan Stephens01d83ed2011-01-18 13:53:16 -05001465 n_ptr = tipc_bclink_retransmit_to();
Allan Stephensd356eeb2006-06-25 23:40:01 -07001466 tipc_node_lock(n_ptr);
1467
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001468 tipc_addr_string_fill(addr_string, n_ptr->addr);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001469 info("Multicast link info for %s\n", addr_string);
1470 info("Supported: %d, ", n_ptr->bclink.supported);
1471 info("Acked: %u\n", n_ptr->bclink.acked);
1472 info("Last in: %u, ", n_ptr->bclink.last_in);
1473 info("Gap after: %u, ", n_ptr->bclink.gap_after);
1474 info("Gap to: %u\n", n_ptr->bclink.gap_to);
1475 info("Nack sync: %u\n\n", n_ptr->bclink.nack_sync);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001476
1477 tipc_k_signal((Handler)link_reset_all, (unsigned long)n_ptr->addr);
1478
1479 tipc_node_unlock(n_ptr);
1480
1481 l_ptr->stale_count = 0;
1482 }
1483}
1484
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001485void tipc_link_retransmit(struct link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001486 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001487{
1488 struct tipc_msg *msg;
1489
Allan Stephensd356eeb2006-06-25 23:40:01 -07001490 if (!buf)
1491 return;
1492
1493 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001494
Allan Stephensd356eeb2006-06-25 23:40:01 -07001495 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
Neil Hormanca509102010-03-15 07:58:45 +00001496 if (l_ptr->retransm_queue_size == 0) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001497 l_ptr->retransm_queue_head = msg_seqno(msg);
1498 l_ptr->retransm_queue_size = retransmits;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001499 } else {
Neil Hormanca509102010-03-15 07:58:45 +00001500 err("Unexpected retransmit on link %s (qsize=%d)\n",
1501 l_ptr->name, l_ptr->retransm_queue_size);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001502 }
Neil Hormanca509102010-03-15 07:58:45 +00001503 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001504 } else {
1505 /* Detect repeated retransmit failures on uncongested bearer */
1506
1507 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1508 if (++l_ptr->stale_count > 100) {
1509 link_retransmit_failure(l_ptr, buf);
1510 return;
1511 }
1512 } else {
1513 l_ptr->last_retransmitted = msg_seqno(msg);
1514 l_ptr->stale_count = 1;
1515 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001516 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001517
Neil Hormanca509102010-03-15 07:58:45 +00001518 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001519 msg = buf_msg(buf);
1520 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001521 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001522 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001523 buf = buf->next;
1524 retransmits--;
1525 l_ptr->stats.retransmitted++;
1526 } else {
Per Liden4323add2006-01-18 00:38:21 +01001527 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001528 l_ptr->stats.bearer_congs++;
1529 l_ptr->retransm_queue_head = msg_seqno(buf_msg(buf));
1530 l_ptr->retransm_queue_size = retransmits;
1531 return;
1532 }
1533 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001534
Per Lidenb97bf3f2006-01-02 19:04:38 +01001535 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1536}
1537
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001538/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001539 * link_insert_deferred_queue - insert deferred messages back into receive chain
1540 */
1541
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001542static struct sk_buff *link_insert_deferred_queue(struct link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001543 struct sk_buff *buf)
1544{
1545 u32 seq_no;
1546
1547 if (l_ptr->oldest_deferred_in == NULL)
1548 return buf;
1549
1550 seq_no = msg_seqno(buf_msg(l_ptr->oldest_deferred_in));
1551 if (seq_no == mod(l_ptr->next_in_no)) {
1552 l_ptr->newest_deferred_in->next = buf;
1553 buf = l_ptr->oldest_deferred_in;
1554 l_ptr->oldest_deferred_in = NULL;
1555 l_ptr->deferred_inqueue_sz = 0;
1556 }
1557 return buf;
1558}
1559
Allan Stephens85035562008-04-15 19:04:54 -07001560/**
1561 * link_recv_buf_validate - validate basic format of received message
1562 *
1563 * This routine ensures a TIPC message has an acceptable header, and at least
1564 * as much data as the header indicates it should. The routine also ensures
1565 * that the entire message header is stored in the main fragment of the message
1566 * buffer, to simplify future access to message header fields.
1567 *
1568 * Note: Having extra info present in the message header or data areas is OK.
1569 * TIPC will ignore the excess, under the assumption that it is optional info
1570 * introduced by a later release of the protocol.
1571 */
1572
1573static int link_recv_buf_validate(struct sk_buff *buf)
1574{
1575 static u32 min_data_hdr_size[8] = {
Allan Stephens741d9eb2011-05-31 15:03:18 -04001576 SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,
Allan Stephens85035562008-04-15 19:04:54 -07001577 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1578 };
1579
1580 struct tipc_msg *msg;
1581 u32 tipc_hdr[2];
1582 u32 size;
1583 u32 hdr_size;
1584 u32 min_hdr_size;
1585
1586 if (unlikely(buf->len < MIN_H_SIZE))
1587 return 0;
1588
1589 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1590 if (msg == NULL)
1591 return 0;
1592
1593 if (unlikely(msg_version(msg) != TIPC_VERSION))
1594 return 0;
1595
1596 size = msg_size(msg);
1597 hdr_size = msg_hdr_sz(msg);
1598 min_hdr_size = msg_isdata(msg) ?
1599 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1600
1601 if (unlikely((hdr_size < min_hdr_size) ||
1602 (size < hdr_size) ||
1603 (buf->len < size) ||
1604 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1605 return 0;
1606
1607 return pskb_may_pull(buf, hdr_size);
1608}
1609
Allan Stephensb02b69c2010-08-17 11:00:07 +00001610/**
1611 * tipc_recv_msg - process TIPC messages arriving from off-node
1612 * @head: pointer to message buffer chain
1613 * @tb_ptr: pointer to bearer message arrived on
1614 *
1615 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1616 * structure (i.e. cannot be NULL), but bearer can be inactive.
1617 */
1618
Allan Stephens2d627b92011-01-07 13:00:11 -05001619void tipc_recv_msg(struct sk_buff *head, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001620{
Per Liden4323add2006-01-18 00:38:21 +01001621 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001622 while (head) {
David S. Miller6c000552008-09-02 23:38:32 -07001623 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001624 struct link *l_ptr;
1625 struct sk_buff *crs;
1626 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001627 struct tipc_msg *msg;
1628 u32 seq_no;
1629 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001630 u32 released = 0;
1631 int type;
1632
Per Lidenb97bf3f2006-01-02 19:04:38 +01001633 head = head->next;
Allan Stephens85035562008-04-15 19:04:54 -07001634
Allan Stephensb02b69c2010-08-17 11:00:07 +00001635 /* Ensure bearer is still enabled */
1636
1637 if (unlikely(!b_ptr->active))
1638 goto cont;
1639
Allan Stephens85035562008-04-15 19:04:54 -07001640 /* Ensure message is well-formed */
1641
1642 if (unlikely(!link_recv_buf_validate(buf)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001643 goto cont;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001644
Allan Stephensfe13dda2008-04-15 19:03:23 -07001645 /* Ensure message data is a single contiguous unit */
1646
Allan Stephensa0168922010-12-31 18:59:35 +00001647 if (unlikely(buf_linearize(buf)))
Allan Stephensfe13dda2008-04-15 19:03:23 -07001648 goto cont;
Allan Stephensfe13dda2008-04-15 19:03:23 -07001649
Allan Stephens85035562008-04-15 19:04:54 -07001650 /* Handle arrival of a non-unicast link message */
1651
1652 msg = buf_msg(buf);
1653
Per Lidenb97bf3f2006-01-02 19:04:38 +01001654 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001655 if (msg_user(msg) == LINK_CONFIG)
1656 tipc_disc_recv_msg(buf, b_ptr);
1657 else
1658 tipc_bclink_recv_pkt(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001659 continue;
1660 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001661
Allan Stephensed33a9c2011-04-05 15:15:04 -04001662 /* Discard unicast link messages destined for another node */
1663
Allan Stephens26008242006-06-25 23:39:31 -07001664 if (unlikely(!msg_short(msg) &&
1665 (msg_destnode(msg) != tipc_own_addr)))
1666 goto cont;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001667
Allan Stephens5a68d5ee2010-08-17 11:00:16 +00001668 /* Locate neighboring node that sent message */
Allan Stephens85035562008-04-15 19:04:54 -07001669
Per Liden4323add2006-01-18 00:38:21 +01001670 n_ptr = tipc_node_find(msg_prevnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001671 if (unlikely(!n_ptr))
1672 goto cont;
Per Liden4323add2006-01-18 00:38:21 +01001673 tipc_node_lock(n_ptr);
Allan Stephens85035562008-04-15 19:04:54 -07001674
Allan Stephens5a68d5ee2010-08-17 11:00:16 +00001675 /* Don't talk to neighbor during cleanup after last session */
1676
1677 if (n_ptr->cleanup_required) {
1678 tipc_node_unlock(n_ptr);
1679 goto cont;
1680 }
1681
1682 /* Locate unicast link endpoint that should handle message */
1683
Per Lidenb97bf3f2006-01-02 19:04:38 +01001684 l_ptr = n_ptr->links[b_ptr->identity];
1685 if (unlikely(!l_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001686 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001687 goto cont;
1688 }
Allan Stephens85035562008-04-15 19:04:54 -07001689
1690 /* Validate message sequence number info */
1691
1692 seq_no = msg_seqno(msg);
1693 ackd = msg_ack(msg);
1694
1695 /* Release acked messages */
1696
Per Lidenb97bf3f2006-01-02 19:04:38 +01001697 if (less(n_ptr->bclink.acked, msg_bcast_ack(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01001698 if (tipc_node_is_up(n_ptr) && n_ptr->bclink.supported)
1699 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001700 }
1701
1702 crs = l_ptr->first_out;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001703 while ((crs != l_ptr->next_out) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001704 less_eq(msg_seqno(buf_msg(crs)), ackd)) {
1705 struct sk_buff *next = crs->next;
1706
1707 buf_discard(crs);
1708 crs = next;
1709 released++;
1710 }
1711 if (released) {
1712 l_ptr->first_out = crs;
1713 l_ptr->out_queue_size -= released;
1714 }
Allan Stephens85035562008-04-15 19:04:54 -07001715
1716 /* Try sending any messages link endpoint has pending */
1717
Per Lidenb97bf3f2006-01-02 19:04:38 +01001718 if (unlikely(l_ptr->next_out))
Per Liden4323add2006-01-18 00:38:21 +01001719 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001720 if (unlikely(!list_empty(&l_ptr->waiting_ports)))
Per Liden4323add2006-01-18 00:38:21 +01001721 tipc_link_wakeup_ports(l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001722 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1723 l_ptr->stats.sent_acks++;
Per Liden4323add2006-01-18 00:38:21 +01001724 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001725 }
1726
Allan Stephens85035562008-04-15 19:04:54 -07001727 /* Now (finally!) process the incoming message */
1728
Per Lidenb97bf3f2006-01-02 19:04:38 +01001729protocol_check:
1730 if (likely(link_working_working(l_ptr))) {
1731 if (likely(seq_no == mod(l_ptr->next_in_no))) {
1732 l_ptr->next_in_no++;
1733 if (unlikely(l_ptr->oldest_deferred_in))
1734 head = link_insert_deferred_queue(l_ptr,
1735 head);
1736 if (likely(msg_is_dest(msg, tipc_own_addr))) {
1737deliver:
1738 if (likely(msg_isdata(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01001739 tipc_node_unlock(n_ptr);
1740 tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001741 continue;
1742 }
1743 switch (msg_user(msg)) {
1744 case MSG_BUNDLER:
1745 l_ptr->stats.recv_bundles++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001746 l_ptr->stats.recv_bundled +=
Per Lidenb97bf3f2006-01-02 19:04:38 +01001747 msg_msgcnt(msg);
Per Liden4323add2006-01-18 00:38:21 +01001748 tipc_node_unlock(n_ptr);
1749 tipc_link_recv_bundle(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001750 continue;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001751 case NAME_DISTRIBUTOR:
Per Liden4323add2006-01-18 00:38:21 +01001752 tipc_node_unlock(n_ptr);
1753 tipc_named_recv(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001754 continue;
1755 case CONN_MANAGER:
Per Liden4323add2006-01-18 00:38:21 +01001756 tipc_node_unlock(n_ptr);
1757 tipc_port_recv_proto_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001758 continue;
1759 case MSG_FRAGMENTER:
1760 l_ptr->stats.recv_fragments++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001761 if (tipc_link_recv_fragment(&l_ptr->defragm_buf,
Per Liden4323add2006-01-18 00:38:21 +01001762 &buf, &msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001763 l_ptr->stats.recv_fragmented++;
1764 goto deliver;
1765 }
1766 break;
1767 case CHANGEOVER_PROTOCOL:
1768 type = msg_type(msg);
Per Liden4323add2006-01-18 00:38:21 +01001769 if (link_recv_changeover_msg(&l_ptr, &buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001770 msg = buf_msg(buf);
1771 seq_no = msg_seqno(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001772 if (type == ORIGINAL_MSG)
1773 goto deliver;
1774 goto protocol_check;
1775 }
1776 break;
Allan Stephens7945c1f2011-03-11 13:09:28 -05001777 default:
1778 buf_discard(buf);
1779 buf = NULL;
1780 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001781 }
1782 }
Per Liden4323add2006-01-18 00:38:21 +01001783 tipc_node_unlock(n_ptr);
1784 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001785 continue;
1786 }
1787 link_handle_out_of_seq_msg(l_ptr, buf);
1788 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001789 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001790 continue;
1791 }
1792
1793 if (msg_user(msg) == LINK_PROTOCOL) {
1794 link_recv_proto_msg(l_ptr, buf);
1795 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001796 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001797 continue;
1798 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001799 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1800
1801 if (link_working_working(l_ptr)) {
1802 /* Re-insert in front of queue */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001803 buf->next = head;
1804 head = buf;
Per Liden4323add2006-01-18 00:38:21 +01001805 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001806 continue;
1807 }
Per Liden4323add2006-01-18 00:38:21 +01001808 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001809cont:
1810 buf_discard(buf);
1811 }
Per Liden4323add2006-01-18 00:38:21 +01001812 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001813}
1814
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001815/*
1816 * link_defer_buf(): Sort a received out-of-sequence packet
Per Lidenb97bf3f2006-01-02 19:04:38 +01001817 * into the deferred reception queue.
1818 * Returns the increase of the queue length,i.e. 0 or 1
1819 */
1820
Per Liden4323add2006-01-18 00:38:21 +01001821u32 tipc_link_defer_pkt(struct sk_buff **head,
1822 struct sk_buff **tail,
1823 struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001824{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001825 struct sk_buff *prev = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001826 struct sk_buff *crs = *head;
1827 u32 seq_no = msg_seqno(buf_msg(buf));
1828
1829 buf->next = NULL;
1830
1831 /* Empty queue ? */
1832 if (*head == NULL) {
1833 *head = *tail = buf;
1834 return 1;
1835 }
1836
1837 /* Last ? */
1838 if (less(msg_seqno(buf_msg(*tail)), seq_no)) {
1839 (*tail)->next = buf;
1840 *tail = buf;
1841 return 1;
1842 }
1843
1844 /* Scan through queue and sort it in */
1845 do {
1846 struct tipc_msg *msg = buf_msg(crs);
1847
1848 if (less(seq_no, msg_seqno(msg))) {
1849 buf->next = crs;
1850 if (prev)
1851 prev->next = buf;
1852 else
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001853 *head = buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001854 return 1;
1855 }
Allan Stephensa0168922010-12-31 18:59:35 +00001856 if (seq_no == msg_seqno(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001857 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001858 prev = crs;
1859 crs = crs->next;
Allan Stephens0e659672010-12-31 18:59:32 +00001860 } while (crs);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001861
1862 /* Message is a duplicate of an existing message */
1863
1864 buf_discard(buf);
1865 return 0;
1866}
1867
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001868/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001869 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1870 */
1871
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001872static void link_handle_out_of_seq_msg(struct link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001873 struct sk_buff *buf)
1874{
1875 u32 seq_no = msg_seqno(buf_msg(buf));
1876
1877 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
1878 link_recv_proto_msg(l_ptr, buf);
1879 return;
1880 }
1881
Per Lidenb97bf3f2006-01-02 19:04:38 +01001882 /* Record OOS packet arrival (force mismatch on next timeout) */
1883
1884 l_ptr->checkpoint--;
1885
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001886 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001887 * Discard packet if a duplicate; otherwise add it to deferred queue
1888 * and notify peer of gap as per protocol specification
1889 */
1890
1891 if (less(seq_no, mod(l_ptr->next_in_no))) {
1892 l_ptr->stats.duplicates++;
1893 buf_discard(buf);
1894 return;
1895 }
1896
Per Liden4323add2006-01-18 00:38:21 +01001897 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1898 &l_ptr->newest_deferred_in, buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001899 l_ptr->deferred_inqueue_sz++;
1900 l_ptr->stats.deferred_recv++;
1901 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
Per Liden4323add2006-01-18 00:38:21 +01001902 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001903 } else
1904 l_ptr->stats.duplicates++;
1905}
1906
1907/*
1908 * Send protocol message to the other endpoint.
1909 */
Per Liden4323add2006-01-18 00:38:21 +01001910void tipc_link_send_proto_msg(struct link *l_ptr, u32 msg_typ, int probe_msg,
1911 u32 gap, u32 tolerance, u32 priority, u32 ack_mtu)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001912{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001913 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001914 struct tipc_msg *msg = l_ptr->pmsg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001915 u32 msg_size = sizeof(l_ptr->proto_msg);
Allan Stephens75f0aa42011-02-28 15:30:20 -05001916 int r_flag;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001917
1918 if (link_blocked(l_ptr))
1919 return;
1920 msg_set_type(msg, msg_typ);
1921 msg_set_net_plane(msg, l_ptr->b_ptr->net_plane);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001922 msg_set_bcast_ack(msg, mod(l_ptr->owner->bclink.last_in));
Per Liden4323add2006-01-18 00:38:21 +01001923 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
Per Lidenb97bf3f2006-01-02 19:04:38 +01001924
1925 if (msg_typ == STATE_MSG) {
1926 u32 next_sent = mod(l_ptr->next_out_no);
1927
Per Liden4323add2006-01-18 00:38:21 +01001928 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001929 return;
1930 if (l_ptr->next_out)
1931 next_sent = msg_seqno(buf_msg(l_ptr->next_out));
1932 msg_set_next_sent(msg, next_sent);
1933 if (l_ptr->oldest_deferred_in) {
1934 u32 rec = msg_seqno(buf_msg(l_ptr->oldest_deferred_in));
1935 gap = mod(rec - mod(l_ptr->next_in_no));
1936 }
1937 msg_set_seq_gap(msg, gap);
1938 if (gap)
1939 l_ptr->stats.sent_nacks++;
1940 msg_set_link_tolerance(msg, tolerance);
1941 msg_set_linkprio(msg, priority);
1942 msg_set_max_pkt(msg, ack_mtu);
1943 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1944 msg_set_probe(msg, probe_msg != 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001945 if (probe_msg) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001946 u32 mtu = l_ptr->max_pkt;
1947
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001948 if ((mtu < l_ptr->max_pkt_target) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001949 link_working_working(l_ptr) &&
1950 l_ptr->fsm_msg_cnt) {
1951 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001952 if (l_ptr->max_pkt_probes == 10) {
1953 l_ptr->max_pkt_target = (msg_size - 4);
1954 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001955 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001956 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001957 l_ptr->max_pkt_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001958 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001959
1960 l_ptr->stats.sent_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001961 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001962 l_ptr->stats.sent_states++;
1963 } else { /* RESET_MSG or ACTIVATE_MSG */
1964 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
1965 msg_set_seq_gap(msg, 0);
1966 msg_set_next_sent(msg, 1);
Allan Stephensf23d9bf2011-01-18 15:15:34 -05001967 msg_set_probe(msg, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001968 msg_set_link_tolerance(msg, l_ptr->tolerance);
1969 msg_set_linkprio(msg, l_ptr->priority);
1970 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
1971 }
1972
Allan Stephens75f0aa42011-02-28 15:30:20 -05001973 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
1974 msg_set_redundant_link(msg, r_flag);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001975 msg_set_linkprio(msg, l_ptr->priority);
1976
1977 /* Ensure sequence number will not fit : */
1978
1979 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
1980
1981 /* Congestion? */
1982
Per Liden4323add2006-01-18 00:38:21 +01001983 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001984 if (!l_ptr->proto_msg_queue) {
1985 l_ptr->proto_msg_queue =
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001986 tipc_buf_acquire(sizeof(l_ptr->proto_msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001987 }
1988 buf = l_ptr->proto_msg_queue;
1989 if (!buf)
1990 return;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001991 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001992 return;
1993 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001994
1995 /* Message can be sent */
1996
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001997 buf = tipc_buf_acquire(msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001998 if (!buf)
1999 return;
2000
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002001 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002002 msg_set_size(buf_msg(buf), msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002003
Per Liden4323add2006-01-18 00:38:21 +01002004 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002005 l_ptr->unacked_window = 0;
2006 buf_discard(buf);
2007 return;
2008 }
2009
2010 /* New congestion */
Per Liden4323add2006-01-18 00:38:21 +01002011 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002012 l_ptr->proto_msg_queue = buf;
2013 l_ptr->stats.bearer_congs++;
2014}
2015
2016/*
2017 * Receive protocol message :
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002018 * Note that network plane id propagates through the network, and may
2019 * change at any time. The node with lowest address rules
Per Lidenb97bf3f2006-01-02 19:04:38 +01002020 */
2021
2022static void link_recv_proto_msg(struct link *l_ptr, struct sk_buff *buf)
2023{
2024 u32 rec_gap = 0;
2025 u32 max_pkt_info;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002026 u32 max_pkt_ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002027 u32 msg_tol;
2028 struct tipc_msg *msg = buf_msg(buf);
2029
Per Lidenb97bf3f2006-01-02 19:04:38 +01002030 if (link_blocked(l_ptr))
2031 goto exit;
2032
2033 /* record unnumbered packet arrival (force mismatch on next timeout) */
2034
2035 l_ptr->checkpoint--;
2036
2037 if (l_ptr->b_ptr->net_plane != msg_net_plane(msg))
2038 if (tipc_own_addr > msg_prevnode(msg))
2039 l_ptr->b_ptr->net_plane = msg_net_plane(msg);
2040
2041 l_ptr->owner->permit_changeover = msg_redundant_link(msg);
2042
2043 switch (msg_type(msg)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002044
Per Lidenb97bf3f2006-01-02 19:04:38 +01002045 case RESET_MSG:
Allan Stephensa686e682008-06-04 17:29:39 -07002046 if (!link_working_unknown(l_ptr) &&
2047 (l_ptr->peer_session != INVALID_SESSION)) {
Allan Stephens641c2182011-04-07 09:54:43 -04002048 if (less_eq(msg_session(msg), l_ptr->peer_session))
2049 break; /* duplicate or old reset: ignore */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002050 }
2051 /* fall thru' */
2052 case ACTIVATE_MSG:
2053 /* Update link settings according other endpoint's values */
2054
2055 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
2056
Allan Stephens2db99832010-12-31 18:59:33 +00002057 msg_tol = msg_link_tolerance(msg);
2058 if (msg_tol > l_ptr->tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002059 link_set_supervision_props(l_ptr, msg_tol);
2060
2061 if (msg_linkprio(msg) > l_ptr->priority)
2062 l_ptr->priority = msg_linkprio(msg);
2063
2064 max_pkt_info = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002065 if (max_pkt_info) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002066 if (max_pkt_info < l_ptr->max_pkt_target)
2067 l_ptr->max_pkt_target = max_pkt_info;
2068 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
2069 l_ptr->max_pkt = l_ptr->max_pkt_target;
2070 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002071 l_ptr->max_pkt = l_ptr->max_pkt_target;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002072 }
2073 l_ptr->owner->bclink.supported = (max_pkt_info != 0);
2074
2075 link_state_event(l_ptr, msg_type(msg));
2076
2077 l_ptr->peer_session = msg_session(msg);
2078 l_ptr->peer_bearer_id = msg_bearer_id(msg);
2079
2080 /* Synchronize broadcast sequence numbers */
Paul Gortmaker8f19afb2011-02-28 11:36:21 -04002081 if (!tipc_node_redundant_links(l_ptr->owner))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002082 l_ptr->owner->bclink.last_in = mod(msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002083 break;
2084 case STATE_MSG:
2085
Allan Stephens2db99832010-12-31 18:59:33 +00002086 msg_tol = msg_link_tolerance(msg);
2087 if (msg_tol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002088 link_set_supervision_props(l_ptr, msg_tol);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002089
2090 if (msg_linkprio(msg) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002091 (msg_linkprio(msg) != l_ptr->priority)) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002092 warn("Resetting link <%s>, priority change %u->%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002093 l_ptr->name, l_ptr->priority, msg_linkprio(msg));
2094 l_ptr->priority = msg_linkprio(msg);
Per Liden4323add2006-01-18 00:38:21 +01002095 tipc_link_reset(l_ptr); /* Enforce change to take effect */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002096 break;
2097 }
2098 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
2099 l_ptr->stats.recv_states++;
2100 if (link_reset_unknown(l_ptr))
2101 break;
2102
2103 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002104 rec_gap = mod(msg_next_sent(msg) -
Per Lidenb97bf3f2006-01-02 19:04:38 +01002105 mod(l_ptr->next_in_no));
2106 }
2107
2108 max_pkt_ack = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002109 if (max_pkt_ack > l_ptr->max_pkt) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002110 l_ptr->max_pkt = max_pkt_ack;
2111 l_ptr->max_pkt_probes = 0;
2112 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002113
2114 max_pkt_ack = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002115 if (msg_probe(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002116 l_ptr->stats.recv_probes++;
Allan Stephensa0168922010-12-31 18:59:35 +00002117 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002118 max_pkt_ack = msg_size(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002119 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002120
2121 /* Protocol message before retransmits, reduce loss risk */
2122
Per Liden4323add2006-01-18 00:38:21 +01002123 tipc_bclink_check_gap(l_ptr->owner, msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002124
2125 if (rec_gap || (msg_probe(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01002126 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
2127 0, rec_gap, 0, 0, max_pkt_ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002128 }
2129 if (msg_seq_gap(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002130 l_ptr->stats.recv_nacks++;
Per Liden4323add2006-01-18 00:38:21 +01002131 tipc_link_retransmit(l_ptr, l_ptr->first_out,
2132 msg_seq_gap(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002133 }
2134 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002135 }
2136exit:
2137 buf_discard(buf);
2138}
2139
2140
2141/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002142 * tipc_link_tunnel(): Send one message via a link belonging to
Per Lidenb97bf3f2006-01-02 19:04:38 +01002143 * another bearer. Owner node is locked.
2144 */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002145static void tipc_link_tunnel(struct link *l_ptr,
2146 struct tipc_msg *tunnel_hdr,
2147 struct tipc_msg *msg,
2148 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002149{
2150 struct link *tunnel;
2151 struct sk_buff *buf;
2152 u32 length = msg_size(msg);
2153
2154 tunnel = l_ptr->owner->active_links[selector & 1];
Allan Stephens5392d642006-06-25 23:52:50 -07002155 if (!tipc_link_is_up(tunnel)) {
2156 warn("Link changeover error, "
2157 "tunnel link no longer available\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002158 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002159 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002160 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002161 buf = tipc_buf_acquire(length + INT_H_SIZE);
Allan Stephens5392d642006-06-25 23:52:50 -07002162 if (!buf) {
2163 warn("Link changeover error, "
2164 "unable to send tunnel msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002165 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002166 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002167 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
2168 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
Per Liden4323add2006-01-18 00:38:21 +01002169 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002170}
2171
2172
2173
2174/*
2175 * changeover(): Send whole message queue via the remaining link
2176 * Owner node is locked.
2177 */
2178
Per Liden4323add2006-01-18 00:38:21 +01002179void tipc_link_changeover(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002180{
2181 u32 msgcount = l_ptr->out_queue_size;
2182 struct sk_buff *crs = l_ptr->first_out;
2183 struct link *tunnel = l_ptr->owner->active_links[0];
Per Lidenb97bf3f2006-01-02 19:04:38 +01002184 struct tipc_msg tunnel_hdr;
Allan Stephens5392d642006-06-25 23:52:50 -07002185 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002186
2187 if (!tunnel)
2188 return;
2189
Allan Stephens5392d642006-06-25 23:52:50 -07002190 if (!l_ptr->owner->permit_changeover) {
2191 warn("Link changeover error, "
2192 "peer did not permit changeover\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002193 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002194 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002195
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002196 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002197 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002198 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2199 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07002200
Per Lidenb97bf3f2006-01-02 19:04:38 +01002201 if (!l_ptr->first_out) {
2202 struct sk_buff *buf;
2203
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002204 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002205 if (buf) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002206 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002207 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Per Liden4323add2006-01-18 00:38:21 +01002208 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002209 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002210 warn("Link changeover error, "
2211 "unable to send changeover msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002212 }
2213 return;
2214 }
Allan Stephensf1310722006-06-25 23:51:37 -07002215
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002216 split_bundles = (l_ptr->owner->active_links[0] !=
Allan Stephens5392d642006-06-25 23:52:50 -07002217 l_ptr->owner->active_links[1]);
2218
Per Lidenb97bf3f2006-01-02 19:04:38 +01002219 while (crs) {
2220 struct tipc_msg *msg = buf_msg(crs);
2221
2222 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002223 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00002224 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002225
Florian Westphald788d802007-08-02 19:28:06 -07002226 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002227 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00002228 msg_set_seqno(m, msg_seqno(msg));
Per Liden4323add2006-01-18 00:38:21 +01002229 tipc_link_tunnel(l_ptr, &tunnel_hdr, m,
2230 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002231 pos += align(msg_size(m));
2232 m = (struct tipc_msg *)pos;
2233 }
2234 } else {
Per Liden4323add2006-01-18 00:38:21 +01002235 tipc_link_tunnel(l_ptr, &tunnel_hdr, msg,
2236 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002237 }
2238 crs = crs->next;
2239 }
2240}
2241
Per Liden4323add2006-01-18 00:38:21 +01002242void tipc_link_send_duplicate(struct link *l_ptr, struct link *tunnel)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002243{
2244 struct sk_buff *iter;
2245 struct tipc_msg tunnel_hdr;
2246
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002247 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002248 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002249 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
2250 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2251 iter = l_ptr->first_out;
2252 while (iter) {
2253 struct sk_buff *outbuf;
2254 struct tipc_msg *msg = buf_msg(iter);
2255 u32 length = msg_size(msg);
2256
2257 if (msg_user(msg) == MSG_BUNDLER)
2258 msg_set_type(msg, CLOSED_MSG);
2259 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002260 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002261 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002262 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002263 if (outbuf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002264 warn("Link changeover error, "
2265 "unable to send duplicate msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002266 return;
2267 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002268 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
2269 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
2270 length);
Per Liden4323add2006-01-18 00:38:21 +01002271 tipc_link_send_buf(tunnel, outbuf);
2272 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002273 return;
2274 iter = iter->next;
2275 }
2276}
2277
2278
2279
2280/**
2281 * buf_extract - extracts embedded TIPC message from another message
2282 * @skb: encapsulating message buffer
2283 * @from_pos: offset to extract from
2284 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002285 * Returns a new message buffer containing an embedded message. The
Per Lidenb97bf3f2006-01-02 19:04:38 +01002286 * encapsulating message itself is left unchanged.
2287 */
2288
2289static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
2290{
2291 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
2292 u32 size = msg_size(msg);
2293 struct sk_buff *eb;
2294
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002295 eb = tipc_buf_acquire(size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002296 if (eb)
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002297 skb_copy_to_linear_data(eb, msg, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002298 return eb;
2299}
2300
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002301/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01002302 * link_recv_changeover_msg(): Receive tunneled packet sent
2303 * via other link. Node is locked. Return extracted buffer.
2304 */
2305
2306static int link_recv_changeover_msg(struct link **l_ptr,
2307 struct sk_buff **buf)
2308{
2309 struct sk_buff *tunnel_buf = *buf;
2310 struct link *dest_link;
2311 struct tipc_msg *msg;
2312 struct tipc_msg *tunnel_msg = buf_msg(tunnel_buf);
2313 u32 msg_typ = msg_type(tunnel_msg);
2314 u32 msg_count = msg_msgcnt(tunnel_msg);
2315
2316 dest_link = (*l_ptr)->owner->links[msg_bearer_id(tunnel_msg)];
Allan Stephensb29f1422010-12-31 18:59:25 +00002317 if (!dest_link)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002318 goto exit;
Allan Stephensf1310722006-06-25 23:51:37 -07002319 if (dest_link == *l_ptr) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002320 err("Unexpected changeover message on link <%s>\n",
Allan Stephensf1310722006-06-25 23:51:37 -07002321 (*l_ptr)->name);
2322 goto exit;
2323 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002324 *l_ptr = dest_link;
2325 msg = msg_get_wrapped(tunnel_msg);
2326
2327 if (msg_typ == DUPLICATE_MSG) {
Allan Stephensb29f1422010-12-31 18:59:25 +00002328 if (less(msg_seqno(msg), mod(dest_link->next_in_no)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002329 goto exit;
Allan Stephens0e659672010-12-31 18:59:32 +00002330 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002331 if (*buf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002332 warn("Link changeover error, duplicate msg dropped\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002333 goto exit;
2334 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002335 buf_discard(tunnel_buf);
2336 return 1;
2337 }
2338
2339 /* First original message ?: */
2340
Per Liden4323add2006-01-18 00:38:21 +01002341 if (tipc_link_is_up(dest_link)) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002342 info("Resetting link <%s>, changeover initiated by peer\n",
2343 dest_link->name);
Per Liden4323add2006-01-18 00:38:21 +01002344 tipc_link_reset(dest_link);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002345 dest_link->exp_msg_count = msg_count;
2346 if (!msg_count)
2347 goto exit;
2348 } else if (dest_link->exp_msg_count == START_CHANGEOVER) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002349 dest_link->exp_msg_count = msg_count;
2350 if (!msg_count)
2351 goto exit;
2352 }
2353
2354 /* Receive original message */
2355
2356 if (dest_link->exp_msg_count == 0) {
Allan Stephens5392d642006-06-25 23:52:50 -07002357 warn("Link switchover error, "
2358 "got too many tunnelled messages\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002359 goto exit;
2360 }
2361 dest_link->exp_msg_count--;
2362 if (less(msg_seqno(msg), dest_link->reset_checkpoint)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002363 goto exit;
2364 } else {
2365 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
2366 if (*buf != NULL) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002367 buf_discard(tunnel_buf);
2368 return 1;
2369 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002370 warn("Link changeover error, original msg dropped\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002371 }
2372 }
2373exit:
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002374 *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002375 buf_discard(tunnel_buf);
2376 return 0;
2377}
2378
2379/*
2380 * Bundler functionality:
2381 */
Per Liden4323add2006-01-18 00:38:21 +01002382void tipc_link_recv_bundle(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002383{
2384 u32 msgcount = msg_msgcnt(buf_msg(buf));
2385 u32 pos = INT_H_SIZE;
2386 struct sk_buff *obuf;
2387
Per Lidenb97bf3f2006-01-02 19:04:38 +01002388 while (msgcount--) {
2389 obuf = buf_extract(buf, pos);
2390 if (obuf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002391 warn("Link unable to unbundle message(s)\n");
2392 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002393 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002394 pos += align(msg_size(buf_msg(obuf)));
Per Liden4323add2006-01-18 00:38:21 +01002395 tipc_net_route_msg(obuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002396 }
2397 buf_discard(buf);
2398}
2399
2400/*
2401 * Fragmentation/defragmentation:
2402 */
2403
2404
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002405/*
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002406 * link_send_long_buf: Entry for buffers needing fragmentation.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002407 * The buffer is complete, inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002408 * Returns user data length.
2409 */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002410static int link_send_long_buf(struct link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002411{
Allan Stephens77561552011-04-17 13:06:23 -04002412 struct sk_buff *buf_chain = NULL;
2413 struct sk_buff *buf_chain_tail = (struct sk_buff *)&buf_chain;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002414 struct tipc_msg *inmsg = buf_msg(buf);
2415 struct tipc_msg fragm_hdr;
2416 u32 insize = msg_size(inmsg);
2417 u32 dsz = msg_data_sz(inmsg);
2418 unchar *crs = buf->data;
2419 u32 rest = insize;
Allan Stephens15e979d2010-05-11 14:30:10 +00002420 u32 pack_sz = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002421 u32 fragm_sz = pack_sz - INT_H_SIZE;
Allan Stephens77561552011-04-17 13:06:23 -04002422 u32 fragm_no = 0;
Allan Stephens9c396a72008-06-04 17:36:58 -07002423 u32 destaddr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002424
2425 if (msg_short(inmsg))
2426 destaddr = l_ptr->addr;
Allan Stephens9c396a72008-06-04 17:36:58 -07002427 else
2428 destaddr = msg_destnode(inmsg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002429
Per Lidenb97bf3f2006-01-02 19:04:38 +01002430 /* Prepare reusable fragment header: */
2431
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002432 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07002433 INT_H_SIZE, destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002434
2435 /* Chop up message: */
2436
2437 while (rest > 0) {
2438 struct sk_buff *fragm;
2439
2440 if (rest <= fragm_sz) {
2441 fragm_sz = rest;
2442 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
2443 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002444 fragm = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002445 if (fragm == NULL) {
Allan Stephens77561552011-04-17 13:06:23 -04002446 buf_discard(buf);
2447 while (buf_chain) {
2448 buf = buf_chain;
2449 buf_chain = buf_chain->next;
2450 buf_discard(buf);
2451 }
2452 return -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002453 }
2454 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
Allan Stephens77561552011-04-17 13:06:23 -04002455 fragm_no++;
2456 msg_set_fragm_no(&fragm_hdr, fragm_no);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002457 skb_copy_to_linear_data(fragm, &fragm_hdr, INT_H_SIZE);
2458 skb_copy_to_linear_data_offset(fragm, INT_H_SIZE, crs,
2459 fragm_sz);
Allan Stephens77561552011-04-17 13:06:23 -04002460 buf_chain_tail->next = fragm;
2461 buf_chain_tail = fragm;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002462
Per Lidenb97bf3f2006-01-02 19:04:38 +01002463 rest -= fragm_sz;
2464 crs += fragm_sz;
2465 msg_set_type(&fragm_hdr, FRAGMENT);
2466 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002467 buf_discard(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002468
2469 /* Append chain of fragments to send queue & send them */
2470
2471 l_ptr->long_msg_seq_no++;
2472 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
2473 l_ptr->stats.sent_fragments += fragm_no;
2474 l_ptr->stats.sent_fragmented++;
2475 tipc_link_push_queue(l_ptr);
2476
Per Lidenb97bf3f2006-01-02 19:04:38 +01002477 return dsz;
2478}
2479
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002480/*
2481 * A pending message being re-assembled must store certain values
2482 * to handle subsequent fragments correctly. The following functions
Per Lidenb97bf3f2006-01-02 19:04:38 +01002483 * help storing these values in unused, available fields in the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002484 * pending message. This makes dynamic memory allocation unnecessary.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002485 */
2486
Sam Ravnborg05790c62006-03-20 22:37:04 -08002487static void set_long_msg_seqno(struct sk_buff *buf, u32 seqno)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002488{
2489 msg_set_seqno(buf_msg(buf), seqno);
2490}
2491
Sam Ravnborg05790c62006-03-20 22:37:04 -08002492static u32 get_fragm_size(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002493{
2494 return msg_ack(buf_msg(buf));
2495}
2496
Sam Ravnborg05790c62006-03-20 22:37:04 -08002497static void set_fragm_size(struct sk_buff *buf, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002498{
2499 msg_set_ack(buf_msg(buf), sz);
2500}
2501
Sam Ravnborg05790c62006-03-20 22:37:04 -08002502static u32 get_expected_frags(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002503{
2504 return msg_bcast_ack(buf_msg(buf));
2505}
2506
Sam Ravnborg05790c62006-03-20 22:37:04 -08002507static void set_expected_frags(struct sk_buff *buf, u32 exp)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002508{
2509 msg_set_bcast_ack(buf_msg(buf), exp);
2510}
2511
Sam Ravnborg05790c62006-03-20 22:37:04 -08002512static u32 get_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002513{
2514 return msg_reroute_cnt(buf_msg(buf));
2515}
2516
Sam Ravnborg05790c62006-03-20 22:37:04 -08002517static void incr_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002518{
2519 msg_incr_reroute_cnt(buf_msg(buf));
2520}
2521
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002522/*
2523 * tipc_link_recv_fragment(): Called with node lock on. Returns
Per Lidenb97bf3f2006-01-02 19:04:38 +01002524 * the reassembled buffer if message is complete.
2525 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002526int tipc_link_recv_fragment(struct sk_buff **pending, struct sk_buff **fb,
Per Liden4323add2006-01-18 00:38:21 +01002527 struct tipc_msg **m)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002528{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002529 struct sk_buff *prev = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002530 struct sk_buff *fbuf = *fb;
2531 struct tipc_msg *fragm = buf_msg(fbuf);
2532 struct sk_buff *pbuf = *pending;
2533 u32 long_msg_seq_no = msg_long_msgno(fragm);
2534
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002535 *fb = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002536
2537 /* Is there an incomplete message waiting for this fragment? */
2538
Joe Perchesf64f9e72009-11-29 16:55:45 -08002539 while (pbuf && ((msg_seqno(buf_msg(pbuf)) != long_msg_seq_no) ||
2540 (msg_orignode(fragm) != msg_orignode(buf_msg(pbuf))))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002541 prev = pbuf;
2542 pbuf = pbuf->next;
2543 }
2544
2545 if (!pbuf && (msg_type(fragm) == FIRST_FRAGMENT)) {
2546 struct tipc_msg *imsg = (struct tipc_msg *)msg_data(fragm);
2547 u32 msg_sz = msg_size(imsg);
2548 u32 fragm_sz = msg_data_sz(fragm);
2549 u32 exp_fragm_cnt = msg_sz/fragm_sz + !!(msg_sz % fragm_sz);
Allan Stephens741d9eb2011-05-31 15:03:18 -04002550 u32 max = TIPC_MAX_USER_MSG_SIZE + NAMED_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002551 if (msg_type(imsg) == TIPC_MCAST_MSG)
2552 max = TIPC_MAX_USER_MSG_SIZE + MCAST_H_SIZE;
2553 if (msg_size(imsg) > max) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002554 buf_discard(fbuf);
2555 return 0;
2556 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002557 pbuf = tipc_buf_acquire(msg_size(imsg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002558 if (pbuf != NULL) {
2559 pbuf->next = *pending;
2560 *pending = pbuf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002561 skb_copy_to_linear_data(pbuf, imsg,
2562 msg_data_sz(fragm));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002563 /* Prepare buffer for subsequent fragments. */
2564
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002565 set_long_msg_seqno(pbuf, long_msg_seq_no);
Allan Stephens0e659672010-12-31 18:59:32 +00002566 set_fragm_size(pbuf, fragm_sz);
2567 set_expected_frags(pbuf, exp_fragm_cnt - 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002568 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002569 warn("Link unable to reassemble fragmented message\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002570 }
2571 buf_discard(fbuf);
2572 return 0;
2573 } else if (pbuf && (msg_type(fragm) != FIRST_FRAGMENT)) {
2574 u32 dsz = msg_data_sz(fragm);
2575 u32 fsz = get_fragm_size(pbuf);
2576 u32 crs = ((msg_fragm_no(fragm) - 1) * fsz);
2577 u32 exp_frags = get_expected_frags(pbuf) - 1;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002578 skb_copy_to_linear_data_offset(pbuf, crs,
2579 msg_data(fragm), dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002580 buf_discard(fbuf);
2581
2582 /* Is message complete? */
2583
2584 if (exp_frags == 0) {
2585 if (prev)
2586 prev->next = pbuf->next;
2587 else
2588 *pending = pbuf->next;
2589 msg_reset_reroute_cnt(buf_msg(pbuf));
2590 *fb = pbuf;
2591 *m = buf_msg(pbuf);
2592 return 1;
2593 }
Allan Stephens0e659672010-12-31 18:59:32 +00002594 set_expected_frags(pbuf, exp_frags);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002595 return 0;
2596 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002597 buf_discard(fbuf);
2598 return 0;
2599}
2600
2601/**
2602 * link_check_defragm_bufs - flush stale incoming message fragments
2603 * @l_ptr: pointer to link
2604 */
2605
2606static void link_check_defragm_bufs(struct link *l_ptr)
2607{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002608 struct sk_buff *prev = NULL;
2609 struct sk_buff *next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002610 struct sk_buff *buf = l_ptr->defragm_buf;
2611
2612 if (!buf)
2613 return;
2614 if (!link_working_working(l_ptr))
2615 return;
2616 while (buf) {
2617 u32 cnt = get_timer_cnt(buf);
2618
2619 next = buf->next;
2620 if (cnt < 4) {
2621 incr_timer_cnt(buf);
2622 prev = buf;
2623 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002624 if (prev)
2625 prev->next = buf->next;
2626 else
2627 l_ptr->defragm_buf = buf->next;
2628 buf_discard(buf);
2629 }
2630 buf = next;
2631 }
2632}
2633
2634
2635
2636static void link_set_supervision_props(struct link *l_ptr, u32 tolerance)
2637{
Allan Stephens5413b4c2011-01-18 13:24:55 -05002638 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
2639 return;
2640
Per Lidenb97bf3f2006-01-02 19:04:38 +01002641 l_ptr->tolerance = tolerance;
2642 l_ptr->continuity_interval =
2643 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
2644 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
2645}
2646
2647
Per Liden4323add2006-01-18 00:38:21 +01002648void tipc_link_set_queue_limits(struct link *l_ptr, u32 window)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002649{
2650 /* Data messages from this node, inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002651 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
2652 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
2653 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
2654 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002655 /* Transiting data messages,inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002656 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
2657 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
2658 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
2659 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002660 l_ptr->queue_limit[CONN_MANAGER] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002661 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
2662 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
2663 /* FRAGMENT and LAST_FRAGMENT packets */
2664 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
2665}
2666
2667/**
2668 * link_find_link - locate link by name
2669 * @name - ptr to link name string
2670 * @node - ptr to area to be filled with ptr to associated node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002671 *
Per Liden4323add2006-01-18 00:38:21 +01002672 * Caller must hold 'tipc_net_lock' to ensure node and bearer are not deleted;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002673 * this also prevents link deletion.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002674 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002675 * Returns pointer to link (or 0 if invalid link name).
2676 */
2677
David S. Miller6c000552008-09-02 23:38:32 -07002678static struct link *link_find_link(const char *name, struct tipc_node **node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002679{
2680 struct link_name link_name_parts;
Allan Stephens2d627b92011-01-07 13:00:11 -05002681 struct tipc_bearer *b_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002682 struct link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002683
2684 if (!link_name_validate(name, &link_name_parts))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002685 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002686
Per Liden4323add2006-01-18 00:38:21 +01002687 b_ptr = tipc_bearer_find_interface(link_name_parts.if_local);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002688 if (!b_ptr)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002689 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002690
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002691 *node = tipc_node_find(link_name_parts.addr_peer);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002692 if (!*node)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002693 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002694
2695 l_ptr = (*node)->links[b_ptr->identity];
2696 if (!l_ptr || strcmp(l_ptr->name, name))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002697 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002698
2699 return l_ptr;
2700}
2701
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002702struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
Per Liden4323add2006-01-18 00:38:21 +01002703 u16 cmd)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002704{
2705 struct tipc_link_config *args;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002706 u32 new_value;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002707 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002708 struct tipc_node *node;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002709 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002710
2711 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
Per Liden4323add2006-01-18 00:38:21 +01002712 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002713
2714 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2715 new_value = ntohl(args->value);
2716
Per Liden4323add2006-01-18 00:38:21 +01002717 if (!strcmp(args->name, tipc_bclink_name)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002718 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
Per Liden4323add2006-01-18 00:38:21 +01002719 (tipc_bclink_set_queue_limits(new_value) == 0))
2720 return tipc_cfg_reply_none();
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002721 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
Per Liden4323add2006-01-18 00:38:21 +01002722 " (cannot change setting on broadcast link)");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002723 }
2724
Per Liden4323add2006-01-18 00:38:21 +01002725 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002726 l_ptr = link_find_link(args->name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002727 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002728 read_unlock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002729 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002730 }
2731
Per Liden4323add2006-01-18 00:38:21 +01002732 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002733 res = -EINVAL;
2734 switch (cmd) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002735 case TIPC_CMD_SET_LINK_TOL:
2736 if ((new_value >= TIPC_MIN_LINK_TOL) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002737 (new_value <= TIPC_MAX_LINK_TOL)) {
2738 link_set_supervision_props(l_ptr, new_value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002739 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +01002740 0, 0, new_value, 0, 0);
Allan Stephens0e35fd52008-07-14 22:44:01 -07002741 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002742 }
2743 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002744 case TIPC_CMD_SET_LINK_PRI:
Per Liden16cb4b32006-01-13 22:22:22 +01002745 if ((new_value >= TIPC_MIN_LINK_PRI) &&
2746 (new_value <= TIPC_MAX_LINK_PRI)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002747 l_ptr->priority = new_value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002748 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +01002749 0, 0, 0, new_value, 0);
Allan Stephens0e35fd52008-07-14 22:44:01 -07002750 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002751 }
2752 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002753 case TIPC_CMD_SET_LINK_WINDOW:
2754 if ((new_value >= TIPC_MIN_LINK_WIN) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002755 (new_value <= TIPC_MAX_LINK_WIN)) {
Per Liden4323add2006-01-18 00:38:21 +01002756 tipc_link_set_queue_limits(l_ptr, new_value);
Allan Stephens0e35fd52008-07-14 22:44:01 -07002757 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002758 }
2759 break;
2760 }
Per Liden4323add2006-01-18 00:38:21 +01002761 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002762
Per Liden4323add2006-01-18 00:38:21 +01002763 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002764 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002765 return tipc_cfg_reply_error_string("cannot change link setting");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002766
Per Liden4323add2006-01-18 00:38:21 +01002767 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002768}
2769
2770/**
2771 * link_reset_statistics - reset link statistics
2772 * @l_ptr: pointer to link
2773 */
2774
2775static void link_reset_statistics(struct link *l_ptr)
2776{
2777 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2778 l_ptr->stats.sent_info = l_ptr->next_out_no;
2779 l_ptr->stats.recv_info = l_ptr->next_in_no;
2780}
2781
Per Liden4323add2006-01-18 00:38:21 +01002782struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002783{
2784 char *link_name;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002785 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002786 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002787
2788 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002789 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002790
2791 link_name = (char *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +01002792 if (!strcmp(link_name, tipc_bclink_name)) {
2793 if (tipc_bclink_reset_stats())
2794 return tipc_cfg_reply_error_string("link not found");
2795 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002796 }
2797
Per Liden4323add2006-01-18 00:38:21 +01002798 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002799 l_ptr = link_find_link(link_name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002800 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002801 read_unlock_bh(&tipc_net_lock);
2802 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002803 }
2804
Per Liden4323add2006-01-18 00:38:21 +01002805 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002806 link_reset_statistics(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +01002807 tipc_node_unlock(node);
2808 read_unlock_bh(&tipc_net_lock);
2809 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002810}
2811
2812/**
2813 * percent - convert count to a percentage of total (rounding up or down)
2814 */
2815
2816static u32 percent(u32 count, u32 total)
2817{
2818 return (count * 100 + (total / 2)) / total;
2819}
2820
2821/**
Per Liden4323add2006-01-18 00:38:21 +01002822 * tipc_link_stats - print link statistics
Per Lidenb97bf3f2006-01-02 19:04:38 +01002823 * @name: link name
2824 * @buf: print buffer area
2825 * @buf_size: size of print buffer area
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002826 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002827 * Returns length of print buffer data string (or 0 if error)
2828 */
2829
Per Liden4323add2006-01-18 00:38:21 +01002830static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002831{
2832 struct print_buf pb;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002833 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002834 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002835 char *status;
2836 u32 profile_total = 0;
2837
Per Liden4323add2006-01-18 00:38:21 +01002838 if (!strcmp(name, tipc_bclink_name))
2839 return tipc_bclink_stats(buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002840
Per Liden4323add2006-01-18 00:38:21 +01002841 tipc_printbuf_init(&pb, buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002842
Per Liden4323add2006-01-18 00:38:21 +01002843 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002844 l_ptr = link_find_link(name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002845 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002846 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002847 return 0;
2848 }
Per Liden4323add2006-01-18 00:38:21 +01002849 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002850
Per Liden4323add2006-01-18 00:38:21 +01002851 if (tipc_link_is_active(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002852 status = "ACTIVE";
Per Liden4323add2006-01-18 00:38:21 +01002853 else if (tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002854 status = "STANDBY";
2855 else
2856 status = "DEFUNCT";
2857 tipc_printf(&pb, "Link <%s>\n"
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002858 " %s MTU:%u Priority:%u Tolerance:%u ms"
2859 " Window:%u packets\n",
Allan Stephens15e979d2010-05-11 14:30:10 +00002860 l_ptr->name, status, l_ptr->max_pkt,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002861 l_ptr->priority, l_ptr->tolerance, l_ptr->queue_limit[0]);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002862 tipc_printf(&pb, " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002863 l_ptr->next_in_no - l_ptr->stats.recv_info,
2864 l_ptr->stats.recv_fragments,
2865 l_ptr->stats.recv_fragmented,
2866 l_ptr->stats.recv_bundles,
2867 l_ptr->stats.recv_bundled);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002868 tipc_printf(&pb, " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002869 l_ptr->next_out_no - l_ptr->stats.sent_info,
2870 l_ptr->stats.sent_fragments,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002871 l_ptr->stats.sent_fragmented,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002872 l_ptr->stats.sent_bundles,
2873 l_ptr->stats.sent_bundled);
2874 profile_total = l_ptr->stats.msg_length_counts;
2875 if (!profile_total)
2876 profile_total = 1;
2877 tipc_printf(&pb, " TX profile sample:%u packets average:%u octets\n"
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002878 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
Allan Stephens0f305bf2011-05-30 15:36:56 -04002879 "-16384:%u%% -32768:%u%% -66000:%u%%\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002880 l_ptr->stats.msg_length_counts,
2881 l_ptr->stats.msg_lengths_total / profile_total,
2882 percent(l_ptr->stats.msg_length_profile[0], profile_total),
2883 percent(l_ptr->stats.msg_length_profile[1], profile_total),
2884 percent(l_ptr->stats.msg_length_profile[2], profile_total),
2885 percent(l_ptr->stats.msg_length_profile[3], profile_total),
2886 percent(l_ptr->stats.msg_length_profile[4], profile_total),
2887 percent(l_ptr->stats.msg_length_profile[5], profile_total),
2888 percent(l_ptr->stats.msg_length_profile[6], profile_total));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002889 tipc_printf(&pb, " RX states:%u probes:%u naks:%u defs:%u dups:%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002890 l_ptr->stats.recv_states,
2891 l_ptr->stats.recv_probes,
2892 l_ptr->stats.recv_nacks,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002893 l_ptr->stats.deferred_recv,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002894 l_ptr->stats.duplicates);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002895 tipc_printf(&pb, " TX states:%u probes:%u naks:%u acks:%u dups:%u\n",
2896 l_ptr->stats.sent_states,
2897 l_ptr->stats.sent_probes,
2898 l_ptr->stats.sent_nacks,
2899 l_ptr->stats.sent_acks,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002900 l_ptr->stats.retransmitted);
2901 tipc_printf(&pb, " Congestion bearer:%u link:%u Send queue max:%u avg:%u\n",
2902 l_ptr->stats.bearer_congs,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002903 l_ptr->stats.link_congs,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002904 l_ptr->stats.max_queue_sz,
2905 l_ptr->stats.queue_sz_counts
2906 ? (l_ptr->stats.accu_queue_sz / l_ptr->stats.queue_sz_counts)
2907 : 0);
2908
Per Liden4323add2006-01-18 00:38:21 +01002909 tipc_node_unlock(node);
2910 read_unlock_bh(&tipc_net_lock);
2911 return tipc_printbuf_validate(&pb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002912}
2913
2914#define MAX_LINK_STATS_INFO 2000
2915
Per Liden4323add2006-01-18 00:38:21 +01002916struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002917{
2918 struct sk_buff *buf;
2919 struct tlv_desc *rep_tlv;
2920 int str_len;
2921
2922 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002923 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002924
Per Liden4323add2006-01-18 00:38:21 +01002925 buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_LINK_STATS_INFO));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002926 if (!buf)
2927 return NULL;
2928
2929 rep_tlv = (struct tlv_desc *)buf->data;
2930
Per Liden4323add2006-01-18 00:38:21 +01002931 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
2932 (char *)TLV_DATA(rep_tlv), MAX_LINK_STATS_INFO);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002933 if (!str_len) {
2934 buf_discard(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002935 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002936 }
2937
2938 skb_put(buf, TLV_SPACE(str_len));
2939 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
2940
2941 return buf;
2942}
2943
Per Lidenb97bf3f2006-01-02 19:04:38 +01002944/**
Per Liden4323add2006-01-18 00:38:21 +01002945 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
Per Lidenb97bf3f2006-01-02 19:04:38 +01002946 * @dest: network address of destination node
2947 * @selector: used to select from set of active links
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002948 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002949 * If no active link can be found, uses default maximum packet size.
2950 */
2951
Per Liden4323add2006-01-18 00:38:21 +01002952u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002953{
David S. Miller6c000552008-09-02 23:38:32 -07002954 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002955 struct link *l_ptr;
2956 u32 res = MAX_PKT_DEFAULT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002957
Per Lidenb97bf3f2006-01-02 19:04:38 +01002958 if (dest == tipc_own_addr)
2959 return MAX_MSG_SIZE;
2960
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002961 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00002962 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002963 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002964 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002965 l_ptr = n_ptr->active_links[selector & 1];
2966 if (l_ptr)
Allan Stephens15e979d2010-05-11 14:30:10 +00002967 res = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01002968 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002969 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002970 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002971 return res;
2972}
2973
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002974static void link_print(struct link *l_ptr, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002975{
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002976 char print_area[256];
2977 struct print_buf pb;
2978 struct print_buf *buf = &pb;
2979
2980 tipc_printbuf_init(buf, print_area, sizeof(print_area));
2981
Per Lidenb97bf3f2006-01-02 19:04:38 +01002982 tipc_printf(buf, str);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002983 tipc_printf(buf, "Link %x<%s>:",
Allan Stephens2d627b92011-01-07 13:00:11 -05002984 l_ptr->addr, l_ptr->b_ptr->name);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002985
2986#ifdef CONFIG_TIPC_DEBUG
2987 if (link_reset_reset(l_ptr) || link_reset_unknown(l_ptr))
2988 goto print_state;
2989
Per Lidenb97bf3f2006-01-02 19:04:38 +01002990 tipc_printf(buf, ": NXO(%u):", mod(l_ptr->next_out_no));
2991 tipc_printf(buf, "NXI(%u):", mod(l_ptr->next_in_no));
2992 tipc_printf(buf, "SQUE");
2993 if (l_ptr->first_out) {
2994 tipc_printf(buf, "[%u..", msg_seqno(buf_msg(l_ptr->first_out)));
2995 if (l_ptr->next_out)
2996 tipc_printf(buf, "%u..",
2997 msg_seqno(buf_msg(l_ptr->next_out)));
Allan Stephensb82834e2010-05-11 14:30:04 +00002998 tipc_printf(buf, "%u]", msg_seqno(buf_msg(l_ptr->last_out)));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002999 if ((mod(msg_seqno(buf_msg(l_ptr->last_out)) -
3000 msg_seqno(buf_msg(l_ptr->first_out)))
Joe Perchesf64f9e72009-11-29 16:55:45 -08003001 != (l_ptr->out_queue_size - 1)) ||
3002 (l_ptr->last_out->next != NULL)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01003003 tipc_printf(buf, "\nSend queue inconsistency\n");
Allan Stephensc8a61b52011-01-18 13:31:32 -05003004 tipc_printf(buf, "first_out= %p ", l_ptr->first_out);
3005 tipc_printf(buf, "next_out= %p ", l_ptr->next_out);
3006 tipc_printf(buf, "last_out= %p ", l_ptr->last_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003007 }
3008 } else
3009 tipc_printf(buf, "[]");
3010 tipc_printf(buf, "SQSIZ(%u)", l_ptr->out_queue_size);
3011 if (l_ptr->oldest_deferred_in) {
3012 u32 o = msg_seqno(buf_msg(l_ptr->oldest_deferred_in));
3013 u32 n = msg_seqno(buf_msg(l_ptr->newest_deferred_in));
3014 tipc_printf(buf, ":RQUE[%u..%u]", o, n);
3015 if (l_ptr->deferred_inqueue_sz != mod((n + 1) - o)) {
3016 tipc_printf(buf, ":RQSIZ(%u)",
3017 l_ptr->deferred_inqueue_sz);
3018 }
3019 }
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003020print_state:
3021#endif
3022
Per Lidenb97bf3f2006-01-02 19:04:38 +01003023 if (link_working_unknown(l_ptr))
3024 tipc_printf(buf, ":WU");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003025 else if (link_reset_reset(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003026 tipc_printf(buf, ":RR");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003027 else if (link_reset_unknown(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003028 tipc_printf(buf, ":RU");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003029 else if (link_working_working(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003030 tipc_printf(buf, ":WW");
3031 tipc_printf(buf, "\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003032
3033 tipc_printbuf_validate(buf);
3034 info("%s", print_area);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003035}
3036