blob: 87bf5aad704ba09a1eaa4f2ffac6366e57eb5050 [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 *
Jon Maloyc64f7a62012-11-16 13:51:31 +08004 * Copyright (c) 1996-2007, 2012, 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
Erik Hugne2cf8aa12012-06-29 00:16:37 -040044/*
45 * Error message prefixes
46 */
47static const char *link_co_err = "Link changeover error, ";
48static const char *link_rst_msg = "Resetting link ";
49static const char *link_unk_evt = "Unknown link event ";
Per Lidenb97bf3f2006-01-02 19:04:38 +010050
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090051/*
Allan Stephensa686e682008-06-04 17:29:39 -070052 * Out-of-range value for link session numbers
53 */
Allan Stephensa686e682008-06-04 17:29:39 -070054#define INVALID_SESSION 0x10000
55
56/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090057 * Link state events:
Per Lidenb97bf3f2006-01-02 19:04:38 +010058 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010059#define STARTING_EVT 856384768 /* link processing trigger */
60#define TRAFFIC_MSG_EVT 560815u /* rx'd ??? */
61#define TIMEOUT_EVT 560817u /* link timer expired */
62
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090063/*
64 * The following two 'message types' is really just implementation
65 * data conveniently stored in the message header.
Per Lidenb97bf3f2006-01-02 19:04:38 +010066 * They must not be considered part of the protocol
67 */
68#define OPEN_MSG 0
69#define CLOSED_MSG 1
70
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090071/*
Per Lidenb97bf3f2006-01-02 19:04:38 +010072 * State value stored in 'exp_msg_count'
73 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010074#define START_CHANGEOVER 100000u
75
76/**
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050077 * struct tipc_link_name - deconstructed link name
Per Lidenb97bf3f2006-01-02 19:04:38 +010078 * @addr_local: network address of node at this end
79 * @if_local: name of interface at this end
80 * @addr_peer: network address of node at far end
81 * @if_peer: name of interface at far end
82 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050083struct tipc_link_name {
Per Lidenb97bf3f2006-01-02 19:04:38 +010084 u32 addr_local;
85 char if_local[TIPC_MAX_IF_NAME];
86 u32 addr_peer;
87 char if_peer[TIPC_MAX_IF_NAME];
88};
89
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050090static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +010091 struct sk_buff *buf);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050092static void link_recv_proto_msg(struct tipc_link *l_ptr, struct sk_buff *buf);
93static int link_recv_changeover_msg(struct tipc_link **l_ptr,
94 struct sk_buff **buf);
95static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance);
Allan Stephens23dd4cc2011-01-07 11:43:40 -050096static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +010097 struct iovec const *msg_sect,
Allan Stephens26896902011-04-21 10:42:07 -050098 u32 num_sect, unsigned int total_len,
99 u32 destnode);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500100static void link_check_defragm_bufs(struct tipc_link *l_ptr);
101static void link_state_event(struct tipc_link *l_ptr, u32 event);
102static void link_reset_statistics(struct tipc_link *l_ptr);
103static void link_print(struct tipc_link *l_ptr, const char *str);
104static void link_start(struct tipc_link *l_ptr);
105static int link_send_long_buf(struct tipc_link *l_ptr, struct sk_buff *buf);
Jon Maloyc64f7a62012-11-16 13:51:31 +0800106static void tipc_link_send_sync(struct tipc_link *l);
107static void tipc_link_recv_sync(struct tipc_node *n, struct sk_buff *buf);
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000108
Per Lidenb97bf3f2006-01-02 19:04:38 +0100109/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800110 * Simple link routines
Per Lidenb97bf3f2006-01-02 19:04:38 +0100111 */
Sam Ravnborg05790c62006-03-20 22:37:04 -0800112static unsigned int align(unsigned int i)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100113{
114 return (i + 3) & ~3u;
115}
116
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500117static void link_init_max_pkt(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100118{
119 u32 max_pkt;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900120
Allan Stephens2d627b92011-01-07 13:00:11 -0500121 max_pkt = (l_ptr->b_ptr->mtu & ~3);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122 if (max_pkt > MAX_MSG_SIZE)
123 max_pkt = MAX_MSG_SIZE;
124
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900125 l_ptr->max_pkt_target = max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100126 if (l_ptr->max_pkt_target < MAX_PKT_DEFAULT)
127 l_ptr->max_pkt = l_ptr->max_pkt_target;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900128 else
Per Lidenb97bf3f2006-01-02 19:04:38 +0100129 l_ptr->max_pkt = MAX_PKT_DEFAULT;
130
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900131 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100132}
133
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500134static u32 link_next_sent(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100135{
136 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -0400137 return buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100138 return mod(l_ptr->next_out_no);
139}
140
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500141static u32 link_last_sent(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100142{
143 return mod(link_next_sent(l_ptr) - 1);
144}
145
146/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800147 * Simple non-static link routines (i.e. referenced outside this file)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100148 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500149int tipc_link_is_up(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100150{
151 if (!l_ptr)
152 return 0;
Eric Dumazeta02cec22010-09-22 20:43:57 +0000153 return link_working_working(l_ptr) || link_working_unknown(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100154}
155
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500156int tipc_link_is_active(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100157{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000158 return (l_ptr->owner->active_links[0] == l_ptr) ||
159 (l_ptr->owner->active_links[1] == l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100160}
161
162/**
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500163 * link_name_validate - validate & (optionally) deconstruct tipc_link name
Ben Hutchings2c530402012-07-10 10:55:09 +0000164 * @name: ptr to link name string
165 * @name_parts: ptr to area for link name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900166 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100167 * Returns 1 if link name is valid, otherwise 0.
168 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500169static int link_name_validate(const char *name,
170 struct tipc_link_name *name_parts)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100171{
172 char name_copy[TIPC_MAX_LINK_NAME];
173 char *addr_local;
174 char *if_local;
175 char *addr_peer;
176 char *if_peer;
177 char dummy;
178 u32 z_local, c_local, n_local;
179 u32 z_peer, c_peer, n_peer;
180 u32 if_local_len;
181 u32 if_peer_len;
182
183 /* copy link name & ensure length is OK */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100184 name_copy[TIPC_MAX_LINK_NAME - 1] = 0;
185 /* need above in case non-Posix strncpy() doesn't pad with nulls */
186 strncpy(name_copy, name, TIPC_MAX_LINK_NAME);
187 if (name_copy[TIPC_MAX_LINK_NAME - 1] != 0)
188 return 0;
189
190 /* ensure all component parts of link name are present */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100191 addr_local = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000192 if_local = strchr(addr_local, ':');
193 if (if_local == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100194 return 0;
195 *(if_local++) = 0;
Allan Stephens2db99832010-12-31 18:59:33 +0000196 addr_peer = strchr(if_local, '-');
197 if (addr_peer == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100198 return 0;
199 *(addr_peer++) = 0;
200 if_local_len = addr_peer - if_local;
Allan Stephens2db99832010-12-31 18:59:33 +0000201 if_peer = strchr(addr_peer, ':');
202 if (if_peer == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100203 return 0;
204 *(if_peer++) = 0;
205 if_peer_len = strlen(if_peer) + 1;
206
207 /* validate component parts of link name */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100208 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) ||
Ying Xuefc073932012-08-16 12:09:08 +0000215 (if_peer_len <= 1) || (if_peer_len > TIPC_MAX_IF_NAME))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100216 return 0;
217
218 /* return link name components, if necessary */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100219 if (name_parts) {
220 name_parts->addr_local = tipc_addr(z_local, c_local, n_local);
221 strcpy(name_parts->if_local, if_local);
222 name_parts->addr_peer = tipc_addr(z_peer, c_peer, n_peer);
223 strcpy(name_parts->if_peer, if_peer);
224 }
225 return 1;
226}
227
228/**
229 * link_timeout - handle expiration of link timer
230 * @l_ptr: pointer to link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900231 *
Per Liden4323add2006-01-18 00:38:21 +0100232 * This routine must not grab "tipc_net_lock" to avoid a potential deadlock conflict
233 * with tipc_link_delete(). (There is no risk that the node will be deleted by
234 * another thread because tipc_link_delete() always cancels the link timer before
235 * tipc_node_delete() is called.)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100236 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500237static void link_timeout(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100238{
Per Liden4323add2006-01-18 00:38:21 +0100239 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100240
241 /* update counters used in statistical profiling of send traffic */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100242 l_ptr->stats.accu_queue_sz += l_ptr->out_queue_size;
243 l_ptr->stats.queue_sz_counts++;
244
Per Lidenb97bf3f2006-01-02 19:04:38 +0100245 if (l_ptr->first_out) {
246 struct tipc_msg *msg = buf_msg(l_ptr->first_out);
247 u32 length = msg_size(msg);
248
Joe Perchesf64f9e72009-11-29 16:55:45 -0800249 if ((msg_user(msg) == MSG_FRAGMENTER) &&
250 (msg_type(msg) == FIRST_FRAGMENT)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100251 length = msg_size(msg_get_wrapped(msg));
252 }
253 if (length) {
254 l_ptr->stats.msg_lengths_total += length;
255 l_ptr->stats.msg_length_counts++;
256 if (length <= 64)
257 l_ptr->stats.msg_length_profile[0]++;
258 else if (length <= 256)
259 l_ptr->stats.msg_length_profile[1]++;
260 else if (length <= 1024)
261 l_ptr->stats.msg_length_profile[2]++;
262 else if (length <= 4096)
263 l_ptr->stats.msg_length_profile[3]++;
264 else if (length <= 16384)
265 l_ptr->stats.msg_length_profile[4]++;
266 else if (length <= 32768)
267 l_ptr->stats.msg_length_profile[5]++;
268 else
269 l_ptr->stats.msg_length_profile[6]++;
270 }
271 }
272
273 /* do all other link processing performed on a periodic basis */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100274 link_check_defragm_bufs(l_ptr);
275
276 link_state_event(l_ptr, TIMEOUT_EVT);
277
278 if (l_ptr->next_out)
Per Liden4323add2006-01-18 00:38:21 +0100279 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100280
Per Liden4323add2006-01-18 00:38:21 +0100281 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100282}
283
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500284static void link_set_timer(struct tipc_link *l_ptr, u32 time)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100285{
286 k_start_timer(&l_ptr->timer, time);
287}
288
289/**
Per Liden4323add2006-01-18 00:38:21 +0100290 * tipc_link_create - create a new link
Allan Stephens37b9c082011-02-28 11:32:27 -0500291 * @n_ptr: pointer to associated node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100292 * @b_ptr: pointer to associated bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100293 * @media_addr: media address to use when sending messages over link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900294 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100295 * Returns pointer to link.
296 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500297struct tipc_link *tipc_link_create(struct tipc_node *n_ptr,
Allan Stephens37b9c082011-02-28 11:32:27 -0500298 struct tipc_bearer *b_ptr,
Per Liden4323add2006-01-18 00:38:21 +0100299 const struct tipc_media_addr *media_addr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100300{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500301 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100302 struct tipc_msg *msg;
303 char *if_name;
Allan Stephens37b9c082011-02-28 11:32:27 -0500304 char addr_string[16];
305 u32 peer = n_ptr->addr;
306
307 if (n_ptr->link_cnt >= 2) {
308 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400309 pr_err("Attempt to establish third link to %s\n", addr_string);
Allan Stephens37b9c082011-02-28 11:32:27 -0500310 return NULL;
311 }
312
313 if (n_ptr->links[b_ptr->identity]) {
314 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400315 pr_err("Attempt to establish second link on <%s> to %s\n",
316 b_ptr->name, addr_string);
Allan Stephens37b9c082011-02-28 11:32:27 -0500317 return NULL;
318 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100319
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700320 l_ptr = kzalloc(sizeof(*l_ptr), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100321 if (!l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400322 pr_warn("Link creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100323 return NULL;
324 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100325
326 l_ptr->addr = peer;
Allan Stephens2d627b92011-01-07 13:00:11 -0500327 if_name = strchr(b_ptr->name, ':') + 1;
Allan Stephens062b4c92011-04-07 09:28:47 -0400328 sprintf(l_ptr->name, "%u.%u.%u:%s-%u.%u.%u:unknown",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100329 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900330 tipc_node(tipc_own_addr),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100331 if_name,
332 tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
Allan Stephens062b4c92011-04-07 09:28:47 -0400333 /* note: peer i/f name is updated by reset/activate message */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100334 memcpy(&l_ptr->media_addr, media_addr, sizeof(*media_addr));
Allan Stephens37b9c082011-02-28 11:32:27 -0500335 l_ptr->owner = n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100336 l_ptr->checkpoint = 1;
Allan Stephensf882cb762011-04-07 09:43:27 -0400337 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100338 l_ptr->b_ptr = b_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -0400339 link_set_supervision_props(l_ptr, b_ptr->tolerance);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100340 l_ptr->state = RESET_UNKNOWN;
341
342 l_ptr->pmsg = (struct tipc_msg *)&l_ptr->proto_msg;
343 msg = l_ptr->pmsg;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000344 tipc_msg_init(msg, LINK_PROTOCOL, RESET_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100345 msg_set_size(msg, sizeof(l_ptr->proto_msg));
Allan Stephensa686e682008-06-04 17:29:39 -0700346 msg_set_session(msg, (tipc_random & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100347 msg_set_bearer_id(msg, b_ptr->identity);
348 strcpy((char *)msg_data(msg), if_name);
349
350 l_ptr->priority = b_ptr->priority;
Allan Stephens5c216e12011-10-18 11:34:29 -0400351 tipc_link_set_queue_limits(l_ptr, b_ptr->window);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100352
353 link_init_max_pkt(l_ptr);
354
355 l_ptr->next_out_no = 1;
356 INIT_LIST_HEAD(&l_ptr->waiting_ports);
357
358 link_reset_statistics(l_ptr);
359
Allan Stephens37b9c082011-02-28 11:32:27 -0500360 tipc_node_attach_link(n_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100361
Florian Westphal945710652007-07-26 00:05:07 -0700362 k_init_timer(&l_ptr->timer, (Handler)link_timeout, (unsigned long)l_ptr);
363 list_add_tail(&l_ptr->link_list, &b_ptr->links);
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000364 tipc_k_signal((Handler)link_start, (unsigned long)l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100365
Per Lidenb97bf3f2006-01-02 19:04:38 +0100366 return l_ptr;
367}
368
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900369/**
Per Liden4323add2006-01-18 00:38:21 +0100370 * tipc_link_delete - delete a link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100371 * @l_ptr: pointer to link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900372 *
Per Liden4323add2006-01-18 00:38:21 +0100373 * Note: 'tipc_net_lock' is write_locked, bearer is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100374 * This routine must not grab the node lock until after link timer cancellation
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900375 * to avoid a potential deadlock situation.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100376 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500377void tipc_link_delete(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100378{
379 if (!l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400380 pr_err("Attempt to delete non-existent link\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100381 return;
382 }
383
Per Lidenb97bf3f2006-01-02 19:04:38 +0100384 k_cancel_timer(&l_ptr->timer);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900385
Per Liden4323add2006-01-18 00:38:21 +0100386 tipc_node_lock(l_ptr->owner);
387 tipc_link_reset(l_ptr);
388 tipc_node_detach_link(l_ptr->owner, l_ptr);
389 tipc_link_stop(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100390 list_del_init(&l_ptr->link_list);
Per Liden4323add2006-01-18 00:38:21 +0100391 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100392 k_term_timer(&l_ptr->timer);
393 kfree(l_ptr);
394}
395
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500396static void link_start(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100397{
Allan Stephens214dda42011-01-24 16:22:43 -0500398 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100399 link_state_event(l_ptr, STARTING_EVT);
Allan Stephens214dda42011-01-24 16:22:43 -0500400 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100401}
402
403/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900404 * link_schedule_port - schedule port for deferred sending
Per Lidenb97bf3f2006-01-02 19:04:38 +0100405 * @l_ptr: pointer to link
406 * @origport: reference to sending port
407 * @sz: amount of data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900408 *
409 * Schedules port for renewed sending of messages after link congestion
Per Lidenb97bf3f2006-01-02 19:04:38 +0100410 * has abated.
411 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500412static int link_schedule_port(struct tipc_link *l_ptr, u32 origport, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100413{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500414 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100415
Per Liden4323add2006-01-18 00:38:21 +0100416 spin_lock_bh(&tipc_port_list_lock);
417 p_ptr = tipc_port_lock(origport);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100418 if (p_ptr) {
419 if (!p_ptr->wakeup)
420 goto exit;
421 if (!list_empty(&p_ptr->wait_list))
422 goto exit;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500423 p_ptr->congested = 1;
Allan Stephens15e979d2010-05-11 14:30:10 +0000424 p_ptr->waiting_pkts = 1 + ((sz - 1) / l_ptr->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100425 list_add_tail(&p_ptr->wait_list, &l_ptr->waiting_ports);
426 l_ptr->stats.link_congs++;
427exit:
Per Liden4323add2006-01-18 00:38:21 +0100428 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100429 }
Per Liden4323add2006-01-18 00:38:21 +0100430 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100431 return -ELINKCONG;
432}
433
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500434void tipc_link_wakeup_ports(struct tipc_link *l_ptr, int all)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100435{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500436 struct tipc_port *p_ptr;
437 struct tipc_port *temp_p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100438 int win = l_ptr->queue_limit[0] - l_ptr->out_queue_size;
439
440 if (all)
441 win = 100000;
442 if (win <= 0)
443 return;
Per Liden4323add2006-01-18 00:38:21 +0100444 if (!spin_trylock_bh(&tipc_port_list_lock))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100445 return;
446 if (link_congested(l_ptr))
447 goto exit;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900448 list_for_each_entry_safe(p_ptr, temp_p_ptr, &l_ptr->waiting_ports,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100449 wait_list) {
450 if (win <= 0)
451 break;
452 list_del_init(&p_ptr->wait_list);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500453 spin_lock_bh(p_ptr->lock);
454 p_ptr->congested = 0;
455 p_ptr->wakeup(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100456 win -= p_ptr->waiting_pkts;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500457 spin_unlock_bh(p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100458 }
459
460exit:
Per Liden4323add2006-01-18 00:38:21 +0100461 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100462}
463
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900464/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100465 * link_release_outqueue - purge link's outbound message queue
466 * @l_ptr: pointer to link
467 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500468static void link_release_outqueue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100469{
470 struct sk_buff *buf = l_ptr->first_out;
471 struct sk_buff *next;
472
473 while (buf) {
474 next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400475 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100476 buf = next;
477 }
478 l_ptr->first_out = NULL;
479 l_ptr->out_queue_size = 0;
480}
481
482/**
Per Liden4323add2006-01-18 00:38:21 +0100483 * tipc_link_reset_fragments - purge link's inbound message fragments queue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100484 * @l_ptr: pointer to link
485 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500486void tipc_link_reset_fragments(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100487{
488 struct sk_buff *buf = l_ptr->defragm_buf;
489 struct sk_buff *next;
490
491 while (buf) {
492 next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400493 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100494 buf = next;
495 }
496 l_ptr->defragm_buf = NULL;
497}
498
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900499/**
Per Liden4323add2006-01-18 00:38:21 +0100500 * tipc_link_stop - purge all inbound and outbound messages associated with link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100501 * @l_ptr: pointer to link
502 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500503void tipc_link_stop(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100504{
505 struct sk_buff *buf;
506 struct sk_buff *next;
507
508 buf = l_ptr->oldest_deferred_in;
509 while (buf) {
510 next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400511 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100512 buf = next;
513 }
514
515 buf = l_ptr->first_out;
516 while (buf) {
517 next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400518 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100519 buf = next;
520 }
521
Per Liden4323add2006-01-18 00:38:21 +0100522 tipc_link_reset_fragments(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100523
Allan Stephens5f6d9122011-11-04 13:24:29 -0400524 kfree_skb(l_ptr->proto_msg_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100525 l_ptr->proto_msg_queue = NULL;
526}
527
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500528void tipc_link_reset(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100529{
530 struct sk_buff *buf;
531 u32 prev_state = l_ptr->state;
532 u32 checkpoint = l_ptr->next_in_no;
Allan Stephens5392d642006-06-25 23:52:50 -0700533 int was_active_link = tipc_link_is_active(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900534
Allan Stephensa686e682008-06-04 17:29:39 -0700535 msg_set_session(l_ptr->pmsg, ((msg_session(l_ptr->pmsg) + 1) & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100536
Allan Stephensa686e682008-06-04 17:29:39 -0700537 /* Link is down, accept any session */
538 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100539
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900540 /* Prepare for max packet size negotiation */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100541 link_init_max_pkt(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900542
Per Lidenb97bf3f2006-01-02 19:04:38 +0100543 l_ptr->state = RESET_UNKNOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100544
545 if ((prev_state == RESET_UNKNOWN) || (prev_state == RESET_RESET))
546 return;
547
Per Liden4323add2006-01-18 00:38:21 +0100548 tipc_node_link_down(l_ptr->owner, l_ptr);
549 tipc_bearer_remove_dest(l_ptr->b_ptr, l_ptr->addr);
Paul Gortmaker7368ddf2010-10-12 14:25:58 +0000550
Paul Gortmaker8f19afb2011-02-28 11:36:21 -0400551 if (was_active_link && tipc_node_active_links(l_ptr->owner) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100552 l_ptr->owner->permit_changeover) {
553 l_ptr->reset_checkpoint = checkpoint;
554 l_ptr->exp_msg_count = START_CHANGEOVER;
555 }
556
557 /* Clean up all queues: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100558 link_release_outqueue(l_ptr);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400559 kfree_skb(l_ptr->proto_msg_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100560 l_ptr->proto_msg_queue = NULL;
561 buf = l_ptr->oldest_deferred_in;
562 while (buf) {
563 struct sk_buff *next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400564 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100565 buf = next;
566 }
567 if (!list_empty(&l_ptr->waiting_ports))
Per Liden4323add2006-01-18 00:38:21 +0100568 tipc_link_wakeup_ports(l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100569
570 l_ptr->retransm_queue_head = 0;
571 l_ptr->retransm_queue_size = 0;
572 l_ptr->last_out = NULL;
573 l_ptr->first_out = NULL;
574 l_ptr->next_out = NULL;
575 l_ptr->unacked_window = 0;
576 l_ptr->checkpoint = 1;
577 l_ptr->next_out_no = 1;
578 l_ptr->deferred_inqueue_sz = 0;
579 l_ptr->oldest_deferred_in = NULL;
580 l_ptr->newest_deferred_in = NULL;
581 l_ptr->fsm_msg_cnt = 0;
582 l_ptr->stale_count = 0;
583 link_reset_statistics(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100584}
585
586
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500587static void link_activate(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100588{
Allan Stephens5392d642006-06-25 23:52:50 -0700589 l_ptr->next_in_no = l_ptr->stats.recv_info = 1;
Per Liden4323add2006-01-18 00:38:21 +0100590 tipc_node_link_up(l_ptr->owner, l_ptr);
591 tipc_bearer_add_dest(l_ptr->b_ptr, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100592}
593
594/**
595 * link_state_event - link finite state machine
596 * @l_ptr: pointer to link
597 * @event: state machine event to process
598 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000599static void link_state_event(struct tipc_link *l_ptr, unsigned int event)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100600{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500601 struct tipc_link *other;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100602 u32 cont_intv = l_ptr->continuity_interval;
603
604 if (!l_ptr->started && (event != STARTING_EVT))
605 return; /* Not yet. */
606
607 if (link_blocked(l_ptr)) {
Allan Stephensa0168922010-12-31 18:59:35 +0000608 if (event == TIMEOUT_EVT)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100609 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100610 return; /* Changeover going on */
611 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100612
613 switch (l_ptr->state) {
614 case WORKING_WORKING:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100615 switch (event) {
616 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100617 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100618 break;
619 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100620 if (l_ptr->next_in_no != l_ptr->checkpoint) {
621 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100622 if (tipc_bclink_acks_missing(l_ptr->owner)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900623 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100624 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100625 l_ptr->fsm_msg_cnt++;
626 } else if (l_ptr->max_pkt < l_ptr->max_pkt_target) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900627 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100628 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100629 l_ptr->fsm_msg_cnt++;
630 }
631 link_set_timer(l_ptr, cont_intv);
632 break;
633 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100634 l_ptr->state = WORKING_UNKNOWN;
635 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100636 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100637 l_ptr->fsm_msg_cnt++;
638 link_set_timer(l_ptr, cont_intv / 4);
639 break;
640 case RESET_MSG:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400641 pr_info("%s<%s>, requested by peer\n", link_rst_msg,
642 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100643 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100644 l_ptr->state = RESET_RESET;
645 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100646 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100647 l_ptr->fsm_msg_cnt++;
648 link_set_timer(l_ptr, cont_intv);
649 break;
650 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400651 pr_err("%s%u in WW state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100652 }
653 break;
654 case WORKING_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100655 switch (event) {
656 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100657 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100658 l_ptr->state = WORKING_WORKING;
659 l_ptr->fsm_msg_cnt = 0;
660 link_set_timer(l_ptr, cont_intv);
661 break;
662 case RESET_MSG:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400663 pr_info("%s<%s>, requested by peer while probing\n",
664 link_rst_msg, l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100665 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100666 l_ptr->state = RESET_RESET;
667 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100668 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100669 l_ptr->fsm_msg_cnt++;
670 link_set_timer(l_ptr, cont_intv);
671 break;
672 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100673 if (l_ptr->next_in_no != l_ptr->checkpoint) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100674 l_ptr->state = WORKING_WORKING;
675 l_ptr->fsm_msg_cnt = 0;
676 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100677 if (tipc_bclink_acks_missing(l_ptr->owner)) {
678 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
679 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100680 l_ptr->fsm_msg_cnt++;
681 }
682 link_set_timer(l_ptr, cont_intv);
683 } else if (l_ptr->fsm_msg_cnt < l_ptr->abort_limit) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900684 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100685 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100686 l_ptr->fsm_msg_cnt++;
687 link_set_timer(l_ptr, cont_intv / 4);
688 } else { /* Link has failed */
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400689 pr_warn("%s<%s>, peer not responding\n",
690 link_rst_msg, l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100691 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100692 l_ptr->state = RESET_UNKNOWN;
693 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100694 tipc_link_send_proto_msg(l_ptr, RESET_MSG,
695 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100696 l_ptr->fsm_msg_cnt++;
697 link_set_timer(l_ptr, cont_intv);
698 }
699 break;
700 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400701 pr_err("%s%u in WU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100702 }
703 break;
704 case RESET_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100705 switch (event) {
706 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100707 break;
708 case ACTIVATE_MSG:
709 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000710 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100711 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100712 l_ptr->state = WORKING_WORKING;
713 l_ptr->fsm_msg_cnt = 0;
714 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100715 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100716 l_ptr->fsm_msg_cnt++;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800717 if (l_ptr->owner->working_links == 1)
718 tipc_link_send_sync(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100719 link_set_timer(l_ptr, cont_intv);
720 break;
721 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100722 l_ptr->state = RESET_RESET;
723 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100724 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100725 l_ptr->fsm_msg_cnt++;
726 link_set_timer(l_ptr, cont_intv);
727 break;
728 case STARTING_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100729 l_ptr->started = 1;
730 /* fall through */
731 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100732 tipc_link_send_proto_msg(l_ptr, RESET_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100733 l_ptr->fsm_msg_cnt++;
734 link_set_timer(l_ptr, cont_intv);
735 break;
736 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400737 pr_err("%s%u in RU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100738 }
739 break;
740 case RESET_RESET:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100741 switch (event) {
742 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100743 case ACTIVATE_MSG:
744 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000745 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100746 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100747 l_ptr->state = WORKING_WORKING;
748 l_ptr->fsm_msg_cnt = 0;
749 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100750 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100751 l_ptr->fsm_msg_cnt++;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800752 if (l_ptr->owner->working_links == 1)
753 tipc_link_send_sync(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100754 link_set_timer(l_ptr, cont_intv);
755 break;
756 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100757 break;
758 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100759 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100760 l_ptr->fsm_msg_cnt++;
761 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100762 break;
763 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400764 pr_err("%s%u in RR state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100765 }
766 break;
767 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400768 pr_err("Unknown link state %u/%u\n", l_ptr->state, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100769 }
770}
771
772/*
773 * link_bundle_buf(): Append contents of a buffer to
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900774 * the tail of an existing one.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100775 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500776static int link_bundle_buf(struct tipc_link *l_ptr,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900777 struct sk_buff *bundler,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100778 struct sk_buff *buf)
779{
780 struct tipc_msg *bundler_msg = buf_msg(bundler);
781 struct tipc_msg *msg = buf_msg(buf);
782 u32 size = msg_size(msg);
Allan Stephense49060c2006-06-29 12:32:46 -0700783 u32 bundle_size = msg_size(bundler_msg);
784 u32 to_pos = align(bundle_size);
785 u32 pad = to_pos - bundle_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100786
787 if (msg_user(bundler_msg) != MSG_BUNDLER)
788 return 0;
789 if (msg_type(bundler_msg) != OPEN_MSG)
790 return 0;
Allan Stephense49060c2006-06-29 12:32:46 -0700791 if (skb_tailroom(bundler) < (pad + size))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100792 return 0;
Allan Stephens15e979d2010-05-11 14:30:10 +0000793 if (l_ptr->max_pkt < (to_pos + size))
Allan Stephens863fae62006-07-03 19:39:36 -0700794 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100795
Allan Stephense49060c2006-06-29 12:32:46 -0700796 skb_put(bundler, pad + size);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300797 skb_copy_to_linear_data_offset(bundler, to_pos, buf->data, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100798 msg_set_size(bundler_msg, to_pos + size);
799 msg_set_msgcnt(bundler_msg, msg_msgcnt(bundler_msg) + 1);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400800 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100801 l_ptr->stats.sent_bundled++;
802 return 1;
803}
804
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500805static void link_add_to_outqueue(struct tipc_link *l_ptr,
Sam Ravnborg05790c62006-03-20 22:37:04 -0800806 struct sk_buff *buf,
807 struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100808{
809 u32 ack = mod(l_ptr->next_in_no - 1);
810 u32 seqno = mod(l_ptr->next_out_no++);
811
812 msg_set_word(msg, 2, ((ack << 16) | seqno));
813 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
814 buf->next = NULL;
815 if (l_ptr->first_out) {
816 l_ptr->last_out->next = buf;
817 l_ptr->last_out = buf;
818 } else
819 l_ptr->first_out = l_ptr->last_out = buf;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500820
Per Lidenb97bf3f2006-01-02 19:04:38 +0100821 l_ptr->out_queue_size++;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500822 if (l_ptr->out_queue_size > l_ptr->stats.max_queue_sz)
823 l_ptr->stats.max_queue_sz = l_ptr->out_queue_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100824}
825
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500826static void link_add_chain_to_outqueue(struct tipc_link *l_ptr,
Allan Stephensdc63d912011-04-21 11:50:42 -0400827 struct sk_buff *buf_chain,
828 u32 long_msgno)
829{
830 struct sk_buff *buf;
831 struct tipc_msg *msg;
832
833 if (!l_ptr->next_out)
834 l_ptr->next_out = buf_chain;
835 while (buf_chain) {
836 buf = buf_chain;
837 buf_chain = buf_chain->next;
838
839 msg = buf_msg(buf);
840 msg_set_long_msgno(msg, long_msgno);
841 link_add_to_outqueue(l_ptr, buf, msg);
842 }
843}
844
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900845/*
846 * tipc_link_send_buf() is the 'full path' for messages, called from
Per Lidenb97bf3f2006-01-02 19:04:38 +0100847 * inside TIPC when the 'fast path' in tipc_send_buf
848 * has failed, and from link_send()
849 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500850int tipc_link_send_buf(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100851{
852 struct tipc_msg *msg = buf_msg(buf);
853 u32 size = msg_size(msg);
854 u32 dsz = msg_data_sz(msg);
855 u32 queue_size = l_ptr->out_queue_size;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000856 u32 imp = tipc_msg_tot_importance(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100857 u32 queue_limit = l_ptr->queue_limit[imp];
Allan Stephens15e979d2010-05-11 14:30:10 +0000858 u32 max_packet = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100859
Per Lidenb97bf3f2006-01-02 19:04:38 +0100860 /* Match msg importance against queue limits: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100861 if (unlikely(queue_size >= queue_limit)) {
862 if (imp <= TIPC_CRITICAL_IMPORTANCE) {
Allan Stephensbebc55a2011-04-19 10:17:58 -0400863 link_schedule_port(l_ptr, msg_origport(msg), size);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400864 kfree_skb(buf);
Allan Stephensbebc55a2011-04-19 10:17:58 -0400865 return -ELINKCONG;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100866 }
Allan Stephens5f6d9122011-11-04 13:24:29 -0400867 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100868 if (imp > CONN_MANAGER) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400869 pr_warn("%s<%s>, send queue full", link_rst_msg,
870 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100871 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100872 }
873 return dsz;
874 }
875
876 /* Fragmentation needed ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100877 if (size > max_packet)
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000878 return link_send_long_buf(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100879
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400880 /* Packet can be queued or sent. */
Ying Xue3c294cb2012-11-15 11:34:45 +0800881 if (likely(!tipc_bearer_blocked(l_ptr->b_ptr) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100882 !link_congested(l_ptr))) {
883 link_add_to_outqueue(l_ptr, buf, msg);
884
Ying Xue3c294cb2012-11-15 11:34:45 +0800885 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
886 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100887 return dsz;
888 }
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400889 /* Congestion: can message be bundled ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100890 if ((msg_user(msg) != CHANGEOVER_PROTOCOL) &&
891 (msg_user(msg) != MSG_FRAGMENTER)) {
892
893 /* Try adding message to an existing bundle */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900894 if (l_ptr->next_out &&
Ying Xue3c294cb2012-11-15 11:34:45 +0800895 link_bundle_buf(l_ptr, l_ptr->last_out, buf))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100896 return dsz;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100897
898 /* Try creating a new bundle */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100899 if (size <= max_packet * 2 / 3) {
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000900 struct sk_buff *bundler = tipc_buf_acquire(max_packet);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100901 struct tipc_msg bundler_hdr;
902
903 if (bundler) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000904 tipc_msg_init(&bundler_hdr, MSG_BUNDLER, OPEN_MSG,
Allan Stephens75715212008-06-04 17:37:34 -0700905 INT_H_SIZE, l_ptr->addr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300906 skb_copy_to_linear_data(bundler, &bundler_hdr,
907 INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100908 skb_trim(bundler, INT_H_SIZE);
909 link_bundle_buf(l_ptr, bundler, buf);
910 buf = bundler;
911 msg = buf_msg(buf);
912 l_ptr->stats.sent_bundles++;
913 }
914 }
915 }
916 if (!l_ptr->next_out)
917 l_ptr->next_out = buf;
918 link_add_to_outqueue(l_ptr, buf, msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100919 return dsz;
920}
921
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900922/*
923 * tipc_link_send(): same as tipc_link_send_buf(), but the link to use has
Per Lidenb97bf3f2006-01-02 19:04:38 +0100924 * not been selected yet, and the the owner node is not locked
925 * Called by TIPC internal users, e.g. the name distributor
926 */
Per Liden4323add2006-01-18 00:38:21 +0100927int tipc_link_send(struct sk_buff *buf, u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100928{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500929 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700930 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100931 int res = -ELINKCONG;
932
Per Liden4323add2006-01-18 00:38:21 +0100933 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000934 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100935 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +0100936 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100937 l_ptr = n_ptr->active_links[selector & 1];
Allan Stephensa0168922010-12-31 18:59:35 +0000938 if (l_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100939 res = tipc_link_send_buf(l_ptr, buf);
Allan Stephensa0168922010-12-31 18:59:35 +0000940 else
Allan Stephens5f6d9122011-11-04 13:24:29 -0400941 kfree_skb(buf);
Per Liden4323add2006-01-18 00:38:21 +0100942 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100943 } else {
Allan Stephens5f6d9122011-11-04 13:24:29 -0400944 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100945 }
Per Liden4323add2006-01-18 00:38:21 +0100946 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100947 return res;
948}
949
Jon Maloyc64f7a62012-11-16 13:51:31 +0800950/*
951 * tipc_link_send_sync - synchronize broadcast link endpoints.
952 *
953 * Give a newly added peer node the sequence number where it should
954 * start receiving and acking broadcast packets.
955 *
956 * Called with node locked
957 */
958static void tipc_link_send_sync(struct tipc_link *l)
959{
960 struct sk_buff *buf;
961 struct tipc_msg *msg;
962
963 buf = tipc_buf_acquire(INT_H_SIZE);
964 if (!buf)
965 return;
966
967 msg = buf_msg(buf);
968 tipc_msg_init(msg, BCAST_PROTOCOL, STATE_MSG, INT_H_SIZE, l->addr);
969 msg_set_last_bcast(msg, l->owner->bclink.acked);
970 link_add_chain_to_outqueue(l, buf, 0);
971 tipc_link_push_queue(l);
972}
973
974/*
975 * tipc_link_recv_sync - synchronize broadcast link endpoints.
976 * Receive the sequence number where we should start receiving and
977 * acking broadcast packets from a newly added peer node, and open
978 * up for reception of such packets.
979 *
980 * Called with node locked
981 */
982static void tipc_link_recv_sync(struct tipc_node *n, struct sk_buff *buf)
983{
984 struct tipc_msg *msg = buf_msg(buf);
985
986 n->bclink.last_sent = n->bclink.last_in = msg_last_bcast(msg);
987 n->bclink.recv_permitted = true;
988 kfree_skb(buf);
989}
990
991/*
Allan Stephens9aa88c22011-05-31 13:38:02 -0400992 * tipc_link_send_names - send name table entries to new neighbor
993 *
994 * Send routine for bulk delivery of name table messages when contact
995 * with a new neighbor occurs. No link congestion checking is performed
996 * because name table messages *must* be delivered. The messages must be
997 * small enough not to require fragmentation.
998 * Called without any locks held.
999 */
Allan Stephens9aa88c22011-05-31 13:38:02 -04001000void tipc_link_send_names(struct list_head *message_list, u32 dest)
1001{
1002 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001003 struct tipc_link *l_ptr;
Allan Stephens9aa88c22011-05-31 13:38:02 -04001004 struct sk_buff *buf;
1005 struct sk_buff *temp_buf;
1006
1007 if (list_empty(message_list))
1008 return;
1009
1010 read_lock_bh(&tipc_net_lock);
1011 n_ptr = tipc_node_find(dest);
1012 if (n_ptr) {
1013 tipc_node_lock(n_ptr);
1014 l_ptr = n_ptr->active_links[0];
1015 if (l_ptr) {
1016 /* convert circular list to linear list */
1017 ((struct sk_buff *)message_list->prev)->next = NULL;
1018 link_add_chain_to_outqueue(l_ptr,
1019 (struct sk_buff *)message_list->next, 0);
1020 tipc_link_push_queue(l_ptr);
1021 INIT_LIST_HEAD(message_list);
1022 }
1023 tipc_node_unlock(n_ptr);
1024 }
1025 read_unlock_bh(&tipc_net_lock);
1026
1027 /* discard the messages if they couldn't be sent */
Allan Stephens9aa88c22011-05-31 13:38:02 -04001028 list_for_each_safe(buf, temp_buf, ((struct sk_buff *)message_list)) {
1029 list_del((struct list_head *)buf);
Allan Stephens5f6d9122011-11-04 13:24:29 -04001030 kfree_skb(buf);
Allan Stephens9aa88c22011-05-31 13:38:02 -04001031 }
1032}
1033
1034/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001035 * link_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001036 * destination link is known and the header is complete,
1037 * inclusive total message length. Very time critical.
1038 * Link is locked. Returns user data length.
1039 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001040static int link_send_buf_fast(struct tipc_link *l_ptr, struct sk_buff *buf,
Sam Ravnborg05790c62006-03-20 22:37:04 -08001041 u32 *used_max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001042{
1043 struct tipc_msg *msg = buf_msg(buf);
1044 int res = msg_data_sz(msg);
1045
1046 if (likely(!link_congested(l_ptr))) {
Allan Stephens15e979d2010-05-11 14:30:10 +00001047 if (likely(msg_size(msg) <= l_ptr->max_pkt)) {
Ying Xue3c294cb2012-11-15 11:34:45 +08001048 if (likely(!tipc_bearer_blocked(l_ptr->b_ptr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001049 link_add_to_outqueue(l_ptr, buf, msg);
Ying Xue3c294cb2012-11-15 11:34:45 +08001050 tipc_bearer_send(l_ptr->b_ptr, buf,
1051 &l_ptr->media_addr);
1052 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001053 return res;
1054 }
Allan Stephens0e659672010-12-31 18:59:32 +00001055 } else
Allan Stephens15e979d2010-05-11 14:30:10 +00001056 *used_max_pkt = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001057 }
Per Liden4323add2006-01-18 00:38:21 +01001058 return tipc_link_send_buf(l_ptr, buf); /* All other cases */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001059}
1060
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001061/*
1062 * tipc_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001063 * destination node is known and the header is complete,
1064 * inclusive total message length.
1065 * Returns user data length.
1066 */
1067int tipc_send_buf_fast(struct sk_buff *buf, u32 destnode)
1068{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001069 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001070 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001071 int res;
1072 u32 selector = msg_origport(buf_msg(buf)) & 1;
1073 u32 dummy;
1074
Per Liden4323add2006-01-18 00:38:21 +01001075 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001076 n_ptr = tipc_node_find(destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001077 if (likely(n_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001078 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001079 l_ptr = n_ptr->active_links[selector];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001080 if (likely(l_ptr)) {
1081 res = link_send_buf_fast(l_ptr, buf, &dummy);
Per Liden4323add2006-01-18 00:38:21 +01001082 tipc_node_unlock(n_ptr);
1083 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001084 return res;
1085 }
Per Liden4323add2006-01-18 00:38:21 +01001086 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001087 }
Per Liden4323add2006-01-18 00:38:21 +01001088 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001089 res = msg_data_sz(buf_msg(buf));
1090 tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1091 return res;
1092}
1093
1094
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001095/*
1096 * tipc_link_send_sections_fast: Entry for messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001097 * destination processor is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001098 * except for total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001099 * Returns user data length or errno.
1100 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001101int tipc_link_send_sections_fast(struct tipc_port *sender,
Per Liden4323add2006-01-18 00:38:21 +01001102 struct iovec const *msg_sect,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001103 const u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001104 unsigned int total_len,
Per Liden4323add2006-01-18 00:38:21 +01001105 u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001106{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001107 struct tipc_msg *hdr = &sender->phdr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001108 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001109 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -07001110 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001111 int res;
1112 u32 selector = msg_origport(hdr) & 1;
1113
Per Lidenb97bf3f2006-01-02 19:04:38 +01001114again:
1115 /*
1116 * Try building message using port's max_pkt hint.
1117 * (Must not hold any locks while building message.)
1118 */
Allan Stephens26896902011-04-21 10:42:07 -05001119 res = tipc_msg_build(hdr, msg_sect, num_sect, total_len,
1120 sender->max_pkt, !sender->user_port, &buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001121
Per Liden4323add2006-01-18 00:38:21 +01001122 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001123 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001124 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001125 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001126 l_ptr = node->active_links[selector];
1127 if (likely(l_ptr)) {
1128 if (likely(buf)) {
1129 res = link_send_buf_fast(l_ptr, buf,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001130 &sender->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001131exit:
Per Liden4323add2006-01-18 00:38:21 +01001132 tipc_node_unlock(node);
1133 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001134 return res;
1135 }
1136
1137 /* Exit if build request was invalid */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001138 if (unlikely(res < 0))
1139 goto exit;
1140
1141 /* Exit if link (or bearer) is congested */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001142 if (link_congested(l_ptr) ||
Ying Xue3c294cb2012-11-15 11:34:45 +08001143 tipc_bearer_blocked(l_ptr->b_ptr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001144 res = link_schedule_port(l_ptr,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001145 sender->ref, res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001146 goto exit;
1147 }
1148
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001149 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001150 * Message size exceeds max_pkt hint; update hint,
1151 * then re-try fast path or fragment the message
1152 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001153 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001154 tipc_node_unlock(node);
1155 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001156
1157
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001158 if ((msg_hdr_sz(hdr) + res) <= sender->max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001159 goto again;
1160
1161 return link_send_sections_long(sender, msg_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001162 num_sect, total_len,
1163 destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001164 }
Per Liden4323add2006-01-18 00:38:21 +01001165 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001166 }
Per Liden4323add2006-01-18 00:38:21 +01001167 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001168
1169 /* Couldn't find a link to the destination node */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001170 if (buf)
1171 return tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1172 if (res >= 0)
Per Liden4323add2006-01-18 00:38:21 +01001173 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001174 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001175 return res;
1176}
1177
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001178/*
1179 * link_send_sections_long(): Entry for long messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001180 * destination node is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001181 * inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001182 * Link and bearer congestion status have been checked to be ok,
1183 * and are ignored if they change.
1184 *
1185 * Note that fragments do not use the full link MTU so that they won't have
1186 * to undergo refragmentation if link changeover causes them to be sent
1187 * over another link with an additional tunnel header added as prefix.
1188 * (Refragmentation will still occur if the other link has a smaller MTU.)
1189 *
1190 * Returns user data length or errno.
1191 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001192static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001193 struct iovec const *msg_sect,
1194 u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001195 unsigned int total_len,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001196 u32 destaddr)
1197{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001198 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001199 struct tipc_node *node;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001200 struct tipc_msg *hdr = &sender->phdr;
Allan Stephens26896902011-04-21 10:42:07 -05001201 u32 dsz = total_len;
Allan Stephens0e659672010-12-31 18:59:32 +00001202 u32 max_pkt, fragm_sz, rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001203 struct tipc_msg fragm_hdr;
Allan Stephens0e659672010-12-31 18:59:32 +00001204 struct sk_buff *buf, *buf_chain, *prev;
1205 u32 fragm_crs, fragm_rest, hsz, sect_rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001206 const unchar *sect_crs;
1207 int curr_sect;
1208 u32 fragm_no;
1209
1210again:
1211 fragm_no = 1;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001212 max_pkt = sender->max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001213 /* leave room for tunnel header in case of link changeover */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001214 fragm_sz = max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001215 /* leave room for fragmentation header in each fragment */
1216 rest = dsz;
1217 fragm_crs = 0;
1218 fragm_rest = 0;
1219 sect_rest = 0;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001220 sect_crs = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001221 curr_sect = -1;
1222
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001223 /* Prepare reusable fragment header */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001224 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07001225 INT_H_SIZE, msg_destnode(hdr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001226 msg_set_size(&fragm_hdr, max_pkt);
1227 msg_set_fragm_no(&fragm_hdr, 1);
1228
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001229 /* Prepare header of first fragment */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001230 buf_chain = buf = tipc_buf_acquire(max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001231 if (!buf)
1232 return -ENOMEM;
1233 buf->next = NULL;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001234 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001235 hsz = msg_hdr_sz(hdr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001236 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, hdr, hsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001237
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001238 /* Chop up message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001239 fragm_crs = INT_H_SIZE + hsz;
1240 fragm_rest = fragm_sz - hsz;
1241
1242 do { /* For all sections */
1243 u32 sz;
1244
1245 if (!sect_rest) {
1246 sect_rest = msg_sect[++curr_sect].iov_len;
1247 sect_crs = (const unchar *)msg_sect[curr_sect].iov_base;
1248 }
1249
1250 if (sect_rest < fragm_rest)
1251 sz = sect_rest;
1252 else
1253 sz = fragm_rest;
1254
1255 if (likely(!sender->user_port)) {
1256 if (copy_from_user(buf->data + fragm_crs, sect_crs, sz)) {
1257error:
1258 for (; buf_chain; buf_chain = buf) {
1259 buf = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001260 kfree_skb(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001261 }
1262 return -EFAULT;
1263 }
1264 } else
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001265 skb_copy_to_linear_data_offset(buf, fragm_crs,
1266 sect_crs, sz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001267 sect_crs += sz;
1268 sect_rest -= sz;
1269 fragm_crs += sz;
1270 fragm_rest -= sz;
1271 rest -= sz;
1272
1273 if (!fragm_rest && rest) {
1274
1275 /* Initiate new fragment: */
1276 if (rest <= fragm_sz) {
1277 fragm_sz = rest;
Allan Stephens0e659672010-12-31 18:59:32 +00001278 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001279 } else {
1280 msg_set_type(&fragm_hdr, FRAGMENT);
1281 }
1282 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
1283 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
1284 prev = buf;
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001285 buf = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001286 if (!buf)
1287 goto error;
1288
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001289 buf->next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001290 prev->next = buf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001291 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001292 fragm_crs = INT_H_SIZE;
1293 fragm_rest = fragm_sz;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001294 }
Allan Stephens0e659672010-12-31 18:59:32 +00001295 } while (rest > 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001296
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001297 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001298 * Now we have a buffer chain. Select a link and check
1299 * that packet size is still OK
1300 */
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001301 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001302 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001303 tipc_node_lock(node);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001304 l_ptr = node->active_links[sender->ref & 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001305 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01001306 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001307 goto reject;
1308 }
Allan Stephens15e979d2010-05-11 14:30:10 +00001309 if (l_ptr->max_pkt < max_pkt) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001310 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001311 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001312 for (; buf_chain; buf_chain = buf) {
1313 buf = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001314 kfree_skb(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001315 }
1316 goto again;
1317 }
1318 } else {
1319reject:
1320 for (; buf_chain; buf_chain = buf) {
1321 buf = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001322 kfree_skb(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001323 }
Per Liden4323add2006-01-18 00:38:21 +01001324 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001325 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001326 }
1327
Allan Stephensdc63d912011-04-21 11:50:42 -04001328 /* Append chain of fragments to send queue & send them */
Allan Stephense0f08592011-04-17 11:44:24 -04001329 l_ptr->long_msg_seq_no++;
Allan Stephensdc63d912011-04-21 11:50:42 -04001330 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
1331 l_ptr->stats.sent_fragments += fragm_no;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001332 l_ptr->stats.sent_fragmented++;
Per Liden4323add2006-01-18 00:38:21 +01001333 tipc_link_push_queue(l_ptr);
1334 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001335 return dsz;
1336}
1337
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001338/*
Per Liden4323add2006-01-18 00:38:21 +01001339 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +01001340 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001341u32 tipc_link_push_packet(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001342{
1343 struct sk_buff *buf = l_ptr->first_out;
1344 u32 r_q_size = l_ptr->retransm_queue_size;
1345 u32 r_q_head = l_ptr->retransm_queue_head;
1346
1347 /* Step to position where retransmission failed, if any, */
1348 /* consider that buffers may have been released in meantime */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001349 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001350 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +01001351 link_last_sent(l_ptr));
Allan Stephensf9057302011-10-24 16:03:12 -04001352 u32 first = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001353
1354 while (buf && less(first, r_q_head)) {
1355 first = mod(first + 1);
1356 buf = buf->next;
1357 }
1358 l_ptr->retransm_queue_head = r_q_head = first;
1359 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1360 }
1361
1362 /* Continue retransmission now, if there is anything: */
Neil Hormanca509102010-03-15 07:58:45 +00001363 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001364 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001365 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001366 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1367 l_ptr->retransm_queue_head = mod(++r_q_head);
1368 l_ptr->retransm_queue_size = --r_q_size;
1369 l_ptr->stats.retransmitted++;
1370 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001371 }
1372
1373 /* Send deferred protocol message, if any: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001374 buf = l_ptr->proto_msg_queue;
1375 if (buf) {
1376 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +00001377 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001378 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1379 l_ptr->unacked_window = 0;
1380 kfree_skb(buf);
1381 l_ptr->proto_msg_queue = NULL;
1382 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001383 }
1384
1385 /* Send one deferred data message, if send window not full: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001386 buf = l_ptr->next_out;
1387 if (buf) {
1388 struct tipc_msg *msg = buf_msg(buf);
1389 u32 next = msg_seqno(msg);
Allan Stephensf9057302011-10-24 16:03:12 -04001390 u32 first = buf_seqno(l_ptr->first_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001391
1392 if (mod(next - first) < l_ptr->queue_limit[0]) {
1393 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001394 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001395 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1396 if (msg_user(msg) == MSG_BUNDLER)
1397 msg_set_type(msg, CLOSED_MSG);
1398 l_ptr->next_out = buf->next;
1399 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001400 }
1401 }
Ying Xue3c294cb2012-11-15 11:34:45 +08001402 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001403}
1404
1405/*
1406 * push_queue(): push out the unsent messages of a link where
1407 * congestion has abated. Node is locked
1408 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001409void tipc_link_push_queue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001410{
1411 u32 res;
1412
Ying Xue3c294cb2012-11-15 11:34:45 +08001413 if (tipc_bearer_blocked(l_ptr->b_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001414 return;
1415
1416 do {
Per Liden4323add2006-01-18 00:38:21 +01001417 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001418 } while (!res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001419}
1420
Allan Stephensd356eeb2006-06-25 23:40:01 -07001421static void link_reset_all(unsigned long addr)
1422{
David S. Miller6c000552008-09-02 23:38:32 -07001423 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001424 char addr_string[16];
1425 u32 i;
1426
1427 read_lock_bh(&tipc_net_lock);
1428 n_ptr = tipc_node_find((u32)addr);
1429 if (!n_ptr) {
1430 read_unlock_bh(&tipc_net_lock);
1431 return; /* node no longer exists */
1432 }
1433
1434 tipc_node_lock(n_ptr);
1435
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001436 pr_warn("Resetting all links to %s\n",
1437 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -07001438
1439 for (i = 0; i < MAX_BEARERS; i++) {
1440 if (n_ptr->links[i]) {
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001441 link_print(n_ptr->links[i], "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001442 tipc_link_reset(n_ptr->links[i]);
1443 }
1444 }
1445
1446 tipc_node_unlock(n_ptr);
1447 read_unlock_bh(&tipc_net_lock);
1448}
1449
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001450static void link_retransmit_failure(struct tipc_link *l_ptr,
1451 struct sk_buff *buf)
Allan Stephensd356eeb2006-06-25 23:40:01 -07001452{
1453 struct tipc_msg *msg = buf_msg(buf);
1454
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001455 pr_warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001456
1457 if (l_ptr->addr) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001458 /* Handle failure on standard link */
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001459 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001460 tipc_link_reset(l_ptr);
1461
1462 } else {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001463 /* Handle failure on broadcast link */
David S. Miller6c000552008-09-02 23:38:32 -07001464 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001465 char addr_string[16];
1466
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001467 pr_info("Msg seq number: %u, ", msg_seqno(msg));
1468 pr_cont("Outstanding acks: %lu\n",
1469 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -07001470
Allan Stephens01d83ed2011-01-18 13:53:16 -05001471 n_ptr = tipc_bclink_retransmit_to();
Allan Stephensd356eeb2006-06-25 23:40:01 -07001472 tipc_node_lock(n_ptr);
1473
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001474 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001475 pr_info("Broadcast link info for %s\n", addr_string);
Ying Xue389dd9b2012-11-16 13:51:30 +08001476 pr_info("Reception permitted: %d, Acked: %u\n",
1477 n_ptr->bclink.recv_permitted,
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001478 n_ptr->bclink.acked);
1479 pr_info("Last in: %u, Oos state: %u, Last sent: %u\n",
1480 n_ptr->bclink.last_in,
1481 n_ptr->bclink.oos_state,
1482 n_ptr->bclink.last_sent);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001483
1484 tipc_k_signal((Handler)link_reset_all, (unsigned long)n_ptr->addr);
1485
1486 tipc_node_unlock(n_ptr);
1487
1488 l_ptr->stale_count = 0;
1489 }
1490}
1491
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001492void tipc_link_retransmit(struct tipc_link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001493 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001494{
1495 struct tipc_msg *msg;
1496
Allan Stephensd356eeb2006-06-25 23:40:01 -07001497 if (!buf)
1498 return;
1499
1500 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001501
Ying Xue3c294cb2012-11-15 11:34:45 +08001502 if (tipc_bearer_blocked(l_ptr->b_ptr)) {
Neil Hormanca509102010-03-15 07:58:45 +00001503 if (l_ptr->retransm_queue_size == 0) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001504 l_ptr->retransm_queue_head = msg_seqno(msg);
1505 l_ptr->retransm_queue_size = retransmits;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001506 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001507 pr_err("Unexpected retransmit on link %s (qsize=%d)\n",
1508 l_ptr->name, l_ptr->retransm_queue_size);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001509 }
Neil Hormanca509102010-03-15 07:58:45 +00001510 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001511 } else {
Ying Xue3c294cb2012-11-15 11:34:45 +08001512 /* Detect repeated retransmit failures on unblocked bearer */
Allan Stephensd356eeb2006-06-25 23:40:01 -07001513 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1514 if (++l_ptr->stale_count > 100) {
1515 link_retransmit_failure(l_ptr, buf);
1516 return;
1517 }
1518 } else {
1519 l_ptr->last_retransmitted = msg_seqno(msg);
1520 l_ptr->stale_count = 1;
1521 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001522 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001523
Neil Hormanca509102010-03-15 07:58:45 +00001524 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001525 msg = buf_msg(buf);
1526 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001527 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001528 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1529 buf = buf->next;
1530 retransmits--;
1531 l_ptr->stats.retransmitted++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001532 }
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 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001540static struct sk_buff *link_insert_deferred_queue(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001541 struct sk_buff *buf)
1542{
1543 u32 seq_no;
1544
1545 if (l_ptr->oldest_deferred_in == NULL)
1546 return buf;
1547
Allan Stephensf9057302011-10-24 16:03:12 -04001548 seq_no = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001549 if (seq_no == mod(l_ptr->next_in_no)) {
1550 l_ptr->newest_deferred_in->next = buf;
1551 buf = l_ptr->oldest_deferred_in;
1552 l_ptr->oldest_deferred_in = NULL;
1553 l_ptr->deferred_inqueue_sz = 0;
1554 }
1555 return buf;
1556}
1557
Allan Stephens85035562008-04-15 19:04:54 -07001558/**
1559 * link_recv_buf_validate - validate basic format of received message
1560 *
1561 * This routine ensures a TIPC message has an acceptable header, and at least
1562 * as much data as the header indicates it should. The routine also ensures
1563 * that the entire message header is stored in the main fragment of the message
1564 * buffer, to simplify future access to message header fields.
1565 *
1566 * Note: Having extra info present in the message header or data areas is OK.
1567 * TIPC will ignore the excess, under the assumption that it is optional info
1568 * introduced by a later release of the protocol.
1569 */
Allan Stephens85035562008-04-15 19:04:54 -07001570static int link_recv_buf_validate(struct sk_buff *buf)
1571{
1572 static u32 min_data_hdr_size[8] = {
Allan Stephens741d9eb2011-05-31 15:03:18 -04001573 SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,
Allan Stephens85035562008-04-15 19:04:54 -07001574 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1575 };
1576
1577 struct tipc_msg *msg;
1578 u32 tipc_hdr[2];
1579 u32 size;
1580 u32 hdr_size;
1581 u32 min_hdr_size;
1582
1583 if (unlikely(buf->len < MIN_H_SIZE))
1584 return 0;
1585
1586 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1587 if (msg == NULL)
1588 return 0;
1589
1590 if (unlikely(msg_version(msg) != TIPC_VERSION))
1591 return 0;
1592
1593 size = msg_size(msg);
1594 hdr_size = msg_hdr_sz(msg);
1595 min_hdr_size = msg_isdata(msg) ?
1596 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1597
1598 if (unlikely((hdr_size < min_hdr_size) ||
1599 (size < hdr_size) ||
1600 (buf->len < size) ||
1601 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1602 return 0;
1603
1604 return pskb_may_pull(buf, hdr_size);
1605}
1606
Allan Stephensb02b69c2010-08-17 11:00:07 +00001607/**
1608 * tipc_recv_msg - process TIPC messages arriving from off-node
1609 * @head: pointer to message buffer chain
1610 * @tb_ptr: pointer to bearer message arrived on
1611 *
1612 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1613 * structure (i.e. cannot be NULL), but bearer can be inactive.
1614 */
Allan Stephens2d627b92011-01-07 13:00:11 -05001615void tipc_recv_msg(struct sk_buff *head, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001616{
Per Liden4323add2006-01-18 00:38:21 +01001617 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001618 while (head) {
David S. Miller6c000552008-09-02 23:38:32 -07001619 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001620 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001621 struct sk_buff *crs;
1622 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001623 struct tipc_msg *msg;
1624 u32 seq_no;
1625 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001626 u32 released = 0;
1627 int type;
1628
Per Lidenb97bf3f2006-01-02 19:04:38 +01001629 head = head->next;
Allan Stephens85035562008-04-15 19:04:54 -07001630
Allan Stephensb02b69c2010-08-17 11:00:07 +00001631 /* Ensure bearer is still enabled */
Allan Stephensb02b69c2010-08-17 11:00:07 +00001632 if (unlikely(!b_ptr->active))
1633 goto cont;
1634
Allan Stephens85035562008-04-15 19:04:54 -07001635 /* Ensure message is well-formed */
Allan Stephens85035562008-04-15 19:04:54 -07001636 if (unlikely(!link_recv_buf_validate(buf)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001637 goto cont;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001638
Allan Stephensfe13dda2008-04-15 19:03:23 -07001639 /* Ensure message data is a single contiguous unit */
Allan Stephens5f6d9122011-11-04 13:24:29 -04001640 if (unlikely(skb_linearize(buf)))
Allan Stephensfe13dda2008-04-15 19:03:23 -07001641 goto cont;
Allan Stephensfe13dda2008-04-15 19:03:23 -07001642
Allan Stephens85035562008-04-15 19:04:54 -07001643 /* Handle arrival of a non-unicast link message */
Allan Stephens85035562008-04-15 19:04:54 -07001644 msg = buf_msg(buf);
1645
Per Lidenb97bf3f2006-01-02 19:04:38 +01001646 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001647 if (msg_user(msg) == LINK_CONFIG)
1648 tipc_disc_recv_msg(buf, b_ptr);
1649 else
1650 tipc_bclink_recv_pkt(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001651 continue;
1652 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001653
Allan Stephensed33a9c2011-04-05 15:15:04 -04001654 /* Discard unicast link messages destined for another node */
Allan Stephens26008242006-06-25 23:39:31 -07001655 if (unlikely(!msg_short(msg) &&
1656 (msg_destnode(msg) != tipc_own_addr)))
1657 goto cont;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001658
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001659 /* Locate neighboring node that sent message */
Per Liden4323add2006-01-18 00:38:21 +01001660 n_ptr = tipc_node_find(msg_prevnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001661 if (unlikely(!n_ptr))
1662 goto cont;
Per Liden4323add2006-01-18 00:38:21 +01001663 tipc_node_lock(n_ptr);
Allan Stephens85035562008-04-15 19:04:54 -07001664
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001665 /* Locate unicast link endpoint that should handle message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001666 l_ptr = n_ptr->links[b_ptr->identity];
1667 if (unlikely(!l_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001668 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001669 goto cont;
1670 }
Allan Stephens85035562008-04-15 19:04:54 -07001671
Allan Stephensb4b56102011-05-27 11:00:51 -04001672 /* Verify that communication with node is currently allowed */
Allan Stephensb4b56102011-05-27 11:00:51 -04001673 if ((n_ptr->block_setup & WAIT_PEER_DOWN) &&
1674 msg_user(msg) == LINK_PROTOCOL &&
1675 (msg_type(msg) == RESET_MSG ||
1676 msg_type(msg) == ACTIVATE_MSG) &&
1677 !msg_redundant_link(msg))
1678 n_ptr->block_setup &= ~WAIT_PEER_DOWN;
1679
1680 if (n_ptr->block_setup) {
1681 tipc_node_unlock(n_ptr);
1682 goto cont;
1683 }
1684
Allan Stephens85035562008-04-15 19:04:54 -07001685 /* Validate message sequence number info */
Allan Stephens85035562008-04-15 19:04:54 -07001686 seq_no = msg_seqno(msg);
1687 ackd = msg_ack(msg);
1688
1689 /* Release acked messages */
Ying Xue389dd9b2012-11-16 13:51:30 +08001690 if (n_ptr->bclink.recv_permitted)
Allan Stephens365595912011-10-24 15:26:24 -04001691 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001692
1693 crs = l_ptr->first_out;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001694 while ((crs != l_ptr->next_out) &&
Allan Stephensf9057302011-10-24 16:03:12 -04001695 less_eq(buf_seqno(crs), ackd)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001696 struct sk_buff *next = crs->next;
1697
Allan Stephens5f6d9122011-11-04 13:24:29 -04001698 kfree_skb(crs);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001699 crs = next;
1700 released++;
1701 }
1702 if (released) {
1703 l_ptr->first_out = crs;
1704 l_ptr->out_queue_size -= released;
1705 }
Allan Stephens85035562008-04-15 19:04:54 -07001706
1707 /* Try sending any messages link endpoint has pending */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001708 if (unlikely(l_ptr->next_out))
Per Liden4323add2006-01-18 00:38:21 +01001709 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001710 if (unlikely(!list_empty(&l_ptr->waiting_ports)))
Per Liden4323add2006-01-18 00:38:21 +01001711 tipc_link_wakeup_ports(l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001712 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1713 l_ptr->stats.sent_acks++;
Per Liden4323add2006-01-18 00:38:21 +01001714 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001715 }
1716
Allan Stephens85035562008-04-15 19:04:54 -07001717 /* Now (finally!) process the incoming message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001718protocol_check:
1719 if (likely(link_working_working(l_ptr))) {
1720 if (likely(seq_no == mod(l_ptr->next_in_no))) {
1721 l_ptr->next_in_no++;
1722 if (unlikely(l_ptr->oldest_deferred_in))
1723 head = link_insert_deferred_queue(l_ptr,
1724 head);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001725deliver:
Allan Stephensc74a4612011-11-02 15:08:44 -04001726 if (likely(msg_isdata(msg))) {
1727 tipc_node_unlock(n_ptr);
1728 tipc_port_recv_msg(buf);
1729 continue;
1730 }
1731 switch (msg_user(msg)) {
1732 int ret;
1733 case MSG_BUNDLER:
1734 l_ptr->stats.recv_bundles++;
1735 l_ptr->stats.recv_bundled +=
1736 msg_msgcnt(msg);
1737 tipc_node_unlock(n_ptr);
1738 tipc_link_recv_bundle(buf);
1739 continue;
1740 case NAME_DISTRIBUTOR:
Jon Maloyc64f7a62012-11-16 13:51:31 +08001741 n_ptr->bclink.recv_permitted = true;
Allan Stephensc74a4612011-11-02 15:08:44 -04001742 tipc_node_unlock(n_ptr);
1743 tipc_named_recv(buf);
1744 continue;
Jon Maloyc64f7a62012-11-16 13:51:31 +08001745 case BCAST_PROTOCOL:
1746 tipc_link_recv_sync(n_ptr, buf);
1747 tipc_node_unlock(n_ptr);
1748 continue;
Allan Stephensc74a4612011-11-02 15:08:44 -04001749 case CONN_MANAGER:
1750 tipc_node_unlock(n_ptr);
1751 tipc_port_recv_proto_msg(buf);
1752 continue;
1753 case MSG_FRAGMENTER:
1754 l_ptr->stats.recv_fragments++;
1755 ret = tipc_link_recv_fragment(
1756 &l_ptr->defragm_buf,
1757 &buf, &msg);
1758 if (ret == 1) {
1759 l_ptr->stats.recv_fragmented++;
1760 goto deliver;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001761 }
Allan Stephensc74a4612011-11-02 15:08:44 -04001762 if (ret == -1)
1763 l_ptr->next_in_no--;
1764 break;
1765 case CHANGEOVER_PROTOCOL:
1766 type = msg_type(msg);
1767 if (link_recv_changeover_msg(&l_ptr,
1768 &buf)) {
1769 msg = buf_msg(buf);
1770 seq_no = msg_seqno(msg);
1771 if (type == ORIGINAL_MSG)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001772 goto deliver;
Allan Stephensc74a4612011-11-02 15:08:44 -04001773 goto protocol_check;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001774 }
Allan Stephensc74a4612011-11-02 15:08:44 -04001775 break;
1776 default:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001777 kfree_skb(buf);
Allan Stephensc74a4612011-11-02 15:08:44 -04001778 buf = NULL;
1779 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001780 }
Per Liden4323add2006-01-18 00:38:21 +01001781 tipc_node_unlock(n_ptr);
1782 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001783 continue;
1784 }
1785 link_handle_out_of_seq_msg(l_ptr, buf);
1786 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001787 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001788 continue;
1789 }
1790
Jon Maloyc64f7a62012-11-16 13:51:31 +08001791 /* Link is not in state WORKING_WORKING */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001792 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 }
Jon Maloyc64f7a62012-11-16 13:51:31 +08001798
1799 /* Traffic message. Conditionally activate link */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001800 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1801
1802 if (link_working_working(l_ptr)) {
Jon Maloyc64f7a62012-11-16 13:51:31 +08001803 /* Re-insert buffer in front of queue */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001804 buf->next = head;
1805 head = buf;
Per Liden4323add2006-01-18 00:38:21 +01001806 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001807 continue;
1808 }
Per Liden4323add2006-01-18 00:38:21 +01001809 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001810cont:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001811 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001812 }
Per Liden4323add2006-01-18 00:38:21 +01001813 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001814}
1815
Ben Hutchings2c530402012-07-10 10:55:09 +00001816/**
Allan Stephens8809b252011-10-25 10:44:35 -04001817 * tipc_link_defer_pkt - Add out-of-sequence message to deferred reception queue
1818 *
1819 * Returns increase in queue length (i.e. 0 or 1)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001820 */
Allan Stephens8809b252011-10-25 10:44:35 -04001821u32 tipc_link_defer_pkt(struct sk_buff **head, struct sk_buff **tail,
Per Liden4323add2006-01-18 00:38:21 +01001822 struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001823{
Allan Stephens8809b252011-10-25 10:44:35 -04001824 struct sk_buff *queue_buf;
1825 struct sk_buff **prev;
Allan Stephensf9057302011-10-24 16:03:12 -04001826 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001827
1828 buf->next = NULL;
1829
1830 /* Empty queue ? */
1831 if (*head == NULL) {
1832 *head = *tail = buf;
1833 return 1;
1834 }
1835
1836 /* Last ? */
Allan Stephensf9057302011-10-24 16:03:12 -04001837 if (less(buf_seqno(*tail), seq_no)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001838 (*tail)->next = buf;
1839 *tail = buf;
1840 return 1;
1841 }
1842
Allan Stephens8809b252011-10-25 10:44:35 -04001843 /* Locate insertion point in queue, then insert; discard if duplicate */
1844 prev = head;
1845 queue_buf = *head;
1846 for (;;) {
1847 u32 curr_seqno = buf_seqno(queue_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001848
Allan Stephens8809b252011-10-25 10:44:35 -04001849 if (seq_no == curr_seqno) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001850 kfree_skb(buf);
Allan Stephens8809b252011-10-25 10:44:35 -04001851 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001852 }
Allan Stephens8809b252011-10-25 10:44:35 -04001853
1854 if (less(seq_no, curr_seqno))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001855 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001856
Allan Stephens8809b252011-10-25 10:44:35 -04001857 prev = &queue_buf->next;
1858 queue_buf = queue_buf->next;
1859 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001860
Allan Stephens8809b252011-10-25 10:44:35 -04001861 buf->next = queue_buf;
1862 *prev = buf;
1863 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001864}
1865
Allan Stephens8809b252011-10-25 10:44:35 -04001866/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001867 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1868 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001869static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001870 struct sk_buff *buf)
1871{
Allan Stephensf9057302011-10-24 16:03:12 -04001872 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001873
1874 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
1875 link_recv_proto_msg(l_ptr, buf);
1876 return;
1877 }
1878
Per Lidenb97bf3f2006-01-02 19:04:38 +01001879 /* Record OOS packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001880 l_ptr->checkpoint--;
1881
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001882 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001883 * Discard packet if a duplicate; otherwise add it to deferred queue
1884 * and notify peer of gap as per protocol specification
1885 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001886 if (less(seq_no, mod(l_ptr->next_in_no))) {
1887 l_ptr->stats.duplicates++;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001888 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001889 return;
1890 }
1891
Per Liden4323add2006-01-18 00:38:21 +01001892 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1893 &l_ptr->newest_deferred_in, buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001894 l_ptr->deferred_inqueue_sz++;
1895 l_ptr->stats.deferred_recv++;
1896 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
Per Liden4323add2006-01-18 00:38:21 +01001897 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001898 } else
1899 l_ptr->stats.duplicates++;
1900}
1901
1902/*
1903 * Send protocol message to the other endpoint.
1904 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001905void tipc_link_send_proto_msg(struct tipc_link *l_ptr, u32 msg_typ,
1906 int probe_msg, u32 gap, u32 tolerance,
1907 u32 priority, u32 ack_mtu)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001908{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001909 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001910 struct tipc_msg *msg = l_ptr->pmsg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001911 u32 msg_size = sizeof(l_ptr->proto_msg);
Allan Stephens75f0aa42011-02-28 15:30:20 -05001912 int r_flag;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001913
Allan Stephens92d2c902011-10-25 11:20:26 -04001914 /* Discard any previous message that was deferred due to congestion */
Allan Stephens92d2c902011-10-25 11:20:26 -04001915 if (l_ptr->proto_msg_queue) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001916 kfree_skb(l_ptr->proto_msg_queue);
Allan Stephens92d2c902011-10-25 11:20:26 -04001917 l_ptr->proto_msg_queue = NULL;
1918 }
1919
Per Lidenb97bf3f2006-01-02 19:04:38 +01001920 if (link_blocked(l_ptr))
1921 return;
Allan Stephensb4b56102011-05-27 11:00:51 -04001922
1923 /* Abort non-RESET send if communication with node is prohibited */
Allan Stephensb4b56102011-05-27 11:00:51 -04001924 if ((l_ptr->owner->block_setup) && (msg_typ != RESET_MSG))
1925 return;
1926
Allan Stephens92d2c902011-10-25 11:20:26 -04001927 /* Create protocol message with "out-of-sequence" sequence number */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001928 msg_set_type(msg, msg_typ);
1929 msg_set_net_plane(msg, l_ptr->b_ptr->net_plane);
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001930 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001931 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
Per Lidenb97bf3f2006-01-02 19:04:38 +01001932
1933 if (msg_typ == STATE_MSG) {
1934 u32 next_sent = mod(l_ptr->next_out_no);
1935
Per Liden4323add2006-01-18 00:38:21 +01001936 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001937 return;
1938 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -04001939 next_sent = buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001940 msg_set_next_sent(msg, next_sent);
1941 if (l_ptr->oldest_deferred_in) {
Allan Stephensf9057302011-10-24 16:03:12 -04001942 u32 rec = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001943 gap = mod(rec - mod(l_ptr->next_in_no));
1944 }
1945 msg_set_seq_gap(msg, gap);
1946 if (gap)
1947 l_ptr->stats.sent_nacks++;
1948 msg_set_link_tolerance(msg, tolerance);
1949 msg_set_linkprio(msg, priority);
1950 msg_set_max_pkt(msg, ack_mtu);
1951 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1952 msg_set_probe(msg, probe_msg != 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001953 if (probe_msg) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001954 u32 mtu = l_ptr->max_pkt;
1955
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001956 if ((mtu < l_ptr->max_pkt_target) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001957 link_working_working(l_ptr) &&
1958 l_ptr->fsm_msg_cnt) {
1959 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001960 if (l_ptr->max_pkt_probes == 10) {
1961 l_ptr->max_pkt_target = (msg_size - 4);
1962 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001963 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001964 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001965 l_ptr->max_pkt_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001966 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001967
1968 l_ptr->stats.sent_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001969 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001970 l_ptr->stats.sent_states++;
1971 } else { /* RESET_MSG or ACTIVATE_MSG */
1972 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
1973 msg_set_seq_gap(msg, 0);
1974 msg_set_next_sent(msg, 1);
Allan Stephensf23d9bf2011-01-18 15:15:34 -05001975 msg_set_probe(msg, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001976 msg_set_link_tolerance(msg, l_ptr->tolerance);
1977 msg_set_linkprio(msg, l_ptr->priority);
1978 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
1979 }
1980
Allan Stephens75f0aa42011-02-28 15:30:20 -05001981 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
1982 msg_set_redundant_link(msg, r_flag);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001983 msg_set_linkprio(msg, l_ptr->priority);
Allan Stephens92d2c902011-10-25 11:20:26 -04001984 msg_set_size(msg, msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001985
1986 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
1987
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001988 buf = tipc_buf_acquire(msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001989 if (!buf)
1990 return;
1991
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001992 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001993
Ying Xue3c294cb2012-11-15 11:34:45 +08001994 /* Defer message if bearer is already blocked */
1995 if (tipc_bearer_blocked(l_ptr->b_ptr)) {
Allan Stephens92d2c902011-10-25 11:20:26 -04001996 l_ptr->proto_msg_queue = buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001997 return;
1998 }
1999
Ying Xue3c294cb2012-11-15 11:34:45 +08002000 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
Allan Stephens92d2c902011-10-25 11:20:26 -04002001 l_ptr->unacked_window = 0;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002002 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002003}
2004
2005/*
2006 * Receive protocol message :
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002007 * Note that network plane id propagates through the network, and may
2008 * change at any time. The node with lowest address rules
Per Lidenb97bf3f2006-01-02 19:04:38 +01002009 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002010static void link_recv_proto_msg(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002011{
2012 u32 rec_gap = 0;
2013 u32 max_pkt_info;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002014 u32 max_pkt_ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002015 u32 msg_tol;
2016 struct tipc_msg *msg = buf_msg(buf);
2017
Per Lidenb97bf3f2006-01-02 19:04:38 +01002018 if (link_blocked(l_ptr))
2019 goto exit;
2020
2021 /* record unnumbered packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002022 l_ptr->checkpoint--;
2023
2024 if (l_ptr->b_ptr->net_plane != msg_net_plane(msg))
2025 if (tipc_own_addr > msg_prevnode(msg))
2026 l_ptr->b_ptr->net_plane = msg_net_plane(msg);
2027
2028 l_ptr->owner->permit_changeover = msg_redundant_link(msg);
2029
2030 switch (msg_type(msg)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002031
Per Lidenb97bf3f2006-01-02 19:04:38 +01002032 case RESET_MSG:
Allan Stephensa686e682008-06-04 17:29:39 -07002033 if (!link_working_unknown(l_ptr) &&
2034 (l_ptr->peer_session != INVALID_SESSION)) {
Allan Stephens641c2182011-04-07 09:54:43 -04002035 if (less_eq(msg_session(msg), l_ptr->peer_session))
2036 break; /* duplicate or old reset: ignore */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002037 }
Allan Stephensb4b56102011-05-27 11:00:51 -04002038
2039 if (!msg_redundant_link(msg) && (link_working_working(l_ptr) ||
2040 link_working_unknown(l_ptr))) {
2041 /*
2042 * peer has lost contact -- don't allow peer's links
2043 * to reactivate before we recognize loss & clean up
2044 */
2045 l_ptr->owner->block_setup = WAIT_NODE_DOWN;
2046 }
2047
Allan Stephens47361c82011-10-26 10:55:16 -04002048 link_state_event(l_ptr, RESET_MSG);
2049
Per Lidenb97bf3f2006-01-02 19:04:38 +01002050 /* fall thru' */
2051 case ACTIVATE_MSG:
2052 /* Update link settings according other endpoint's values */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002053 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
2054
Allan Stephens2db99832010-12-31 18:59:33 +00002055 msg_tol = msg_link_tolerance(msg);
2056 if (msg_tol > l_ptr->tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002057 link_set_supervision_props(l_ptr, msg_tol);
2058
2059 if (msg_linkprio(msg) > l_ptr->priority)
2060 l_ptr->priority = msg_linkprio(msg);
2061
2062 max_pkt_info = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002063 if (max_pkt_info) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002064 if (max_pkt_info < l_ptr->max_pkt_target)
2065 l_ptr->max_pkt_target = max_pkt_info;
2066 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
2067 l_ptr->max_pkt = l_ptr->max_pkt_target;
2068 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002069 l_ptr->max_pkt = l_ptr->max_pkt_target;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002070 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002071
Allan Stephens4d753132011-10-25 12:19:05 -04002072 /* Synchronize broadcast link info, if not done previously */
Allan Stephens7a54d4a2011-10-27 14:17:53 -04002073 if (!tipc_node_is_up(l_ptr->owner)) {
2074 l_ptr->owner->bclink.last_sent =
2075 l_ptr->owner->bclink.last_in =
2076 msg_last_bcast(msg);
2077 l_ptr->owner->bclink.oos_state = 0;
2078 }
Allan Stephens4d753132011-10-25 12:19:05 -04002079
Per Lidenb97bf3f2006-01-02 19:04:38 +01002080 l_ptr->peer_session = msg_session(msg);
2081 l_ptr->peer_bearer_id = msg_bearer_id(msg);
Allan Stephens47361c82011-10-26 10:55:16 -04002082
2083 if (msg_type(msg) == ACTIVATE_MSG)
2084 link_state_event(l_ptr, ACTIVATE_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002085 break;
2086 case STATE_MSG:
2087
Allan Stephens2db99832010-12-31 18:59:33 +00002088 msg_tol = msg_link_tolerance(msg);
2089 if (msg_tol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002090 link_set_supervision_props(l_ptr, msg_tol);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002091
2092 if (msg_linkprio(msg) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002093 (msg_linkprio(msg) != l_ptr->priority)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002094 pr_warn("%s<%s>, priority change %u->%u\n",
2095 link_rst_msg, l_ptr->name, l_ptr->priority,
2096 msg_linkprio(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002097 l_ptr->priority = msg_linkprio(msg);
Per Liden4323add2006-01-18 00:38:21 +01002098 tipc_link_reset(l_ptr); /* Enforce change to take effect */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002099 break;
2100 }
2101 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
2102 l_ptr->stats.recv_states++;
2103 if (link_reset_unknown(l_ptr))
2104 break;
2105
2106 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002107 rec_gap = mod(msg_next_sent(msg) -
Per Lidenb97bf3f2006-01-02 19:04:38 +01002108 mod(l_ptr->next_in_no));
2109 }
2110
2111 max_pkt_ack = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002112 if (max_pkt_ack > l_ptr->max_pkt) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002113 l_ptr->max_pkt = max_pkt_ack;
2114 l_ptr->max_pkt_probes = 0;
2115 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002116
2117 max_pkt_ack = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002118 if (msg_probe(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002119 l_ptr->stats.recv_probes++;
Allan Stephensa0168922010-12-31 18:59:35 +00002120 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002121 max_pkt_ack = msg_size(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002122 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002123
2124 /* Protocol message before retransmits, reduce loss risk */
Ying Xue389dd9b2012-11-16 13:51:30 +08002125 if (l_ptr->owner->bclink.recv_permitted)
Allan Stephens7a54d4a2011-10-27 14:17:53 -04002126 tipc_bclink_update_link_state(l_ptr->owner,
2127 msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002128
2129 if (rec_gap || (msg_probe(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01002130 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
2131 0, rec_gap, 0, 0, max_pkt_ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002132 }
2133 if (msg_seq_gap(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002134 l_ptr->stats.recv_nacks++;
Per Liden4323add2006-01-18 00:38:21 +01002135 tipc_link_retransmit(l_ptr, l_ptr->first_out,
2136 msg_seq_gap(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002137 }
2138 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002139 }
2140exit:
Allan Stephens5f6d9122011-11-04 13:24:29 -04002141 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002142}
2143
2144
2145/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002146 * tipc_link_tunnel(): Send one message via a link belonging to
Per Lidenb97bf3f2006-01-02 19:04:38 +01002147 * another bearer. Owner node is locked.
2148 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002149static void tipc_link_tunnel(struct tipc_link *l_ptr,
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002150 struct tipc_msg *tunnel_hdr,
2151 struct tipc_msg *msg,
2152 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002153{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002154 struct tipc_link *tunnel;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002155 struct sk_buff *buf;
2156 u32 length = msg_size(msg);
2157
2158 tunnel = l_ptr->owner->active_links[selector & 1];
Allan Stephens5392d642006-06-25 23:52:50 -07002159 if (!tipc_link_is_up(tunnel)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002160 pr_warn("%stunnel link no longer available\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002161 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002162 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002163 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002164 buf = tipc_buf_acquire(length + INT_H_SIZE);
Allan Stephens5392d642006-06-25 23:52:50 -07002165 if (!buf) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002166 pr_warn("%sunable to send tunnel msg\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002167 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002168 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002169 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
2170 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
Per Liden4323add2006-01-18 00:38:21 +01002171 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002172}
2173
2174
2175
2176/*
2177 * changeover(): Send whole message queue via the remaining link
2178 * Owner node is locked.
2179 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002180void tipc_link_changeover(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002181{
2182 u32 msgcount = l_ptr->out_queue_size;
2183 struct sk_buff *crs = l_ptr->first_out;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002184 struct tipc_link *tunnel = l_ptr->owner->active_links[0];
Per Lidenb97bf3f2006-01-02 19:04:38 +01002185 struct tipc_msg tunnel_hdr;
Allan Stephens5392d642006-06-25 23:52:50 -07002186 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002187
2188 if (!tunnel)
2189 return;
2190
Allan Stephens5392d642006-06-25 23:52:50 -07002191 if (!l_ptr->owner->permit_changeover) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002192 pr_warn("%speer did not permit changeover\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002193 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002194 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002195
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002196 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002197 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002198 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2199 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07002200
Per Lidenb97bf3f2006-01-02 19:04:38 +01002201 if (!l_ptr->first_out) {
2202 struct sk_buff *buf;
2203
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002204 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002205 if (buf) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002206 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002207 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Per Liden4323add2006-01-18 00:38:21 +01002208 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002209 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002210 pr_warn("%sunable to send changeover msg\n",
2211 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002212 }
2213 return;
2214 }
Allan Stephensf1310722006-06-25 23:51:37 -07002215
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002216 split_bundles = (l_ptr->owner->active_links[0] !=
Allan Stephens5392d642006-06-25 23:52:50 -07002217 l_ptr->owner->active_links[1]);
2218
Per Lidenb97bf3f2006-01-02 19:04:38 +01002219 while (crs) {
2220 struct tipc_msg *msg = buf_msg(crs);
2221
2222 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002223 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00002224 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002225
Florian Westphald788d802007-08-02 19:28:06 -07002226 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002227 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00002228 msg_set_seqno(m, msg_seqno(msg));
Per Liden4323add2006-01-18 00:38:21 +01002229 tipc_link_tunnel(l_ptr, &tunnel_hdr, m,
2230 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002231 pos += align(msg_size(m));
2232 m = (struct tipc_msg *)pos;
2233 }
2234 } else {
Per Liden4323add2006-01-18 00:38:21 +01002235 tipc_link_tunnel(l_ptr, &tunnel_hdr, msg,
2236 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002237 }
2238 crs = crs->next;
2239 }
2240}
2241
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002242void tipc_link_send_duplicate(struct tipc_link *l_ptr, struct tipc_link *tunnel)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002243{
2244 struct sk_buff *iter;
2245 struct tipc_msg tunnel_hdr;
2246
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002247 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002248 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002249 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
2250 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2251 iter = l_ptr->first_out;
2252 while (iter) {
2253 struct sk_buff *outbuf;
2254 struct tipc_msg *msg = buf_msg(iter);
2255 u32 length = msg_size(msg);
2256
2257 if (msg_user(msg) == MSG_BUNDLER)
2258 msg_set_type(msg, CLOSED_MSG);
2259 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002260 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002261 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002262 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002263 if (outbuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002264 pr_warn("%sunable to send duplicate msg\n",
2265 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002266 return;
2267 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002268 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
2269 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
2270 length);
Per Liden4323add2006-01-18 00:38:21 +01002271 tipc_link_send_buf(tunnel, outbuf);
2272 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002273 return;
2274 iter = iter->next;
2275 }
2276}
2277
Per Lidenb97bf3f2006-01-02 19:04:38 +01002278/**
2279 * buf_extract - extracts embedded TIPC message from another message
2280 * @skb: encapsulating message buffer
2281 * @from_pos: offset to extract from
2282 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002283 * Returns a new message buffer containing an embedded message. The
Per Lidenb97bf3f2006-01-02 19:04:38 +01002284 * encapsulating message itself is left unchanged.
2285 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002286static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
2287{
2288 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
2289 u32 size = msg_size(msg);
2290 struct sk_buff *eb;
2291
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002292 eb = tipc_buf_acquire(size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002293 if (eb)
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002294 skb_copy_to_linear_data(eb, msg, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002295 return eb;
2296}
2297
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002298/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01002299 * link_recv_changeover_msg(): Receive tunneled packet sent
2300 * via other link. Node is locked. Return extracted buffer.
2301 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002302static int link_recv_changeover_msg(struct tipc_link **l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002303 struct sk_buff **buf)
2304{
2305 struct sk_buff *tunnel_buf = *buf;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002306 struct tipc_link *dest_link;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002307 struct tipc_msg *msg;
2308 struct tipc_msg *tunnel_msg = buf_msg(tunnel_buf);
2309 u32 msg_typ = msg_type(tunnel_msg);
2310 u32 msg_count = msg_msgcnt(tunnel_msg);
2311
2312 dest_link = (*l_ptr)->owner->links[msg_bearer_id(tunnel_msg)];
Allan Stephensb29f1422010-12-31 18:59:25 +00002313 if (!dest_link)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002314 goto exit;
Allan Stephensf1310722006-06-25 23:51:37 -07002315 if (dest_link == *l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002316 pr_err("Unexpected changeover message on link <%s>\n",
2317 (*l_ptr)->name);
Allan Stephensf1310722006-06-25 23:51:37 -07002318 goto exit;
2319 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002320 *l_ptr = dest_link;
2321 msg = msg_get_wrapped(tunnel_msg);
2322
2323 if (msg_typ == DUPLICATE_MSG) {
Allan Stephensb29f1422010-12-31 18:59:25 +00002324 if (less(msg_seqno(msg), mod(dest_link->next_in_no)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002325 goto exit;
Allan Stephens0e659672010-12-31 18:59:32 +00002326 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002327 if (*buf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002328 pr_warn("%sduplicate msg dropped\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002329 goto exit;
2330 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002331 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002332 return 1;
2333 }
2334
2335 /* First original message ?: */
Per Liden4323add2006-01-18 00:38:21 +01002336 if (tipc_link_is_up(dest_link)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002337 pr_info("%s<%s>, changeover initiated by peer\n", link_rst_msg,
2338 dest_link->name);
Per Liden4323add2006-01-18 00:38:21 +01002339 tipc_link_reset(dest_link);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002340 dest_link->exp_msg_count = msg_count;
2341 if (!msg_count)
2342 goto exit;
2343 } else if (dest_link->exp_msg_count == START_CHANGEOVER) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002344 dest_link->exp_msg_count = msg_count;
2345 if (!msg_count)
2346 goto exit;
2347 }
2348
2349 /* Receive original message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002350 if (dest_link->exp_msg_count == 0) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002351 pr_warn("%sgot too many tunnelled messages\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002352 goto exit;
2353 }
2354 dest_link->exp_msg_count--;
2355 if (less(msg_seqno(msg), dest_link->reset_checkpoint)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002356 goto exit;
2357 } else {
2358 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
2359 if (*buf != NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002360 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002361 return 1;
2362 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002363 pr_warn("%soriginal msg dropped\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002364 }
2365 }
2366exit:
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002367 *buf = NULL;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002368 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002369 return 0;
2370}
2371
2372/*
2373 * Bundler functionality:
2374 */
Per Liden4323add2006-01-18 00:38:21 +01002375void tipc_link_recv_bundle(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002376{
2377 u32 msgcount = msg_msgcnt(buf_msg(buf));
2378 u32 pos = INT_H_SIZE;
2379 struct sk_buff *obuf;
2380
Per Lidenb97bf3f2006-01-02 19:04:38 +01002381 while (msgcount--) {
2382 obuf = buf_extract(buf, pos);
2383 if (obuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002384 pr_warn("Link unable to unbundle message(s)\n");
Allan Stephensa10bd922006-06-25 23:52:17 -07002385 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002386 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002387 pos += align(msg_size(buf_msg(obuf)));
Per Liden4323add2006-01-18 00:38:21 +01002388 tipc_net_route_msg(obuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002389 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002390 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002391}
2392
2393/*
2394 * Fragmentation/defragmentation:
2395 */
2396
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002397/*
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002398 * link_send_long_buf: Entry for buffers needing fragmentation.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002399 * The buffer is complete, inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002400 * Returns user data length.
2401 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002402static int link_send_long_buf(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002403{
Allan Stephens77561552011-04-17 13:06:23 -04002404 struct sk_buff *buf_chain = NULL;
2405 struct sk_buff *buf_chain_tail = (struct sk_buff *)&buf_chain;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002406 struct tipc_msg *inmsg = buf_msg(buf);
2407 struct tipc_msg fragm_hdr;
2408 u32 insize = msg_size(inmsg);
2409 u32 dsz = msg_data_sz(inmsg);
2410 unchar *crs = buf->data;
2411 u32 rest = insize;
Allan Stephens15e979d2010-05-11 14:30:10 +00002412 u32 pack_sz = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002413 u32 fragm_sz = pack_sz - INT_H_SIZE;
Allan Stephens77561552011-04-17 13:06:23 -04002414 u32 fragm_no = 0;
Allan Stephens9c396a72008-06-04 17:36:58 -07002415 u32 destaddr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002416
2417 if (msg_short(inmsg))
2418 destaddr = l_ptr->addr;
Allan Stephens9c396a72008-06-04 17:36:58 -07002419 else
2420 destaddr = msg_destnode(inmsg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002421
Per Lidenb97bf3f2006-01-02 19:04:38 +01002422 /* Prepare reusable fragment header: */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002423 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07002424 INT_H_SIZE, destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002425
2426 /* Chop up message: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002427 while (rest > 0) {
2428 struct sk_buff *fragm;
2429
2430 if (rest <= fragm_sz) {
2431 fragm_sz = rest;
2432 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
2433 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002434 fragm = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002435 if (fragm == NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002436 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002437 while (buf_chain) {
2438 buf = buf_chain;
2439 buf_chain = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002440 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002441 }
2442 return -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002443 }
2444 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
Allan Stephens77561552011-04-17 13:06:23 -04002445 fragm_no++;
2446 msg_set_fragm_no(&fragm_hdr, fragm_no);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002447 skb_copy_to_linear_data(fragm, &fragm_hdr, INT_H_SIZE);
2448 skb_copy_to_linear_data_offset(fragm, INT_H_SIZE, crs,
2449 fragm_sz);
Allan Stephens77561552011-04-17 13:06:23 -04002450 buf_chain_tail->next = fragm;
2451 buf_chain_tail = fragm;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002452
Per Lidenb97bf3f2006-01-02 19:04:38 +01002453 rest -= fragm_sz;
2454 crs += fragm_sz;
2455 msg_set_type(&fragm_hdr, FRAGMENT);
2456 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002457 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002458
2459 /* Append chain of fragments to send queue & send them */
Allan Stephens77561552011-04-17 13:06:23 -04002460 l_ptr->long_msg_seq_no++;
2461 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
2462 l_ptr->stats.sent_fragments += fragm_no;
2463 l_ptr->stats.sent_fragmented++;
2464 tipc_link_push_queue(l_ptr);
2465
Per Lidenb97bf3f2006-01-02 19:04:38 +01002466 return dsz;
2467}
2468
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002469/*
2470 * A pending message being re-assembled must store certain values
2471 * to handle subsequent fragments correctly. The following functions
Per Lidenb97bf3f2006-01-02 19:04:38 +01002472 * help storing these values in unused, available fields in the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002473 * pending message. This makes dynamic memory allocation unnecessary.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002474 */
Sam Ravnborg05790c62006-03-20 22:37:04 -08002475static void set_long_msg_seqno(struct sk_buff *buf, u32 seqno)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002476{
2477 msg_set_seqno(buf_msg(buf), seqno);
2478}
2479
Sam Ravnborg05790c62006-03-20 22:37:04 -08002480static u32 get_fragm_size(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002481{
2482 return msg_ack(buf_msg(buf));
2483}
2484
Sam Ravnborg05790c62006-03-20 22:37:04 -08002485static void set_fragm_size(struct sk_buff *buf, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002486{
2487 msg_set_ack(buf_msg(buf), sz);
2488}
2489
Sam Ravnborg05790c62006-03-20 22:37:04 -08002490static u32 get_expected_frags(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002491{
2492 return msg_bcast_ack(buf_msg(buf));
2493}
2494
Sam Ravnborg05790c62006-03-20 22:37:04 -08002495static void set_expected_frags(struct sk_buff *buf, u32 exp)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002496{
2497 msg_set_bcast_ack(buf_msg(buf), exp);
2498}
2499
Sam Ravnborg05790c62006-03-20 22:37:04 -08002500static u32 get_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002501{
2502 return msg_reroute_cnt(buf_msg(buf));
2503}
2504
Sam Ravnborg05790c62006-03-20 22:37:04 -08002505static void incr_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002506{
2507 msg_incr_reroute_cnt(buf_msg(buf));
2508}
2509
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002510/*
2511 * tipc_link_recv_fragment(): Called with node lock on. Returns
Per Lidenb97bf3f2006-01-02 19:04:38 +01002512 * the reassembled buffer if message is complete.
2513 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002514int tipc_link_recv_fragment(struct sk_buff **pending, struct sk_buff **fb,
Per Liden4323add2006-01-18 00:38:21 +01002515 struct tipc_msg **m)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002516{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002517 struct sk_buff *prev = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002518 struct sk_buff *fbuf = *fb;
2519 struct tipc_msg *fragm = buf_msg(fbuf);
2520 struct sk_buff *pbuf = *pending;
2521 u32 long_msg_seq_no = msg_long_msgno(fragm);
2522
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002523 *fb = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002524
2525 /* Is there an incomplete message waiting for this fragment? */
Allan Stephensf9057302011-10-24 16:03:12 -04002526 while (pbuf && ((buf_seqno(pbuf) != long_msg_seq_no) ||
Joe Perchesf64f9e72009-11-29 16:55:45 -08002527 (msg_orignode(fragm) != msg_orignode(buf_msg(pbuf))))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002528 prev = pbuf;
2529 pbuf = pbuf->next;
2530 }
2531
2532 if (!pbuf && (msg_type(fragm) == FIRST_FRAGMENT)) {
2533 struct tipc_msg *imsg = (struct tipc_msg *)msg_data(fragm);
2534 u32 msg_sz = msg_size(imsg);
2535 u32 fragm_sz = msg_data_sz(fragm);
2536 u32 exp_fragm_cnt = msg_sz/fragm_sz + !!(msg_sz % fragm_sz);
Allan Stephens741d9eb2011-05-31 15:03:18 -04002537 u32 max = TIPC_MAX_USER_MSG_SIZE + NAMED_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002538 if (msg_type(imsg) == TIPC_MCAST_MSG)
2539 max = TIPC_MAX_USER_MSG_SIZE + MCAST_H_SIZE;
2540 if (msg_size(imsg) > max) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002541 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002542 return 0;
2543 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002544 pbuf = tipc_buf_acquire(msg_size(imsg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002545 if (pbuf != NULL) {
2546 pbuf->next = *pending;
2547 *pending = pbuf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002548 skb_copy_to_linear_data(pbuf, imsg,
2549 msg_data_sz(fragm));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002550 /* Prepare buffer for subsequent fragments. */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002551 set_long_msg_seqno(pbuf, long_msg_seq_no);
Allan Stephens0e659672010-12-31 18:59:32 +00002552 set_fragm_size(pbuf, fragm_sz);
2553 set_expected_frags(pbuf, exp_fragm_cnt - 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002554 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002555 pr_debug("Link unable to reassemble fragmented message\n");
Allan Stephens5f6d9122011-11-04 13:24:29 -04002556 kfree_skb(fbuf);
Allan Stephensb76b27c2011-10-27 16:31:26 -04002557 return -1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002558 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002559 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002560 return 0;
2561 } else if (pbuf && (msg_type(fragm) != FIRST_FRAGMENT)) {
2562 u32 dsz = msg_data_sz(fragm);
2563 u32 fsz = get_fragm_size(pbuf);
2564 u32 crs = ((msg_fragm_no(fragm) - 1) * fsz);
2565 u32 exp_frags = get_expected_frags(pbuf) - 1;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002566 skb_copy_to_linear_data_offset(pbuf, crs,
2567 msg_data(fragm), dsz);
Allan Stephens5f6d9122011-11-04 13:24:29 -04002568 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002569
2570 /* Is message complete? */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002571 if (exp_frags == 0) {
2572 if (prev)
2573 prev->next = pbuf->next;
2574 else
2575 *pending = pbuf->next;
2576 msg_reset_reroute_cnt(buf_msg(pbuf));
2577 *fb = pbuf;
2578 *m = buf_msg(pbuf);
2579 return 1;
2580 }
Allan Stephens0e659672010-12-31 18:59:32 +00002581 set_expected_frags(pbuf, exp_frags);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002582 return 0;
2583 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002584 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002585 return 0;
2586}
2587
2588/**
2589 * link_check_defragm_bufs - flush stale incoming message fragments
2590 * @l_ptr: pointer to link
2591 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002592static void link_check_defragm_bufs(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002593{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002594 struct sk_buff *prev = NULL;
2595 struct sk_buff *next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002596 struct sk_buff *buf = l_ptr->defragm_buf;
2597
2598 if (!buf)
2599 return;
2600 if (!link_working_working(l_ptr))
2601 return;
2602 while (buf) {
2603 u32 cnt = get_timer_cnt(buf);
2604
2605 next = buf->next;
2606 if (cnt < 4) {
2607 incr_timer_cnt(buf);
2608 prev = buf;
2609 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002610 if (prev)
2611 prev->next = buf->next;
2612 else
2613 l_ptr->defragm_buf = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002614 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002615 }
2616 buf = next;
2617 }
2618}
2619
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002620static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002621{
Allan Stephens5413b4c2011-01-18 13:24:55 -05002622 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
2623 return;
2624
Per Lidenb97bf3f2006-01-02 19:04:38 +01002625 l_ptr->tolerance = tolerance;
2626 l_ptr->continuity_interval =
2627 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
2628 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
2629}
2630
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002631void tipc_link_set_queue_limits(struct tipc_link *l_ptr, u32 window)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002632{
2633 /* Data messages from this node, inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002634 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
2635 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
2636 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
2637 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002638 /* Transiting data messages,inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002639 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
2640 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
2641 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
2642 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002643 l_ptr->queue_limit[CONN_MANAGER] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002644 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
2645 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
2646 /* FRAGMENT and LAST_FRAGMENT packets */
2647 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
2648}
2649
2650/**
2651 * link_find_link - locate link by name
Ben Hutchings2c530402012-07-10 10:55:09 +00002652 * @name: ptr to link name string
2653 * @node: ptr to area to be filled with ptr to associated node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002654 *
Per Liden4323add2006-01-18 00:38:21 +01002655 * Caller must hold 'tipc_net_lock' to ensure node and bearer are not deleted;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002656 * this also prevents link deletion.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002657 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002658 * Returns pointer to link (or 0 if invalid link name).
2659 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002660static struct tipc_link *link_find_link(const char *name,
2661 struct tipc_node **node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002662{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002663 struct tipc_link_name link_name_parts;
Allan Stephens2d627b92011-01-07 13:00:11 -05002664 struct tipc_bearer *b_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002665 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002666
2667 if (!link_name_validate(name, &link_name_parts))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002668 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002669
Per Liden4323add2006-01-18 00:38:21 +01002670 b_ptr = tipc_bearer_find_interface(link_name_parts.if_local);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002671 if (!b_ptr)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002672 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002673
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002674 *node = tipc_node_find(link_name_parts.addr_peer);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002675 if (!*node)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002676 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002677
2678 l_ptr = (*node)->links[b_ptr->identity];
2679 if (!l_ptr || strcmp(l_ptr->name, name))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002680 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002681
2682 return l_ptr;
2683}
2684
Allan Stephens5c216e12011-10-18 11:34:29 -04002685/**
2686 * link_value_is_valid -- validate proposed link tolerance/priority/window
2687 *
Ben Hutchings2c530402012-07-10 10:55:09 +00002688 * @cmd: value type (TIPC_CMD_SET_LINK_*)
2689 * @new_value: the new value
Allan Stephens5c216e12011-10-18 11:34:29 -04002690 *
2691 * Returns 1 if value is within range, 0 if not.
2692 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002693static int link_value_is_valid(u16 cmd, u32 new_value)
2694{
2695 switch (cmd) {
2696 case TIPC_CMD_SET_LINK_TOL:
2697 return (new_value >= TIPC_MIN_LINK_TOL) &&
2698 (new_value <= TIPC_MAX_LINK_TOL);
2699 case TIPC_CMD_SET_LINK_PRI:
2700 return (new_value <= TIPC_MAX_LINK_PRI);
2701 case TIPC_CMD_SET_LINK_WINDOW:
2702 return (new_value >= TIPC_MIN_LINK_WIN) &&
2703 (new_value <= TIPC_MAX_LINK_WIN);
2704 }
2705 return 0;
2706}
2707
Allan Stephens5c216e12011-10-18 11:34:29 -04002708/**
2709 * link_cmd_set_value - change priority/tolerance/window for link/bearer/media
Ben Hutchings2c530402012-07-10 10:55:09 +00002710 * @name: ptr to link, bearer, or media name
2711 * @new_value: new value of link, bearer, or media setting
2712 * @cmd: which link, bearer, or media attribute to set (TIPC_CMD_SET_LINK_*)
Allan Stephens5c216e12011-10-18 11:34:29 -04002713 *
2714 * Caller must hold 'tipc_net_lock' to ensure link/bearer/media is not deleted.
2715 *
2716 * Returns 0 if value updated and negative value on error.
2717 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002718static int link_cmd_set_value(const char *name, u32 new_value, u16 cmd)
2719{
2720 struct tipc_node *node;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002721 struct tipc_link *l_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002722 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -05002723 struct tipc_media *m_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002724
2725 l_ptr = link_find_link(name, &node);
2726 if (l_ptr) {
2727 /*
2728 * acquire node lock for tipc_link_send_proto_msg().
2729 * see "TIPC locking policy" in net.c.
2730 */
2731 tipc_node_lock(node);
2732 switch (cmd) {
2733 case TIPC_CMD_SET_LINK_TOL:
2734 link_set_supervision_props(l_ptr, new_value);
2735 tipc_link_send_proto_msg(l_ptr,
2736 STATE_MSG, 0, 0, new_value, 0, 0);
2737 break;
2738 case TIPC_CMD_SET_LINK_PRI:
2739 l_ptr->priority = new_value;
2740 tipc_link_send_proto_msg(l_ptr,
2741 STATE_MSG, 0, 0, 0, new_value, 0);
2742 break;
2743 case TIPC_CMD_SET_LINK_WINDOW:
2744 tipc_link_set_queue_limits(l_ptr, new_value);
2745 break;
2746 }
2747 tipc_node_unlock(node);
2748 return 0;
2749 }
2750
2751 b_ptr = tipc_bearer_find(name);
2752 if (b_ptr) {
2753 switch (cmd) {
2754 case TIPC_CMD_SET_LINK_TOL:
2755 b_ptr->tolerance = new_value;
2756 return 0;
2757 case TIPC_CMD_SET_LINK_PRI:
2758 b_ptr->priority = new_value;
2759 return 0;
2760 case TIPC_CMD_SET_LINK_WINDOW:
2761 b_ptr->window = new_value;
2762 return 0;
2763 }
2764 return -EINVAL;
2765 }
2766
2767 m_ptr = tipc_media_find(name);
2768 if (!m_ptr)
2769 return -ENODEV;
2770 switch (cmd) {
2771 case TIPC_CMD_SET_LINK_TOL:
2772 m_ptr->tolerance = new_value;
2773 return 0;
2774 case TIPC_CMD_SET_LINK_PRI:
2775 m_ptr->priority = new_value;
2776 return 0;
2777 case TIPC_CMD_SET_LINK_WINDOW:
2778 m_ptr->window = new_value;
2779 return 0;
2780 }
2781 return -EINVAL;
2782}
2783
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002784struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
Per Liden4323add2006-01-18 00:38:21 +01002785 u16 cmd)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002786{
2787 struct tipc_link_config *args;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002788 u32 new_value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002789 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002790
2791 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
Per Liden4323add2006-01-18 00:38:21 +01002792 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002793
2794 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2795 new_value = ntohl(args->value);
2796
Allan Stephens5c216e12011-10-18 11:34:29 -04002797 if (!link_value_is_valid(cmd, new_value))
2798 return tipc_cfg_reply_error_string(
2799 "cannot change, value invalid");
2800
Per Liden4323add2006-01-18 00:38:21 +01002801 if (!strcmp(args->name, tipc_bclink_name)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002802 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
Per Liden4323add2006-01-18 00:38:21 +01002803 (tipc_bclink_set_queue_limits(new_value) == 0))
2804 return tipc_cfg_reply_none();
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002805 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
Per Liden4323add2006-01-18 00:38:21 +01002806 " (cannot change setting on broadcast link)");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002807 }
2808
Per Liden4323add2006-01-18 00:38:21 +01002809 read_lock_bh(&tipc_net_lock);
Allan Stephens5c216e12011-10-18 11:34:29 -04002810 res = link_cmd_set_value(args->name, new_value, cmd);
Per Liden4323add2006-01-18 00:38:21 +01002811 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002812 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002813 return tipc_cfg_reply_error_string("cannot change link setting");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002814
Per Liden4323add2006-01-18 00:38:21 +01002815 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002816}
2817
2818/**
2819 * link_reset_statistics - reset link statistics
2820 * @l_ptr: pointer to link
2821 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002822static void link_reset_statistics(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002823{
2824 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2825 l_ptr->stats.sent_info = l_ptr->next_out_no;
2826 l_ptr->stats.recv_info = l_ptr->next_in_no;
2827}
2828
Per Liden4323add2006-01-18 00:38:21 +01002829struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002830{
2831 char *link_name;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002832 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002833 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002834
2835 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002836 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002837
2838 link_name = (char *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +01002839 if (!strcmp(link_name, tipc_bclink_name)) {
2840 if (tipc_bclink_reset_stats())
2841 return tipc_cfg_reply_error_string("link not found");
2842 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002843 }
2844
Per Liden4323add2006-01-18 00:38:21 +01002845 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002846 l_ptr = link_find_link(link_name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002847 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002848 read_unlock_bh(&tipc_net_lock);
2849 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002850 }
2851
Per Liden4323add2006-01-18 00:38:21 +01002852 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002853 link_reset_statistics(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +01002854 tipc_node_unlock(node);
2855 read_unlock_bh(&tipc_net_lock);
2856 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002857}
2858
2859/**
2860 * percent - convert count to a percentage of total (rounding up or down)
2861 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002862static u32 percent(u32 count, u32 total)
2863{
2864 return (count * 100 + (total / 2)) / total;
2865}
2866
2867/**
Per Liden4323add2006-01-18 00:38:21 +01002868 * tipc_link_stats - print link statistics
Per Lidenb97bf3f2006-01-02 19:04:38 +01002869 * @name: link name
2870 * @buf: print buffer area
2871 * @buf_size: size of print buffer area
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002872 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002873 * Returns length of print buffer data string (or 0 if error)
2874 */
Per Liden4323add2006-01-18 00:38:21 +01002875static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002876{
Erik Hugnedc1aed32012-06-29 00:50:23 -04002877 struct tipc_link *l;
2878 struct tipc_stats *s;
David S. Miller6c000552008-09-02 23:38:32 -07002879 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002880 char *status;
2881 u32 profile_total = 0;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002882 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002883
Per Liden4323add2006-01-18 00:38:21 +01002884 if (!strcmp(name, tipc_bclink_name))
2885 return tipc_bclink_stats(buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002886
Per Liden4323add2006-01-18 00:38:21 +01002887 read_lock_bh(&tipc_net_lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002888 l = link_find_link(name, &node);
2889 if (!l) {
Per Liden4323add2006-01-18 00:38:21 +01002890 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002891 return 0;
2892 }
Per Liden4323add2006-01-18 00:38:21 +01002893 tipc_node_lock(node);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002894 s = &l->stats;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002895
Erik Hugnedc1aed32012-06-29 00:50:23 -04002896 if (tipc_link_is_active(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002897 status = "ACTIVE";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002898 else if (tipc_link_is_up(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002899 status = "STANDBY";
2900 else
2901 status = "DEFUNCT";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002902
2903 ret = tipc_snprintf(buf, buf_size, "Link <%s>\n"
2904 " %s MTU:%u Priority:%u Tolerance:%u ms"
2905 " Window:%u packets\n",
2906 l->name, status, l->max_pkt, l->priority,
2907 l->tolerance, l->queue_limit[0]);
2908
2909 ret += tipc_snprintf(buf + ret, buf_size - ret,
2910 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
2911 l->next_in_no - s->recv_info, s->recv_fragments,
2912 s->recv_fragmented, s->recv_bundles,
2913 s->recv_bundled);
2914
2915 ret += tipc_snprintf(buf + ret, buf_size - ret,
2916 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
2917 l->next_out_no - s->sent_info, s->sent_fragments,
2918 s->sent_fragmented, s->sent_bundles,
2919 s->sent_bundled);
2920
2921 profile_total = s->msg_length_counts;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002922 if (!profile_total)
2923 profile_total = 1;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002924
2925 ret += tipc_snprintf(buf + ret, buf_size - ret,
2926 " TX profile sample:%u packets average:%u octets\n"
2927 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
2928 "-16384:%u%% -32768:%u%% -66000:%u%%\n",
2929 s->msg_length_counts,
2930 s->msg_lengths_total / profile_total,
2931 percent(s->msg_length_profile[0], profile_total),
2932 percent(s->msg_length_profile[1], profile_total),
2933 percent(s->msg_length_profile[2], profile_total),
2934 percent(s->msg_length_profile[3], profile_total),
2935 percent(s->msg_length_profile[4], profile_total),
2936 percent(s->msg_length_profile[5], profile_total),
2937 percent(s->msg_length_profile[6], profile_total));
2938
2939 ret += tipc_snprintf(buf + ret, buf_size - ret,
2940 " RX states:%u probes:%u naks:%u defs:%u"
2941 " dups:%u\n", s->recv_states, s->recv_probes,
2942 s->recv_nacks, s->deferred_recv, s->duplicates);
2943
2944 ret += tipc_snprintf(buf + ret, buf_size - ret,
2945 " TX states:%u probes:%u naks:%u acks:%u"
2946 " dups:%u\n", s->sent_states, s->sent_probes,
2947 s->sent_nacks, s->sent_acks, s->retransmitted);
2948
2949 ret += tipc_snprintf(buf + ret, buf_size - ret,
Ying Xue3c294cb2012-11-15 11:34:45 +08002950 " Congestion link:%u Send queue"
2951 " max:%u avg:%u\n", s->link_congs,
Erik Hugnedc1aed32012-06-29 00:50:23 -04002952 s->max_queue_sz, s->queue_sz_counts ?
2953 (s->accu_queue_sz / s->queue_sz_counts) : 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002954
Per Liden4323add2006-01-18 00:38:21 +01002955 tipc_node_unlock(node);
2956 read_unlock_bh(&tipc_net_lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002957 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002958}
2959
Per Liden4323add2006-01-18 00:38:21 +01002960struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002961{
2962 struct sk_buff *buf;
2963 struct tlv_desc *rep_tlv;
2964 int str_len;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002965 int pb_len;
2966 char *pb;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002967
2968 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002969 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002970
Erik Hugnedc1aed32012-06-29 00:50:23 -04002971 buf = tipc_cfg_reply_alloc(TLV_SPACE(ULTRA_STRING_MAX_LEN));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002972 if (!buf)
2973 return NULL;
2974
2975 rep_tlv = (struct tlv_desc *)buf->data;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002976 pb = TLV_DATA(rep_tlv);
2977 pb_len = ULTRA_STRING_MAX_LEN;
Per Liden4323add2006-01-18 00:38:21 +01002978 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
Erik Hugnedc1aed32012-06-29 00:50:23 -04002979 pb, pb_len);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002980 if (!str_len) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002981 kfree_skb(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002982 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002983 }
Erik Hugnedc1aed32012-06-29 00:50:23 -04002984 str_len += 1; /* for "\0" */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002985 skb_put(buf, TLV_SPACE(str_len));
2986 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
2987
2988 return buf;
2989}
2990
Per Lidenb97bf3f2006-01-02 19:04:38 +01002991/**
Per Liden4323add2006-01-18 00:38:21 +01002992 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
Per Lidenb97bf3f2006-01-02 19:04:38 +01002993 * @dest: network address of destination node
2994 * @selector: used to select from set of active links
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002995 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002996 * If no active link can be found, uses default maximum packet size.
2997 */
Per Liden4323add2006-01-18 00:38:21 +01002998u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002999{
David S. Miller6c000552008-09-02 23:38:32 -07003000 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05003001 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01003002 u32 res = MAX_PKT_DEFAULT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003003
Per Lidenb97bf3f2006-01-02 19:04:38 +01003004 if (dest == tipc_own_addr)
3005 return MAX_MSG_SIZE;
3006
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003007 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00003008 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003009 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01003010 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003011 l_ptr = n_ptr->active_links[selector & 1];
3012 if (l_ptr)
Allan Stephens15e979d2010-05-11 14:30:10 +00003013 res = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01003014 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003015 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003016 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003017 return res;
3018}
3019
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05003020static void link_print(struct tipc_link *l_ptr, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003021{
Paul Gortmaker5deedde2012-07-11 19:27:56 -04003022 pr_info("%s Link %x<%s>:", str, l_ptr->addr, l_ptr->b_ptr->name);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003023
Per Lidenb97bf3f2006-01-02 19:04:38 +01003024 if (link_working_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04003025 pr_cont(":WU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003026 else if (link_reset_reset(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04003027 pr_cont(":RR\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003028 else if (link_reset_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04003029 pr_cont(":RU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003030 else if (link_working_working(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04003031 pr_cont(":WW\n");
3032 else
3033 pr_cont("\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01003034}