blob: 4bab139d5e7420b6b88d20b03c4cb9c02ecf21b2 [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;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100335 sprintf(l_ptr->name, "%u.%u.%u:%s-%u.%u.%u:",
336 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));
340 /* note: peer i/f is appended to link name by reset/activate */
341 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;
344 l_ptr->b_ptr = b_ptr;
345 link_set_supervision_props(l_ptr, b_ptr->media->tolerance);
346 l_ptr->state = RESET_UNKNOWN;
347
348 l_ptr->pmsg = (struct tipc_msg *)&l_ptr->proto_msg;
349 msg = l_ptr->pmsg;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000350 tipc_msg_init(msg, LINK_PROTOCOL, RESET_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100351 msg_set_size(msg, sizeof(l_ptr->proto_msg));
Allan Stephensa686e682008-06-04 17:29:39 -0700352 msg_set_session(msg, (tipc_random & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100353 msg_set_bearer_id(msg, b_ptr->identity);
354 strcpy((char *)msg_data(msg), if_name);
355
356 l_ptr->priority = b_ptr->priority;
Per Liden4323add2006-01-18 00:38:21 +0100357 tipc_link_set_queue_limits(l_ptr, b_ptr->media->window);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100358
359 link_init_max_pkt(l_ptr);
360
361 l_ptr->next_out_no = 1;
362 INIT_LIST_HEAD(&l_ptr->waiting_ports);
363
364 link_reset_statistics(l_ptr);
365
Allan Stephens37b9c082011-02-28 11:32:27 -0500366 tipc_node_attach_link(n_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100367
Florian Westphal945710652007-07-26 00:05:07 -0700368 k_init_timer(&l_ptr->timer, (Handler)link_timeout, (unsigned long)l_ptr);
369 list_add_tail(&l_ptr->link_list, &b_ptr->links);
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000370 tipc_k_signal((Handler)link_start, (unsigned long)l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100371
Per Lidenb97bf3f2006-01-02 19:04:38 +0100372 return l_ptr;
373}
374
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900375/**
Per Liden4323add2006-01-18 00:38:21 +0100376 * tipc_link_delete - delete a link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100377 * @l_ptr: pointer to link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900378 *
Per Liden4323add2006-01-18 00:38:21 +0100379 * Note: 'tipc_net_lock' is write_locked, bearer is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100380 * This routine must not grab the node lock until after link timer cancellation
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900381 * to avoid a potential deadlock situation.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100382 */
383
Per Liden4323add2006-01-18 00:38:21 +0100384void tipc_link_delete(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100385{
386 if (!l_ptr) {
387 err("Attempt to delete non-existent link\n");
388 return;
389 }
390
Per Lidenb97bf3f2006-01-02 19:04:38 +0100391 k_cancel_timer(&l_ptr->timer);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900392
Per Liden4323add2006-01-18 00:38:21 +0100393 tipc_node_lock(l_ptr->owner);
394 tipc_link_reset(l_ptr);
395 tipc_node_detach_link(l_ptr->owner, l_ptr);
396 tipc_link_stop(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100397 list_del_init(&l_ptr->link_list);
Per Liden4323add2006-01-18 00:38:21 +0100398 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100399 k_term_timer(&l_ptr->timer);
400 kfree(l_ptr);
401}
402
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000403static void link_start(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100404{
Allan Stephens214dda42011-01-24 16:22:43 -0500405 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100406 link_state_event(l_ptr, STARTING_EVT);
Allan Stephens214dda42011-01-24 16:22:43 -0500407 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100408}
409
410/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900411 * link_schedule_port - schedule port for deferred sending
Per Lidenb97bf3f2006-01-02 19:04:38 +0100412 * @l_ptr: pointer to link
413 * @origport: reference to sending port
414 * @sz: amount of data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900415 *
416 * Schedules port for renewed sending of messages after link congestion
Per Lidenb97bf3f2006-01-02 19:04:38 +0100417 * has abated.
418 */
419
420static int link_schedule_port(struct link *l_ptr, u32 origport, u32 sz)
421{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500422 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100423
Per Liden4323add2006-01-18 00:38:21 +0100424 spin_lock_bh(&tipc_port_list_lock);
425 p_ptr = tipc_port_lock(origport);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100426 if (p_ptr) {
427 if (!p_ptr->wakeup)
428 goto exit;
429 if (!list_empty(&p_ptr->wait_list))
430 goto exit;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500431 p_ptr->congested = 1;
Allan Stephens15e979d2010-05-11 14:30:10 +0000432 p_ptr->waiting_pkts = 1 + ((sz - 1) / l_ptr->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100433 list_add_tail(&p_ptr->wait_list, &l_ptr->waiting_ports);
434 l_ptr->stats.link_congs++;
435exit:
Per Liden4323add2006-01-18 00:38:21 +0100436 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100437 }
Per Liden4323add2006-01-18 00:38:21 +0100438 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100439 return -ELINKCONG;
440}
441
Per Liden4323add2006-01-18 00:38:21 +0100442void tipc_link_wakeup_ports(struct link *l_ptr, int all)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100443{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500444 struct tipc_port *p_ptr;
445 struct tipc_port *temp_p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100446 int win = l_ptr->queue_limit[0] - l_ptr->out_queue_size;
447
448 if (all)
449 win = 100000;
450 if (win <= 0)
451 return;
Per Liden4323add2006-01-18 00:38:21 +0100452 if (!spin_trylock_bh(&tipc_port_list_lock))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100453 return;
454 if (link_congested(l_ptr))
455 goto exit;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900456 list_for_each_entry_safe(p_ptr, temp_p_ptr, &l_ptr->waiting_ports,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100457 wait_list) {
458 if (win <= 0)
459 break;
460 list_del_init(&p_ptr->wait_list);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500461 spin_lock_bh(p_ptr->lock);
462 p_ptr->congested = 0;
463 p_ptr->wakeup(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100464 win -= p_ptr->waiting_pkts;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500465 spin_unlock_bh(p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100466 }
467
468exit:
Per Liden4323add2006-01-18 00:38:21 +0100469 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100470}
471
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900472/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100473 * link_release_outqueue - purge link's outbound message queue
474 * @l_ptr: pointer to link
475 */
476
477static void link_release_outqueue(struct link *l_ptr)
478{
479 struct sk_buff *buf = l_ptr->first_out;
480 struct sk_buff *next;
481
482 while (buf) {
483 next = buf->next;
484 buf_discard(buf);
485 buf = next;
486 }
487 l_ptr->first_out = NULL;
488 l_ptr->out_queue_size = 0;
489}
490
491/**
Per Liden4323add2006-01-18 00:38:21 +0100492 * tipc_link_reset_fragments - purge link's inbound message fragments queue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100493 * @l_ptr: pointer to link
494 */
495
Per Liden4323add2006-01-18 00:38:21 +0100496void tipc_link_reset_fragments(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100497{
498 struct sk_buff *buf = l_ptr->defragm_buf;
499 struct sk_buff *next;
500
501 while (buf) {
502 next = buf->next;
503 buf_discard(buf);
504 buf = next;
505 }
506 l_ptr->defragm_buf = NULL;
507}
508
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900509/**
Per Liden4323add2006-01-18 00:38:21 +0100510 * tipc_link_stop - purge all inbound and outbound messages associated with link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100511 * @l_ptr: pointer to link
512 */
513
Per Liden4323add2006-01-18 00:38:21 +0100514void tipc_link_stop(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100515{
516 struct sk_buff *buf;
517 struct sk_buff *next;
518
519 buf = l_ptr->oldest_deferred_in;
520 while (buf) {
521 next = buf->next;
522 buf_discard(buf);
523 buf = next;
524 }
525
526 buf = l_ptr->first_out;
527 while (buf) {
528 next = buf->next;
529 buf_discard(buf);
530 buf = next;
531 }
532
Per Liden4323add2006-01-18 00:38:21 +0100533 tipc_link_reset_fragments(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100534
535 buf_discard(l_ptr->proto_msg_queue);
536 l_ptr->proto_msg_queue = NULL;
537}
538
Per Lidenb97bf3f2006-01-02 19:04:38 +0100539/* LINK EVENT CODE IS NOT SUPPORTED AT PRESENT */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100540#define link_send_event(fcn, l_ptr, up) do { } while (0)
541
Per Liden4323add2006-01-18 00:38:21 +0100542void tipc_link_reset(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100543{
544 struct sk_buff *buf;
545 u32 prev_state = l_ptr->state;
546 u32 checkpoint = l_ptr->next_in_no;
Allan Stephens5392d642006-06-25 23:52:50 -0700547 int was_active_link = tipc_link_is_active(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900548
Allan Stephensa686e682008-06-04 17:29:39 -0700549 msg_set_session(l_ptr->pmsg, ((msg_session(l_ptr->pmsg) + 1) & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100550
Allan Stephensa686e682008-06-04 17:29:39 -0700551 /* Link is down, accept any session */
552 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100553
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900554 /* Prepare for max packet size negotiation */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100555 link_init_max_pkt(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900556
Per Lidenb97bf3f2006-01-02 19:04:38 +0100557 l_ptr->state = RESET_UNKNOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100558
559 if ((prev_state == RESET_UNKNOWN) || (prev_state == RESET_RESET))
560 return;
561
Per Liden4323add2006-01-18 00:38:21 +0100562 tipc_node_link_down(l_ptr->owner, l_ptr);
563 tipc_bearer_remove_dest(l_ptr->b_ptr, l_ptr->addr);
Paul Gortmaker7368ddf2010-10-12 14:25:58 +0000564
Paul Gortmaker8f19afb2011-02-28 11:36:21 -0400565 if (was_active_link && tipc_node_active_links(l_ptr->owner) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100566 l_ptr->owner->permit_changeover) {
567 l_ptr->reset_checkpoint = checkpoint;
568 l_ptr->exp_msg_count = START_CHANGEOVER;
569 }
570
571 /* Clean up all queues: */
572
573 link_release_outqueue(l_ptr);
574 buf_discard(l_ptr->proto_msg_queue);
575 l_ptr->proto_msg_queue = NULL;
576 buf = l_ptr->oldest_deferred_in;
577 while (buf) {
578 struct sk_buff *next = buf->next;
579 buf_discard(buf);
580 buf = next;
581 }
582 if (!list_empty(&l_ptr->waiting_ports))
Per Liden4323add2006-01-18 00:38:21 +0100583 tipc_link_wakeup_ports(l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100584
585 l_ptr->retransm_queue_head = 0;
586 l_ptr->retransm_queue_size = 0;
587 l_ptr->last_out = NULL;
588 l_ptr->first_out = NULL;
589 l_ptr->next_out = NULL;
590 l_ptr->unacked_window = 0;
591 l_ptr->checkpoint = 1;
592 l_ptr->next_out_no = 1;
593 l_ptr->deferred_inqueue_sz = 0;
594 l_ptr->oldest_deferred_in = NULL;
595 l_ptr->newest_deferred_in = NULL;
596 l_ptr->fsm_msg_cnt = 0;
597 l_ptr->stale_count = 0;
598 link_reset_statistics(l_ptr);
599
Per Liden4323add2006-01-18 00:38:21 +0100600 link_send_event(tipc_cfg_link_event, l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100601 if (!in_own_cluster(l_ptr->addr))
Per Liden4323add2006-01-18 00:38:21 +0100602 link_send_event(tipc_disc_link_event, l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100603}
604
605
606static void link_activate(struct link *l_ptr)
607{
Allan Stephens5392d642006-06-25 23:52:50 -0700608 l_ptr->next_in_no = l_ptr->stats.recv_info = 1;
Per Liden4323add2006-01-18 00:38:21 +0100609 tipc_node_link_up(l_ptr->owner, l_ptr);
610 tipc_bearer_add_dest(l_ptr->b_ptr, l_ptr->addr);
611 link_send_event(tipc_cfg_link_event, l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100612 if (!in_own_cluster(l_ptr->addr))
Per Liden4323add2006-01-18 00:38:21 +0100613 link_send_event(tipc_disc_link_event, l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100614}
615
616/**
617 * link_state_event - link finite state machine
618 * @l_ptr: pointer to link
619 * @event: state machine event to process
620 */
621
622static void link_state_event(struct link *l_ptr, unsigned event)
623{
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900624 struct link *other;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100625 u32 cont_intv = l_ptr->continuity_interval;
626
627 if (!l_ptr->started && (event != STARTING_EVT))
628 return; /* Not yet. */
629
630 if (link_blocked(l_ptr)) {
Allan Stephensa0168922010-12-31 18:59:35 +0000631 if (event == TIMEOUT_EVT)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100632 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100633 return; /* Changeover going on */
634 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100635
636 switch (l_ptr->state) {
637 case WORKING_WORKING:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100638 switch (event) {
639 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100640 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100641 break;
642 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100643 if (l_ptr->next_in_no != l_ptr->checkpoint) {
644 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100645 if (tipc_bclink_acks_missing(l_ptr->owner)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900646 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100647 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100648 l_ptr->fsm_msg_cnt++;
649 } else if (l_ptr->max_pkt < l_ptr->max_pkt_target) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900650 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100651 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100652 l_ptr->fsm_msg_cnt++;
653 }
654 link_set_timer(l_ptr, cont_intv);
655 break;
656 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100657 l_ptr->state = WORKING_UNKNOWN;
658 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100659 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100660 l_ptr->fsm_msg_cnt++;
661 link_set_timer(l_ptr, cont_intv / 4);
662 break;
663 case RESET_MSG:
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900664 info("Resetting link <%s>, requested by peer\n",
Allan Stephensa10bd922006-06-25 23:52:17 -0700665 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100666 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100667 l_ptr->state = RESET_RESET;
668 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100669 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100670 l_ptr->fsm_msg_cnt++;
671 link_set_timer(l_ptr, cont_intv);
672 break;
673 default:
674 err("Unknown link event %u in WW state\n", event);
675 }
676 break;
677 case WORKING_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100678 switch (event) {
679 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100680 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100681 l_ptr->state = WORKING_WORKING;
682 l_ptr->fsm_msg_cnt = 0;
683 link_set_timer(l_ptr, cont_intv);
684 break;
685 case RESET_MSG:
Allan Stephensa10bd922006-06-25 23:52:17 -0700686 info("Resetting link <%s>, requested by peer "
687 "while probing\n", l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100688 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100689 l_ptr->state = RESET_RESET;
690 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100691 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100692 l_ptr->fsm_msg_cnt++;
693 link_set_timer(l_ptr, cont_intv);
694 break;
695 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100696 if (l_ptr->next_in_no != l_ptr->checkpoint) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100697 l_ptr->state = WORKING_WORKING;
698 l_ptr->fsm_msg_cnt = 0;
699 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100700 if (tipc_bclink_acks_missing(l_ptr->owner)) {
701 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
702 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100703 l_ptr->fsm_msg_cnt++;
704 }
705 link_set_timer(l_ptr, cont_intv);
706 } else if (l_ptr->fsm_msg_cnt < l_ptr->abort_limit) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900707 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100708 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100709 l_ptr->fsm_msg_cnt++;
710 link_set_timer(l_ptr, cont_intv / 4);
711 } else { /* Link has failed */
Allan Stephensa10bd922006-06-25 23:52:17 -0700712 warn("Resetting link <%s>, peer not responding\n",
713 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100714 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100715 l_ptr->state = RESET_UNKNOWN;
716 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100717 tipc_link_send_proto_msg(l_ptr, RESET_MSG,
718 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100719 l_ptr->fsm_msg_cnt++;
720 link_set_timer(l_ptr, cont_intv);
721 }
722 break;
723 default:
724 err("Unknown link event %u in WU state\n", event);
725 }
726 break;
727 case RESET_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100728 switch (event) {
729 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100730 break;
731 case ACTIVATE_MSG:
732 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000733 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100734 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100735 l_ptr->state = WORKING_WORKING;
736 l_ptr->fsm_msg_cnt = 0;
737 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100738 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100739 l_ptr->fsm_msg_cnt++;
740 link_set_timer(l_ptr, cont_intv);
741 break;
742 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100743 l_ptr->state = RESET_RESET;
744 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100745 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100746 l_ptr->fsm_msg_cnt++;
747 link_set_timer(l_ptr, cont_intv);
748 break;
749 case STARTING_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100750 l_ptr->started = 1;
751 /* fall through */
752 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100753 tipc_link_send_proto_msg(l_ptr, RESET_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100754 l_ptr->fsm_msg_cnt++;
755 link_set_timer(l_ptr, cont_intv);
756 break;
757 default:
758 err("Unknown link event %u in RU state\n", event);
759 }
760 break;
761 case RESET_RESET:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100762 switch (event) {
763 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100764 case ACTIVATE_MSG:
765 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000766 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100767 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100768 l_ptr->state = WORKING_WORKING;
769 l_ptr->fsm_msg_cnt = 0;
770 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100771 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100772 l_ptr->fsm_msg_cnt++;
773 link_set_timer(l_ptr, cont_intv);
774 break;
775 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100776 break;
777 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100778 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100779 l_ptr->fsm_msg_cnt++;
780 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100781 break;
782 default:
783 err("Unknown link event %u in RR state\n", event);
784 }
785 break;
786 default:
787 err("Unknown link state %u/%u\n", l_ptr->state, event);
788 }
789}
790
791/*
792 * link_bundle_buf(): Append contents of a buffer to
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900793 * the tail of an existing one.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100794 */
795
796static int link_bundle_buf(struct link *l_ptr,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900797 struct sk_buff *bundler,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100798 struct sk_buff *buf)
799{
800 struct tipc_msg *bundler_msg = buf_msg(bundler);
801 struct tipc_msg *msg = buf_msg(buf);
802 u32 size = msg_size(msg);
Allan Stephense49060c2006-06-29 12:32:46 -0700803 u32 bundle_size = msg_size(bundler_msg);
804 u32 to_pos = align(bundle_size);
805 u32 pad = to_pos - bundle_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100806
807 if (msg_user(bundler_msg) != MSG_BUNDLER)
808 return 0;
809 if (msg_type(bundler_msg) != OPEN_MSG)
810 return 0;
Allan Stephense49060c2006-06-29 12:32:46 -0700811 if (skb_tailroom(bundler) < (pad + size))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100812 return 0;
Allan Stephens15e979d2010-05-11 14:30:10 +0000813 if (l_ptr->max_pkt < (to_pos + size))
Allan Stephens863fae62006-07-03 19:39:36 -0700814 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100815
Allan Stephense49060c2006-06-29 12:32:46 -0700816 skb_put(bundler, pad + size);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300817 skb_copy_to_linear_data_offset(bundler, to_pos, buf->data, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100818 msg_set_size(bundler_msg, to_pos + size);
819 msg_set_msgcnt(bundler_msg, msg_msgcnt(bundler_msg) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100820 buf_discard(buf);
821 l_ptr->stats.sent_bundled++;
822 return 1;
823}
824
Sam Ravnborg05790c62006-03-20 22:37:04 -0800825static void link_add_to_outqueue(struct link *l_ptr,
826 struct sk_buff *buf,
827 struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100828{
829 u32 ack = mod(l_ptr->next_in_no - 1);
830 u32 seqno = mod(l_ptr->next_out_no++);
831
832 msg_set_word(msg, 2, ((ack << 16) | seqno));
833 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
834 buf->next = NULL;
835 if (l_ptr->first_out) {
836 l_ptr->last_out->next = buf;
837 l_ptr->last_out = buf;
838 } else
839 l_ptr->first_out = l_ptr->last_out = buf;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500840
Per Lidenb97bf3f2006-01-02 19:04:38 +0100841 l_ptr->out_queue_size++;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500842 if (l_ptr->out_queue_size > l_ptr->stats.max_queue_sz)
843 l_ptr->stats.max_queue_sz = l_ptr->out_queue_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100844}
845
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900846/*
847 * tipc_link_send_buf() is the 'full path' for messages, called from
Per Lidenb97bf3f2006-01-02 19:04:38 +0100848 * inside TIPC when the 'fast path' in tipc_send_buf
849 * has failed, and from link_send()
850 */
851
Per Liden4323add2006-01-18 00:38:21 +0100852int tipc_link_send_buf(struct link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100853{
854 struct tipc_msg *msg = buf_msg(buf);
855 u32 size = msg_size(msg);
856 u32 dsz = msg_data_sz(msg);
857 u32 queue_size = l_ptr->out_queue_size;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000858 u32 imp = tipc_msg_tot_importance(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100859 u32 queue_limit = l_ptr->queue_limit[imp];
Allan Stephens15e979d2010-05-11 14:30:10 +0000860 u32 max_packet = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100861
862 msg_set_prevnode(msg, tipc_own_addr); /* If routed message */
863
864 /* Match msg importance against queue limits: */
865
866 if (unlikely(queue_size >= queue_limit)) {
867 if (imp <= TIPC_CRITICAL_IMPORTANCE) {
Allan Stephensbebc55a2011-04-19 10:17:58 -0400868 link_schedule_port(l_ptr, msg_origport(msg), size);
869 buf_discard(buf);
870 return -ELINKCONG;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100871 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100872 buf_discard(buf);
873 if (imp > CONN_MANAGER) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700874 warn("Resetting link <%s>, send queue full", l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100875 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100876 }
877 return dsz;
878 }
879
880 /* Fragmentation needed ? */
881
882 if (size > max_packet)
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000883 return link_send_long_buf(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100884
885 /* Packet can be queued or sent: */
886
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900887 if (likely(!tipc_bearer_congested(l_ptr->b_ptr, l_ptr) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100888 !link_congested(l_ptr))) {
889 link_add_to_outqueue(l_ptr, buf, msg);
890
Per Liden4323add2006-01-18 00:38:21 +0100891 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100892 l_ptr->unacked_window = 0;
893 } else {
Per Liden4323add2006-01-18 00:38:21 +0100894 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100895 l_ptr->stats.bearer_congs++;
896 l_ptr->next_out = buf;
897 }
898 return dsz;
899 }
900 /* Congestion: can message be bundled ?: */
901
902 if ((msg_user(msg) != CHANGEOVER_PROTOCOL) &&
903 (msg_user(msg) != MSG_FRAGMENTER)) {
904
905 /* Try adding message to an existing bundle */
906
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900907 if (l_ptr->next_out &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100908 link_bundle_buf(l_ptr, l_ptr->last_out, buf)) {
Per Liden4323add2006-01-18 00:38:21 +0100909 tipc_bearer_resolve_congestion(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100910 return dsz;
911 }
912
913 /* Try creating a new bundle */
914
915 if (size <= max_packet * 2 / 3) {
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000916 struct sk_buff *bundler = tipc_buf_acquire(max_packet);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100917 struct tipc_msg bundler_hdr;
918
919 if (bundler) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000920 tipc_msg_init(&bundler_hdr, MSG_BUNDLER, OPEN_MSG,
Allan Stephens75715212008-06-04 17:37:34 -0700921 INT_H_SIZE, l_ptr->addr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300922 skb_copy_to_linear_data(bundler, &bundler_hdr,
923 INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100924 skb_trim(bundler, INT_H_SIZE);
925 link_bundle_buf(l_ptr, bundler, buf);
926 buf = bundler;
927 msg = buf_msg(buf);
928 l_ptr->stats.sent_bundles++;
929 }
930 }
931 }
932 if (!l_ptr->next_out)
933 l_ptr->next_out = buf;
934 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +0100935 tipc_bearer_resolve_congestion(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100936 return dsz;
937}
938
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900939/*
940 * tipc_link_send(): same as tipc_link_send_buf(), but the link to use has
Per Lidenb97bf3f2006-01-02 19:04:38 +0100941 * not been selected yet, and the the owner node is not locked
942 * Called by TIPC internal users, e.g. the name distributor
943 */
944
Per Liden4323add2006-01-18 00:38:21 +0100945int tipc_link_send(struct sk_buff *buf, u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100946{
947 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700948 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100949 int res = -ELINKCONG;
950
Per Liden4323add2006-01-18 00:38:21 +0100951 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000952 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100953 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +0100954 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100955 l_ptr = n_ptr->active_links[selector & 1];
Allan Stephensa0168922010-12-31 18:59:35 +0000956 if (l_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100957 res = tipc_link_send_buf(l_ptr, buf);
Allan Stephensa0168922010-12-31 18:59:35 +0000958 else
Allan Stephensc33d53b2006-06-25 23:50:30 -0700959 buf_discard(buf);
Per Liden4323add2006-01-18 00:38:21 +0100960 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100961 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100962 buf_discard(buf);
963 }
Per Liden4323add2006-01-18 00:38:21 +0100964 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100965 return res;
966}
967
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900968/*
969 * link_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +0100970 * destination link is known and the header is complete,
971 * inclusive total message length. Very time critical.
972 * Link is locked. Returns user data length.
973 */
974
Sam Ravnborg05790c62006-03-20 22:37:04 -0800975static int link_send_buf_fast(struct link *l_ptr, struct sk_buff *buf,
976 u32 *used_max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100977{
978 struct tipc_msg *msg = buf_msg(buf);
979 int res = msg_data_sz(msg);
980
981 if (likely(!link_congested(l_ptr))) {
Allan Stephens15e979d2010-05-11 14:30:10 +0000982 if (likely(msg_size(msg) <= l_ptr->max_pkt)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100983 if (likely(list_empty(&l_ptr->b_ptr->cong_links))) {
984 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +0100985 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf,
986 &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100987 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100988 return res;
989 }
Per Liden4323add2006-01-18 00:38:21 +0100990 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100991 l_ptr->stats.bearer_congs++;
992 l_ptr->next_out = buf;
993 return res;
994 }
Allan Stephens0e659672010-12-31 18:59:32 +0000995 } else
Allan Stephens15e979d2010-05-11 14:30:10 +0000996 *used_max_pkt = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100997 }
Per Liden4323add2006-01-18 00:38:21 +0100998 return tipc_link_send_buf(l_ptr, buf); /* All other cases */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100999}
1000
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001001/*
1002 * tipc_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001003 * destination node is known and the header is complete,
1004 * inclusive total message length.
1005 * Returns user data length.
1006 */
1007int tipc_send_buf_fast(struct sk_buff *buf, u32 destnode)
1008{
1009 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001010 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001011 int res;
1012 u32 selector = msg_origport(buf_msg(buf)) & 1;
1013 u32 dummy;
1014
1015 if (destnode == tipc_own_addr)
Per Liden4323add2006-01-18 00:38:21 +01001016 return tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001017
Per Liden4323add2006-01-18 00:38:21 +01001018 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001019 n_ptr = tipc_node_find(destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001020 if (likely(n_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001021 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001022 l_ptr = n_ptr->active_links[selector];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001023 if (likely(l_ptr)) {
1024 res = link_send_buf_fast(l_ptr, buf, &dummy);
Per Liden4323add2006-01-18 00:38:21 +01001025 tipc_node_unlock(n_ptr);
1026 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001027 return res;
1028 }
Per Liden4323add2006-01-18 00:38:21 +01001029 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001030 }
Per Liden4323add2006-01-18 00:38:21 +01001031 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001032 res = msg_data_sz(buf_msg(buf));
1033 tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1034 return res;
1035}
1036
1037
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001038/*
1039 * tipc_link_send_sections_fast: Entry for messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001040 * destination processor is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001041 * except for total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001042 * Returns user data length or errno.
1043 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001044int tipc_link_send_sections_fast(struct tipc_port *sender,
Per Liden4323add2006-01-18 00:38:21 +01001045 struct iovec const *msg_sect,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001046 const u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001047 unsigned int total_len,
Per Liden4323add2006-01-18 00:38:21 +01001048 u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001049{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001050 struct tipc_msg *hdr = &sender->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001051 struct link *l_ptr;
1052 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -07001053 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001054 int res;
1055 u32 selector = msg_origport(hdr) & 1;
1056
Per Lidenb97bf3f2006-01-02 19:04:38 +01001057again:
1058 /*
1059 * Try building message using port's max_pkt hint.
1060 * (Must not hold any locks while building message.)
1061 */
1062
Allan Stephens26896902011-04-21 10:42:07 -05001063 res = tipc_msg_build(hdr, msg_sect, num_sect, total_len,
1064 sender->max_pkt, !sender->user_port, &buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001065
Per Liden4323add2006-01-18 00:38:21 +01001066 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001067 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001068 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001069 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001070 l_ptr = node->active_links[selector];
1071 if (likely(l_ptr)) {
1072 if (likely(buf)) {
1073 res = link_send_buf_fast(l_ptr, buf,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001074 &sender->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001075exit:
Per Liden4323add2006-01-18 00:38:21 +01001076 tipc_node_unlock(node);
1077 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001078 return res;
1079 }
1080
1081 /* Exit if build request was invalid */
1082
1083 if (unlikely(res < 0))
1084 goto exit;
1085
1086 /* Exit if link (or bearer) is congested */
1087
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001088 if (link_congested(l_ptr) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +01001089 !list_empty(&l_ptr->b_ptr->cong_links)) {
1090 res = link_schedule_port(l_ptr,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001091 sender->ref, res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001092 goto exit;
1093 }
1094
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001095 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001096 * Message size exceeds max_pkt hint; update hint,
1097 * then re-try fast path or fragment the message
1098 */
1099
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001100 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001101 tipc_node_unlock(node);
1102 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001103
1104
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001105 if ((msg_hdr_sz(hdr) + res) <= sender->max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001106 goto again;
1107
1108 return link_send_sections_long(sender, msg_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001109 num_sect, total_len,
1110 destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001111 }
Per Liden4323add2006-01-18 00:38:21 +01001112 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001113 }
Per Liden4323add2006-01-18 00:38:21 +01001114 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001115
1116 /* Couldn't find a link to the destination node */
1117
1118 if (buf)
1119 return tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1120 if (res >= 0)
Per Liden4323add2006-01-18 00:38:21 +01001121 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001122 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001123 return res;
1124}
1125
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001126/*
1127 * link_send_sections_long(): Entry for long messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001128 * destination node is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001129 * inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001130 * Link and bearer congestion status have been checked to be ok,
1131 * and are ignored if they change.
1132 *
1133 * Note that fragments do not use the full link MTU so that they won't have
1134 * to undergo refragmentation if link changeover causes them to be sent
1135 * over another link with an additional tunnel header added as prefix.
1136 * (Refragmentation will still occur if the other link has a smaller MTU.)
1137 *
1138 * Returns user data length or errno.
1139 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001140static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001141 struct iovec const *msg_sect,
1142 u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001143 unsigned int total_len,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001144 u32 destaddr)
1145{
1146 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001147 struct tipc_node *node;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001148 struct tipc_msg *hdr = &sender->phdr;
Allan Stephens26896902011-04-21 10:42:07 -05001149 u32 dsz = total_len;
Allan Stephens0e659672010-12-31 18:59:32 +00001150 u32 max_pkt, fragm_sz, rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001151 struct tipc_msg fragm_hdr;
Allan Stephens0e659672010-12-31 18:59:32 +00001152 struct sk_buff *buf, *buf_chain, *prev;
1153 u32 fragm_crs, fragm_rest, hsz, sect_rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001154 const unchar *sect_crs;
1155 int curr_sect;
1156 u32 fragm_no;
1157
1158again:
1159 fragm_no = 1;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001160 max_pkt = sender->max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001161 /* leave room for tunnel header in case of link changeover */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001162 fragm_sz = max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001163 /* leave room for fragmentation header in each fragment */
1164 rest = dsz;
1165 fragm_crs = 0;
1166 fragm_rest = 0;
1167 sect_rest = 0;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001168 sect_crs = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001169 curr_sect = -1;
1170
1171 /* Prepare reusable fragment header: */
1172
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001173 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07001174 INT_H_SIZE, msg_destnode(hdr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001175 msg_set_size(&fragm_hdr, max_pkt);
1176 msg_set_fragm_no(&fragm_hdr, 1);
1177
1178 /* Prepare header of first fragment: */
1179
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001180 buf_chain = buf = tipc_buf_acquire(max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001181 if (!buf)
1182 return -ENOMEM;
1183 buf->next = NULL;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001184 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001185 hsz = msg_hdr_sz(hdr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001186 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, hdr, hsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001187
1188 /* Chop up message: */
1189
1190 fragm_crs = INT_H_SIZE + hsz;
1191 fragm_rest = fragm_sz - hsz;
1192
1193 do { /* For all sections */
1194 u32 sz;
1195
1196 if (!sect_rest) {
1197 sect_rest = msg_sect[++curr_sect].iov_len;
1198 sect_crs = (const unchar *)msg_sect[curr_sect].iov_base;
1199 }
1200
1201 if (sect_rest < fragm_rest)
1202 sz = sect_rest;
1203 else
1204 sz = fragm_rest;
1205
1206 if (likely(!sender->user_port)) {
1207 if (copy_from_user(buf->data + fragm_crs, sect_crs, sz)) {
1208error:
1209 for (; buf_chain; buf_chain = buf) {
1210 buf = buf_chain->next;
1211 buf_discard(buf_chain);
1212 }
1213 return -EFAULT;
1214 }
1215 } else
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001216 skb_copy_to_linear_data_offset(buf, fragm_crs,
1217 sect_crs, sz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001218 sect_crs += sz;
1219 sect_rest -= sz;
1220 fragm_crs += sz;
1221 fragm_rest -= sz;
1222 rest -= sz;
1223
1224 if (!fragm_rest && rest) {
1225
1226 /* Initiate new fragment: */
1227 if (rest <= fragm_sz) {
1228 fragm_sz = rest;
Allan Stephens0e659672010-12-31 18:59:32 +00001229 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001230 } else {
1231 msg_set_type(&fragm_hdr, FRAGMENT);
1232 }
1233 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
1234 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
1235 prev = buf;
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001236 buf = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001237 if (!buf)
1238 goto error;
1239
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001240 buf->next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001241 prev->next = buf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001242 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001243 fragm_crs = INT_H_SIZE;
1244 fragm_rest = fragm_sz;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001245 }
Allan Stephens0e659672010-12-31 18:59:32 +00001246 } while (rest > 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001247
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001248 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001249 * Now we have a buffer chain. Select a link and check
1250 * that packet size is still OK
1251 */
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001252 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001253 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001254 tipc_node_lock(node);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001255 l_ptr = node->active_links[sender->ref & 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001256 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01001257 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001258 goto reject;
1259 }
Allan Stephens15e979d2010-05-11 14:30:10 +00001260 if (l_ptr->max_pkt < max_pkt) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001261 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001262 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001263 for (; buf_chain; buf_chain = buf) {
1264 buf = buf_chain->next;
1265 buf_discard(buf_chain);
1266 }
1267 goto again;
1268 }
1269 } else {
1270reject:
1271 for (; buf_chain; buf_chain = buf) {
1272 buf = buf_chain->next;
1273 buf_discard(buf_chain);
1274 }
Per Liden4323add2006-01-18 00:38:21 +01001275 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001276 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001277 }
1278
1279 /* Append whole chain to send queue: */
1280
1281 buf = buf_chain;
Allan Stephense0f08592011-04-17 11:44:24 -04001282 l_ptr->long_msg_seq_no++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001283 if (!l_ptr->next_out)
1284 l_ptr->next_out = buf_chain;
1285 l_ptr->stats.sent_fragmented++;
1286 while (buf) {
1287 struct sk_buff *next = buf->next;
1288 struct tipc_msg *msg = buf_msg(buf);
1289
1290 l_ptr->stats.sent_fragments++;
1291 msg_set_long_msgno(msg, l_ptr->long_msg_seq_no);
1292 link_add_to_outqueue(l_ptr, buf, msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001293 buf = next;
1294 }
1295
1296 /* Send it, if possible: */
1297
Per Liden4323add2006-01-18 00:38:21 +01001298 tipc_link_push_queue(l_ptr);
1299 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001300 return dsz;
1301}
1302
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001303/*
Per Liden4323add2006-01-18 00:38:21 +01001304 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +01001305 */
Per Liden4323add2006-01-18 00:38:21 +01001306u32 tipc_link_push_packet(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001307{
1308 struct sk_buff *buf = l_ptr->first_out;
1309 u32 r_q_size = l_ptr->retransm_queue_size;
1310 u32 r_q_head = l_ptr->retransm_queue_head;
1311
1312 /* Step to position where retransmission failed, if any, */
1313 /* consider that buffers may have been released in meantime */
1314
1315 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001316 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +01001317 link_last_sent(l_ptr));
1318 u32 first = msg_seqno(buf_msg(buf));
1319
1320 while (buf && less(first, r_q_head)) {
1321 first = mod(first + 1);
1322 buf = buf->next;
1323 }
1324 l_ptr->retransm_queue_head = r_q_head = first;
1325 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1326 }
1327
1328 /* Continue retransmission now, if there is anything: */
1329
Neil Hormanca509102010-03-15 07:58:45 +00001330 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001331 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001332 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001333 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001334 l_ptr->retransm_queue_head = mod(++r_q_head);
1335 l_ptr->retransm_queue_size = --r_q_size;
1336 l_ptr->stats.retransmitted++;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001337 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001338 } else {
1339 l_ptr->stats.bearer_congs++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001340 return PUSH_FAILED;
1341 }
1342 }
1343
1344 /* Send deferred protocol message, if any: */
1345
1346 buf = l_ptr->proto_msg_queue;
1347 if (buf) {
1348 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +00001349 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001350 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001351 l_ptr->unacked_window = 0;
1352 buf_discard(buf);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001353 l_ptr->proto_msg_queue = NULL;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001354 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001355 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001356 l_ptr->stats.bearer_congs++;
1357 return PUSH_FAILED;
1358 }
1359 }
1360
1361 /* Send one deferred data message, if send window not full: */
1362
1363 buf = l_ptr->next_out;
1364 if (buf) {
1365 struct tipc_msg *msg = buf_msg(buf);
1366 u32 next = msg_seqno(msg);
1367 u32 first = msg_seqno(buf_msg(l_ptr->first_out));
1368
1369 if (mod(next - first) < l_ptr->queue_limit[0]) {
1370 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001371 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001372 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001373 if (msg_user(msg) == MSG_BUNDLER)
1374 msg_set_type(msg, CLOSED_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001375 l_ptr->next_out = buf->next;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001376 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001377 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001378 l_ptr->stats.bearer_congs++;
1379 return PUSH_FAILED;
1380 }
1381 }
1382 }
1383 return PUSH_FINISHED;
1384}
1385
1386/*
1387 * push_queue(): push out the unsent messages of a link where
1388 * congestion has abated. Node is locked
1389 */
Per Liden4323add2006-01-18 00:38:21 +01001390void tipc_link_push_queue(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001391{
1392 u32 res;
1393
Per Liden4323add2006-01-18 00:38:21 +01001394 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001395 return;
1396
1397 do {
Per Liden4323add2006-01-18 00:38:21 +01001398 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001399 } while (!res);
1400
Per Lidenb97bf3f2006-01-02 19:04:38 +01001401 if (res == PUSH_FAILED)
Per Liden4323add2006-01-18 00:38:21 +01001402 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001403}
1404
Allan Stephensd356eeb2006-06-25 23:40:01 -07001405static void link_reset_all(unsigned long addr)
1406{
David S. Miller6c000552008-09-02 23:38:32 -07001407 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001408 char addr_string[16];
1409 u32 i;
1410
1411 read_lock_bh(&tipc_net_lock);
1412 n_ptr = tipc_node_find((u32)addr);
1413 if (!n_ptr) {
1414 read_unlock_bh(&tipc_net_lock);
1415 return; /* node no longer exists */
1416 }
1417
1418 tipc_node_lock(n_ptr);
1419
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001420 warn("Resetting all links to %s\n",
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001421 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -07001422
1423 for (i = 0; i < MAX_BEARERS; i++) {
1424 if (n_ptr->links[i]) {
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001425 link_print(n_ptr->links[i], "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001426 tipc_link_reset(n_ptr->links[i]);
1427 }
1428 }
1429
1430 tipc_node_unlock(n_ptr);
1431 read_unlock_bh(&tipc_net_lock);
1432}
1433
1434static void link_retransmit_failure(struct link *l_ptr, struct sk_buff *buf)
1435{
1436 struct tipc_msg *msg = buf_msg(buf);
1437
1438 warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001439
1440 if (l_ptr->addr) {
1441
1442 /* Handle failure on standard link */
1443
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001444 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001445 tipc_link_reset(l_ptr);
1446
1447 } else {
1448
1449 /* Handle failure on broadcast link */
1450
David S. Miller6c000552008-09-02 23:38:32 -07001451 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001452 char addr_string[16];
1453
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001454 info("Msg seq number: %u, ", msg_seqno(msg));
1455 info("Outstanding acks: %lu\n",
1456 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -07001457
Allan Stephens01d83ed2011-01-18 13:53:16 -05001458 n_ptr = tipc_bclink_retransmit_to();
Allan Stephensd356eeb2006-06-25 23:40:01 -07001459 tipc_node_lock(n_ptr);
1460
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001461 tipc_addr_string_fill(addr_string, n_ptr->addr);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001462 info("Multicast link info for %s\n", addr_string);
1463 info("Supported: %d, ", n_ptr->bclink.supported);
1464 info("Acked: %u\n", n_ptr->bclink.acked);
1465 info("Last in: %u, ", n_ptr->bclink.last_in);
1466 info("Gap after: %u, ", n_ptr->bclink.gap_after);
1467 info("Gap to: %u\n", n_ptr->bclink.gap_to);
1468 info("Nack sync: %u\n\n", n_ptr->bclink.nack_sync);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001469
1470 tipc_k_signal((Handler)link_reset_all, (unsigned long)n_ptr->addr);
1471
1472 tipc_node_unlock(n_ptr);
1473
1474 l_ptr->stale_count = 0;
1475 }
1476}
1477
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001478void tipc_link_retransmit(struct link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001479 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001480{
1481 struct tipc_msg *msg;
1482
Allan Stephensd356eeb2006-06-25 23:40:01 -07001483 if (!buf)
1484 return;
1485
1486 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001487
Allan Stephensd356eeb2006-06-25 23:40:01 -07001488 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
Neil Hormanca509102010-03-15 07:58:45 +00001489 if (l_ptr->retransm_queue_size == 0) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001490 l_ptr->retransm_queue_head = msg_seqno(msg);
1491 l_ptr->retransm_queue_size = retransmits;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001492 } else {
Neil Hormanca509102010-03-15 07:58:45 +00001493 err("Unexpected retransmit on link %s (qsize=%d)\n",
1494 l_ptr->name, l_ptr->retransm_queue_size);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001495 }
Neil Hormanca509102010-03-15 07:58:45 +00001496 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001497 } else {
1498 /* Detect repeated retransmit failures on uncongested bearer */
1499
1500 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1501 if (++l_ptr->stale_count > 100) {
1502 link_retransmit_failure(l_ptr, buf);
1503 return;
1504 }
1505 } else {
1506 l_ptr->last_retransmitted = msg_seqno(msg);
1507 l_ptr->stale_count = 1;
1508 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001509 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001510
Neil Hormanca509102010-03-15 07:58:45 +00001511 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001512 msg = buf_msg(buf);
1513 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001514 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001515 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001516 buf = buf->next;
1517 retransmits--;
1518 l_ptr->stats.retransmitted++;
1519 } else {
Per Liden4323add2006-01-18 00:38:21 +01001520 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001521 l_ptr->stats.bearer_congs++;
1522 l_ptr->retransm_queue_head = msg_seqno(buf_msg(buf));
1523 l_ptr->retransm_queue_size = retransmits;
1524 return;
1525 }
1526 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001527
Per Lidenb97bf3f2006-01-02 19:04:38 +01001528 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1529}
1530
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001531/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001532 * link_insert_deferred_queue - insert deferred messages back into receive chain
1533 */
1534
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001535static struct sk_buff *link_insert_deferred_queue(struct link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001536 struct sk_buff *buf)
1537{
1538 u32 seq_no;
1539
1540 if (l_ptr->oldest_deferred_in == NULL)
1541 return buf;
1542
1543 seq_no = msg_seqno(buf_msg(l_ptr->oldest_deferred_in));
1544 if (seq_no == mod(l_ptr->next_in_no)) {
1545 l_ptr->newest_deferred_in->next = buf;
1546 buf = l_ptr->oldest_deferred_in;
1547 l_ptr->oldest_deferred_in = NULL;
1548 l_ptr->deferred_inqueue_sz = 0;
1549 }
1550 return buf;
1551}
1552
Allan Stephens85035562008-04-15 19:04:54 -07001553/**
1554 * link_recv_buf_validate - validate basic format of received message
1555 *
1556 * This routine ensures a TIPC message has an acceptable header, and at least
1557 * as much data as the header indicates it should. The routine also ensures
1558 * that the entire message header is stored in the main fragment of the message
1559 * buffer, to simplify future access to message header fields.
1560 *
1561 * Note: Having extra info present in the message header or data areas is OK.
1562 * TIPC will ignore the excess, under the assumption that it is optional info
1563 * introduced by a later release of the protocol.
1564 */
1565
1566static int link_recv_buf_validate(struct sk_buff *buf)
1567{
1568 static u32 min_data_hdr_size[8] = {
1569 SHORT_H_SIZE, MCAST_H_SIZE, LONG_H_SIZE, DIR_MSG_H_SIZE,
1570 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1571 };
1572
1573 struct tipc_msg *msg;
1574 u32 tipc_hdr[2];
1575 u32 size;
1576 u32 hdr_size;
1577 u32 min_hdr_size;
1578
1579 if (unlikely(buf->len < MIN_H_SIZE))
1580 return 0;
1581
1582 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1583 if (msg == NULL)
1584 return 0;
1585
1586 if (unlikely(msg_version(msg) != TIPC_VERSION))
1587 return 0;
1588
1589 size = msg_size(msg);
1590 hdr_size = msg_hdr_sz(msg);
1591 min_hdr_size = msg_isdata(msg) ?
1592 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1593
1594 if (unlikely((hdr_size < min_hdr_size) ||
1595 (size < hdr_size) ||
1596 (buf->len < size) ||
1597 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1598 return 0;
1599
1600 return pskb_may_pull(buf, hdr_size);
1601}
1602
Allan Stephensb02b69c2010-08-17 11:00:07 +00001603/**
1604 * tipc_recv_msg - process TIPC messages arriving from off-node
1605 * @head: pointer to message buffer chain
1606 * @tb_ptr: pointer to bearer message arrived on
1607 *
1608 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1609 * structure (i.e. cannot be NULL), but bearer can be inactive.
1610 */
1611
Allan Stephens2d627b92011-01-07 13:00:11 -05001612void tipc_recv_msg(struct sk_buff *head, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001613{
Per Liden4323add2006-01-18 00:38:21 +01001614 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001615 while (head) {
David S. Miller6c000552008-09-02 23:38:32 -07001616 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001617 struct link *l_ptr;
1618 struct sk_buff *crs;
1619 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001620 struct tipc_msg *msg;
1621 u32 seq_no;
1622 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001623 u32 released = 0;
1624 int type;
1625
Per Lidenb97bf3f2006-01-02 19:04:38 +01001626 head = head->next;
Allan Stephens85035562008-04-15 19:04:54 -07001627
Allan Stephensb02b69c2010-08-17 11:00:07 +00001628 /* Ensure bearer is still enabled */
1629
1630 if (unlikely(!b_ptr->active))
1631 goto cont;
1632
Allan Stephens85035562008-04-15 19:04:54 -07001633 /* Ensure message is well-formed */
1634
1635 if (unlikely(!link_recv_buf_validate(buf)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001636 goto cont;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001637
Allan Stephensfe13dda2008-04-15 19:03:23 -07001638 /* Ensure message data is a single contiguous unit */
1639
Allan Stephensa0168922010-12-31 18:59:35 +00001640 if (unlikely(buf_linearize(buf)))
Allan Stephensfe13dda2008-04-15 19:03:23 -07001641 goto cont;
Allan Stephensfe13dda2008-04-15 19:03:23 -07001642
Allan Stephens85035562008-04-15 19:04:54 -07001643 /* Handle arrival of a non-unicast link message */
1644
1645 msg = buf_msg(buf);
1646
Per Lidenb97bf3f2006-01-02 19:04:38 +01001647 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001648 if (msg_user(msg) == LINK_CONFIG)
1649 tipc_disc_recv_msg(buf, b_ptr);
1650 else
1651 tipc_bclink_recv_pkt(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001652 continue;
1653 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001654
Allan Stephens26008242006-06-25 23:39:31 -07001655 if (unlikely(!msg_short(msg) &&
1656 (msg_destnode(msg) != tipc_own_addr)))
1657 goto cont;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001658
Neil Hormande586572010-03-08 12:43:56 -08001659 /* Discard non-routeable messages destined for another node */
1660
1661 if (unlikely(!msg_isdata(msg) &&
1662 (msg_destnode(msg) != tipc_own_addr))) {
1663 if ((msg_user(msg) != CONN_MANAGER) &&
1664 (msg_user(msg) != MSG_FRAGMENTER))
1665 goto cont;
1666 }
1667
Allan Stephens5a68d5e2010-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 Stephens5a68d5e2010-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 Stephensb29f1422010-12-31 18:59:25 +00002048 if (msg_session(msg) == l_ptr->peer_session)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002049 break; /* duplicate: 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);
2550 u32 max = TIPC_MAX_USER_MSG_SIZE + LONG_H_SIZE;
2551 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%% "
2879 "-16354:%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