blob: 4cb500b53cf1ca5258abce762ed0d47c9a6d649a [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/link.c: TIPC link code
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Allan Stephens05646c92007-06-10 17:25:24 -07004 * Copyright (c) 1996-2007, Ericsson AB
Allan Stephens23dd4cc2011-01-07 11:43:40 -05005 * Copyright (c) 2004-2007, 2010-2011, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010038#include "link.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039#include "port.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "name_distr.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010041#include "discover.h"
42#include "config.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010043
44
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090045/*
Allan Stephensa686e682008-06-04 17:29:39 -070046 * Out-of-range value for link session numbers
47 */
48
49#define INVALID_SESSION 0x10000
50
51/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090052 * Link state events:
Per Lidenb97bf3f2006-01-02 19:04:38 +010053 */
54
55#define STARTING_EVT 856384768 /* link processing trigger */
56#define TRAFFIC_MSG_EVT 560815u /* rx'd ??? */
57#define TIMEOUT_EVT 560817u /* link timer expired */
58
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090059/*
60 * The following two 'message types' is really just implementation
61 * data conveniently stored in the message header.
Per Lidenb97bf3f2006-01-02 19:04:38 +010062 * They must not be considered part of the protocol
63 */
64#define OPEN_MSG 0
65#define CLOSED_MSG 1
66
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090067/*
Per Lidenb97bf3f2006-01-02 19:04:38 +010068 * State value stored in 'exp_msg_count'
69 */
70
71#define START_CHANGEOVER 100000u
72
73/**
74 * struct link_name - deconstructed link name
75 * @addr_local: network address of node at this end
76 * @if_local: name of interface at this end
77 * @addr_peer: network address of node at far end
78 * @if_peer: name of interface at far end
79 */
80
81struct link_name {
82 u32 addr_local;
83 char if_local[TIPC_MAX_IF_NAME];
84 u32 addr_peer;
85 char if_peer[TIPC_MAX_IF_NAME];
86};
87
Per Lidenb97bf3f2006-01-02 19:04:38 +010088static void link_handle_out_of_seq_msg(struct link *l_ptr,
89 struct sk_buff *buf);
90static void link_recv_proto_msg(struct link *l_ptr, struct sk_buff *buf);
91static int link_recv_changeover_msg(struct link **l_ptr, struct sk_buff **buf);
92static void link_set_supervision_props(struct link *l_ptr, u32 tolerance);
Allan Stephens23dd4cc2011-01-07 11:43:40 -050093static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +010094 struct iovec const *msg_sect,
Allan Stephens26896902011-04-21 10:42:07 -050095 u32 num_sect, unsigned int total_len,
96 u32 destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +010097static void link_check_defragm_bufs(struct link *l_ptr);
98static void link_state_event(struct link *l_ptr, u32 event);
99static void link_reset_statistics(struct link *l_ptr);
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000100static void link_print(struct link *l_ptr, const char *str);
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000101static void link_start(struct link *l_ptr);
102static int link_send_long_buf(struct link *l_ptr, struct sk_buff *buf);
103
Per Lidenb97bf3f2006-01-02 19:04:38 +0100104/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800105 * Simple link routines
Per Lidenb97bf3f2006-01-02 19:04:38 +0100106 */
107
Sam Ravnborg05790c62006-03-20 22:37:04 -0800108static unsigned int align(unsigned int i)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100109{
110 return (i + 3) & ~3u;
111}
112
Sam Ravnborg05790c62006-03-20 22:37:04 -0800113static void link_init_max_pkt(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100114{
115 u32 max_pkt;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900116
Allan Stephens2d627b92011-01-07 13:00:11 -0500117 max_pkt = (l_ptr->b_ptr->mtu & ~3);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100118 if (max_pkt > MAX_MSG_SIZE)
119 max_pkt = MAX_MSG_SIZE;
120
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900121 l_ptr->max_pkt_target = max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122 if (l_ptr->max_pkt_target < MAX_PKT_DEFAULT)
123 l_ptr->max_pkt = l_ptr->max_pkt_target;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900124 else
Per Lidenb97bf3f2006-01-02 19:04:38 +0100125 l_ptr->max_pkt = MAX_PKT_DEFAULT;
126
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900127 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100128}
129
Sam Ravnborg05790c62006-03-20 22:37:04 -0800130static u32 link_next_sent(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100131{
132 if (l_ptr->next_out)
133 return msg_seqno(buf_msg(l_ptr->next_out));
134 return mod(l_ptr->next_out_no);
135}
136
Sam Ravnborg05790c62006-03-20 22:37:04 -0800137static u32 link_last_sent(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100138{
139 return mod(link_next_sent(l_ptr) - 1);
140}
141
142/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800143 * Simple non-static link routines (i.e. referenced outside this file)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100144 */
145
Per Liden4323add2006-01-18 00:38:21 +0100146int tipc_link_is_up(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100147{
148 if (!l_ptr)
149 return 0;
Eric Dumazeta02cec22010-09-22 20:43:57 +0000150 return link_working_working(l_ptr) || link_working_unknown(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100151}
152
Per Liden4323add2006-01-18 00:38:21 +0100153int tipc_link_is_active(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100154{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000155 return (l_ptr->owner->active_links[0] == l_ptr) ||
156 (l_ptr->owner->active_links[1] == l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100157}
158
159/**
160 * link_name_validate - validate & (optionally) deconstruct link name
161 * @name - ptr to link name string
162 * @name_parts - ptr to area for link name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900163 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100164 * Returns 1 if link name is valid, otherwise 0.
165 */
166
167static int link_name_validate(const char *name, struct link_name *name_parts)
168{
169 char name_copy[TIPC_MAX_LINK_NAME];
170 char *addr_local;
171 char *if_local;
172 char *addr_peer;
173 char *if_peer;
174 char dummy;
175 u32 z_local, c_local, n_local;
176 u32 z_peer, c_peer, n_peer;
177 u32 if_local_len;
178 u32 if_peer_len;
179
180 /* copy link name & ensure length is OK */
181
182 name_copy[TIPC_MAX_LINK_NAME - 1] = 0;
183 /* need above in case non-Posix strncpy() doesn't pad with nulls */
184 strncpy(name_copy, name, TIPC_MAX_LINK_NAME);
185 if (name_copy[TIPC_MAX_LINK_NAME - 1] != 0)
186 return 0;
187
188 /* ensure all component parts of link name are present */
189
190 addr_local = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000191 if_local = strchr(addr_local, ':');
192 if (if_local == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100193 return 0;
194 *(if_local++) = 0;
Allan Stephens2db99832010-12-31 18:59:33 +0000195 addr_peer = strchr(if_local, '-');
196 if (addr_peer == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100197 return 0;
198 *(addr_peer++) = 0;
199 if_local_len = addr_peer - if_local;
Allan Stephens2db99832010-12-31 18:59:33 +0000200 if_peer = strchr(addr_peer, ':');
201 if (if_peer == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100202 return 0;
203 *(if_peer++) = 0;
204 if_peer_len = strlen(if_peer) + 1;
205
206 /* validate component parts of link name */
207
208 if ((sscanf(addr_local, "%u.%u.%u%c",
209 &z_local, &c_local, &n_local, &dummy) != 3) ||
210 (sscanf(addr_peer, "%u.%u.%u%c",
211 &z_peer, &c_peer, &n_peer, &dummy) != 3) ||
212 (z_local > 255) || (c_local > 4095) || (n_local > 4095) ||
213 (z_peer > 255) || (c_peer > 4095) || (n_peer > 4095) ||
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900214 (if_local_len <= 1) || (if_local_len > TIPC_MAX_IF_NAME) ||
215 (if_peer_len <= 1) || (if_peer_len > TIPC_MAX_IF_NAME) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +0100216 (strspn(if_local, tipc_alphabet) != (if_local_len - 1)) ||
217 (strspn(if_peer, tipc_alphabet) != (if_peer_len - 1)))
218 return 0;
219
220 /* return link name components, if necessary */
221
222 if (name_parts) {
223 name_parts->addr_local = tipc_addr(z_local, c_local, n_local);
224 strcpy(name_parts->if_local, if_local);
225 name_parts->addr_peer = tipc_addr(z_peer, c_peer, n_peer);
226 strcpy(name_parts->if_peer, if_peer);
227 }
228 return 1;
229}
230
231/**
232 * link_timeout - handle expiration of link timer
233 * @l_ptr: pointer to link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900234 *
Per Liden4323add2006-01-18 00:38:21 +0100235 * This routine must not grab "tipc_net_lock" to avoid a potential deadlock conflict
236 * with tipc_link_delete(). (There is no risk that the node will be deleted by
237 * another thread because tipc_link_delete() always cancels the link timer before
238 * tipc_node_delete() is called.)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100239 */
240
241static void link_timeout(struct link *l_ptr)
242{
Per Liden4323add2006-01-18 00:38:21 +0100243 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100244
245 /* update counters used in statistical profiling of send traffic */
246
247 l_ptr->stats.accu_queue_sz += l_ptr->out_queue_size;
248 l_ptr->stats.queue_sz_counts++;
249
Per Lidenb97bf3f2006-01-02 19:04:38 +0100250 if (l_ptr->first_out) {
251 struct tipc_msg *msg = buf_msg(l_ptr->first_out);
252 u32 length = msg_size(msg);
253
Joe Perchesf64f9e72009-11-29 16:55:45 -0800254 if ((msg_user(msg) == MSG_FRAGMENTER) &&
255 (msg_type(msg) == FIRST_FRAGMENT)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100256 length = msg_size(msg_get_wrapped(msg));
257 }
258 if (length) {
259 l_ptr->stats.msg_lengths_total += length;
260 l_ptr->stats.msg_length_counts++;
261 if (length <= 64)
262 l_ptr->stats.msg_length_profile[0]++;
263 else if (length <= 256)
264 l_ptr->stats.msg_length_profile[1]++;
265 else if (length <= 1024)
266 l_ptr->stats.msg_length_profile[2]++;
267 else if (length <= 4096)
268 l_ptr->stats.msg_length_profile[3]++;
269 else if (length <= 16384)
270 l_ptr->stats.msg_length_profile[4]++;
271 else if (length <= 32768)
272 l_ptr->stats.msg_length_profile[5]++;
273 else
274 l_ptr->stats.msg_length_profile[6]++;
275 }
276 }
277
278 /* do all other link processing performed on a periodic basis */
279
280 link_check_defragm_bufs(l_ptr);
281
282 link_state_event(l_ptr, TIMEOUT_EVT);
283
284 if (l_ptr->next_out)
Per Liden4323add2006-01-18 00:38:21 +0100285 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100286
Per Liden4323add2006-01-18 00:38:21 +0100287 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100288}
289
Sam Ravnborg05790c62006-03-20 22:37:04 -0800290static void link_set_timer(struct link *l_ptr, u32 time)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100291{
292 k_start_timer(&l_ptr->timer, time);
293}
294
295/**
Per Liden4323add2006-01-18 00:38:21 +0100296 * tipc_link_create - create a new link
Allan Stephens37b9c082011-02-28 11:32:27 -0500297 * @n_ptr: pointer to associated node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100298 * @b_ptr: pointer to associated bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100299 * @media_addr: media address to use when sending messages over link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900300 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100301 * Returns pointer to link.
302 */
303
Allan Stephens37b9c082011-02-28 11:32:27 -0500304struct link *tipc_link_create(struct tipc_node *n_ptr,
305 struct tipc_bearer *b_ptr,
Per Liden4323add2006-01-18 00:38:21 +0100306 const struct tipc_media_addr *media_addr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100307{
308 struct link *l_ptr;
309 struct tipc_msg *msg;
310 char *if_name;
Allan Stephens37b9c082011-02-28 11:32:27 -0500311 char addr_string[16];
312 u32 peer = n_ptr->addr;
313
314 if (n_ptr->link_cnt >= 2) {
315 tipc_addr_string_fill(addr_string, n_ptr->addr);
316 err("Attempt to establish third link to %s\n", addr_string);
317 return NULL;
318 }
319
320 if (n_ptr->links[b_ptr->identity]) {
321 tipc_addr_string_fill(addr_string, n_ptr->addr);
322 err("Attempt to establish second link on <%s> to %s\n",
323 b_ptr->name, addr_string);
324 return NULL;
325 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100326
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700327 l_ptr = kzalloc(sizeof(*l_ptr), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100328 if (!l_ptr) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700329 warn("Link creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100330 return NULL;
331 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100332
333 l_ptr->addr = peer;
Allan Stephens2d627b92011-01-07 13:00:11 -0500334 if_name = strchr(b_ptr->name, ':') + 1;
Allan Stephens062b4c92011-04-07 09:28:47 -0400335 sprintf(l_ptr->name, "%u.%u.%u:%s-%u.%u.%u:unknown",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100336 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900337 tipc_node(tipc_own_addr),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100338 if_name,
339 tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
Allan Stephens062b4c92011-04-07 09:28:47 -0400340 /* note: peer i/f name is updated by reset/activate message */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100341 memcpy(&l_ptr->media_addr, media_addr, sizeof(*media_addr));
Allan Stephens37b9c082011-02-28 11:32:27 -0500342 l_ptr->owner = n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100343 l_ptr->checkpoint = 1;
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
Allan Stephensdc63d912011-04-21 11:50:42 -0400846static void link_add_chain_to_outqueue(struct link *l_ptr,
847 struct sk_buff *buf_chain,
848 u32 long_msgno)
849{
850 struct sk_buff *buf;
851 struct tipc_msg *msg;
852
853 if (!l_ptr->next_out)
854 l_ptr->next_out = buf_chain;
855 while (buf_chain) {
856 buf = buf_chain;
857 buf_chain = buf_chain->next;
858
859 msg = buf_msg(buf);
860 msg_set_long_msgno(msg, long_msgno);
861 link_add_to_outqueue(l_ptr, buf, msg);
862 }
863}
864
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900865/*
866 * tipc_link_send_buf() is the 'full path' for messages, called from
Per Lidenb97bf3f2006-01-02 19:04:38 +0100867 * inside TIPC when the 'fast path' in tipc_send_buf
868 * has failed, and from link_send()
869 */
870
Per Liden4323add2006-01-18 00:38:21 +0100871int tipc_link_send_buf(struct link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100872{
873 struct tipc_msg *msg = buf_msg(buf);
874 u32 size = msg_size(msg);
875 u32 dsz = msg_data_sz(msg);
876 u32 queue_size = l_ptr->out_queue_size;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000877 u32 imp = tipc_msg_tot_importance(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100878 u32 queue_limit = l_ptr->queue_limit[imp];
Allan Stephens15e979d2010-05-11 14:30:10 +0000879 u32 max_packet = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100880
881 msg_set_prevnode(msg, tipc_own_addr); /* If routed message */
882
883 /* Match msg importance against queue limits: */
884
885 if (unlikely(queue_size >= queue_limit)) {
886 if (imp <= TIPC_CRITICAL_IMPORTANCE) {
Allan Stephensbebc55a2011-04-19 10:17:58 -0400887 link_schedule_port(l_ptr, msg_origport(msg), size);
888 buf_discard(buf);
889 return -ELINKCONG;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100890 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100891 buf_discard(buf);
892 if (imp > CONN_MANAGER) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700893 warn("Resetting link <%s>, send queue full", l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100894 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100895 }
896 return dsz;
897 }
898
899 /* Fragmentation needed ? */
900
901 if (size > max_packet)
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000902 return link_send_long_buf(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100903
904 /* Packet can be queued or sent: */
905
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900906 if (likely(!tipc_bearer_congested(l_ptr->b_ptr, l_ptr) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100907 !link_congested(l_ptr))) {
908 link_add_to_outqueue(l_ptr, buf, msg);
909
Per Liden4323add2006-01-18 00:38:21 +0100910 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100911 l_ptr->unacked_window = 0;
912 } else {
Per Liden4323add2006-01-18 00:38:21 +0100913 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100914 l_ptr->stats.bearer_congs++;
915 l_ptr->next_out = buf;
916 }
917 return dsz;
918 }
919 /* Congestion: can message be bundled ?: */
920
921 if ((msg_user(msg) != CHANGEOVER_PROTOCOL) &&
922 (msg_user(msg) != MSG_FRAGMENTER)) {
923
924 /* Try adding message to an existing bundle */
925
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900926 if (l_ptr->next_out &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100927 link_bundle_buf(l_ptr, l_ptr->last_out, buf)) {
Per Liden4323add2006-01-18 00:38:21 +0100928 tipc_bearer_resolve_congestion(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100929 return dsz;
930 }
931
932 /* Try creating a new bundle */
933
934 if (size <= max_packet * 2 / 3) {
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000935 struct sk_buff *bundler = tipc_buf_acquire(max_packet);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100936 struct tipc_msg bundler_hdr;
937
938 if (bundler) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000939 tipc_msg_init(&bundler_hdr, MSG_BUNDLER, OPEN_MSG,
Allan Stephens75715212008-06-04 17:37:34 -0700940 INT_H_SIZE, l_ptr->addr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300941 skb_copy_to_linear_data(bundler, &bundler_hdr,
942 INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100943 skb_trim(bundler, INT_H_SIZE);
944 link_bundle_buf(l_ptr, bundler, buf);
945 buf = bundler;
946 msg = buf_msg(buf);
947 l_ptr->stats.sent_bundles++;
948 }
949 }
950 }
951 if (!l_ptr->next_out)
952 l_ptr->next_out = buf;
953 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +0100954 tipc_bearer_resolve_congestion(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100955 return dsz;
956}
957
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900958/*
959 * tipc_link_send(): same as tipc_link_send_buf(), but the link to use has
Per Lidenb97bf3f2006-01-02 19:04:38 +0100960 * not been selected yet, and the the owner node is not locked
961 * Called by TIPC internal users, e.g. the name distributor
962 */
963
Per Liden4323add2006-01-18 00:38:21 +0100964int tipc_link_send(struct sk_buff *buf, u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100965{
966 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700967 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100968 int res = -ELINKCONG;
969
Per Liden4323add2006-01-18 00:38:21 +0100970 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000971 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100972 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +0100973 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100974 l_ptr = n_ptr->active_links[selector & 1];
Allan Stephensa0168922010-12-31 18:59:35 +0000975 if (l_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100976 res = tipc_link_send_buf(l_ptr, buf);
Allan Stephensa0168922010-12-31 18:59:35 +0000977 else
Allan Stephensc33d53b2006-06-25 23:50:30 -0700978 buf_discard(buf);
Per Liden4323add2006-01-18 00:38:21 +0100979 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100980 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100981 buf_discard(buf);
982 }
Per Liden4323add2006-01-18 00:38:21 +0100983 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100984 return res;
985}
986
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900987/*
988 * link_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +0100989 * destination link is known and the header is complete,
990 * inclusive total message length. Very time critical.
991 * Link is locked. Returns user data length.
992 */
993
Sam Ravnborg05790c62006-03-20 22:37:04 -0800994static int link_send_buf_fast(struct link *l_ptr, struct sk_buff *buf,
995 u32 *used_max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100996{
997 struct tipc_msg *msg = buf_msg(buf);
998 int res = msg_data_sz(msg);
999
1000 if (likely(!link_congested(l_ptr))) {
Allan Stephens15e979d2010-05-11 14:30:10 +00001001 if (likely(msg_size(msg) <= l_ptr->max_pkt)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001002 if (likely(list_empty(&l_ptr->b_ptr->cong_links))) {
1003 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +01001004 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf,
1005 &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001006 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001007 return res;
1008 }
Per Liden4323add2006-01-18 00:38:21 +01001009 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001010 l_ptr->stats.bearer_congs++;
1011 l_ptr->next_out = buf;
1012 return res;
1013 }
Allan Stephens0e659672010-12-31 18:59:32 +00001014 } else
Allan Stephens15e979d2010-05-11 14:30:10 +00001015 *used_max_pkt = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001016 }
Per Liden4323add2006-01-18 00:38:21 +01001017 return tipc_link_send_buf(l_ptr, buf); /* All other cases */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001018}
1019
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001020/*
1021 * tipc_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001022 * destination node is known and the header is complete,
1023 * inclusive total message length.
1024 * Returns user data length.
1025 */
1026int tipc_send_buf_fast(struct sk_buff *buf, u32 destnode)
1027{
1028 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001029 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001030 int res;
1031 u32 selector = msg_origport(buf_msg(buf)) & 1;
1032 u32 dummy;
1033
1034 if (destnode == tipc_own_addr)
Per Liden4323add2006-01-18 00:38:21 +01001035 return tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001036
Per Liden4323add2006-01-18 00:38:21 +01001037 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001038 n_ptr = tipc_node_find(destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001039 if (likely(n_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001040 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001041 l_ptr = n_ptr->active_links[selector];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001042 if (likely(l_ptr)) {
1043 res = link_send_buf_fast(l_ptr, buf, &dummy);
Per Liden4323add2006-01-18 00:38:21 +01001044 tipc_node_unlock(n_ptr);
1045 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001046 return res;
1047 }
Per Liden4323add2006-01-18 00:38:21 +01001048 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001049 }
Per Liden4323add2006-01-18 00:38:21 +01001050 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001051 res = msg_data_sz(buf_msg(buf));
1052 tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1053 return res;
1054}
1055
1056
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001057/*
1058 * tipc_link_send_sections_fast: Entry for messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001059 * destination processor is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001060 * except for total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001061 * Returns user data length or errno.
1062 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001063int tipc_link_send_sections_fast(struct tipc_port *sender,
Per Liden4323add2006-01-18 00:38:21 +01001064 struct iovec const *msg_sect,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001065 const u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001066 unsigned int total_len,
Per Liden4323add2006-01-18 00:38:21 +01001067 u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001068{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001069 struct tipc_msg *hdr = &sender->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001070 struct link *l_ptr;
1071 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -07001072 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001073 int res;
1074 u32 selector = msg_origport(hdr) & 1;
1075
Per Lidenb97bf3f2006-01-02 19:04:38 +01001076again:
1077 /*
1078 * Try building message using port's max_pkt hint.
1079 * (Must not hold any locks while building message.)
1080 */
1081
Allan Stephens26896902011-04-21 10:42:07 -05001082 res = tipc_msg_build(hdr, msg_sect, num_sect, total_len,
1083 sender->max_pkt, !sender->user_port, &buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001084
Per Liden4323add2006-01-18 00:38:21 +01001085 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001086 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001087 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001088 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001089 l_ptr = node->active_links[selector];
1090 if (likely(l_ptr)) {
1091 if (likely(buf)) {
1092 res = link_send_buf_fast(l_ptr, buf,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001093 &sender->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001094exit:
Per Liden4323add2006-01-18 00:38:21 +01001095 tipc_node_unlock(node);
1096 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001097 return res;
1098 }
1099
1100 /* Exit if build request was invalid */
1101
1102 if (unlikely(res < 0))
1103 goto exit;
1104
1105 /* Exit if link (or bearer) is congested */
1106
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001107 if (link_congested(l_ptr) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +01001108 !list_empty(&l_ptr->b_ptr->cong_links)) {
1109 res = link_schedule_port(l_ptr,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001110 sender->ref, res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001111 goto exit;
1112 }
1113
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001114 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001115 * Message size exceeds max_pkt hint; update hint,
1116 * then re-try fast path or fragment the message
1117 */
1118
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001119 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001120 tipc_node_unlock(node);
1121 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001122
1123
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001124 if ((msg_hdr_sz(hdr) + res) <= sender->max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001125 goto again;
1126
1127 return link_send_sections_long(sender, msg_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001128 num_sect, total_len,
1129 destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001130 }
Per Liden4323add2006-01-18 00:38:21 +01001131 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001132 }
Per Liden4323add2006-01-18 00:38:21 +01001133 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001134
1135 /* Couldn't find a link to the destination node */
1136
1137 if (buf)
1138 return tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1139 if (res >= 0)
Per Liden4323add2006-01-18 00:38:21 +01001140 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001141 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001142 return res;
1143}
1144
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001145/*
1146 * link_send_sections_long(): Entry for long messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001147 * destination node is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001148 * inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001149 * Link and bearer congestion status have been checked to be ok,
1150 * and are ignored if they change.
1151 *
1152 * Note that fragments do not use the full link MTU so that they won't have
1153 * to undergo refragmentation if link changeover causes them to be sent
1154 * over another link with an additional tunnel header added as prefix.
1155 * (Refragmentation will still occur if the other link has a smaller MTU.)
1156 *
1157 * Returns user data length or errno.
1158 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001159static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001160 struct iovec const *msg_sect,
1161 u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001162 unsigned int total_len,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001163 u32 destaddr)
1164{
1165 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001166 struct tipc_node *node;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001167 struct tipc_msg *hdr = &sender->phdr;
Allan Stephens26896902011-04-21 10:42:07 -05001168 u32 dsz = total_len;
Allan Stephens0e659672010-12-31 18:59:32 +00001169 u32 max_pkt, fragm_sz, rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001170 struct tipc_msg fragm_hdr;
Allan Stephens0e659672010-12-31 18:59:32 +00001171 struct sk_buff *buf, *buf_chain, *prev;
1172 u32 fragm_crs, fragm_rest, hsz, sect_rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001173 const unchar *sect_crs;
1174 int curr_sect;
1175 u32 fragm_no;
1176
1177again:
1178 fragm_no = 1;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001179 max_pkt = sender->max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001180 /* leave room for tunnel header in case of link changeover */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001181 fragm_sz = max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001182 /* leave room for fragmentation header in each fragment */
1183 rest = dsz;
1184 fragm_crs = 0;
1185 fragm_rest = 0;
1186 sect_rest = 0;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001187 sect_crs = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001188 curr_sect = -1;
1189
1190 /* Prepare reusable fragment header: */
1191
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001192 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07001193 INT_H_SIZE, msg_destnode(hdr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001194 msg_set_size(&fragm_hdr, max_pkt);
1195 msg_set_fragm_no(&fragm_hdr, 1);
1196
1197 /* Prepare header of first fragment: */
1198
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001199 buf_chain = buf = tipc_buf_acquire(max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001200 if (!buf)
1201 return -ENOMEM;
1202 buf->next = NULL;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001203 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001204 hsz = msg_hdr_sz(hdr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001205 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, hdr, hsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001206
1207 /* Chop up message: */
1208
1209 fragm_crs = INT_H_SIZE + hsz;
1210 fragm_rest = fragm_sz - hsz;
1211
1212 do { /* For all sections */
1213 u32 sz;
1214
1215 if (!sect_rest) {
1216 sect_rest = msg_sect[++curr_sect].iov_len;
1217 sect_crs = (const unchar *)msg_sect[curr_sect].iov_base;
1218 }
1219
1220 if (sect_rest < fragm_rest)
1221 sz = sect_rest;
1222 else
1223 sz = fragm_rest;
1224
1225 if (likely(!sender->user_port)) {
1226 if (copy_from_user(buf->data + fragm_crs, sect_crs, sz)) {
1227error:
1228 for (; buf_chain; buf_chain = buf) {
1229 buf = buf_chain->next;
1230 buf_discard(buf_chain);
1231 }
1232 return -EFAULT;
1233 }
1234 } else
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001235 skb_copy_to_linear_data_offset(buf, fragm_crs,
1236 sect_crs, sz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001237 sect_crs += sz;
1238 sect_rest -= sz;
1239 fragm_crs += sz;
1240 fragm_rest -= sz;
1241 rest -= sz;
1242
1243 if (!fragm_rest && rest) {
1244
1245 /* Initiate new fragment: */
1246 if (rest <= fragm_sz) {
1247 fragm_sz = rest;
Allan Stephens0e659672010-12-31 18:59:32 +00001248 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001249 } else {
1250 msg_set_type(&fragm_hdr, FRAGMENT);
1251 }
1252 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
1253 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
1254 prev = buf;
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001255 buf = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001256 if (!buf)
1257 goto error;
1258
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001259 buf->next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001260 prev->next = buf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001261 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001262 fragm_crs = INT_H_SIZE;
1263 fragm_rest = fragm_sz;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001264 }
Allan Stephens0e659672010-12-31 18:59:32 +00001265 } while (rest > 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001266
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001267 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001268 * Now we have a buffer chain. Select a link and check
1269 * that packet size is still OK
1270 */
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001271 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001272 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001273 tipc_node_lock(node);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001274 l_ptr = node->active_links[sender->ref & 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001275 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01001276 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001277 goto reject;
1278 }
Allan Stephens15e979d2010-05-11 14:30:10 +00001279 if (l_ptr->max_pkt < max_pkt) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001280 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001281 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001282 for (; buf_chain; buf_chain = buf) {
1283 buf = buf_chain->next;
1284 buf_discard(buf_chain);
1285 }
1286 goto again;
1287 }
1288 } else {
1289reject:
1290 for (; buf_chain; buf_chain = buf) {
1291 buf = buf_chain->next;
1292 buf_discard(buf_chain);
1293 }
Per Liden4323add2006-01-18 00:38:21 +01001294 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001295 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001296 }
1297
Allan Stephensdc63d912011-04-21 11:50:42 -04001298 /* Append chain of fragments to send queue & send them */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001299
Allan Stephense0f08592011-04-17 11:44:24 -04001300 l_ptr->long_msg_seq_no++;
Allan Stephensdc63d912011-04-21 11:50:42 -04001301 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
1302 l_ptr->stats.sent_fragments += fragm_no;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001303 l_ptr->stats.sent_fragmented++;
Per Liden4323add2006-01-18 00:38:21 +01001304 tipc_link_push_queue(l_ptr);
1305 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001306 return dsz;
1307}
1308
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001309/*
Per Liden4323add2006-01-18 00:38:21 +01001310 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +01001311 */
Per Liden4323add2006-01-18 00:38:21 +01001312u32 tipc_link_push_packet(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001313{
1314 struct sk_buff *buf = l_ptr->first_out;
1315 u32 r_q_size = l_ptr->retransm_queue_size;
1316 u32 r_q_head = l_ptr->retransm_queue_head;
1317
1318 /* Step to position where retransmission failed, if any, */
1319 /* consider that buffers may have been released in meantime */
1320
1321 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001322 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +01001323 link_last_sent(l_ptr));
1324 u32 first = msg_seqno(buf_msg(buf));
1325
1326 while (buf && less(first, r_q_head)) {
1327 first = mod(first + 1);
1328 buf = buf->next;
1329 }
1330 l_ptr->retransm_queue_head = r_q_head = first;
1331 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1332 }
1333
1334 /* Continue retransmission now, if there is anything: */
1335
Neil Hormanca509102010-03-15 07:58:45 +00001336 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001337 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001338 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001339 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001340 l_ptr->retransm_queue_head = mod(++r_q_head);
1341 l_ptr->retransm_queue_size = --r_q_size;
1342 l_ptr->stats.retransmitted++;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001343 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001344 } else {
1345 l_ptr->stats.bearer_congs++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001346 return PUSH_FAILED;
1347 }
1348 }
1349
1350 /* Send deferred protocol message, if any: */
1351
1352 buf = l_ptr->proto_msg_queue;
1353 if (buf) {
1354 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +00001355 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001356 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001357 l_ptr->unacked_window = 0;
1358 buf_discard(buf);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001359 l_ptr->proto_msg_queue = NULL;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001360 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001361 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001362 l_ptr->stats.bearer_congs++;
1363 return PUSH_FAILED;
1364 }
1365 }
1366
1367 /* Send one deferred data message, if send window not full: */
1368
1369 buf = l_ptr->next_out;
1370 if (buf) {
1371 struct tipc_msg *msg = buf_msg(buf);
1372 u32 next = msg_seqno(msg);
1373 u32 first = msg_seqno(buf_msg(l_ptr->first_out));
1374
1375 if (mod(next - first) < l_ptr->queue_limit[0]) {
1376 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001377 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001378 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001379 if (msg_user(msg) == MSG_BUNDLER)
1380 msg_set_type(msg, CLOSED_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001381 l_ptr->next_out = buf->next;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001382 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001383 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001384 l_ptr->stats.bearer_congs++;
1385 return PUSH_FAILED;
1386 }
1387 }
1388 }
1389 return PUSH_FINISHED;
1390}
1391
1392/*
1393 * push_queue(): push out the unsent messages of a link where
1394 * congestion has abated. Node is locked
1395 */
Per Liden4323add2006-01-18 00:38:21 +01001396void tipc_link_push_queue(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001397{
1398 u32 res;
1399
Per Liden4323add2006-01-18 00:38:21 +01001400 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001401 return;
1402
1403 do {
Per Liden4323add2006-01-18 00:38:21 +01001404 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001405 } while (!res);
1406
Per Lidenb97bf3f2006-01-02 19:04:38 +01001407 if (res == PUSH_FAILED)
Per Liden4323add2006-01-18 00:38:21 +01001408 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001409}
1410
Allan Stephensd356eeb2006-06-25 23:40:01 -07001411static void link_reset_all(unsigned long addr)
1412{
David S. Miller6c000552008-09-02 23:38:32 -07001413 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001414 char addr_string[16];
1415 u32 i;
1416
1417 read_lock_bh(&tipc_net_lock);
1418 n_ptr = tipc_node_find((u32)addr);
1419 if (!n_ptr) {
1420 read_unlock_bh(&tipc_net_lock);
1421 return; /* node no longer exists */
1422 }
1423
1424 tipc_node_lock(n_ptr);
1425
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001426 warn("Resetting all links to %s\n",
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001427 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -07001428
1429 for (i = 0; i < MAX_BEARERS; i++) {
1430 if (n_ptr->links[i]) {
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001431 link_print(n_ptr->links[i], "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001432 tipc_link_reset(n_ptr->links[i]);
1433 }
1434 }
1435
1436 tipc_node_unlock(n_ptr);
1437 read_unlock_bh(&tipc_net_lock);
1438}
1439
1440static void link_retransmit_failure(struct link *l_ptr, struct sk_buff *buf)
1441{
1442 struct tipc_msg *msg = buf_msg(buf);
1443
1444 warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001445
1446 if (l_ptr->addr) {
1447
1448 /* Handle failure on standard link */
1449
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001450 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001451 tipc_link_reset(l_ptr);
1452
1453 } else {
1454
1455 /* Handle failure on broadcast link */
1456
David S. Miller6c000552008-09-02 23:38:32 -07001457 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001458 char addr_string[16];
1459
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001460 info("Msg seq number: %u, ", msg_seqno(msg));
1461 info("Outstanding acks: %lu\n",
1462 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -07001463
Allan Stephens01d83ed2011-01-18 13:53:16 -05001464 n_ptr = tipc_bclink_retransmit_to();
Allan Stephensd356eeb2006-06-25 23:40:01 -07001465 tipc_node_lock(n_ptr);
1466
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001467 tipc_addr_string_fill(addr_string, n_ptr->addr);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001468 info("Multicast link info for %s\n", addr_string);
1469 info("Supported: %d, ", n_ptr->bclink.supported);
1470 info("Acked: %u\n", n_ptr->bclink.acked);
1471 info("Last in: %u, ", n_ptr->bclink.last_in);
1472 info("Gap after: %u, ", n_ptr->bclink.gap_after);
1473 info("Gap to: %u\n", n_ptr->bclink.gap_to);
1474 info("Nack sync: %u\n\n", n_ptr->bclink.nack_sync);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001475
1476 tipc_k_signal((Handler)link_reset_all, (unsigned long)n_ptr->addr);
1477
1478 tipc_node_unlock(n_ptr);
1479
1480 l_ptr->stale_count = 0;
1481 }
1482}
1483
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001484void tipc_link_retransmit(struct link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001485 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001486{
1487 struct tipc_msg *msg;
1488
Allan Stephensd356eeb2006-06-25 23:40:01 -07001489 if (!buf)
1490 return;
1491
1492 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001493
Allan Stephensd356eeb2006-06-25 23:40:01 -07001494 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
Neil Hormanca509102010-03-15 07:58:45 +00001495 if (l_ptr->retransm_queue_size == 0) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001496 l_ptr->retransm_queue_head = msg_seqno(msg);
1497 l_ptr->retransm_queue_size = retransmits;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001498 } else {
Neil Hormanca509102010-03-15 07:58:45 +00001499 err("Unexpected retransmit on link %s (qsize=%d)\n",
1500 l_ptr->name, l_ptr->retransm_queue_size);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001501 }
Neil Hormanca509102010-03-15 07:58:45 +00001502 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001503 } else {
1504 /* Detect repeated retransmit failures on uncongested bearer */
1505
1506 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1507 if (++l_ptr->stale_count > 100) {
1508 link_retransmit_failure(l_ptr, buf);
1509 return;
1510 }
1511 } else {
1512 l_ptr->last_retransmitted = msg_seqno(msg);
1513 l_ptr->stale_count = 1;
1514 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001515 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001516
Neil Hormanca509102010-03-15 07:58:45 +00001517 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001518 msg = buf_msg(buf);
1519 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001520 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001521 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001522 buf = buf->next;
1523 retransmits--;
1524 l_ptr->stats.retransmitted++;
1525 } else {
Per Liden4323add2006-01-18 00:38:21 +01001526 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001527 l_ptr->stats.bearer_congs++;
1528 l_ptr->retransm_queue_head = msg_seqno(buf_msg(buf));
1529 l_ptr->retransm_queue_size = retransmits;
1530 return;
1531 }
1532 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001533
Per Lidenb97bf3f2006-01-02 19:04:38 +01001534 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1535}
1536
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001537/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001538 * link_insert_deferred_queue - insert deferred messages back into receive chain
1539 */
1540
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001541static struct sk_buff *link_insert_deferred_queue(struct link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001542 struct sk_buff *buf)
1543{
1544 u32 seq_no;
1545
1546 if (l_ptr->oldest_deferred_in == NULL)
1547 return buf;
1548
1549 seq_no = msg_seqno(buf_msg(l_ptr->oldest_deferred_in));
1550 if (seq_no == mod(l_ptr->next_in_no)) {
1551 l_ptr->newest_deferred_in->next = buf;
1552 buf = l_ptr->oldest_deferred_in;
1553 l_ptr->oldest_deferred_in = NULL;
1554 l_ptr->deferred_inqueue_sz = 0;
1555 }
1556 return buf;
1557}
1558
Allan Stephens85035562008-04-15 19:04:54 -07001559/**
1560 * link_recv_buf_validate - validate basic format of received message
1561 *
1562 * This routine ensures a TIPC message has an acceptable header, and at least
1563 * as much data as the header indicates it should. The routine also ensures
1564 * that the entire message header is stored in the main fragment of the message
1565 * buffer, to simplify future access to message header fields.
1566 *
1567 * Note: Having extra info present in the message header or data areas is OK.
1568 * TIPC will ignore the excess, under the assumption that it is optional info
1569 * introduced by a later release of the protocol.
1570 */
1571
1572static int link_recv_buf_validate(struct sk_buff *buf)
1573{
1574 static u32 min_data_hdr_size[8] = {
Allan Stephens741d9eb2011-05-31 15:03:18 -04001575 SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,
Allan Stephens85035562008-04-15 19:04:54 -07001576 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1577 };
1578
1579 struct tipc_msg *msg;
1580 u32 tipc_hdr[2];
1581 u32 size;
1582 u32 hdr_size;
1583 u32 min_hdr_size;
1584
1585 if (unlikely(buf->len < MIN_H_SIZE))
1586 return 0;
1587
1588 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1589 if (msg == NULL)
1590 return 0;
1591
1592 if (unlikely(msg_version(msg) != TIPC_VERSION))
1593 return 0;
1594
1595 size = msg_size(msg);
1596 hdr_size = msg_hdr_sz(msg);
1597 min_hdr_size = msg_isdata(msg) ?
1598 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1599
1600 if (unlikely((hdr_size < min_hdr_size) ||
1601 (size < hdr_size) ||
1602 (buf->len < size) ||
1603 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1604 return 0;
1605
1606 return pskb_may_pull(buf, hdr_size);
1607}
1608
Allan Stephensb02b69c2010-08-17 11:00:07 +00001609/**
1610 * tipc_recv_msg - process TIPC messages arriving from off-node
1611 * @head: pointer to message buffer chain
1612 * @tb_ptr: pointer to bearer message arrived on
1613 *
1614 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1615 * structure (i.e. cannot be NULL), but bearer can be inactive.
1616 */
1617
Allan Stephens2d627b92011-01-07 13:00:11 -05001618void tipc_recv_msg(struct sk_buff *head, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001619{
Per Liden4323add2006-01-18 00:38:21 +01001620 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001621 while (head) {
David S. Miller6c000552008-09-02 23:38:32 -07001622 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001623 struct link *l_ptr;
1624 struct sk_buff *crs;
1625 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001626 struct tipc_msg *msg;
1627 u32 seq_no;
1628 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001629 u32 released = 0;
1630 int type;
1631
Per Lidenb97bf3f2006-01-02 19:04:38 +01001632 head = head->next;
Allan Stephens85035562008-04-15 19:04:54 -07001633
Allan Stephensb02b69c2010-08-17 11:00:07 +00001634 /* Ensure bearer is still enabled */
1635
1636 if (unlikely(!b_ptr->active))
1637 goto cont;
1638
Allan Stephens85035562008-04-15 19:04:54 -07001639 /* Ensure message is well-formed */
1640
1641 if (unlikely(!link_recv_buf_validate(buf)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001642 goto cont;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001643
Allan Stephensfe13dda2008-04-15 19:03:23 -07001644 /* Ensure message data is a single contiguous unit */
1645
Allan Stephensa0168922010-12-31 18:59:35 +00001646 if (unlikely(buf_linearize(buf)))
Allan Stephensfe13dda2008-04-15 19:03:23 -07001647 goto cont;
Allan Stephensfe13dda2008-04-15 19:03:23 -07001648
Allan Stephens85035562008-04-15 19:04:54 -07001649 /* Handle arrival of a non-unicast link message */
1650
1651 msg = buf_msg(buf);
1652
Per Lidenb97bf3f2006-01-02 19:04:38 +01001653 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001654 if (msg_user(msg) == LINK_CONFIG)
1655 tipc_disc_recv_msg(buf, b_ptr);
1656 else
1657 tipc_bclink_recv_pkt(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001658 continue;
1659 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001660
Allan Stephensed33a9c2011-04-05 15:15:04 -04001661 /* Discard unicast link messages destined for another node */
1662
Allan Stephens26008242006-06-25 23:39:31 -07001663 if (unlikely(!msg_short(msg) &&
1664 (msg_destnode(msg) != tipc_own_addr)))
1665 goto cont;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001666
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001667 /* Locate neighboring node that sent message */
Allan Stephens85035562008-04-15 19:04:54 -07001668
Per Liden4323add2006-01-18 00:38:21 +01001669 n_ptr = tipc_node_find(msg_prevnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001670 if (unlikely(!n_ptr))
1671 goto cont;
Per Liden4323add2006-01-18 00:38:21 +01001672 tipc_node_lock(n_ptr);
Allan Stephens85035562008-04-15 19:04:54 -07001673
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001674 /* Don't talk to neighbor during cleanup after last session */
1675
1676 if (n_ptr->cleanup_required) {
1677 tipc_node_unlock(n_ptr);
1678 goto cont;
1679 }
1680
1681 /* Locate unicast link endpoint that should handle message */
1682
Per Lidenb97bf3f2006-01-02 19:04:38 +01001683 l_ptr = n_ptr->links[b_ptr->identity];
1684 if (unlikely(!l_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001685 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001686 goto cont;
1687 }
Allan Stephens85035562008-04-15 19:04:54 -07001688
1689 /* Validate message sequence number info */
1690
1691 seq_no = msg_seqno(msg);
1692 ackd = msg_ack(msg);
1693
1694 /* Release acked messages */
1695
Per Lidenb97bf3f2006-01-02 19:04:38 +01001696 if (less(n_ptr->bclink.acked, msg_bcast_ack(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01001697 if (tipc_node_is_up(n_ptr) && n_ptr->bclink.supported)
1698 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001699 }
1700
1701 crs = l_ptr->first_out;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001702 while ((crs != l_ptr->next_out) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001703 less_eq(msg_seqno(buf_msg(crs)), ackd)) {
1704 struct sk_buff *next = crs->next;
1705
1706 buf_discard(crs);
1707 crs = next;
1708 released++;
1709 }
1710 if (released) {
1711 l_ptr->first_out = crs;
1712 l_ptr->out_queue_size -= released;
1713 }
Allan Stephens85035562008-04-15 19:04:54 -07001714
1715 /* Try sending any messages link endpoint has pending */
1716
Per Lidenb97bf3f2006-01-02 19:04:38 +01001717 if (unlikely(l_ptr->next_out))
Per Liden4323add2006-01-18 00:38:21 +01001718 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001719 if (unlikely(!list_empty(&l_ptr->waiting_ports)))
Per Liden4323add2006-01-18 00:38:21 +01001720 tipc_link_wakeup_ports(l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001721 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1722 l_ptr->stats.sent_acks++;
Per Liden4323add2006-01-18 00:38:21 +01001723 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001724 }
1725
Allan Stephens85035562008-04-15 19:04:54 -07001726 /* Now (finally!) process the incoming message */
1727
Per Lidenb97bf3f2006-01-02 19:04:38 +01001728protocol_check:
1729 if (likely(link_working_working(l_ptr))) {
1730 if (likely(seq_no == mod(l_ptr->next_in_no))) {
1731 l_ptr->next_in_no++;
1732 if (unlikely(l_ptr->oldest_deferred_in))
1733 head = link_insert_deferred_queue(l_ptr,
1734 head);
1735 if (likely(msg_is_dest(msg, tipc_own_addr))) {
1736deliver:
1737 if (likely(msg_isdata(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01001738 tipc_node_unlock(n_ptr);
1739 tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001740 continue;
1741 }
1742 switch (msg_user(msg)) {
1743 case MSG_BUNDLER:
1744 l_ptr->stats.recv_bundles++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001745 l_ptr->stats.recv_bundled +=
Per Lidenb97bf3f2006-01-02 19:04:38 +01001746 msg_msgcnt(msg);
Per Liden4323add2006-01-18 00:38:21 +01001747 tipc_node_unlock(n_ptr);
1748 tipc_link_recv_bundle(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001749 continue;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001750 case NAME_DISTRIBUTOR:
Per Liden4323add2006-01-18 00:38:21 +01001751 tipc_node_unlock(n_ptr);
1752 tipc_named_recv(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001753 continue;
1754 case CONN_MANAGER:
Per Liden4323add2006-01-18 00:38:21 +01001755 tipc_node_unlock(n_ptr);
1756 tipc_port_recv_proto_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001757 continue;
1758 case MSG_FRAGMENTER:
1759 l_ptr->stats.recv_fragments++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001760 if (tipc_link_recv_fragment(&l_ptr->defragm_buf,
Per Liden4323add2006-01-18 00:38:21 +01001761 &buf, &msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001762 l_ptr->stats.recv_fragmented++;
1763 goto deliver;
1764 }
1765 break;
1766 case CHANGEOVER_PROTOCOL:
1767 type = msg_type(msg);
Per Liden4323add2006-01-18 00:38:21 +01001768 if (link_recv_changeover_msg(&l_ptr, &buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001769 msg = buf_msg(buf);
1770 seq_no = msg_seqno(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001771 if (type == ORIGINAL_MSG)
1772 goto deliver;
1773 goto protocol_check;
1774 }
1775 break;
Allan Stephens7945c1f2011-03-11 13:09:28 -05001776 default:
1777 buf_discard(buf);
1778 buf = NULL;
1779 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001780 }
1781 }
Per Liden4323add2006-01-18 00:38:21 +01001782 tipc_node_unlock(n_ptr);
1783 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001784 continue;
1785 }
1786 link_handle_out_of_seq_msg(l_ptr, buf);
1787 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001788 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001789 continue;
1790 }
1791
1792 if (msg_user(msg) == LINK_PROTOCOL) {
1793 link_recv_proto_msg(l_ptr, buf);
1794 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001795 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001796 continue;
1797 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001798 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1799
1800 if (link_working_working(l_ptr)) {
1801 /* Re-insert in front of queue */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001802 buf->next = head;
1803 head = buf;
Per Liden4323add2006-01-18 00:38:21 +01001804 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001805 continue;
1806 }
Per Liden4323add2006-01-18 00:38:21 +01001807 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001808cont:
1809 buf_discard(buf);
1810 }
Per Liden4323add2006-01-18 00:38:21 +01001811 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001812}
1813
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001814/*
1815 * link_defer_buf(): Sort a received out-of-sequence packet
Per Lidenb97bf3f2006-01-02 19:04:38 +01001816 * into the deferred reception queue.
1817 * Returns the increase of the queue length,i.e. 0 or 1
1818 */
1819
Per Liden4323add2006-01-18 00:38:21 +01001820u32 tipc_link_defer_pkt(struct sk_buff **head,
1821 struct sk_buff **tail,
1822 struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001823{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001824 struct sk_buff *prev = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001825 struct sk_buff *crs = *head;
1826 u32 seq_no = msg_seqno(buf_msg(buf));
1827
1828 buf->next = NULL;
1829
1830 /* Empty queue ? */
1831 if (*head == NULL) {
1832 *head = *tail = buf;
1833 return 1;
1834 }
1835
1836 /* Last ? */
1837 if (less(msg_seqno(buf_msg(*tail)), seq_no)) {
1838 (*tail)->next = buf;
1839 *tail = buf;
1840 return 1;
1841 }
1842
1843 /* Scan through queue and sort it in */
1844 do {
1845 struct tipc_msg *msg = buf_msg(crs);
1846
1847 if (less(seq_no, msg_seqno(msg))) {
1848 buf->next = crs;
1849 if (prev)
1850 prev->next = buf;
1851 else
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001852 *head = buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001853 return 1;
1854 }
Allan Stephensa0168922010-12-31 18:59:35 +00001855 if (seq_no == msg_seqno(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001856 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001857 prev = crs;
1858 crs = crs->next;
Allan Stephens0e659672010-12-31 18:59:32 +00001859 } while (crs);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001860
1861 /* Message is a duplicate of an existing message */
1862
1863 buf_discard(buf);
1864 return 0;
1865}
1866
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001867/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001868 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1869 */
1870
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001871static void link_handle_out_of_seq_msg(struct link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001872 struct sk_buff *buf)
1873{
1874 u32 seq_no = msg_seqno(buf_msg(buf));
1875
1876 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
1877 link_recv_proto_msg(l_ptr, buf);
1878 return;
1879 }
1880
Per Lidenb97bf3f2006-01-02 19:04:38 +01001881 /* Record OOS packet arrival (force mismatch on next timeout) */
1882
1883 l_ptr->checkpoint--;
1884
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001885 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001886 * Discard packet if a duplicate; otherwise add it to deferred queue
1887 * and notify peer of gap as per protocol specification
1888 */
1889
1890 if (less(seq_no, mod(l_ptr->next_in_no))) {
1891 l_ptr->stats.duplicates++;
1892 buf_discard(buf);
1893 return;
1894 }
1895
Per Liden4323add2006-01-18 00:38:21 +01001896 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1897 &l_ptr->newest_deferred_in, buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001898 l_ptr->deferred_inqueue_sz++;
1899 l_ptr->stats.deferred_recv++;
1900 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
Per Liden4323add2006-01-18 00:38:21 +01001901 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001902 } else
1903 l_ptr->stats.duplicates++;
1904}
1905
1906/*
1907 * Send protocol message to the other endpoint.
1908 */
Per Liden4323add2006-01-18 00:38:21 +01001909void tipc_link_send_proto_msg(struct link *l_ptr, u32 msg_typ, int probe_msg,
1910 u32 gap, u32 tolerance, u32 priority, u32 ack_mtu)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001911{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001912 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001913 struct tipc_msg *msg = l_ptr->pmsg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001914 u32 msg_size = sizeof(l_ptr->proto_msg);
Allan Stephens75f0aa42011-02-28 15:30:20 -05001915 int r_flag;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001916
1917 if (link_blocked(l_ptr))
1918 return;
1919 msg_set_type(msg, msg_typ);
1920 msg_set_net_plane(msg, l_ptr->b_ptr->net_plane);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001921 msg_set_bcast_ack(msg, mod(l_ptr->owner->bclink.last_in));
Per Liden4323add2006-01-18 00:38:21 +01001922 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
Per Lidenb97bf3f2006-01-02 19:04:38 +01001923
1924 if (msg_typ == STATE_MSG) {
1925 u32 next_sent = mod(l_ptr->next_out_no);
1926
Per Liden4323add2006-01-18 00:38:21 +01001927 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001928 return;
1929 if (l_ptr->next_out)
1930 next_sent = msg_seqno(buf_msg(l_ptr->next_out));
1931 msg_set_next_sent(msg, next_sent);
1932 if (l_ptr->oldest_deferred_in) {
1933 u32 rec = msg_seqno(buf_msg(l_ptr->oldest_deferred_in));
1934 gap = mod(rec - mod(l_ptr->next_in_no));
1935 }
1936 msg_set_seq_gap(msg, gap);
1937 if (gap)
1938 l_ptr->stats.sent_nacks++;
1939 msg_set_link_tolerance(msg, tolerance);
1940 msg_set_linkprio(msg, priority);
1941 msg_set_max_pkt(msg, ack_mtu);
1942 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1943 msg_set_probe(msg, probe_msg != 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001944 if (probe_msg) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001945 u32 mtu = l_ptr->max_pkt;
1946
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001947 if ((mtu < l_ptr->max_pkt_target) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001948 link_working_working(l_ptr) &&
1949 l_ptr->fsm_msg_cnt) {
1950 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001951 if (l_ptr->max_pkt_probes == 10) {
1952 l_ptr->max_pkt_target = (msg_size - 4);
1953 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001954 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001955 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001956 l_ptr->max_pkt_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001957 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001958
1959 l_ptr->stats.sent_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001960 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001961 l_ptr->stats.sent_states++;
1962 } else { /* RESET_MSG or ACTIVATE_MSG */
1963 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
1964 msg_set_seq_gap(msg, 0);
1965 msg_set_next_sent(msg, 1);
Allan Stephensf23d9bf2011-01-18 15:15:34 -05001966 msg_set_probe(msg, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001967 msg_set_link_tolerance(msg, l_ptr->tolerance);
1968 msg_set_linkprio(msg, l_ptr->priority);
1969 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
1970 }
1971
Allan Stephens75f0aa42011-02-28 15:30:20 -05001972 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
1973 msg_set_redundant_link(msg, r_flag);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001974 msg_set_linkprio(msg, l_ptr->priority);
1975
1976 /* Ensure sequence number will not fit : */
1977
1978 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
1979
1980 /* Congestion? */
1981
Per Liden4323add2006-01-18 00:38:21 +01001982 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001983 if (!l_ptr->proto_msg_queue) {
1984 l_ptr->proto_msg_queue =
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001985 tipc_buf_acquire(sizeof(l_ptr->proto_msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001986 }
1987 buf = l_ptr->proto_msg_queue;
1988 if (!buf)
1989 return;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001990 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001991 return;
1992 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001993
1994 /* Message can be sent */
1995
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001996 buf = tipc_buf_acquire(msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001997 if (!buf)
1998 return;
1999
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002000 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002001 msg_set_size(buf_msg(buf), msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002002
Per Liden4323add2006-01-18 00:38:21 +01002003 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002004 l_ptr->unacked_window = 0;
2005 buf_discard(buf);
2006 return;
2007 }
2008
2009 /* New congestion */
Per Liden4323add2006-01-18 00:38:21 +01002010 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002011 l_ptr->proto_msg_queue = buf;
2012 l_ptr->stats.bearer_congs++;
2013}
2014
2015/*
2016 * Receive protocol message :
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002017 * Note that network plane id propagates through the network, and may
2018 * change at any time. The node with lowest address rules
Per Lidenb97bf3f2006-01-02 19:04:38 +01002019 */
2020
2021static void link_recv_proto_msg(struct link *l_ptr, struct sk_buff *buf)
2022{
2023 u32 rec_gap = 0;
2024 u32 max_pkt_info;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002025 u32 max_pkt_ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002026 u32 msg_tol;
2027 struct tipc_msg *msg = buf_msg(buf);
2028
Per Lidenb97bf3f2006-01-02 19:04:38 +01002029 if (link_blocked(l_ptr))
2030 goto exit;
2031
2032 /* record unnumbered packet arrival (force mismatch on next timeout) */
2033
2034 l_ptr->checkpoint--;
2035
2036 if (l_ptr->b_ptr->net_plane != msg_net_plane(msg))
2037 if (tipc_own_addr > msg_prevnode(msg))
2038 l_ptr->b_ptr->net_plane = msg_net_plane(msg);
2039
2040 l_ptr->owner->permit_changeover = msg_redundant_link(msg);
2041
2042 switch (msg_type(msg)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002043
Per Lidenb97bf3f2006-01-02 19:04:38 +01002044 case RESET_MSG:
Allan Stephensa686e682008-06-04 17:29:39 -07002045 if (!link_working_unknown(l_ptr) &&
2046 (l_ptr->peer_session != INVALID_SESSION)) {
Allan Stephensb29f1422010-12-31 18:59:25 +00002047 if (msg_session(msg) == l_ptr->peer_session)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002048 break; /* duplicate: ignore */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002049 }
2050 /* fall thru' */
2051 case ACTIVATE_MSG:
2052 /* Update link settings according other endpoint's values */
2053
2054 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
2055
Allan Stephens2db99832010-12-31 18:59:33 +00002056 msg_tol = msg_link_tolerance(msg);
2057 if (msg_tol > l_ptr->tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002058 link_set_supervision_props(l_ptr, msg_tol);
2059
2060 if (msg_linkprio(msg) > l_ptr->priority)
2061 l_ptr->priority = msg_linkprio(msg);
2062
2063 max_pkt_info = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002064 if (max_pkt_info) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002065 if (max_pkt_info < l_ptr->max_pkt_target)
2066 l_ptr->max_pkt_target = max_pkt_info;
2067 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
2068 l_ptr->max_pkt = l_ptr->max_pkt_target;
2069 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002070 l_ptr->max_pkt = l_ptr->max_pkt_target;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002071 }
2072 l_ptr->owner->bclink.supported = (max_pkt_info != 0);
2073
2074 link_state_event(l_ptr, msg_type(msg));
2075
2076 l_ptr->peer_session = msg_session(msg);
2077 l_ptr->peer_bearer_id = msg_bearer_id(msg);
2078
2079 /* Synchronize broadcast sequence numbers */
Paul Gortmaker8f19afb2011-02-28 11:36:21 -04002080 if (!tipc_node_redundant_links(l_ptr->owner))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002081 l_ptr->owner->bclink.last_in = mod(msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002082 break;
2083 case STATE_MSG:
2084
Allan Stephens2db99832010-12-31 18:59:33 +00002085 msg_tol = msg_link_tolerance(msg);
2086 if (msg_tol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002087 link_set_supervision_props(l_ptr, msg_tol);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002088
2089 if (msg_linkprio(msg) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002090 (msg_linkprio(msg) != l_ptr->priority)) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002091 warn("Resetting link <%s>, priority change %u->%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002092 l_ptr->name, l_ptr->priority, msg_linkprio(msg));
2093 l_ptr->priority = msg_linkprio(msg);
Per Liden4323add2006-01-18 00:38:21 +01002094 tipc_link_reset(l_ptr); /* Enforce change to take effect */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002095 break;
2096 }
2097 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
2098 l_ptr->stats.recv_states++;
2099 if (link_reset_unknown(l_ptr))
2100 break;
2101
2102 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002103 rec_gap = mod(msg_next_sent(msg) -
Per Lidenb97bf3f2006-01-02 19:04:38 +01002104 mod(l_ptr->next_in_no));
2105 }
2106
2107 max_pkt_ack = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002108 if (max_pkt_ack > l_ptr->max_pkt) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002109 l_ptr->max_pkt = max_pkt_ack;
2110 l_ptr->max_pkt_probes = 0;
2111 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002112
2113 max_pkt_ack = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002114 if (msg_probe(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002115 l_ptr->stats.recv_probes++;
Allan Stephensa0168922010-12-31 18:59:35 +00002116 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002117 max_pkt_ack = msg_size(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002118 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002119
2120 /* Protocol message before retransmits, reduce loss risk */
2121
Per Liden4323add2006-01-18 00:38:21 +01002122 tipc_bclink_check_gap(l_ptr->owner, msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002123
2124 if (rec_gap || (msg_probe(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01002125 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
2126 0, rec_gap, 0, 0, max_pkt_ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002127 }
2128 if (msg_seq_gap(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002129 l_ptr->stats.recv_nacks++;
Per Liden4323add2006-01-18 00:38:21 +01002130 tipc_link_retransmit(l_ptr, l_ptr->first_out,
2131 msg_seq_gap(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002132 }
2133 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002134 }
2135exit:
2136 buf_discard(buf);
2137}
2138
2139
2140/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002141 * tipc_link_tunnel(): Send one message via a link belonging to
Per Lidenb97bf3f2006-01-02 19:04:38 +01002142 * another bearer. Owner node is locked.
2143 */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002144static void tipc_link_tunnel(struct link *l_ptr,
2145 struct tipc_msg *tunnel_hdr,
2146 struct tipc_msg *msg,
2147 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002148{
2149 struct link *tunnel;
2150 struct sk_buff *buf;
2151 u32 length = msg_size(msg);
2152
2153 tunnel = l_ptr->owner->active_links[selector & 1];
Allan Stephens5392d642006-06-25 23:52:50 -07002154 if (!tipc_link_is_up(tunnel)) {
2155 warn("Link changeover error, "
2156 "tunnel link no longer available\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002157 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002158 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002159 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002160 buf = tipc_buf_acquire(length + INT_H_SIZE);
Allan Stephens5392d642006-06-25 23:52:50 -07002161 if (!buf) {
2162 warn("Link changeover error, "
2163 "unable to send tunnel msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002164 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002165 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002166 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
2167 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
Per Liden4323add2006-01-18 00:38:21 +01002168 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002169}
2170
2171
2172
2173/*
2174 * changeover(): Send whole message queue via the remaining link
2175 * Owner node is locked.
2176 */
2177
Per Liden4323add2006-01-18 00:38:21 +01002178void tipc_link_changeover(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002179{
2180 u32 msgcount = l_ptr->out_queue_size;
2181 struct sk_buff *crs = l_ptr->first_out;
2182 struct link *tunnel = l_ptr->owner->active_links[0];
Per Lidenb97bf3f2006-01-02 19:04:38 +01002183 struct tipc_msg tunnel_hdr;
Allan Stephens5392d642006-06-25 23:52:50 -07002184 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002185
2186 if (!tunnel)
2187 return;
2188
Allan Stephens5392d642006-06-25 23:52:50 -07002189 if (!l_ptr->owner->permit_changeover) {
2190 warn("Link changeover error, "
2191 "peer did not permit changeover\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002192 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002193 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002194
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002195 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002196 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002197 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2198 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07002199
Per Lidenb97bf3f2006-01-02 19:04:38 +01002200 if (!l_ptr->first_out) {
2201 struct sk_buff *buf;
2202
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002203 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002204 if (buf) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002205 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002206 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Per Liden4323add2006-01-18 00:38:21 +01002207 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002208 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002209 warn("Link changeover error, "
2210 "unable to send changeover msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002211 }
2212 return;
2213 }
Allan Stephensf1310722006-06-25 23:51:37 -07002214
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002215 split_bundles = (l_ptr->owner->active_links[0] !=
Allan Stephens5392d642006-06-25 23:52:50 -07002216 l_ptr->owner->active_links[1]);
2217
Per Lidenb97bf3f2006-01-02 19:04:38 +01002218 while (crs) {
2219 struct tipc_msg *msg = buf_msg(crs);
2220
2221 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002222 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00002223 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002224
Florian Westphald788d802007-08-02 19:28:06 -07002225 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002226 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00002227 msg_set_seqno(m, msg_seqno(msg));
Per Liden4323add2006-01-18 00:38:21 +01002228 tipc_link_tunnel(l_ptr, &tunnel_hdr, m,
2229 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002230 pos += align(msg_size(m));
2231 m = (struct tipc_msg *)pos;
2232 }
2233 } else {
Per Liden4323add2006-01-18 00:38:21 +01002234 tipc_link_tunnel(l_ptr, &tunnel_hdr, msg,
2235 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002236 }
2237 crs = crs->next;
2238 }
2239}
2240
Per Liden4323add2006-01-18 00:38:21 +01002241void tipc_link_send_duplicate(struct link *l_ptr, struct link *tunnel)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002242{
2243 struct sk_buff *iter;
2244 struct tipc_msg tunnel_hdr;
2245
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002246 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002247 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002248 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
2249 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2250 iter = l_ptr->first_out;
2251 while (iter) {
2252 struct sk_buff *outbuf;
2253 struct tipc_msg *msg = buf_msg(iter);
2254 u32 length = msg_size(msg);
2255
2256 if (msg_user(msg) == MSG_BUNDLER)
2257 msg_set_type(msg, CLOSED_MSG);
2258 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002259 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002260 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002261 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002262 if (outbuf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002263 warn("Link changeover error, "
2264 "unable to send duplicate msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002265 return;
2266 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002267 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
2268 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
2269 length);
Per Liden4323add2006-01-18 00:38:21 +01002270 tipc_link_send_buf(tunnel, outbuf);
2271 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002272 return;
2273 iter = iter->next;
2274 }
2275}
2276
2277
2278
2279/**
2280 * buf_extract - extracts embedded TIPC message from another message
2281 * @skb: encapsulating message buffer
2282 * @from_pos: offset to extract from
2283 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002284 * Returns a new message buffer containing an embedded message. The
Per Lidenb97bf3f2006-01-02 19:04:38 +01002285 * encapsulating message itself is left unchanged.
2286 */
2287
2288static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
2289{
2290 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
2291 u32 size = msg_size(msg);
2292 struct sk_buff *eb;
2293
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002294 eb = tipc_buf_acquire(size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002295 if (eb)
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002296 skb_copy_to_linear_data(eb, msg, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002297 return eb;
2298}
2299
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002300/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01002301 * link_recv_changeover_msg(): Receive tunneled packet sent
2302 * via other link. Node is locked. Return extracted buffer.
2303 */
2304
2305static int link_recv_changeover_msg(struct link **l_ptr,
2306 struct sk_buff **buf)
2307{
2308 struct sk_buff *tunnel_buf = *buf;
2309 struct link *dest_link;
2310 struct tipc_msg *msg;
2311 struct tipc_msg *tunnel_msg = buf_msg(tunnel_buf);
2312 u32 msg_typ = msg_type(tunnel_msg);
2313 u32 msg_count = msg_msgcnt(tunnel_msg);
2314
2315 dest_link = (*l_ptr)->owner->links[msg_bearer_id(tunnel_msg)];
Allan Stephensb29f1422010-12-31 18:59:25 +00002316 if (!dest_link)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002317 goto exit;
Allan Stephensf1310722006-06-25 23:51:37 -07002318 if (dest_link == *l_ptr) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002319 err("Unexpected changeover message on link <%s>\n",
Allan Stephensf1310722006-06-25 23:51:37 -07002320 (*l_ptr)->name);
2321 goto exit;
2322 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002323 *l_ptr = dest_link;
2324 msg = msg_get_wrapped(tunnel_msg);
2325
2326 if (msg_typ == DUPLICATE_MSG) {
Allan Stephensb29f1422010-12-31 18:59:25 +00002327 if (less(msg_seqno(msg), mod(dest_link->next_in_no)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002328 goto exit;
Allan Stephens0e659672010-12-31 18:59:32 +00002329 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002330 if (*buf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002331 warn("Link changeover error, duplicate msg dropped\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002332 goto exit;
2333 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002334 buf_discard(tunnel_buf);
2335 return 1;
2336 }
2337
2338 /* First original message ?: */
2339
Per Liden4323add2006-01-18 00:38:21 +01002340 if (tipc_link_is_up(dest_link)) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002341 info("Resetting link <%s>, changeover initiated by peer\n",
2342 dest_link->name);
Per Liden4323add2006-01-18 00:38:21 +01002343 tipc_link_reset(dest_link);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002344 dest_link->exp_msg_count = msg_count;
2345 if (!msg_count)
2346 goto exit;
2347 } else if (dest_link->exp_msg_count == START_CHANGEOVER) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002348 dest_link->exp_msg_count = msg_count;
2349 if (!msg_count)
2350 goto exit;
2351 }
2352
2353 /* Receive original message */
2354
2355 if (dest_link->exp_msg_count == 0) {
Allan Stephens5392d642006-06-25 23:52:50 -07002356 warn("Link switchover error, "
2357 "got too many tunnelled messages\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002358 goto exit;
2359 }
2360 dest_link->exp_msg_count--;
2361 if (less(msg_seqno(msg), dest_link->reset_checkpoint)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002362 goto exit;
2363 } else {
2364 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
2365 if (*buf != NULL) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002366 buf_discard(tunnel_buf);
2367 return 1;
2368 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002369 warn("Link changeover error, original msg dropped\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002370 }
2371 }
2372exit:
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002373 *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002374 buf_discard(tunnel_buf);
2375 return 0;
2376}
2377
2378/*
2379 * Bundler functionality:
2380 */
Per Liden4323add2006-01-18 00:38:21 +01002381void tipc_link_recv_bundle(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002382{
2383 u32 msgcount = msg_msgcnt(buf_msg(buf));
2384 u32 pos = INT_H_SIZE;
2385 struct sk_buff *obuf;
2386
Per Lidenb97bf3f2006-01-02 19:04:38 +01002387 while (msgcount--) {
2388 obuf = buf_extract(buf, pos);
2389 if (obuf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002390 warn("Link unable to unbundle message(s)\n");
2391 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002392 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002393 pos += align(msg_size(buf_msg(obuf)));
Per Liden4323add2006-01-18 00:38:21 +01002394 tipc_net_route_msg(obuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002395 }
2396 buf_discard(buf);
2397}
2398
2399/*
2400 * Fragmentation/defragmentation:
2401 */
2402
2403
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002404/*
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002405 * link_send_long_buf: Entry for buffers needing fragmentation.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002406 * The buffer is complete, inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002407 * Returns user data length.
2408 */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002409static int link_send_long_buf(struct link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002410{
Allan Stephens77561552011-04-17 13:06:23 -04002411 struct sk_buff *buf_chain = NULL;
2412 struct sk_buff *buf_chain_tail = (struct sk_buff *)&buf_chain;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002413 struct tipc_msg *inmsg = buf_msg(buf);
2414 struct tipc_msg fragm_hdr;
2415 u32 insize = msg_size(inmsg);
2416 u32 dsz = msg_data_sz(inmsg);
2417 unchar *crs = buf->data;
2418 u32 rest = insize;
Allan Stephens15e979d2010-05-11 14:30:10 +00002419 u32 pack_sz = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002420 u32 fragm_sz = pack_sz - INT_H_SIZE;
Allan Stephens77561552011-04-17 13:06:23 -04002421 u32 fragm_no = 0;
Allan Stephens9c396a72008-06-04 17:36:58 -07002422 u32 destaddr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002423
2424 if (msg_short(inmsg))
2425 destaddr = l_ptr->addr;
Allan Stephens9c396a72008-06-04 17:36:58 -07002426 else
2427 destaddr = msg_destnode(inmsg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002428
Per Lidenb97bf3f2006-01-02 19:04:38 +01002429 /* Prepare reusable fragment header: */
2430
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002431 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07002432 INT_H_SIZE, destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002433
2434 /* Chop up message: */
2435
2436 while (rest > 0) {
2437 struct sk_buff *fragm;
2438
2439 if (rest <= fragm_sz) {
2440 fragm_sz = rest;
2441 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
2442 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002443 fragm = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002444 if (fragm == NULL) {
Allan Stephens77561552011-04-17 13:06:23 -04002445 buf_discard(buf);
2446 while (buf_chain) {
2447 buf = buf_chain;
2448 buf_chain = buf_chain->next;
2449 buf_discard(buf);
2450 }
2451 return -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002452 }
2453 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
Allan Stephens77561552011-04-17 13:06:23 -04002454 fragm_no++;
2455 msg_set_fragm_no(&fragm_hdr, fragm_no);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002456 skb_copy_to_linear_data(fragm, &fragm_hdr, INT_H_SIZE);
2457 skb_copy_to_linear_data_offset(fragm, INT_H_SIZE, crs,
2458 fragm_sz);
Allan Stephens77561552011-04-17 13:06:23 -04002459 buf_chain_tail->next = fragm;
2460 buf_chain_tail = fragm;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002461
Per Lidenb97bf3f2006-01-02 19:04:38 +01002462 rest -= fragm_sz;
2463 crs += fragm_sz;
2464 msg_set_type(&fragm_hdr, FRAGMENT);
2465 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002466 buf_discard(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002467
2468 /* Append chain of fragments to send queue & send them */
2469
2470 l_ptr->long_msg_seq_no++;
2471 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
2472 l_ptr->stats.sent_fragments += fragm_no;
2473 l_ptr->stats.sent_fragmented++;
2474 tipc_link_push_queue(l_ptr);
2475
Per Lidenb97bf3f2006-01-02 19:04:38 +01002476 return dsz;
2477}
2478
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002479/*
2480 * A pending message being re-assembled must store certain values
2481 * to handle subsequent fragments correctly. The following functions
Per Lidenb97bf3f2006-01-02 19:04:38 +01002482 * help storing these values in unused, available fields in the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002483 * pending message. This makes dynamic memory allocation unnecessary.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002484 */
2485
Sam Ravnborg05790c62006-03-20 22:37:04 -08002486static void set_long_msg_seqno(struct sk_buff *buf, u32 seqno)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002487{
2488 msg_set_seqno(buf_msg(buf), seqno);
2489}
2490
Sam Ravnborg05790c62006-03-20 22:37:04 -08002491static u32 get_fragm_size(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002492{
2493 return msg_ack(buf_msg(buf));
2494}
2495
Sam Ravnborg05790c62006-03-20 22:37:04 -08002496static void set_fragm_size(struct sk_buff *buf, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002497{
2498 msg_set_ack(buf_msg(buf), sz);
2499}
2500
Sam Ravnborg05790c62006-03-20 22:37:04 -08002501static u32 get_expected_frags(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002502{
2503 return msg_bcast_ack(buf_msg(buf));
2504}
2505
Sam Ravnborg05790c62006-03-20 22:37:04 -08002506static void set_expected_frags(struct sk_buff *buf, u32 exp)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002507{
2508 msg_set_bcast_ack(buf_msg(buf), exp);
2509}
2510
Sam Ravnborg05790c62006-03-20 22:37:04 -08002511static u32 get_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002512{
2513 return msg_reroute_cnt(buf_msg(buf));
2514}
2515
Sam Ravnborg05790c62006-03-20 22:37:04 -08002516static void incr_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002517{
2518 msg_incr_reroute_cnt(buf_msg(buf));
2519}
2520
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002521/*
2522 * tipc_link_recv_fragment(): Called with node lock on. Returns
Per Lidenb97bf3f2006-01-02 19:04:38 +01002523 * the reassembled buffer if message is complete.
2524 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002525int tipc_link_recv_fragment(struct sk_buff **pending, struct sk_buff **fb,
Per Liden4323add2006-01-18 00:38:21 +01002526 struct tipc_msg **m)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002527{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002528 struct sk_buff *prev = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002529 struct sk_buff *fbuf = *fb;
2530 struct tipc_msg *fragm = buf_msg(fbuf);
2531 struct sk_buff *pbuf = *pending;
2532 u32 long_msg_seq_no = msg_long_msgno(fragm);
2533
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002534 *fb = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002535
2536 /* Is there an incomplete message waiting for this fragment? */
2537
Joe Perchesf64f9e72009-11-29 16:55:45 -08002538 while (pbuf && ((msg_seqno(buf_msg(pbuf)) != long_msg_seq_no) ||
2539 (msg_orignode(fragm) != msg_orignode(buf_msg(pbuf))))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002540 prev = pbuf;
2541 pbuf = pbuf->next;
2542 }
2543
2544 if (!pbuf && (msg_type(fragm) == FIRST_FRAGMENT)) {
2545 struct tipc_msg *imsg = (struct tipc_msg *)msg_data(fragm);
2546 u32 msg_sz = msg_size(imsg);
2547 u32 fragm_sz = msg_data_sz(fragm);
2548 u32 exp_fragm_cnt = msg_sz/fragm_sz + !!(msg_sz % fragm_sz);
Allan Stephens741d9eb2011-05-31 15:03:18 -04002549 u32 max = TIPC_MAX_USER_MSG_SIZE + NAMED_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002550 if (msg_type(imsg) == TIPC_MCAST_MSG)
2551 max = TIPC_MAX_USER_MSG_SIZE + MCAST_H_SIZE;
2552 if (msg_size(imsg) > max) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002553 buf_discard(fbuf);
2554 return 0;
2555 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002556 pbuf = tipc_buf_acquire(msg_size(imsg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002557 if (pbuf != NULL) {
2558 pbuf->next = *pending;
2559 *pending = pbuf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002560 skb_copy_to_linear_data(pbuf, imsg,
2561 msg_data_sz(fragm));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002562 /* Prepare buffer for subsequent fragments. */
2563
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002564 set_long_msg_seqno(pbuf, long_msg_seq_no);
Allan Stephens0e659672010-12-31 18:59:32 +00002565 set_fragm_size(pbuf, fragm_sz);
2566 set_expected_frags(pbuf, exp_fragm_cnt - 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002567 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002568 warn("Link unable to reassemble fragmented message\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002569 }
2570 buf_discard(fbuf);
2571 return 0;
2572 } else if (pbuf && (msg_type(fragm) != FIRST_FRAGMENT)) {
2573 u32 dsz = msg_data_sz(fragm);
2574 u32 fsz = get_fragm_size(pbuf);
2575 u32 crs = ((msg_fragm_no(fragm) - 1) * fsz);
2576 u32 exp_frags = get_expected_frags(pbuf) - 1;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002577 skb_copy_to_linear_data_offset(pbuf, crs,
2578 msg_data(fragm), dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002579 buf_discard(fbuf);
2580
2581 /* Is message complete? */
2582
2583 if (exp_frags == 0) {
2584 if (prev)
2585 prev->next = pbuf->next;
2586 else
2587 *pending = pbuf->next;
2588 msg_reset_reroute_cnt(buf_msg(pbuf));
2589 *fb = pbuf;
2590 *m = buf_msg(pbuf);
2591 return 1;
2592 }
Allan Stephens0e659672010-12-31 18:59:32 +00002593 set_expected_frags(pbuf, exp_frags);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002594 return 0;
2595 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002596 buf_discard(fbuf);
2597 return 0;
2598}
2599
2600/**
2601 * link_check_defragm_bufs - flush stale incoming message fragments
2602 * @l_ptr: pointer to link
2603 */
2604
2605static void link_check_defragm_bufs(struct link *l_ptr)
2606{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002607 struct sk_buff *prev = NULL;
2608 struct sk_buff *next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002609 struct sk_buff *buf = l_ptr->defragm_buf;
2610
2611 if (!buf)
2612 return;
2613 if (!link_working_working(l_ptr))
2614 return;
2615 while (buf) {
2616 u32 cnt = get_timer_cnt(buf);
2617
2618 next = buf->next;
2619 if (cnt < 4) {
2620 incr_timer_cnt(buf);
2621 prev = buf;
2622 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002623 if (prev)
2624 prev->next = buf->next;
2625 else
2626 l_ptr->defragm_buf = buf->next;
2627 buf_discard(buf);
2628 }
2629 buf = next;
2630 }
2631}
2632
2633
2634
2635static void link_set_supervision_props(struct link *l_ptr, u32 tolerance)
2636{
Allan Stephens5413b4c2011-01-18 13:24:55 -05002637 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
2638 return;
2639
Per Lidenb97bf3f2006-01-02 19:04:38 +01002640 l_ptr->tolerance = tolerance;
2641 l_ptr->continuity_interval =
2642 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
2643 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
2644}
2645
2646
Per Liden4323add2006-01-18 00:38:21 +01002647void tipc_link_set_queue_limits(struct link *l_ptr, u32 window)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002648{
2649 /* Data messages from this node, inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002650 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
2651 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
2652 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
2653 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002654 /* Transiting data messages,inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002655 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
2656 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
2657 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
2658 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002659 l_ptr->queue_limit[CONN_MANAGER] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002660 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
2661 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
2662 /* FRAGMENT and LAST_FRAGMENT packets */
2663 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
2664}
2665
2666/**
2667 * link_find_link - locate link by name
2668 * @name - ptr to link name string
2669 * @node - ptr to area to be filled with ptr to associated node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002670 *
Per Liden4323add2006-01-18 00:38:21 +01002671 * Caller must hold 'tipc_net_lock' to ensure node and bearer are not deleted;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002672 * this also prevents link deletion.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002673 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002674 * Returns pointer to link (or 0 if invalid link name).
2675 */
2676
David S. Miller6c000552008-09-02 23:38:32 -07002677static struct link *link_find_link(const char *name, struct tipc_node **node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002678{
2679 struct link_name link_name_parts;
Allan Stephens2d627b92011-01-07 13:00:11 -05002680 struct tipc_bearer *b_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002681 struct link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002682
2683 if (!link_name_validate(name, &link_name_parts))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002684 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002685
Per Liden4323add2006-01-18 00:38:21 +01002686 b_ptr = tipc_bearer_find_interface(link_name_parts.if_local);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002687 if (!b_ptr)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002688 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002689
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002690 *node = tipc_node_find(link_name_parts.addr_peer);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002691 if (!*node)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002692 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002693
2694 l_ptr = (*node)->links[b_ptr->identity];
2695 if (!l_ptr || strcmp(l_ptr->name, name))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002696 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002697
2698 return l_ptr;
2699}
2700
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002701struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
Per Liden4323add2006-01-18 00:38:21 +01002702 u16 cmd)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002703{
2704 struct tipc_link_config *args;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002705 u32 new_value;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002706 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002707 struct tipc_node *node;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002708 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002709
2710 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
Per Liden4323add2006-01-18 00:38:21 +01002711 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002712
2713 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2714 new_value = ntohl(args->value);
2715
Per Liden4323add2006-01-18 00:38:21 +01002716 if (!strcmp(args->name, tipc_bclink_name)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002717 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
Per Liden4323add2006-01-18 00:38:21 +01002718 (tipc_bclink_set_queue_limits(new_value) == 0))
2719 return tipc_cfg_reply_none();
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002720 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
Per Liden4323add2006-01-18 00:38:21 +01002721 " (cannot change setting on broadcast link)");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002722 }
2723
Per Liden4323add2006-01-18 00:38:21 +01002724 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002725 l_ptr = link_find_link(args->name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002726 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002727 read_unlock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002728 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002729 }
2730
Per Liden4323add2006-01-18 00:38:21 +01002731 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002732 res = -EINVAL;
2733 switch (cmd) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002734 case TIPC_CMD_SET_LINK_TOL:
2735 if ((new_value >= TIPC_MIN_LINK_TOL) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002736 (new_value <= TIPC_MAX_LINK_TOL)) {
2737 link_set_supervision_props(l_ptr, new_value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002738 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +01002739 0, 0, new_value, 0, 0);
Allan Stephens0e35fd52008-07-14 22:44:01 -07002740 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002741 }
2742 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002743 case TIPC_CMD_SET_LINK_PRI:
Per Liden16cb4b32006-01-13 22:22:22 +01002744 if ((new_value >= TIPC_MIN_LINK_PRI) &&
2745 (new_value <= TIPC_MAX_LINK_PRI)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002746 l_ptr->priority = new_value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002747 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +01002748 0, 0, 0, new_value, 0);
Allan Stephens0e35fd52008-07-14 22:44:01 -07002749 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002750 }
2751 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002752 case TIPC_CMD_SET_LINK_WINDOW:
2753 if ((new_value >= TIPC_MIN_LINK_WIN) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002754 (new_value <= TIPC_MAX_LINK_WIN)) {
Per Liden4323add2006-01-18 00:38:21 +01002755 tipc_link_set_queue_limits(l_ptr, new_value);
Allan Stephens0e35fd52008-07-14 22:44:01 -07002756 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002757 }
2758 break;
2759 }
Per Liden4323add2006-01-18 00:38:21 +01002760 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002761
Per Liden4323add2006-01-18 00:38:21 +01002762 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002763 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002764 return tipc_cfg_reply_error_string("cannot change link setting");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002765
Per Liden4323add2006-01-18 00:38:21 +01002766 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002767}
2768
2769/**
2770 * link_reset_statistics - reset link statistics
2771 * @l_ptr: pointer to link
2772 */
2773
2774static void link_reset_statistics(struct link *l_ptr)
2775{
2776 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2777 l_ptr->stats.sent_info = l_ptr->next_out_no;
2778 l_ptr->stats.recv_info = l_ptr->next_in_no;
2779}
2780
Per Liden4323add2006-01-18 00:38:21 +01002781struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002782{
2783 char *link_name;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002784 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002785 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002786
2787 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002788 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002789
2790 link_name = (char *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +01002791 if (!strcmp(link_name, tipc_bclink_name)) {
2792 if (tipc_bclink_reset_stats())
2793 return tipc_cfg_reply_error_string("link not found");
2794 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002795 }
2796
Per Liden4323add2006-01-18 00:38:21 +01002797 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002798 l_ptr = link_find_link(link_name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002799 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002800 read_unlock_bh(&tipc_net_lock);
2801 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002802 }
2803
Per Liden4323add2006-01-18 00:38:21 +01002804 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002805 link_reset_statistics(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +01002806 tipc_node_unlock(node);
2807 read_unlock_bh(&tipc_net_lock);
2808 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002809}
2810
2811/**
2812 * percent - convert count to a percentage of total (rounding up or down)
2813 */
2814
2815static u32 percent(u32 count, u32 total)
2816{
2817 return (count * 100 + (total / 2)) / total;
2818}
2819
2820/**
Per Liden4323add2006-01-18 00:38:21 +01002821 * tipc_link_stats - print link statistics
Per Lidenb97bf3f2006-01-02 19:04:38 +01002822 * @name: link name
2823 * @buf: print buffer area
2824 * @buf_size: size of print buffer area
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002825 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002826 * Returns length of print buffer data string (or 0 if error)
2827 */
2828
Per Liden4323add2006-01-18 00:38:21 +01002829static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002830{
2831 struct print_buf pb;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002832 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002833 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002834 char *status;
2835 u32 profile_total = 0;
2836
Per Liden4323add2006-01-18 00:38:21 +01002837 if (!strcmp(name, tipc_bclink_name))
2838 return tipc_bclink_stats(buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002839
Per Liden4323add2006-01-18 00:38:21 +01002840 tipc_printbuf_init(&pb, buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002841
Per Liden4323add2006-01-18 00:38:21 +01002842 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002843 l_ptr = link_find_link(name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002844 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002845 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002846 return 0;
2847 }
Per Liden4323add2006-01-18 00:38:21 +01002848 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002849
Per Liden4323add2006-01-18 00:38:21 +01002850 if (tipc_link_is_active(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002851 status = "ACTIVE";
Per Liden4323add2006-01-18 00:38:21 +01002852 else if (tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002853 status = "STANDBY";
2854 else
2855 status = "DEFUNCT";
2856 tipc_printf(&pb, "Link <%s>\n"
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002857 " %s MTU:%u Priority:%u Tolerance:%u ms"
2858 " Window:%u packets\n",
Allan Stephens15e979d2010-05-11 14:30:10 +00002859 l_ptr->name, status, l_ptr->max_pkt,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002860 l_ptr->priority, l_ptr->tolerance, l_ptr->queue_limit[0]);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002861 tipc_printf(&pb, " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002862 l_ptr->next_in_no - l_ptr->stats.recv_info,
2863 l_ptr->stats.recv_fragments,
2864 l_ptr->stats.recv_fragmented,
2865 l_ptr->stats.recv_bundles,
2866 l_ptr->stats.recv_bundled);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002867 tipc_printf(&pb, " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002868 l_ptr->next_out_no - l_ptr->stats.sent_info,
2869 l_ptr->stats.sent_fragments,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002870 l_ptr->stats.sent_fragmented,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002871 l_ptr->stats.sent_bundles,
2872 l_ptr->stats.sent_bundled);
2873 profile_total = l_ptr->stats.msg_length_counts;
2874 if (!profile_total)
2875 profile_total = 1;
2876 tipc_printf(&pb, " TX profile sample:%u packets average:%u octets\n"
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002877 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
Allan Stephens0f305bf2011-05-30 15:36:56 -04002878 "-16384:%u%% -32768:%u%% -66000:%u%%\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002879 l_ptr->stats.msg_length_counts,
2880 l_ptr->stats.msg_lengths_total / profile_total,
2881 percent(l_ptr->stats.msg_length_profile[0], profile_total),
2882 percent(l_ptr->stats.msg_length_profile[1], profile_total),
2883 percent(l_ptr->stats.msg_length_profile[2], profile_total),
2884 percent(l_ptr->stats.msg_length_profile[3], profile_total),
2885 percent(l_ptr->stats.msg_length_profile[4], profile_total),
2886 percent(l_ptr->stats.msg_length_profile[5], profile_total),
2887 percent(l_ptr->stats.msg_length_profile[6], profile_total));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002888 tipc_printf(&pb, " RX states:%u probes:%u naks:%u defs:%u dups:%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002889 l_ptr->stats.recv_states,
2890 l_ptr->stats.recv_probes,
2891 l_ptr->stats.recv_nacks,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002892 l_ptr->stats.deferred_recv,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002893 l_ptr->stats.duplicates);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002894 tipc_printf(&pb, " TX states:%u probes:%u naks:%u acks:%u dups:%u\n",
2895 l_ptr->stats.sent_states,
2896 l_ptr->stats.sent_probes,
2897 l_ptr->stats.sent_nacks,
2898 l_ptr->stats.sent_acks,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002899 l_ptr->stats.retransmitted);
2900 tipc_printf(&pb, " Congestion bearer:%u link:%u Send queue max:%u avg:%u\n",
2901 l_ptr->stats.bearer_congs,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002902 l_ptr->stats.link_congs,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002903 l_ptr->stats.max_queue_sz,
2904 l_ptr->stats.queue_sz_counts
2905 ? (l_ptr->stats.accu_queue_sz / l_ptr->stats.queue_sz_counts)
2906 : 0);
2907
Per Liden4323add2006-01-18 00:38:21 +01002908 tipc_node_unlock(node);
2909 read_unlock_bh(&tipc_net_lock);
2910 return tipc_printbuf_validate(&pb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002911}
2912
2913#define MAX_LINK_STATS_INFO 2000
2914
Per Liden4323add2006-01-18 00:38:21 +01002915struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002916{
2917 struct sk_buff *buf;
2918 struct tlv_desc *rep_tlv;
2919 int str_len;
2920
2921 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002922 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002923
Per Liden4323add2006-01-18 00:38:21 +01002924 buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_LINK_STATS_INFO));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002925 if (!buf)
2926 return NULL;
2927
2928 rep_tlv = (struct tlv_desc *)buf->data;
2929
Per Liden4323add2006-01-18 00:38:21 +01002930 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
2931 (char *)TLV_DATA(rep_tlv), MAX_LINK_STATS_INFO);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002932 if (!str_len) {
2933 buf_discard(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002934 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002935 }
2936
2937 skb_put(buf, TLV_SPACE(str_len));
2938 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
2939
2940 return buf;
2941}
2942
Per Lidenb97bf3f2006-01-02 19:04:38 +01002943/**
Per Liden4323add2006-01-18 00:38:21 +01002944 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
Per Lidenb97bf3f2006-01-02 19:04:38 +01002945 * @dest: network address of destination node
2946 * @selector: used to select from set of active links
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002947 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002948 * If no active link can be found, uses default maximum packet size.
2949 */
2950
Per Liden4323add2006-01-18 00:38:21 +01002951u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002952{
David S. Miller6c000552008-09-02 23:38:32 -07002953 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002954 struct link *l_ptr;
2955 u32 res = MAX_PKT_DEFAULT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002956
Per Lidenb97bf3f2006-01-02 19:04:38 +01002957 if (dest == tipc_own_addr)
2958 return MAX_MSG_SIZE;
2959
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002960 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00002961 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002962 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002963 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002964 l_ptr = n_ptr->active_links[selector & 1];
2965 if (l_ptr)
Allan Stephens15e979d2010-05-11 14:30:10 +00002966 res = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01002967 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002968 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002969 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002970 return res;
2971}
2972
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002973static void link_print(struct link *l_ptr, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002974{
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002975 char print_area[256];
2976 struct print_buf pb;
2977 struct print_buf *buf = &pb;
2978
2979 tipc_printbuf_init(buf, print_area, sizeof(print_area));
2980
Per Lidenb97bf3f2006-01-02 19:04:38 +01002981 tipc_printf(buf, str);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002982 tipc_printf(buf, "Link %x<%s>:",
Allan Stephens2d627b92011-01-07 13:00:11 -05002983 l_ptr->addr, l_ptr->b_ptr->name);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002984
2985#ifdef CONFIG_TIPC_DEBUG
2986 if (link_reset_reset(l_ptr) || link_reset_unknown(l_ptr))
2987 goto print_state;
2988
Per Lidenb97bf3f2006-01-02 19:04:38 +01002989 tipc_printf(buf, ": NXO(%u):", mod(l_ptr->next_out_no));
2990 tipc_printf(buf, "NXI(%u):", mod(l_ptr->next_in_no));
2991 tipc_printf(buf, "SQUE");
2992 if (l_ptr->first_out) {
2993 tipc_printf(buf, "[%u..", msg_seqno(buf_msg(l_ptr->first_out)));
2994 if (l_ptr->next_out)
2995 tipc_printf(buf, "%u..",
2996 msg_seqno(buf_msg(l_ptr->next_out)));
Allan Stephensb82834e2010-05-11 14:30:04 +00002997 tipc_printf(buf, "%u]", msg_seqno(buf_msg(l_ptr->last_out)));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002998 if ((mod(msg_seqno(buf_msg(l_ptr->last_out)) -
2999 msg_seqno(buf_msg(l_ptr->first_out)))
Joe Perchesf64f9e72009-11-29 16:55:45 -08003000 != (l_ptr->out_queue_size - 1)) ||
3001 (l_ptr->last_out->next != NULL)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01003002 tipc_printf(buf, "\nSend queue inconsistency\n");
Allan Stephensc8a61b52011-01-18 13:31:32 -05003003 tipc_printf(buf, "first_out= %p ", l_ptr->first_out);
3004 tipc_printf(buf, "next_out= %p ", l_ptr->next_out);
3005 tipc_printf(buf, "last_out= %p ", l_ptr->last_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003006 }
3007 } else
3008 tipc_printf(buf, "[]");
3009 tipc_printf(buf, "SQSIZ(%u)", l_ptr->out_queue_size);
3010 if (l_ptr->oldest_deferred_in) {
3011 u32 o = msg_seqno(buf_msg(l_ptr->oldest_deferred_in));
3012 u32 n = msg_seqno(buf_msg(l_ptr->newest_deferred_in));
3013 tipc_printf(buf, ":RQUE[%u..%u]", o, n);
3014 if (l_ptr->deferred_inqueue_sz != mod((n + 1) - o)) {
3015 tipc_printf(buf, ":RQSIZ(%u)",
3016 l_ptr->deferred_inqueue_sz);
3017 }
3018 }
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003019print_state:
3020#endif
3021
Per Lidenb97bf3f2006-01-02 19:04:38 +01003022 if (link_working_unknown(l_ptr))
3023 tipc_printf(buf, ":WU");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003024 else if (link_reset_reset(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003025 tipc_printf(buf, ":RR");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003026 else if (link_reset_unknown(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003027 tipc_printf(buf, ":RU");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003028 else if (link_working_working(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003029 tipc_printf(buf, ":WW");
3030 tipc_printf(buf, "\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003031
3032 tipc_printbuf_validate(buf);
3033 info("%s", print_area);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003034}
3035