blob: 1c1e6151875e6a16c93096063b2065a419dd5e0d [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/link.c: TIPC link code
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Allan Stephens05646c92007-06-10 17:25:24 -07004 * Copyright (c) 1996-2007, Ericsson AB
Allan Stephens23dd4cc2011-01-07 11:43:40 -05005 * Copyright (c) 2004-2007, 2010-2011, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010038#include "link.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039#include "port.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "name_distr.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010041#include "discover.h"
42#include "config.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010043
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);
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000106
Per Lidenb97bf3f2006-01-02 19:04:38 +0100107/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800108 * Simple link routines
Per Lidenb97bf3f2006-01-02 19:04:38 +0100109 */
Sam Ravnborg05790c62006-03-20 22:37:04 -0800110static unsigned int align(unsigned int i)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100111{
112 return (i + 3) & ~3u;
113}
114
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500115static void link_init_max_pkt(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100116{
117 u32 max_pkt;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900118
Allan Stephens2d627b92011-01-07 13:00:11 -0500119 max_pkt = (l_ptr->b_ptr->mtu & ~3);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100120 if (max_pkt > MAX_MSG_SIZE)
121 max_pkt = MAX_MSG_SIZE;
122
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900123 l_ptr->max_pkt_target = max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100124 if (l_ptr->max_pkt_target < MAX_PKT_DEFAULT)
125 l_ptr->max_pkt = l_ptr->max_pkt_target;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900126 else
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127 l_ptr->max_pkt = MAX_PKT_DEFAULT;
128
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900129 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100130}
131
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500132static u32 link_next_sent(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100133{
134 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -0400135 return buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100136 return mod(l_ptr->next_out_no);
137}
138
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500139static u32 link_last_sent(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100140{
141 return mod(link_next_sent(l_ptr) - 1);
142}
143
144/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800145 * Simple non-static link routines (i.e. referenced outside this file)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100146 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500147int tipc_link_is_up(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100148{
149 if (!l_ptr)
150 return 0;
Eric Dumazeta02cec22010-09-22 20:43:57 +0000151 return link_working_working(l_ptr) || link_working_unknown(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100152}
153
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500154int tipc_link_is_active(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100155{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000156 return (l_ptr->owner->active_links[0] == l_ptr) ||
157 (l_ptr->owner->active_links[1] == l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100158}
159
160/**
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500161 * link_name_validate - validate & (optionally) deconstruct tipc_link name
Ben Hutchings2c530402012-07-10 10:55:09 +0000162 * @name: ptr to link name string
163 * @name_parts: ptr to area for link name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900164 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100165 * Returns 1 if link name is valid, otherwise 0.
166 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500167static int link_name_validate(const char *name,
168 struct tipc_link_name *name_parts)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100169{
170 char name_copy[TIPC_MAX_LINK_NAME];
171 char *addr_local;
172 char *if_local;
173 char *addr_peer;
174 char *if_peer;
175 char dummy;
176 u32 z_local, c_local, n_local;
177 u32 z_peer, c_peer, n_peer;
178 u32 if_local_len;
179 u32 if_peer_len;
180
181 /* copy link name & ensure length is OK */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100182 name_copy[TIPC_MAX_LINK_NAME - 1] = 0;
183 /* need above in case non-Posix strncpy() doesn't pad with nulls */
184 strncpy(name_copy, name, TIPC_MAX_LINK_NAME);
185 if (name_copy[TIPC_MAX_LINK_NAME - 1] != 0)
186 return 0;
187
188 /* ensure all component parts of link name are present */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100189 addr_local = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000190 if_local = strchr(addr_local, ':');
191 if (if_local == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100192 return 0;
193 *(if_local++) = 0;
Allan Stephens2db99832010-12-31 18:59:33 +0000194 addr_peer = strchr(if_local, '-');
195 if (addr_peer == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100196 return 0;
197 *(addr_peer++) = 0;
198 if_local_len = addr_peer - if_local;
Allan Stephens2db99832010-12-31 18:59:33 +0000199 if_peer = strchr(addr_peer, ':');
200 if (if_peer == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100201 return 0;
202 *(if_peer++) = 0;
203 if_peer_len = strlen(if_peer) + 1;
204
205 /* validate component parts of link name */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100206 if ((sscanf(addr_local, "%u.%u.%u%c",
207 &z_local, &c_local, &n_local, &dummy) != 3) ||
208 (sscanf(addr_peer, "%u.%u.%u%c",
209 &z_peer, &c_peer, &n_peer, &dummy) != 3) ||
210 (z_local > 255) || (c_local > 4095) || (n_local > 4095) ||
211 (z_peer > 255) || (c_peer > 4095) || (n_peer > 4095) ||
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900212 (if_local_len <= 1) || (if_local_len > TIPC_MAX_IF_NAME) ||
213 (if_peer_len <= 1) || (if_peer_len > TIPC_MAX_IF_NAME) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +0100214 (strspn(if_local, tipc_alphabet) != (if_local_len - 1)) ||
215 (strspn(if_peer, tipc_alphabet) != (if_peer_len - 1)))
216 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 Stephensf882cb72011-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++;
717 link_set_timer(l_ptr, cont_intv);
718 break;
719 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100720 l_ptr->state = RESET_RESET;
721 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100722 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100723 l_ptr->fsm_msg_cnt++;
724 link_set_timer(l_ptr, cont_intv);
725 break;
726 case STARTING_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100727 l_ptr->started = 1;
728 /* fall through */
729 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100730 tipc_link_send_proto_msg(l_ptr, RESET_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100731 l_ptr->fsm_msg_cnt++;
732 link_set_timer(l_ptr, cont_intv);
733 break;
734 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400735 pr_err("%s%u in RU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100736 }
737 break;
738 case RESET_RESET:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100739 switch (event) {
740 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100741 case ACTIVATE_MSG:
742 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000743 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100744 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100745 l_ptr->state = WORKING_WORKING;
746 l_ptr->fsm_msg_cnt = 0;
747 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100748 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100749 l_ptr->fsm_msg_cnt++;
750 link_set_timer(l_ptr, cont_intv);
751 break;
752 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100753 break;
754 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100755 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100756 l_ptr->fsm_msg_cnt++;
757 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100758 break;
759 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400760 pr_err("%s%u in RR state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100761 }
762 break;
763 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400764 pr_err("Unknown link state %u/%u\n", l_ptr->state, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100765 }
766}
767
768/*
769 * link_bundle_buf(): Append contents of a buffer to
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900770 * the tail of an existing one.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100771 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500772static int link_bundle_buf(struct tipc_link *l_ptr,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900773 struct sk_buff *bundler,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100774 struct sk_buff *buf)
775{
776 struct tipc_msg *bundler_msg = buf_msg(bundler);
777 struct tipc_msg *msg = buf_msg(buf);
778 u32 size = msg_size(msg);
Allan Stephense49060c2006-06-29 12:32:46 -0700779 u32 bundle_size = msg_size(bundler_msg);
780 u32 to_pos = align(bundle_size);
781 u32 pad = to_pos - bundle_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100782
783 if (msg_user(bundler_msg) != MSG_BUNDLER)
784 return 0;
785 if (msg_type(bundler_msg) != OPEN_MSG)
786 return 0;
Allan Stephense49060c2006-06-29 12:32:46 -0700787 if (skb_tailroom(bundler) < (pad + size))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100788 return 0;
Allan Stephens15e979d2010-05-11 14:30:10 +0000789 if (l_ptr->max_pkt < (to_pos + size))
Allan Stephens863fae62006-07-03 19:39:36 -0700790 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100791
Allan Stephense49060c2006-06-29 12:32:46 -0700792 skb_put(bundler, pad + size);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300793 skb_copy_to_linear_data_offset(bundler, to_pos, buf->data, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100794 msg_set_size(bundler_msg, to_pos + size);
795 msg_set_msgcnt(bundler_msg, msg_msgcnt(bundler_msg) + 1);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400796 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100797 l_ptr->stats.sent_bundled++;
798 return 1;
799}
800
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500801static void link_add_to_outqueue(struct tipc_link *l_ptr,
Sam Ravnborg05790c62006-03-20 22:37:04 -0800802 struct sk_buff *buf,
803 struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100804{
805 u32 ack = mod(l_ptr->next_in_no - 1);
806 u32 seqno = mod(l_ptr->next_out_no++);
807
808 msg_set_word(msg, 2, ((ack << 16) | seqno));
809 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
810 buf->next = NULL;
811 if (l_ptr->first_out) {
812 l_ptr->last_out->next = buf;
813 l_ptr->last_out = buf;
814 } else
815 l_ptr->first_out = l_ptr->last_out = buf;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500816
Per Lidenb97bf3f2006-01-02 19:04:38 +0100817 l_ptr->out_queue_size++;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500818 if (l_ptr->out_queue_size > l_ptr->stats.max_queue_sz)
819 l_ptr->stats.max_queue_sz = l_ptr->out_queue_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100820}
821
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500822static void link_add_chain_to_outqueue(struct tipc_link *l_ptr,
Allan Stephensdc63d912011-04-21 11:50:42 -0400823 struct sk_buff *buf_chain,
824 u32 long_msgno)
825{
826 struct sk_buff *buf;
827 struct tipc_msg *msg;
828
829 if (!l_ptr->next_out)
830 l_ptr->next_out = buf_chain;
831 while (buf_chain) {
832 buf = buf_chain;
833 buf_chain = buf_chain->next;
834
835 msg = buf_msg(buf);
836 msg_set_long_msgno(msg, long_msgno);
837 link_add_to_outqueue(l_ptr, buf, msg);
838 }
839}
840
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900841/*
842 * tipc_link_send_buf() is the 'full path' for messages, called from
Per Lidenb97bf3f2006-01-02 19:04:38 +0100843 * inside TIPC when the 'fast path' in tipc_send_buf
844 * has failed, and from link_send()
845 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500846int tipc_link_send_buf(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100847{
848 struct tipc_msg *msg = buf_msg(buf);
849 u32 size = msg_size(msg);
850 u32 dsz = msg_data_sz(msg);
851 u32 queue_size = l_ptr->out_queue_size;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000852 u32 imp = tipc_msg_tot_importance(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100853 u32 queue_limit = l_ptr->queue_limit[imp];
Allan Stephens15e979d2010-05-11 14:30:10 +0000854 u32 max_packet = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100855
Per Lidenb97bf3f2006-01-02 19:04:38 +0100856 /* Match msg importance against queue limits: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100857 if (unlikely(queue_size >= queue_limit)) {
858 if (imp <= TIPC_CRITICAL_IMPORTANCE) {
Allan Stephensbebc55a2011-04-19 10:17:58 -0400859 link_schedule_port(l_ptr, msg_origport(msg), size);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400860 kfree_skb(buf);
Allan Stephensbebc55a2011-04-19 10:17:58 -0400861 return -ELINKCONG;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100862 }
Allan Stephens5f6d9122011-11-04 13:24:29 -0400863 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100864 if (imp > CONN_MANAGER) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400865 pr_warn("%s<%s>, send queue full", link_rst_msg,
866 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100867 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100868 }
869 return dsz;
870 }
871
872 /* Fragmentation needed ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100873 if (size > max_packet)
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000874 return link_send_long_buf(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100875
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400876 /* Packet can be queued or sent. */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900877 if (likely(!tipc_bearer_congested(l_ptr->b_ptr, l_ptr) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100878 !link_congested(l_ptr))) {
879 link_add_to_outqueue(l_ptr, buf, msg);
880
Per Liden4323add2006-01-18 00:38:21 +0100881 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100882 l_ptr->unacked_window = 0;
883 } else {
Per Liden4323add2006-01-18 00:38:21 +0100884 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100885 l_ptr->stats.bearer_congs++;
886 l_ptr->next_out = buf;
887 }
888 return dsz;
889 }
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400890 /* Congestion: can message be bundled ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100891 if ((msg_user(msg) != CHANGEOVER_PROTOCOL) &&
892 (msg_user(msg) != MSG_FRAGMENTER)) {
893
894 /* Try adding message to an existing bundle */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900895 if (l_ptr->next_out &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100896 link_bundle_buf(l_ptr, l_ptr->last_out, buf)) {
Per Liden4323add2006-01-18 00:38:21 +0100897 tipc_bearer_resolve_congestion(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100898 return dsz;
899 }
900
901 /* Try creating a new bundle */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100902 if (size <= max_packet * 2 / 3) {
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000903 struct sk_buff *bundler = tipc_buf_acquire(max_packet);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100904 struct tipc_msg bundler_hdr;
905
906 if (bundler) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000907 tipc_msg_init(&bundler_hdr, MSG_BUNDLER, OPEN_MSG,
Allan Stephens75715212008-06-04 17:37:34 -0700908 INT_H_SIZE, l_ptr->addr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300909 skb_copy_to_linear_data(bundler, &bundler_hdr,
910 INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100911 skb_trim(bundler, INT_H_SIZE);
912 link_bundle_buf(l_ptr, bundler, buf);
913 buf = bundler;
914 msg = buf_msg(buf);
915 l_ptr->stats.sent_bundles++;
916 }
917 }
918 }
919 if (!l_ptr->next_out)
920 l_ptr->next_out = buf;
921 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +0100922 tipc_bearer_resolve_congestion(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100923 return dsz;
924}
925
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900926/*
927 * tipc_link_send(): same as tipc_link_send_buf(), but the link to use has
Per Lidenb97bf3f2006-01-02 19:04:38 +0100928 * not been selected yet, and the the owner node is not locked
929 * Called by TIPC internal users, e.g. the name distributor
930 */
Per Liden4323add2006-01-18 00:38:21 +0100931int tipc_link_send(struct sk_buff *buf, u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100932{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500933 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700934 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100935 int res = -ELINKCONG;
936
Per Liden4323add2006-01-18 00:38:21 +0100937 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000938 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100939 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +0100940 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100941 l_ptr = n_ptr->active_links[selector & 1];
Allan Stephensa0168922010-12-31 18:59:35 +0000942 if (l_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100943 res = tipc_link_send_buf(l_ptr, buf);
Allan Stephensa0168922010-12-31 18:59:35 +0000944 else
Allan Stephens5f6d9122011-11-04 13:24:29 -0400945 kfree_skb(buf);
Per Liden4323add2006-01-18 00:38:21 +0100946 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100947 } else {
Allan Stephens5f6d9122011-11-04 13:24:29 -0400948 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100949 }
Per Liden4323add2006-01-18 00:38:21 +0100950 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100951 return res;
952}
953
Ben Hutchings2c530402012-07-10 10:55:09 +0000954/**
Allan Stephens9aa88c22011-05-31 13:38:02 -0400955 * tipc_link_send_names - send name table entries to new neighbor
956 *
957 * Send routine for bulk delivery of name table messages when contact
958 * with a new neighbor occurs. No link congestion checking is performed
959 * because name table messages *must* be delivered. The messages must be
960 * small enough not to require fragmentation.
961 * Called without any locks held.
962 */
Allan Stephens9aa88c22011-05-31 13:38:02 -0400963void tipc_link_send_names(struct list_head *message_list, u32 dest)
964{
965 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500966 struct tipc_link *l_ptr;
Allan Stephens9aa88c22011-05-31 13:38:02 -0400967 struct sk_buff *buf;
968 struct sk_buff *temp_buf;
969
970 if (list_empty(message_list))
971 return;
972
973 read_lock_bh(&tipc_net_lock);
974 n_ptr = tipc_node_find(dest);
975 if (n_ptr) {
976 tipc_node_lock(n_ptr);
977 l_ptr = n_ptr->active_links[0];
978 if (l_ptr) {
979 /* convert circular list to linear list */
980 ((struct sk_buff *)message_list->prev)->next = NULL;
981 link_add_chain_to_outqueue(l_ptr,
982 (struct sk_buff *)message_list->next, 0);
983 tipc_link_push_queue(l_ptr);
984 INIT_LIST_HEAD(message_list);
985 }
986 tipc_node_unlock(n_ptr);
987 }
988 read_unlock_bh(&tipc_net_lock);
989
990 /* discard the messages if they couldn't be sent */
Allan Stephens9aa88c22011-05-31 13:38:02 -0400991 list_for_each_safe(buf, temp_buf, ((struct sk_buff *)message_list)) {
992 list_del((struct list_head *)buf);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400993 kfree_skb(buf);
Allan Stephens9aa88c22011-05-31 13:38:02 -0400994 }
995}
996
997/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900998 * link_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +0100999 * destination link is known and the header is complete,
1000 * inclusive total message length. Very time critical.
1001 * Link is locked. Returns user data length.
1002 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001003static int link_send_buf_fast(struct tipc_link *l_ptr, struct sk_buff *buf,
Sam Ravnborg05790c62006-03-20 22:37:04 -08001004 u32 *used_max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001005{
1006 struct tipc_msg *msg = buf_msg(buf);
1007 int res = msg_data_sz(msg);
1008
1009 if (likely(!link_congested(l_ptr))) {
Allan Stephens15e979d2010-05-11 14:30:10 +00001010 if (likely(msg_size(msg) <= l_ptr->max_pkt)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001011 if (likely(list_empty(&l_ptr->b_ptr->cong_links))) {
1012 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +01001013 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf,
1014 &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001015 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001016 return res;
1017 }
Per Liden4323add2006-01-18 00:38:21 +01001018 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001019 l_ptr->stats.bearer_congs++;
1020 l_ptr->next_out = buf;
1021 return res;
1022 }
Allan Stephens0e659672010-12-31 18:59:32 +00001023 } else
Allan Stephens15e979d2010-05-11 14:30:10 +00001024 *used_max_pkt = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001025 }
Per Liden4323add2006-01-18 00:38:21 +01001026 return tipc_link_send_buf(l_ptr, buf); /* All other cases */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001027}
1028
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001029/*
1030 * tipc_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001031 * destination node is known and the header is complete,
1032 * inclusive total message length.
1033 * Returns user data length.
1034 */
1035int tipc_send_buf_fast(struct sk_buff *buf, u32 destnode)
1036{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001037 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001038 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001039 int res;
1040 u32 selector = msg_origport(buf_msg(buf)) & 1;
1041 u32 dummy;
1042
Per Liden4323add2006-01-18 00:38:21 +01001043 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001044 n_ptr = tipc_node_find(destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001045 if (likely(n_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001046 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001047 l_ptr = n_ptr->active_links[selector];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001048 if (likely(l_ptr)) {
1049 res = link_send_buf_fast(l_ptr, buf, &dummy);
Per Liden4323add2006-01-18 00:38:21 +01001050 tipc_node_unlock(n_ptr);
1051 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001052 return res;
1053 }
Per Liden4323add2006-01-18 00:38:21 +01001054 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001055 }
Per Liden4323add2006-01-18 00:38:21 +01001056 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001057 res = msg_data_sz(buf_msg(buf));
1058 tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1059 return res;
1060}
1061
1062
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001063/*
1064 * tipc_link_send_sections_fast: Entry for messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001065 * destination processor is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001066 * except for total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001067 * Returns user data length or errno.
1068 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001069int tipc_link_send_sections_fast(struct tipc_port *sender,
Per Liden4323add2006-01-18 00:38:21 +01001070 struct iovec const *msg_sect,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001071 const u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001072 unsigned int total_len,
Per Liden4323add2006-01-18 00:38:21 +01001073 u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001074{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001075 struct tipc_msg *hdr = &sender->phdr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001076 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001077 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -07001078 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001079 int res;
1080 u32 selector = msg_origport(hdr) & 1;
1081
Per Lidenb97bf3f2006-01-02 19:04:38 +01001082again:
1083 /*
1084 * Try building message using port's max_pkt hint.
1085 * (Must not hold any locks while building message.)
1086 */
Allan Stephens26896902011-04-21 10:42:07 -05001087 res = tipc_msg_build(hdr, msg_sect, num_sect, total_len,
1088 sender->max_pkt, !sender->user_port, &buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001089
Per Liden4323add2006-01-18 00:38:21 +01001090 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001091 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001092 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001093 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001094 l_ptr = node->active_links[selector];
1095 if (likely(l_ptr)) {
1096 if (likely(buf)) {
1097 res = link_send_buf_fast(l_ptr, buf,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001098 &sender->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001099exit:
Per Liden4323add2006-01-18 00:38:21 +01001100 tipc_node_unlock(node);
1101 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001102 return res;
1103 }
1104
1105 /* Exit if build request was invalid */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001106 if (unlikely(res < 0))
1107 goto exit;
1108
1109 /* Exit if link (or bearer) is congested */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001110 if (link_congested(l_ptr) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +01001111 !list_empty(&l_ptr->b_ptr->cong_links)) {
1112 res = link_schedule_port(l_ptr,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001113 sender->ref, res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001114 goto exit;
1115 }
1116
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001117 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001118 * Message size exceeds max_pkt hint; update hint,
1119 * then re-try fast path or fragment the message
1120 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001121 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001122 tipc_node_unlock(node);
1123 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001124
1125
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001126 if ((msg_hdr_sz(hdr) + res) <= sender->max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001127 goto again;
1128
1129 return link_send_sections_long(sender, msg_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001130 num_sect, total_len,
1131 destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001132 }
Per Liden4323add2006-01-18 00:38:21 +01001133 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001134 }
Per Liden4323add2006-01-18 00:38:21 +01001135 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001136
1137 /* Couldn't find a link to the destination node */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001138 if (buf)
1139 return tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1140 if (res >= 0)
Per Liden4323add2006-01-18 00:38:21 +01001141 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001142 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001143 return res;
1144}
1145
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001146/*
1147 * link_send_sections_long(): Entry for long messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001148 * destination node is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001149 * inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001150 * Link and bearer congestion status have been checked to be ok,
1151 * and are ignored if they change.
1152 *
1153 * Note that fragments do not use the full link MTU so that they won't have
1154 * to undergo refragmentation if link changeover causes them to be sent
1155 * over another link with an additional tunnel header added as prefix.
1156 * (Refragmentation will still occur if the other link has a smaller MTU.)
1157 *
1158 * Returns user data length or errno.
1159 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001160static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001161 struct iovec const *msg_sect,
1162 u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001163 unsigned int total_len,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001164 u32 destaddr)
1165{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001166 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001167 struct tipc_node *node;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001168 struct tipc_msg *hdr = &sender->phdr;
Allan Stephens26896902011-04-21 10:42:07 -05001169 u32 dsz = total_len;
Allan Stephens0e659672010-12-31 18:59:32 +00001170 u32 max_pkt, fragm_sz, rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001171 struct tipc_msg fragm_hdr;
Allan Stephens0e659672010-12-31 18:59:32 +00001172 struct sk_buff *buf, *buf_chain, *prev;
1173 u32 fragm_crs, fragm_rest, hsz, sect_rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001174 const unchar *sect_crs;
1175 int curr_sect;
1176 u32 fragm_no;
1177
1178again:
1179 fragm_no = 1;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001180 max_pkt = sender->max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001181 /* leave room for tunnel header in case of link changeover */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001182 fragm_sz = max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001183 /* leave room for fragmentation header in each fragment */
1184 rest = dsz;
1185 fragm_crs = 0;
1186 fragm_rest = 0;
1187 sect_rest = 0;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001188 sect_crs = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001189 curr_sect = -1;
1190
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001191 /* Prepare reusable fragment header */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001192 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07001193 INT_H_SIZE, msg_destnode(hdr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001194 msg_set_size(&fragm_hdr, max_pkt);
1195 msg_set_fragm_no(&fragm_hdr, 1);
1196
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001197 /* Prepare header of first fragment */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001198 buf_chain = buf = tipc_buf_acquire(max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001199 if (!buf)
1200 return -ENOMEM;
1201 buf->next = NULL;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001202 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001203 hsz = msg_hdr_sz(hdr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001204 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, hdr, hsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001205
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001206 /* Chop up message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001207 fragm_crs = INT_H_SIZE + hsz;
1208 fragm_rest = fragm_sz - hsz;
1209
1210 do { /* For all sections */
1211 u32 sz;
1212
1213 if (!sect_rest) {
1214 sect_rest = msg_sect[++curr_sect].iov_len;
1215 sect_crs = (const unchar *)msg_sect[curr_sect].iov_base;
1216 }
1217
1218 if (sect_rest < fragm_rest)
1219 sz = sect_rest;
1220 else
1221 sz = fragm_rest;
1222
1223 if (likely(!sender->user_port)) {
1224 if (copy_from_user(buf->data + fragm_crs, sect_crs, sz)) {
1225error:
1226 for (; buf_chain; buf_chain = buf) {
1227 buf = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001228 kfree_skb(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001229 }
1230 return -EFAULT;
1231 }
1232 } else
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001233 skb_copy_to_linear_data_offset(buf, fragm_crs,
1234 sect_crs, sz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001235 sect_crs += sz;
1236 sect_rest -= sz;
1237 fragm_crs += sz;
1238 fragm_rest -= sz;
1239 rest -= sz;
1240
1241 if (!fragm_rest && rest) {
1242
1243 /* Initiate new fragment: */
1244 if (rest <= fragm_sz) {
1245 fragm_sz = rest;
Allan Stephens0e659672010-12-31 18:59:32 +00001246 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001247 } else {
1248 msg_set_type(&fragm_hdr, FRAGMENT);
1249 }
1250 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
1251 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
1252 prev = buf;
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001253 buf = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001254 if (!buf)
1255 goto error;
1256
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001257 buf->next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001258 prev->next = buf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001259 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001260 fragm_crs = INT_H_SIZE;
1261 fragm_rest = fragm_sz;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001262 }
Allan Stephens0e659672010-12-31 18:59:32 +00001263 } while (rest > 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001264
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001265 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001266 * Now we have a buffer chain. Select a link and check
1267 * that packet size is still OK
1268 */
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001269 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001270 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001271 tipc_node_lock(node);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001272 l_ptr = node->active_links[sender->ref & 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001273 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01001274 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001275 goto reject;
1276 }
Allan Stephens15e979d2010-05-11 14:30:10 +00001277 if (l_ptr->max_pkt < max_pkt) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001278 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001279 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001280 for (; buf_chain; buf_chain = buf) {
1281 buf = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001282 kfree_skb(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001283 }
1284 goto again;
1285 }
1286 } else {
1287reject:
1288 for (; buf_chain; buf_chain = buf) {
1289 buf = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001290 kfree_skb(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001291 }
Per Liden4323add2006-01-18 00:38:21 +01001292 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001293 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001294 }
1295
Allan Stephensdc63d912011-04-21 11:50:42 -04001296 /* Append chain of fragments to send queue & send them */
Allan Stephense0f08592011-04-17 11:44:24 -04001297 l_ptr->long_msg_seq_no++;
Allan Stephensdc63d912011-04-21 11:50:42 -04001298 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
1299 l_ptr->stats.sent_fragments += fragm_no;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001300 l_ptr->stats.sent_fragmented++;
Per Liden4323add2006-01-18 00:38:21 +01001301 tipc_link_push_queue(l_ptr);
1302 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001303 return dsz;
1304}
1305
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001306/*
Per Liden4323add2006-01-18 00:38:21 +01001307 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +01001308 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001309u32 tipc_link_push_packet(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001310{
1311 struct sk_buff *buf = l_ptr->first_out;
1312 u32 r_q_size = l_ptr->retransm_queue_size;
1313 u32 r_q_head = l_ptr->retransm_queue_head;
1314
1315 /* Step to position where retransmission failed, if any, */
1316 /* consider that buffers may have been released in meantime */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001317 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001318 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +01001319 link_last_sent(l_ptr));
Allan Stephensf9057302011-10-24 16:03:12 -04001320 u32 first = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001321
1322 while (buf && less(first, r_q_head)) {
1323 first = mod(first + 1);
1324 buf = buf->next;
1325 }
1326 l_ptr->retransm_queue_head = r_q_head = first;
1327 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1328 }
1329
1330 /* Continue retransmission now, if there is anything: */
Neil Hormanca509102010-03-15 07:58:45 +00001331 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001332 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001333 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001334 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001335 l_ptr->retransm_queue_head = mod(++r_q_head);
1336 l_ptr->retransm_queue_size = --r_q_size;
1337 l_ptr->stats.retransmitted++;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001338 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001339 } else {
1340 l_ptr->stats.bearer_congs++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001341 return PUSH_FAILED;
1342 }
1343 }
1344
1345 /* Send deferred protocol message, if any: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001346 buf = l_ptr->proto_msg_queue;
1347 if (buf) {
1348 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +00001349 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001350 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001351 l_ptr->unacked_window = 0;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001352 kfree_skb(buf);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001353 l_ptr->proto_msg_queue = NULL;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001354 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001355 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001356 l_ptr->stats.bearer_congs++;
1357 return PUSH_FAILED;
1358 }
1359 }
1360
1361 /* Send one deferred data message, if send window not full: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001362 buf = l_ptr->next_out;
1363 if (buf) {
1364 struct tipc_msg *msg = buf_msg(buf);
1365 u32 next = msg_seqno(msg);
Allan Stephensf9057302011-10-24 16:03:12 -04001366 u32 first = buf_seqno(l_ptr->first_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001367
1368 if (mod(next - first) < l_ptr->queue_limit[0]) {
1369 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001370 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001371 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001372 if (msg_user(msg) == MSG_BUNDLER)
1373 msg_set_type(msg, CLOSED_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001374 l_ptr->next_out = buf->next;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001375 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001376 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001377 l_ptr->stats.bearer_congs++;
1378 return PUSH_FAILED;
1379 }
1380 }
1381 }
1382 return PUSH_FINISHED;
1383}
1384
1385/*
1386 * push_queue(): push out the unsent messages of a link where
1387 * congestion has abated. Node is locked
1388 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001389void tipc_link_push_queue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001390{
1391 u32 res;
1392
Per Liden4323add2006-01-18 00:38:21 +01001393 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001394 return;
1395
1396 do {
Per Liden4323add2006-01-18 00:38:21 +01001397 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001398 } while (!res);
1399
Per Lidenb97bf3f2006-01-02 19:04:38 +01001400 if (res == PUSH_FAILED)
Per Liden4323add2006-01-18 00:38:21 +01001401 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001402}
1403
Allan Stephensd356eeb2006-06-25 23:40:01 -07001404static void link_reset_all(unsigned long addr)
1405{
David S. Miller6c000552008-09-02 23:38:32 -07001406 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001407 char addr_string[16];
1408 u32 i;
1409
1410 read_lock_bh(&tipc_net_lock);
1411 n_ptr = tipc_node_find((u32)addr);
1412 if (!n_ptr) {
1413 read_unlock_bh(&tipc_net_lock);
1414 return; /* node no longer exists */
1415 }
1416
1417 tipc_node_lock(n_ptr);
1418
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001419 pr_warn("Resetting all links to %s\n",
1420 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -07001421
1422 for (i = 0; i < MAX_BEARERS; i++) {
1423 if (n_ptr->links[i]) {
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001424 link_print(n_ptr->links[i], "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001425 tipc_link_reset(n_ptr->links[i]);
1426 }
1427 }
1428
1429 tipc_node_unlock(n_ptr);
1430 read_unlock_bh(&tipc_net_lock);
1431}
1432
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001433static void link_retransmit_failure(struct tipc_link *l_ptr,
1434 struct sk_buff *buf)
Allan Stephensd356eeb2006-06-25 23:40:01 -07001435{
1436 struct tipc_msg *msg = buf_msg(buf);
1437
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001438 pr_warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001439
1440 if (l_ptr->addr) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001441 /* Handle failure on standard link */
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001442 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001443 tipc_link_reset(l_ptr);
1444
1445 } else {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001446 /* Handle failure on broadcast link */
David S. Miller6c000552008-09-02 23:38:32 -07001447 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001448 char addr_string[16];
1449
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001450 pr_info("Msg seq number: %u, ", msg_seqno(msg));
1451 pr_cont("Outstanding acks: %lu\n",
1452 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -07001453
Allan Stephens01d83ed2011-01-18 13:53:16 -05001454 n_ptr = tipc_bclink_retransmit_to();
Allan Stephensd356eeb2006-06-25 23:40:01 -07001455 tipc_node_lock(n_ptr);
1456
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001457 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001458 pr_info("Broadcast link info for %s\n", addr_string);
1459 pr_info("Supportable: %d, Supported: %d, Acked: %u\n",
1460 n_ptr->bclink.supportable,
1461 n_ptr->bclink.supported,
1462 n_ptr->bclink.acked);
1463 pr_info("Last in: %u, Oos state: %u, Last sent: %u\n",
1464 n_ptr->bclink.last_in,
1465 n_ptr->bclink.oos_state,
1466 n_ptr->bclink.last_sent);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001467
1468 tipc_k_signal((Handler)link_reset_all, (unsigned long)n_ptr->addr);
1469
1470 tipc_node_unlock(n_ptr);
1471
1472 l_ptr->stale_count = 0;
1473 }
1474}
1475
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001476void tipc_link_retransmit(struct tipc_link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001477 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001478{
1479 struct tipc_msg *msg;
1480
Allan Stephensd356eeb2006-06-25 23:40:01 -07001481 if (!buf)
1482 return;
1483
1484 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001485
Allan Stephensd356eeb2006-06-25 23:40:01 -07001486 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
Neil Hormanca509102010-03-15 07:58:45 +00001487 if (l_ptr->retransm_queue_size == 0) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001488 l_ptr->retransm_queue_head = msg_seqno(msg);
1489 l_ptr->retransm_queue_size = retransmits;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001490 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001491 pr_err("Unexpected retransmit on link %s (qsize=%d)\n",
1492 l_ptr->name, l_ptr->retransm_queue_size);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001493 }
Neil Hormanca509102010-03-15 07:58:45 +00001494 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001495 } else {
1496 /* Detect repeated retransmit failures on uncongested bearer */
Allan Stephensd356eeb2006-06-25 23:40:01 -07001497 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1498 if (++l_ptr->stale_count > 100) {
1499 link_retransmit_failure(l_ptr, buf);
1500 return;
1501 }
1502 } else {
1503 l_ptr->last_retransmitted = msg_seqno(msg);
1504 l_ptr->stale_count = 1;
1505 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001506 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001507
Neil Hormanca509102010-03-15 07:58:45 +00001508 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001509 msg = buf_msg(buf);
1510 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001511 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001512 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001513 buf = buf->next;
1514 retransmits--;
1515 l_ptr->stats.retransmitted++;
1516 } else {
Per Liden4323add2006-01-18 00:38:21 +01001517 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001518 l_ptr->stats.bearer_congs++;
Allan Stephensf9057302011-10-24 16:03:12 -04001519 l_ptr->retransm_queue_head = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001520 l_ptr->retransm_queue_size = retransmits;
1521 return;
1522 }
1523 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001524
Per Lidenb97bf3f2006-01-02 19:04:38 +01001525 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1526}
1527
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001528/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001529 * link_insert_deferred_queue - insert deferred messages back into receive chain
1530 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001531static struct sk_buff *link_insert_deferred_queue(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001532 struct sk_buff *buf)
1533{
1534 u32 seq_no;
1535
1536 if (l_ptr->oldest_deferred_in == NULL)
1537 return buf;
1538
Allan Stephensf9057302011-10-24 16:03:12 -04001539 seq_no = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001540 if (seq_no == mod(l_ptr->next_in_no)) {
1541 l_ptr->newest_deferred_in->next = buf;
1542 buf = l_ptr->oldest_deferred_in;
1543 l_ptr->oldest_deferred_in = NULL;
1544 l_ptr->deferred_inqueue_sz = 0;
1545 }
1546 return buf;
1547}
1548
Allan Stephens85035562008-04-15 19:04:54 -07001549/**
1550 * link_recv_buf_validate - validate basic format of received message
1551 *
1552 * This routine ensures a TIPC message has an acceptable header, and at least
1553 * as much data as the header indicates it should. The routine also ensures
1554 * that the entire message header is stored in the main fragment of the message
1555 * buffer, to simplify future access to message header fields.
1556 *
1557 * Note: Having extra info present in the message header or data areas is OK.
1558 * TIPC will ignore the excess, under the assumption that it is optional info
1559 * introduced by a later release of the protocol.
1560 */
Allan Stephens85035562008-04-15 19:04:54 -07001561static int link_recv_buf_validate(struct sk_buff *buf)
1562{
1563 static u32 min_data_hdr_size[8] = {
Allan Stephens741d9eb2011-05-31 15:03:18 -04001564 SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,
Allan Stephens85035562008-04-15 19:04:54 -07001565 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1566 };
1567
1568 struct tipc_msg *msg;
1569 u32 tipc_hdr[2];
1570 u32 size;
1571 u32 hdr_size;
1572 u32 min_hdr_size;
1573
1574 if (unlikely(buf->len < MIN_H_SIZE))
1575 return 0;
1576
1577 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1578 if (msg == NULL)
1579 return 0;
1580
1581 if (unlikely(msg_version(msg) != TIPC_VERSION))
1582 return 0;
1583
1584 size = msg_size(msg);
1585 hdr_size = msg_hdr_sz(msg);
1586 min_hdr_size = msg_isdata(msg) ?
1587 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1588
1589 if (unlikely((hdr_size < min_hdr_size) ||
1590 (size < hdr_size) ||
1591 (buf->len < size) ||
1592 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1593 return 0;
1594
1595 return pskb_may_pull(buf, hdr_size);
1596}
1597
Allan Stephensb02b69c2010-08-17 11:00:07 +00001598/**
1599 * tipc_recv_msg - process TIPC messages arriving from off-node
1600 * @head: pointer to message buffer chain
1601 * @tb_ptr: pointer to bearer message arrived on
1602 *
1603 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1604 * structure (i.e. cannot be NULL), but bearer can be inactive.
1605 */
Allan Stephens2d627b92011-01-07 13:00:11 -05001606void tipc_recv_msg(struct sk_buff *head, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001607{
Per Liden4323add2006-01-18 00:38:21 +01001608 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001609 while (head) {
David S. Miller6c000552008-09-02 23:38:32 -07001610 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001611 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001612 struct sk_buff *crs;
1613 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001614 struct tipc_msg *msg;
1615 u32 seq_no;
1616 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001617 u32 released = 0;
1618 int type;
1619
Per Lidenb97bf3f2006-01-02 19:04:38 +01001620 head = head->next;
Allan Stephens85035562008-04-15 19:04:54 -07001621
Allan Stephensb02b69c2010-08-17 11:00:07 +00001622 /* Ensure bearer is still enabled */
Allan Stephensb02b69c2010-08-17 11:00:07 +00001623 if (unlikely(!b_ptr->active))
1624 goto cont;
1625
Allan Stephens85035562008-04-15 19:04:54 -07001626 /* Ensure message is well-formed */
Allan Stephens85035562008-04-15 19:04:54 -07001627 if (unlikely(!link_recv_buf_validate(buf)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001628 goto cont;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001629
Allan Stephensfe13dda2008-04-15 19:03:23 -07001630 /* Ensure message data is a single contiguous unit */
Allan Stephens5f6d9122011-11-04 13:24:29 -04001631 if (unlikely(skb_linearize(buf)))
Allan Stephensfe13dda2008-04-15 19:03:23 -07001632 goto cont;
Allan Stephensfe13dda2008-04-15 19:03:23 -07001633
Allan Stephens85035562008-04-15 19:04:54 -07001634 /* Handle arrival of a non-unicast link message */
Allan Stephens85035562008-04-15 19:04:54 -07001635 msg = buf_msg(buf);
1636
Per Lidenb97bf3f2006-01-02 19:04:38 +01001637 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001638 if (msg_user(msg) == LINK_CONFIG)
1639 tipc_disc_recv_msg(buf, b_ptr);
1640 else
1641 tipc_bclink_recv_pkt(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001642 continue;
1643 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001644
Allan Stephensed33a9c2011-04-05 15:15:04 -04001645 /* Discard unicast link messages destined for another node */
Allan Stephens26008242006-06-25 23:39:31 -07001646 if (unlikely(!msg_short(msg) &&
1647 (msg_destnode(msg) != tipc_own_addr)))
1648 goto cont;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001649
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001650 /* Locate neighboring node that sent message */
Per Liden4323add2006-01-18 00:38:21 +01001651 n_ptr = tipc_node_find(msg_prevnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001652 if (unlikely(!n_ptr))
1653 goto cont;
Per Liden4323add2006-01-18 00:38:21 +01001654 tipc_node_lock(n_ptr);
Allan Stephens85035562008-04-15 19:04:54 -07001655
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001656 /* Locate unicast link endpoint that should handle message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001657 l_ptr = n_ptr->links[b_ptr->identity];
1658 if (unlikely(!l_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001659 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001660 goto cont;
1661 }
Allan Stephens85035562008-04-15 19:04:54 -07001662
Allan Stephensb4b56102011-05-27 11:00:51 -04001663 /* Verify that communication with node is currently allowed */
Allan Stephensb4b56102011-05-27 11:00:51 -04001664 if ((n_ptr->block_setup & WAIT_PEER_DOWN) &&
1665 msg_user(msg) == LINK_PROTOCOL &&
1666 (msg_type(msg) == RESET_MSG ||
1667 msg_type(msg) == ACTIVATE_MSG) &&
1668 !msg_redundant_link(msg))
1669 n_ptr->block_setup &= ~WAIT_PEER_DOWN;
1670
1671 if (n_ptr->block_setup) {
1672 tipc_node_unlock(n_ptr);
1673 goto cont;
1674 }
1675
Allan Stephens85035562008-04-15 19:04:54 -07001676 /* Validate message sequence number info */
Allan Stephens85035562008-04-15 19:04:54 -07001677 seq_no = msg_seqno(msg);
1678 ackd = msg_ack(msg);
1679
1680 /* Release acked messages */
Allan Stephens93499312011-10-25 15:14:46 -04001681 if (n_ptr->bclink.supported)
Allan Stephens365595912011-10-24 15:26:24 -04001682 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001683
1684 crs = l_ptr->first_out;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001685 while ((crs != l_ptr->next_out) &&
Allan Stephensf9057302011-10-24 16:03:12 -04001686 less_eq(buf_seqno(crs), ackd)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001687 struct sk_buff *next = crs->next;
1688
Allan Stephens5f6d9122011-11-04 13:24:29 -04001689 kfree_skb(crs);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001690 crs = next;
1691 released++;
1692 }
1693 if (released) {
1694 l_ptr->first_out = crs;
1695 l_ptr->out_queue_size -= released;
1696 }
Allan Stephens85035562008-04-15 19:04:54 -07001697
1698 /* Try sending any messages link endpoint has pending */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001699 if (unlikely(l_ptr->next_out))
Per Liden4323add2006-01-18 00:38:21 +01001700 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001701 if (unlikely(!list_empty(&l_ptr->waiting_ports)))
Per Liden4323add2006-01-18 00:38:21 +01001702 tipc_link_wakeup_ports(l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001703 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1704 l_ptr->stats.sent_acks++;
Per Liden4323add2006-01-18 00:38:21 +01001705 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001706 }
1707
Allan Stephens85035562008-04-15 19:04:54 -07001708 /* Now (finally!) process the incoming message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001709protocol_check:
1710 if (likely(link_working_working(l_ptr))) {
1711 if (likely(seq_no == mod(l_ptr->next_in_no))) {
1712 l_ptr->next_in_no++;
1713 if (unlikely(l_ptr->oldest_deferred_in))
1714 head = link_insert_deferred_queue(l_ptr,
1715 head);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001716deliver:
Allan Stephensc74a4612011-11-02 15:08:44 -04001717 if (likely(msg_isdata(msg))) {
1718 tipc_node_unlock(n_ptr);
1719 tipc_port_recv_msg(buf);
1720 continue;
1721 }
1722 switch (msg_user(msg)) {
1723 int ret;
1724 case MSG_BUNDLER:
1725 l_ptr->stats.recv_bundles++;
1726 l_ptr->stats.recv_bundled +=
1727 msg_msgcnt(msg);
1728 tipc_node_unlock(n_ptr);
1729 tipc_link_recv_bundle(buf);
1730 continue;
1731 case NAME_DISTRIBUTOR:
1732 tipc_node_unlock(n_ptr);
1733 tipc_named_recv(buf);
1734 continue;
1735 case CONN_MANAGER:
1736 tipc_node_unlock(n_ptr);
1737 tipc_port_recv_proto_msg(buf);
1738 continue;
1739 case MSG_FRAGMENTER:
1740 l_ptr->stats.recv_fragments++;
1741 ret = tipc_link_recv_fragment(
1742 &l_ptr->defragm_buf,
1743 &buf, &msg);
1744 if (ret == 1) {
1745 l_ptr->stats.recv_fragmented++;
1746 goto deliver;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001747 }
Allan Stephensc74a4612011-11-02 15:08:44 -04001748 if (ret == -1)
1749 l_ptr->next_in_no--;
1750 break;
1751 case CHANGEOVER_PROTOCOL:
1752 type = msg_type(msg);
1753 if (link_recv_changeover_msg(&l_ptr,
1754 &buf)) {
1755 msg = buf_msg(buf);
1756 seq_no = msg_seqno(msg);
1757 if (type == ORIGINAL_MSG)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001758 goto deliver;
Allan Stephensc74a4612011-11-02 15:08:44 -04001759 goto protocol_check;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001760 }
Allan Stephensc74a4612011-11-02 15:08:44 -04001761 break;
1762 default:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001763 kfree_skb(buf);
Allan Stephensc74a4612011-11-02 15:08:44 -04001764 buf = NULL;
1765 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001766 }
Per Liden4323add2006-01-18 00:38:21 +01001767 tipc_node_unlock(n_ptr);
1768 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001769 continue;
1770 }
1771 link_handle_out_of_seq_msg(l_ptr, buf);
1772 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001773 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001774 continue;
1775 }
1776
1777 if (msg_user(msg) == LINK_PROTOCOL) {
1778 link_recv_proto_msg(l_ptr, buf);
1779 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001780 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001781 continue;
1782 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001783 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1784
1785 if (link_working_working(l_ptr)) {
1786 /* Re-insert in front of queue */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001787 buf->next = head;
1788 head = buf;
Per Liden4323add2006-01-18 00:38:21 +01001789 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001790 continue;
1791 }
Per Liden4323add2006-01-18 00:38:21 +01001792 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001793cont:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001794 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001795 }
Per Liden4323add2006-01-18 00:38:21 +01001796 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001797}
1798
Ben Hutchings2c530402012-07-10 10:55:09 +00001799/**
Allan Stephens8809b252011-10-25 10:44:35 -04001800 * tipc_link_defer_pkt - Add out-of-sequence message to deferred reception queue
1801 *
1802 * Returns increase in queue length (i.e. 0 or 1)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001803 */
Allan Stephens8809b252011-10-25 10:44:35 -04001804u32 tipc_link_defer_pkt(struct sk_buff **head, struct sk_buff **tail,
Per Liden4323add2006-01-18 00:38:21 +01001805 struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001806{
Allan Stephens8809b252011-10-25 10:44:35 -04001807 struct sk_buff *queue_buf;
1808 struct sk_buff **prev;
Allan Stephensf9057302011-10-24 16:03:12 -04001809 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001810
1811 buf->next = NULL;
1812
1813 /* Empty queue ? */
1814 if (*head == NULL) {
1815 *head = *tail = buf;
1816 return 1;
1817 }
1818
1819 /* Last ? */
Allan Stephensf9057302011-10-24 16:03:12 -04001820 if (less(buf_seqno(*tail), seq_no)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001821 (*tail)->next = buf;
1822 *tail = buf;
1823 return 1;
1824 }
1825
Allan Stephens8809b252011-10-25 10:44:35 -04001826 /* Locate insertion point in queue, then insert; discard if duplicate */
1827 prev = head;
1828 queue_buf = *head;
1829 for (;;) {
1830 u32 curr_seqno = buf_seqno(queue_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001831
Allan Stephens8809b252011-10-25 10:44:35 -04001832 if (seq_no == curr_seqno) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001833 kfree_skb(buf);
Allan Stephens8809b252011-10-25 10:44:35 -04001834 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001835 }
Allan Stephens8809b252011-10-25 10:44:35 -04001836
1837 if (less(seq_no, curr_seqno))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001838 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001839
Allan Stephens8809b252011-10-25 10:44:35 -04001840 prev = &queue_buf->next;
1841 queue_buf = queue_buf->next;
1842 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001843
Allan Stephens8809b252011-10-25 10:44:35 -04001844 buf->next = queue_buf;
1845 *prev = buf;
1846 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001847}
1848
Allan Stephens8809b252011-10-25 10:44:35 -04001849/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001850 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1851 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001852static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001853 struct sk_buff *buf)
1854{
Allan Stephensf9057302011-10-24 16:03:12 -04001855 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001856
1857 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
1858 link_recv_proto_msg(l_ptr, buf);
1859 return;
1860 }
1861
Per Lidenb97bf3f2006-01-02 19:04:38 +01001862 /* Record OOS packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001863 l_ptr->checkpoint--;
1864
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001865 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001866 * Discard packet if a duplicate; otherwise add it to deferred queue
1867 * and notify peer of gap as per protocol specification
1868 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001869 if (less(seq_no, mod(l_ptr->next_in_no))) {
1870 l_ptr->stats.duplicates++;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001871 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001872 return;
1873 }
1874
Per Liden4323add2006-01-18 00:38:21 +01001875 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1876 &l_ptr->newest_deferred_in, buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001877 l_ptr->deferred_inqueue_sz++;
1878 l_ptr->stats.deferred_recv++;
1879 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
Per Liden4323add2006-01-18 00:38:21 +01001880 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001881 } else
1882 l_ptr->stats.duplicates++;
1883}
1884
1885/*
1886 * Send protocol message to the other endpoint.
1887 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001888void tipc_link_send_proto_msg(struct tipc_link *l_ptr, u32 msg_typ,
1889 int probe_msg, u32 gap, u32 tolerance,
1890 u32 priority, u32 ack_mtu)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001891{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001892 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001893 struct tipc_msg *msg = l_ptr->pmsg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001894 u32 msg_size = sizeof(l_ptr->proto_msg);
Allan Stephens75f0aa42011-02-28 15:30:20 -05001895 int r_flag;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001896
Allan Stephens92d2c902011-10-25 11:20:26 -04001897 /* Discard any previous message that was deferred due to congestion */
Allan Stephens92d2c902011-10-25 11:20:26 -04001898 if (l_ptr->proto_msg_queue) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001899 kfree_skb(l_ptr->proto_msg_queue);
Allan Stephens92d2c902011-10-25 11:20:26 -04001900 l_ptr->proto_msg_queue = NULL;
1901 }
1902
Per Lidenb97bf3f2006-01-02 19:04:38 +01001903 if (link_blocked(l_ptr))
1904 return;
Allan Stephensb4b56102011-05-27 11:00:51 -04001905
1906 /* Abort non-RESET send if communication with node is prohibited */
Allan Stephensb4b56102011-05-27 11:00:51 -04001907 if ((l_ptr->owner->block_setup) && (msg_typ != RESET_MSG))
1908 return;
1909
Allan Stephens92d2c902011-10-25 11:20:26 -04001910 /* Create protocol message with "out-of-sequence" sequence number */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001911 msg_set_type(msg, msg_typ);
1912 msg_set_net_plane(msg, l_ptr->b_ptr->net_plane);
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001913 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001914 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
Per Lidenb97bf3f2006-01-02 19:04:38 +01001915
1916 if (msg_typ == STATE_MSG) {
1917 u32 next_sent = mod(l_ptr->next_out_no);
1918
Per Liden4323add2006-01-18 00:38:21 +01001919 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001920 return;
1921 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -04001922 next_sent = buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001923 msg_set_next_sent(msg, next_sent);
1924 if (l_ptr->oldest_deferred_in) {
Allan Stephensf9057302011-10-24 16:03:12 -04001925 u32 rec = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001926 gap = mod(rec - mod(l_ptr->next_in_no));
1927 }
1928 msg_set_seq_gap(msg, gap);
1929 if (gap)
1930 l_ptr->stats.sent_nacks++;
1931 msg_set_link_tolerance(msg, tolerance);
1932 msg_set_linkprio(msg, priority);
1933 msg_set_max_pkt(msg, ack_mtu);
1934 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1935 msg_set_probe(msg, probe_msg != 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001936 if (probe_msg) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001937 u32 mtu = l_ptr->max_pkt;
1938
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001939 if ((mtu < l_ptr->max_pkt_target) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001940 link_working_working(l_ptr) &&
1941 l_ptr->fsm_msg_cnt) {
1942 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001943 if (l_ptr->max_pkt_probes == 10) {
1944 l_ptr->max_pkt_target = (msg_size - 4);
1945 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001946 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001947 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001948 l_ptr->max_pkt_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001949 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001950
1951 l_ptr->stats.sent_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001952 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001953 l_ptr->stats.sent_states++;
1954 } else { /* RESET_MSG or ACTIVATE_MSG */
1955 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
1956 msg_set_seq_gap(msg, 0);
1957 msg_set_next_sent(msg, 1);
Allan Stephensf23d9bf2011-01-18 15:15:34 -05001958 msg_set_probe(msg, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001959 msg_set_link_tolerance(msg, l_ptr->tolerance);
1960 msg_set_linkprio(msg, l_ptr->priority);
1961 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
1962 }
1963
Allan Stephens75f0aa42011-02-28 15:30:20 -05001964 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
1965 msg_set_redundant_link(msg, r_flag);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001966 msg_set_linkprio(msg, l_ptr->priority);
Allan Stephens92d2c902011-10-25 11:20:26 -04001967 msg_set_size(msg, msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001968
1969 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
1970
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001971 buf = tipc_buf_acquire(msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001972 if (!buf)
1973 return;
1974
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001975 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001976
Allan Stephens92d2c902011-10-25 11:20:26 -04001977 /* Defer message if bearer is already congested */
Allan Stephens92d2c902011-10-25 11:20:26 -04001978 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
1979 l_ptr->proto_msg_queue = buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001980 return;
1981 }
1982
Allan Stephens92d2c902011-10-25 11:20:26 -04001983 /* Defer message if attempting to send results in bearer congestion */
Allan Stephens92d2c902011-10-25 11:20:26 -04001984 if (!tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
1985 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
1986 l_ptr->proto_msg_queue = buf;
1987 l_ptr->stats.bearer_congs++;
1988 return;
1989 }
1990
1991 /* Discard message if it was sent successfully */
Allan Stephens92d2c902011-10-25 11:20:26 -04001992 l_ptr->unacked_window = 0;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001993 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001994}
1995
1996/*
1997 * Receive protocol message :
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001998 * Note that network plane id propagates through the network, and may
1999 * change at any time. The node with lowest address rules
Per Lidenb97bf3f2006-01-02 19:04:38 +01002000 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002001static void link_recv_proto_msg(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002002{
2003 u32 rec_gap = 0;
2004 u32 max_pkt_info;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002005 u32 max_pkt_ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002006 u32 msg_tol;
2007 struct tipc_msg *msg = buf_msg(buf);
2008
Per Lidenb97bf3f2006-01-02 19:04:38 +01002009 if (link_blocked(l_ptr))
2010 goto exit;
2011
2012 /* record unnumbered packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002013 l_ptr->checkpoint--;
2014
2015 if (l_ptr->b_ptr->net_plane != msg_net_plane(msg))
2016 if (tipc_own_addr > msg_prevnode(msg))
2017 l_ptr->b_ptr->net_plane = msg_net_plane(msg);
2018
2019 l_ptr->owner->permit_changeover = msg_redundant_link(msg);
2020
2021 switch (msg_type(msg)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002022
Per Lidenb97bf3f2006-01-02 19:04:38 +01002023 case RESET_MSG:
Allan Stephensa686e682008-06-04 17:29:39 -07002024 if (!link_working_unknown(l_ptr) &&
2025 (l_ptr->peer_session != INVALID_SESSION)) {
Allan Stephens641c2182011-04-07 09:54:43 -04002026 if (less_eq(msg_session(msg), l_ptr->peer_session))
2027 break; /* duplicate or old reset: ignore */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002028 }
Allan Stephensb4b56102011-05-27 11:00:51 -04002029
2030 if (!msg_redundant_link(msg) && (link_working_working(l_ptr) ||
2031 link_working_unknown(l_ptr))) {
2032 /*
2033 * peer has lost contact -- don't allow peer's links
2034 * to reactivate before we recognize loss & clean up
2035 */
2036 l_ptr->owner->block_setup = WAIT_NODE_DOWN;
2037 }
2038
Allan Stephens47361c82011-10-26 10:55:16 -04002039 link_state_event(l_ptr, RESET_MSG);
2040
Per Lidenb97bf3f2006-01-02 19:04:38 +01002041 /* fall thru' */
2042 case ACTIVATE_MSG:
2043 /* Update link settings according other endpoint's values */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002044 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
2045
Allan Stephens2db99832010-12-31 18:59:33 +00002046 msg_tol = msg_link_tolerance(msg);
2047 if (msg_tol > l_ptr->tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002048 link_set_supervision_props(l_ptr, msg_tol);
2049
2050 if (msg_linkprio(msg) > l_ptr->priority)
2051 l_ptr->priority = msg_linkprio(msg);
2052
2053 max_pkt_info = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002054 if (max_pkt_info) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002055 if (max_pkt_info < l_ptr->max_pkt_target)
2056 l_ptr->max_pkt_target = max_pkt_info;
2057 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
2058 l_ptr->max_pkt = l_ptr->max_pkt_target;
2059 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002060 l_ptr->max_pkt = l_ptr->max_pkt_target;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002061 }
Allan Stephens93499312011-10-25 15:14:46 -04002062 l_ptr->owner->bclink.supportable = (max_pkt_info != 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002063
Allan Stephens4d753132011-10-25 12:19:05 -04002064 /* Synchronize broadcast link info, if not done previously */
Allan Stephens7a54d4a2011-10-27 14:17:53 -04002065 if (!tipc_node_is_up(l_ptr->owner)) {
2066 l_ptr->owner->bclink.last_sent =
2067 l_ptr->owner->bclink.last_in =
2068 msg_last_bcast(msg);
2069 l_ptr->owner->bclink.oos_state = 0;
2070 }
Allan Stephens4d753132011-10-25 12:19:05 -04002071
Per Lidenb97bf3f2006-01-02 19:04:38 +01002072 l_ptr->peer_session = msg_session(msg);
2073 l_ptr->peer_bearer_id = msg_bearer_id(msg);
Allan Stephens47361c82011-10-26 10:55:16 -04002074
2075 if (msg_type(msg) == ACTIVATE_MSG)
2076 link_state_event(l_ptr, ACTIVATE_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002077 break;
2078 case STATE_MSG:
2079
Allan Stephens2db99832010-12-31 18:59:33 +00002080 msg_tol = msg_link_tolerance(msg);
2081 if (msg_tol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002082 link_set_supervision_props(l_ptr, msg_tol);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002083
2084 if (msg_linkprio(msg) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002085 (msg_linkprio(msg) != l_ptr->priority)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002086 pr_warn("%s<%s>, priority change %u->%u\n",
2087 link_rst_msg, l_ptr->name, l_ptr->priority,
2088 msg_linkprio(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002089 l_ptr->priority = msg_linkprio(msg);
Per Liden4323add2006-01-18 00:38:21 +01002090 tipc_link_reset(l_ptr); /* Enforce change to take effect */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002091 break;
2092 }
2093 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
2094 l_ptr->stats.recv_states++;
2095 if (link_reset_unknown(l_ptr))
2096 break;
2097
2098 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002099 rec_gap = mod(msg_next_sent(msg) -
Per Lidenb97bf3f2006-01-02 19:04:38 +01002100 mod(l_ptr->next_in_no));
2101 }
2102
2103 max_pkt_ack = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002104 if (max_pkt_ack > l_ptr->max_pkt) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002105 l_ptr->max_pkt = max_pkt_ack;
2106 l_ptr->max_pkt_probes = 0;
2107 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002108
2109 max_pkt_ack = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002110 if (msg_probe(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002111 l_ptr->stats.recv_probes++;
Allan Stephensa0168922010-12-31 18:59:35 +00002112 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002113 max_pkt_ack = msg_size(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002114 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002115
2116 /* Protocol message before retransmits, reduce loss risk */
Allan Stephens7a54d4a2011-10-27 14:17:53 -04002117 if (l_ptr->owner->bclink.supported)
2118 tipc_bclink_update_link_state(l_ptr->owner,
2119 msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002120
2121 if (rec_gap || (msg_probe(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01002122 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
2123 0, rec_gap, 0, 0, max_pkt_ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002124 }
2125 if (msg_seq_gap(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002126 l_ptr->stats.recv_nacks++;
Per Liden4323add2006-01-18 00:38:21 +01002127 tipc_link_retransmit(l_ptr, l_ptr->first_out,
2128 msg_seq_gap(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002129 }
2130 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002131 }
2132exit:
Allan Stephens5f6d9122011-11-04 13:24:29 -04002133 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002134}
2135
2136
2137/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002138 * tipc_link_tunnel(): Send one message via a link belonging to
Per Lidenb97bf3f2006-01-02 19:04:38 +01002139 * another bearer. Owner node is locked.
2140 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002141static void tipc_link_tunnel(struct tipc_link *l_ptr,
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002142 struct tipc_msg *tunnel_hdr,
2143 struct tipc_msg *msg,
2144 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002145{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002146 struct tipc_link *tunnel;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002147 struct sk_buff *buf;
2148 u32 length = msg_size(msg);
2149
2150 tunnel = l_ptr->owner->active_links[selector & 1];
Allan Stephens5392d642006-06-25 23:52:50 -07002151 if (!tipc_link_is_up(tunnel)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002152 pr_warn("%stunnel link no longer available\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002153 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002154 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002155 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002156 buf = tipc_buf_acquire(length + INT_H_SIZE);
Allan Stephens5392d642006-06-25 23:52:50 -07002157 if (!buf) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002158 pr_warn("%sunable to send tunnel msg\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002159 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002160 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002161 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
2162 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
Per Liden4323add2006-01-18 00:38:21 +01002163 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002164}
2165
2166
2167
2168/*
2169 * changeover(): Send whole message queue via the remaining link
2170 * Owner node is locked.
2171 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002172void tipc_link_changeover(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002173{
2174 u32 msgcount = l_ptr->out_queue_size;
2175 struct sk_buff *crs = l_ptr->first_out;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002176 struct tipc_link *tunnel = l_ptr->owner->active_links[0];
Per Lidenb97bf3f2006-01-02 19:04:38 +01002177 struct tipc_msg tunnel_hdr;
Allan Stephens5392d642006-06-25 23:52:50 -07002178 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002179
2180 if (!tunnel)
2181 return;
2182
Allan Stephens5392d642006-06-25 23:52:50 -07002183 if (!l_ptr->owner->permit_changeover) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002184 pr_warn("%speer did not permit changeover\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002185 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002186 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002187
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002188 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002189 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002190 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2191 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07002192
Per Lidenb97bf3f2006-01-02 19:04:38 +01002193 if (!l_ptr->first_out) {
2194 struct sk_buff *buf;
2195
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002196 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002197 if (buf) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002198 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002199 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Per Liden4323add2006-01-18 00:38:21 +01002200 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002201 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002202 pr_warn("%sunable to send changeover msg\n",
2203 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002204 }
2205 return;
2206 }
Allan Stephensf1310722006-06-25 23:51:37 -07002207
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002208 split_bundles = (l_ptr->owner->active_links[0] !=
Allan Stephens5392d642006-06-25 23:52:50 -07002209 l_ptr->owner->active_links[1]);
2210
Per Lidenb97bf3f2006-01-02 19:04:38 +01002211 while (crs) {
2212 struct tipc_msg *msg = buf_msg(crs);
2213
2214 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002215 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00002216 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002217
Florian Westphald788d802007-08-02 19:28:06 -07002218 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002219 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00002220 msg_set_seqno(m, msg_seqno(msg));
Per Liden4323add2006-01-18 00:38:21 +01002221 tipc_link_tunnel(l_ptr, &tunnel_hdr, m,
2222 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002223 pos += align(msg_size(m));
2224 m = (struct tipc_msg *)pos;
2225 }
2226 } else {
Per Liden4323add2006-01-18 00:38:21 +01002227 tipc_link_tunnel(l_ptr, &tunnel_hdr, msg,
2228 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002229 }
2230 crs = crs->next;
2231 }
2232}
2233
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002234void tipc_link_send_duplicate(struct tipc_link *l_ptr, struct tipc_link *tunnel)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002235{
2236 struct sk_buff *iter;
2237 struct tipc_msg tunnel_hdr;
2238
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002239 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002240 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002241 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
2242 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2243 iter = l_ptr->first_out;
2244 while (iter) {
2245 struct sk_buff *outbuf;
2246 struct tipc_msg *msg = buf_msg(iter);
2247 u32 length = msg_size(msg);
2248
2249 if (msg_user(msg) == MSG_BUNDLER)
2250 msg_set_type(msg, CLOSED_MSG);
2251 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002252 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002253 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002254 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002255 if (outbuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002256 pr_warn("%sunable to send duplicate msg\n",
2257 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002258 return;
2259 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002260 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
2261 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
2262 length);
Per Liden4323add2006-01-18 00:38:21 +01002263 tipc_link_send_buf(tunnel, outbuf);
2264 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002265 return;
2266 iter = iter->next;
2267 }
2268}
2269
Per Lidenb97bf3f2006-01-02 19:04:38 +01002270/**
2271 * buf_extract - extracts embedded TIPC message from another message
2272 * @skb: encapsulating message buffer
2273 * @from_pos: offset to extract from
2274 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002275 * Returns a new message buffer containing an embedded message. The
Per Lidenb97bf3f2006-01-02 19:04:38 +01002276 * encapsulating message itself is left unchanged.
2277 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002278static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
2279{
2280 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
2281 u32 size = msg_size(msg);
2282 struct sk_buff *eb;
2283
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002284 eb = tipc_buf_acquire(size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002285 if (eb)
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002286 skb_copy_to_linear_data(eb, msg, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002287 return eb;
2288}
2289
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002290/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01002291 * link_recv_changeover_msg(): Receive tunneled packet sent
2292 * via other link. Node is locked. Return extracted buffer.
2293 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002294static int link_recv_changeover_msg(struct tipc_link **l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002295 struct sk_buff **buf)
2296{
2297 struct sk_buff *tunnel_buf = *buf;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002298 struct tipc_link *dest_link;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002299 struct tipc_msg *msg;
2300 struct tipc_msg *tunnel_msg = buf_msg(tunnel_buf);
2301 u32 msg_typ = msg_type(tunnel_msg);
2302 u32 msg_count = msg_msgcnt(tunnel_msg);
2303
2304 dest_link = (*l_ptr)->owner->links[msg_bearer_id(tunnel_msg)];
Allan Stephensb29f1422010-12-31 18:59:25 +00002305 if (!dest_link)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002306 goto exit;
Allan Stephensf1310722006-06-25 23:51:37 -07002307 if (dest_link == *l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002308 pr_err("Unexpected changeover message on link <%s>\n",
2309 (*l_ptr)->name);
Allan Stephensf1310722006-06-25 23:51:37 -07002310 goto exit;
2311 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002312 *l_ptr = dest_link;
2313 msg = msg_get_wrapped(tunnel_msg);
2314
2315 if (msg_typ == DUPLICATE_MSG) {
Allan Stephensb29f1422010-12-31 18:59:25 +00002316 if (less(msg_seqno(msg), mod(dest_link->next_in_no)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002317 goto exit;
Allan Stephens0e659672010-12-31 18:59:32 +00002318 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002319 if (*buf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002320 pr_warn("%sduplicate msg dropped\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002321 goto exit;
2322 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002323 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002324 return 1;
2325 }
2326
2327 /* First original message ?: */
Per Liden4323add2006-01-18 00:38:21 +01002328 if (tipc_link_is_up(dest_link)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002329 pr_info("%s<%s>, changeover initiated by peer\n", link_rst_msg,
2330 dest_link->name);
Per Liden4323add2006-01-18 00:38:21 +01002331 tipc_link_reset(dest_link);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002332 dest_link->exp_msg_count = msg_count;
2333 if (!msg_count)
2334 goto exit;
2335 } else if (dest_link->exp_msg_count == START_CHANGEOVER) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002336 dest_link->exp_msg_count = msg_count;
2337 if (!msg_count)
2338 goto exit;
2339 }
2340
2341 /* Receive original message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002342 if (dest_link->exp_msg_count == 0) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002343 pr_warn("%sgot too many tunnelled messages\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002344 goto exit;
2345 }
2346 dest_link->exp_msg_count--;
2347 if (less(msg_seqno(msg), dest_link->reset_checkpoint)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002348 goto exit;
2349 } else {
2350 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
2351 if (*buf != NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002352 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002353 return 1;
2354 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002355 pr_warn("%soriginal msg dropped\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002356 }
2357 }
2358exit:
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002359 *buf = NULL;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002360 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002361 return 0;
2362}
2363
2364/*
2365 * Bundler functionality:
2366 */
Per Liden4323add2006-01-18 00:38:21 +01002367void tipc_link_recv_bundle(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002368{
2369 u32 msgcount = msg_msgcnt(buf_msg(buf));
2370 u32 pos = INT_H_SIZE;
2371 struct sk_buff *obuf;
2372
Per Lidenb97bf3f2006-01-02 19:04:38 +01002373 while (msgcount--) {
2374 obuf = buf_extract(buf, pos);
2375 if (obuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002376 pr_warn("Link unable to unbundle message(s)\n");
Allan Stephensa10bd922006-06-25 23:52:17 -07002377 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002378 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002379 pos += align(msg_size(buf_msg(obuf)));
Per Liden4323add2006-01-18 00:38:21 +01002380 tipc_net_route_msg(obuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002381 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002382 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002383}
2384
2385/*
2386 * Fragmentation/defragmentation:
2387 */
2388
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002389/*
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002390 * link_send_long_buf: Entry for buffers needing fragmentation.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002391 * The buffer is complete, inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002392 * Returns user data length.
2393 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002394static int link_send_long_buf(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002395{
Allan Stephens77561552011-04-17 13:06:23 -04002396 struct sk_buff *buf_chain = NULL;
2397 struct sk_buff *buf_chain_tail = (struct sk_buff *)&buf_chain;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002398 struct tipc_msg *inmsg = buf_msg(buf);
2399 struct tipc_msg fragm_hdr;
2400 u32 insize = msg_size(inmsg);
2401 u32 dsz = msg_data_sz(inmsg);
2402 unchar *crs = buf->data;
2403 u32 rest = insize;
Allan Stephens15e979d2010-05-11 14:30:10 +00002404 u32 pack_sz = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002405 u32 fragm_sz = pack_sz - INT_H_SIZE;
Allan Stephens77561552011-04-17 13:06:23 -04002406 u32 fragm_no = 0;
Allan Stephens9c396a72008-06-04 17:36:58 -07002407 u32 destaddr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002408
2409 if (msg_short(inmsg))
2410 destaddr = l_ptr->addr;
Allan Stephens9c396a72008-06-04 17:36:58 -07002411 else
2412 destaddr = msg_destnode(inmsg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002413
Per Lidenb97bf3f2006-01-02 19:04:38 +01002414 /* Prepare reusable fragment header: */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002415 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07002416 INT_H_SIZE, destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002417
2418 /* Chop up message: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002419 while (rest > 0) {
2420 struct sk_buff *fragm;
2421
2422 if (rest <= fragm_sz) {
2423 fragm_sz = rest;
2424 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
2425 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002426 fragm = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002427 if (fragm == NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002428 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002429 while (buf_chain) {
2430 buf = buf_chain;
2431 buf_chain = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002432 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002433 }
2434 return -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002435 }
2436 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
Allan Stephens77561552011-04-17 13:06:23 -04002437 fragm_no++;
2438 msg_set_fragm_no(&fragm_hdr, fragm_no);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002439 skb_copy_to_linear_data(fragm, &fragm_hdr, INT_H_SIZE);
2440 skb_copy_to_linear_data_offset(fragm, INT_H_SIZE, crs,
2441 fragm_sz);
Allan Stephens77561552011-04-17 13:06:23 -04002442 buf_chain_tail->next = fragm;
2443 buf_chain_tail = fragm;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002444
Per Lidenb97bf3f2006-01-02 19:04:38 +01002445 rest -= fragm_sz;
2446 crs += fragm_sz;
2447 msg_set_type(&fragm_hdr, FRAGMENT);
2448 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002449 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002450
2451 /* Append chain of fragments to send queue & send them */
Allan Stephens77561552011-04-17 13:06:23 -04002452 l_ptr->long_msg_seq_no++;
2453 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
2454 l_ptr->stats.sent_fragments += fragm_no;
2455 l_ptr->stats.sent_fragmented++;
2456 tipc_link_push_queue(l_ptr);
2457
Per Lidenb97bf3f2006-01-02 19:04:38 +01002458 return dsz;
2459}
2460
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002461/*
2462 * A pending message being re-assembled must store certain values
2463 * to handle subsequent fragments correctly. The following functions
Per Lidenb97bf3f2006-01-02 19:04:38 +01002464 * help storing these values in unused, available fields in the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002465 * pending message. This makes dynamic memory allocation unnecessary.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002466 */
Sam Ravnborg05790c62006-03-20 22:37:04 -08002467static void set_long_msg_seqno(struct sk_buff *buf, u32 seqno)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002468{
2469 msg_set_seqno(buf_msg(buf), seqno);
2470}
2471
Sam Ravnborg05790c62006-03-20 22:37:04 -08002472static u32 get_fragm_size(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002473{
2474 return msg_ack(buf_msg(buf));
2475}
2476
Sam Ravnborg05790c62006-03-20 22:37:04 -08002477static void set_fragm_size(struct sk_buff *buf, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002478{
2479 msg_set_ack(buf_msg(buf), sz);
2480}
2481
Sam Ravnborg05790c62006-03-20 22:37:04 -08002482static u32 get_expected_frags(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002483{
2484 return msg_bcast_ack(buf_msg(buf));
2485}
2486
Sam Ravnborg05790c62006-03-20 22:37:04 -08002487static void set_expected_frags(struct sk_buff *buf, u32 exp)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002488{
2489 msg_set_bcast_ack(buf_msg(buf), exp);
2490}
2491
Sam Ravnborg05790c62006-03-20 22:37:04 -08002492static u32 get_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002493{
2494 return msg_reroute_cnt(buf_msg(buf));
2495}
2496
Sam Ravnborg05790c62006-03-20 22:37:04 -08002497static void incr_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002498{
2499 msg_incr_reroute_cnt(buf_msg(buf));
2500}
2501
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002502/*
2503 * tipc_link_recv_fragment(): Called with node lock on. Returns
Per Lidenb97bf3f2006-01-02 19:04:38 +01002504 * the reassembled buffer if message is complete.
2505 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002506int tipc_link_recv_fragment(struct sk_buff **pending, struct sk_buff **fb,
Per Liden4323add2006-01-18 00:38:21 +01002507 struct tipc_msg **m)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002508{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002509 struct sk_buff *prev = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002510 struct sk_buff *fbuf = *fb;
2511 struct tipc_msg *fragm = buf_msg(fbuf);
2512 struct sk_buff *pbuf = *pending;
2513 u32 long_msg_seq_no = msg_long_msgno(fragm);
2514
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002515 *fb = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002516
2517 /* Is there an incomplete message waiting for this fragment? */
Allan Stephensf9057302011-10-24 16:03:12 -04002518 while (pbuf && ((buf_seqno(pbuf) != long_msg_seq_no) ||
Joe Perchesf64f9e72009-11-29 16:55:45 -08002519 (msg_orignode(fragm) != msg_orignode(buf_msg(pbuf))))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002520 prev = pbuf;
2521 pbuf = pbuf->next;
2522 }
2523
2524 if (!pbuf && (msg_type(fragm) == FIRST_FRAGMENT)) {
2525 struct tipc_msg *imsg = (struct tipc_msg *)msg_data(fragm);
2526 u32 msg_sz = msg_size(imsg);
2527 u32 fragm_sz = msg_data_sz(fragm);
2528 u32 exp_fragm_cnt = msg_sz/fragm_sz + !!(msg_sz % fragm_sz);
Allan Stephens741d9eb2011-05-31 15:03:18 -04002529 u32 max = TIPC_MAX_USER_MSG_SIZE + NAMED_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002530 if (msg_type(imsg) == TIPC_MCAST_MSG)
2531 max = TIPC_MAX_USER_MSG_SIZE + MCAST_H_SIZE;
2532 if (msg_size(imsg) > max) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002533 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002534 return 0;
2535 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002536 pbuf = tipc_buf_acquire(msg_size(imsg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002537 if (pbuf != NULL) {
2538 pbuf->next = *pending;
2539 *pending = pbuf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002540 skb_copy_to_linear_data(pbuf, imsg,
2541 msg_data_sz(fragm));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002542 /* Prepare buffer for subsequent fragments. */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002543 set_long_msg_seqno(pbuf, long_msg_seq_no);
Allan Stephens0e659672010-12-31 18:59:32 +00002544 set_fragm_size(pbuf, fragm_sz);
2545 set_expected_frags(pbuf, exp_fragm_cnt - 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002546 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002547 pr_debug("Link unable to reassemble fragmented message\n");
Allan Stephens5f6d9122011-11-04 13:24:29 -04002548 kfree_skb(fbuf);
Allan Stephensb76b27c2011-10-27 16:31:26 -04002549 return -1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002550 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002551 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002552 return 0;
2553 } else if (pbuf && (msg_type(fragm) != FIRST_FRAGMENT)) {
2554 u32 dsz = msg_data_sz(fragm);
2555 u32 fsz = get_fragm_size(pbuf);
2556 u32 crs = ((msg_fragm_no(fragm) - 1) * fsz);
2557 u32 exp_frags = get_expected_frags(pbuf) - 1;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002558 skb_copy_to_linear_data_offset(pbuf, crs,
2559 msg_data(fragm), dsz);
Allan Stephens5f6d9122011-11-04 13:24:29 -04002560 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002561
2562 /* Is message complete? */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002563 if (exp_frags == 0) {
2564 if (prev)
2565 prev->next = pbuf->next;
2566 else
2567 *pending = pbuf->next;
2568 msg_reset_reroute_cnt(buf_msg(pbuf));
2569 *fb = pbuf;
2570 *m = buf_msg(pbuf);
2571 return 1;
2572 }
Allan Stephens0e659672010-12-31 18:59:32 +00002573 set_expected_frags(pbuf, exp_frags);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002574 return 0;
2575 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002576 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002577 return 0;
2578}
2579
2580/**
2581 * link_check_defragm_bufs - flush stale incoming message fragments
2582 * @l_ptr: pointer to link
2583 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002584static void link_check_defragm_bufs(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002585{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002586 struct sk_buff *prev = NULL;
2587 struct sk_buff *next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002588 struct sk_buff *buf = l_ptr->defragm_buf;
2589
2590 if (!buf)
2591 return;
2592 if (!link_working_working(l_ptr))
2593 return;
2594 while (buf) {
2595 u32 cnt = get_timer_cnt(buf);
2596
2597 next = buf->next;
2598 if (cnt < 4) {
2599 incr_timer_cnt(buf);
2600 prev = buf;
2601 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002602 if (prev)
2603 prev->next = buf->next;
2604 else
2605 l_ptr->defragm_buf = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002606 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002607 }
2608 buf = next;
2609 }
2610}
2611
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002612static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002613{
Allan Stephens5413b4c2011-01-18 13:24:55 -05002614 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
2615 return;
2616
Per Lidenb97bf3f2006-01-02 19:04:38 +01002617 l_ptr->tolerance = tolerance;
2618 l_ptr->continuity_interval =
2619 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
2620 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
2621}
2622
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002623void tipc_link_set_queue_limits(struct tipc_link *l_ptr, u32 window)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002624{
2625 /* Data messages from this node, inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002626 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
2627 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
2628 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
2629 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002630 /* Transiting data messages,inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002631 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
2632 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
2633 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
2634 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002635 l_ptr->queue_limit[CONN_MANAGER] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002636 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
2637 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
2638 /* FRAGMENT and LAST_FRAGMENT packets */
2639 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
2640}
2641
2642/**
2643 * link_find_link - locate link by name
Ben Hutchings2c530402012-07-10 10:55:09 +00002644 * @name: ptr to link name string
2645 * @node: ptr to area to be filled with ptr to associated node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002646 *
Per Liden4323add2006-01-18 00:38:21 +01002647 * Caller must hold 'tipc_net_lock' to ensure node and bearer are not deleted;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002648 * this also prevents link deletion.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002649 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002650 * Returns pointer to link (or 0 if invalid link name).
2651 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002652static struct tipc_link *link_find_link(const char *name,
2653 struct tipc_node **node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002654{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002655 struct tipc_link_name link_name_parts;
Allan Stephens2d627b92011-01-07 13:00:11 -05002656 struct tipc_bearer *b_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002657 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002658
2659 if (!link_name_validate(name, &link_name_parts))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002660 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002661
Per Liden4323add2006-01-18 00:38:21 +01002662 b_ptr = tipc_bearer_find_interface(link_name_parts.if_local);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002663 if (!b_ptr)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002664 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002665
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002666 *node = tipc_node_find(link_name_parts.addr_peer);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002667 if (!*node)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002668 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002669
2670 l_ptr = (*node)->links[b_ptr->identity];
2671 if (!l_ptr || strcmp(l_ptr->name, name))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002672 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002673
2674 return l_ptr;
2675}
2676
Allan Stephens5c216e12011-10-18 11:34:29 -04002677/**
2678 * link_value_is_valid -- validate proposed link tolerance/priority/window
2679 *
Ben Hutchings2c530402012-07-10 10:55:09 +00002680 * @cmd: value type (TIPC_CMD_SET_LINK_*)
2681 * @new_value: the new value
Allan Stephens5c216e12011-10-18 11:34:29 -04002682 *
2683 * Returns 1 if value is within range, 0 if not.
2684 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002685static int link_value_is_valid(u16 cmd, u32 new_value)
2686{
2687 switch (cmd) {
2688 case TIPC_CMD_SET_LINK_TOL:
2689 return (new_value >= TIPC_MIN_LINK_TOL) &&
2690 (new_value <= TIPC_MAX_LINK_TOL);
2691 case TIPC_CMD_SET_LINK_PRI:
2692 return (new_value <= TIPC_MAX_LINK_PRI);
2693 case TIPC_CMD_SET_LINK_WINDOW:
2694 return (new_value >= TIPC_MIN_LINK_WIN) &&
2695 (new_value <= TIPC_MAX_LINK_WIN);
2696 }
2697 return 0;
2698}
2699
Allan Stephens5c216e12011-10-18 11:34:29 -04002700/**
2701 * link_cmd_set_value - change priority/tolerance/window for link/bearer/media
Ben Hutchings2c530402012-07-10 10:55:09 +00002702 * @name: ptr to link, bearer, or media name
2703 * @new_value: new value of link, bearer, or media setting
2704 * @cmd: which link, bearer, or media attribute to set (TIPC_CMD_SET_LINK_*)
Allan Stephens5c216e12011-10-18 11:34:29 -04002705 *
2706 * Caller must hold 'tipc_net_lock' to ensure link/bearer/media is not deleted.
2707 *
2708 * Returns 0 if value updated and negative value on error.
2709 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002710static int link_cmd_set_value(const char *name, u32 new_value, u16 cmd)
2711{
2712 struct tipc_node *node;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002713 struct tipc_link *l_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002714 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -05002715 struct tipc_media *m_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002716
2717 l_ptr = link_find_link(name, &node);
2718 if (l_ptr) {
2719 /*
2720 * acquire node lock for tipc_link_send_proto_msg().
2721 * see "TIPC locking policy" in net.c.
2722 */
2723 tipc_node_lock(node);
2724 switch (cmd) {
2725 case TIPC_CMD_SET_LINK_TOL:
2726 link_set_supervision_props(l_ptr, new_value);
2727 tipc_link_send_proto_msg(l_ptr,
2728 STATE_MSG, 0, 0, new_value, 0, 0);
2729 break;
2730 case TIPC_CMD_SET_LINK_PRI:
2731 l_ptr->priority = new_value;
2732 tipc_link_send_proto_msg(l_ptr,
2733 STATE_MSG, 0, 0, 0, new_value, 0);
2734 break;
2735 case TIPC_CMD_SET_LINK_WINDOW:
2736 tipc_link_set_queue_limits(l_ptr, new_value);
2737 break;
2738 }
2739 tipc_node_unlock(node);
2740 return 0;
2741 }
2742
2743 b_ptr = tipc_bearer_find(name);
2744 if (b_ptr) {
2745 switch (cmd) {
2746 case TIPC_CMD_SET_LINK_TOL:
2747 b_ptr->tolerance = new_value;
2748 return 0;
2749 case TIPC_CMD_SET_LINK_PRI:
2750 b_ptr->priority = new_value;
2751 return 0;
2752 case TIPC_CMD_SET_LINK_WINDOW:
2753 b_ptr->window = new_value;
2754 return 0;
2755 }
2756 return -EINVAL;
2757 }
2758
2759 m_ptr = tipc_media_find(name);
2760 if (!m_ptr)
2761 return -ENODEV;
2762 switch (cmd) {
2763 case TIPC_CMD_SET_LINK_TOL:
2764 m_ptr->tolerance = new_value;
2765 return 0;
2766 case TIPC_CMD_SET_LINK_PRI:
2767 m_ptr->priority = new_value;
2768 return 0;
2769 case TIPC_CMD_SET_LINK_WINDOW:
2770 m_ptr->window = new_value;
2771 return 0;
2772 }
2773 return -EINVAL;
2774}
2775
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002776struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
Per Liden4323add2006-01-18 00:38:21 +01002777 u16 cmd)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002778{
2779 struct tipc_link_config *args;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002780 u32 new_value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002781 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002782
2783 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
Per Liden4323add2006-01-18 00:38:21 +01002784 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002785
2786 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2787 new_value = ntohl(args->value);
2788
Allan Stephens5c216e12011-10-18 11:34:29 -04002789 if (!link_value_is_valid(cmd, new_value))
2790 return tipc_cfg_reply_error_string(
2791 "cannot change, value invalid");
2792
Per Liden4323add2006-01-18 00:38:21 +01002793 if (!strcmp(args->name, tipc_bclink_name)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002794 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
Per Liden4323add2006-01-18 00:38:21 +01002795 (tipc_bclink_set_queue_limits(new_value) == 0))
2796 return tipc_cfg_reply_none();
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002797 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
Per Liden4323add2006-01-18 00:38:21 +01002798 " (cannot change setting on broadcast link)");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002799 }
2800
Per Liden4323add2006-01-18 00:38:21 +01002801 read_lock_bh(&tipc_net_lock);
Allan Stephens5c216e12011-10-18 11:34:29 -04002802 res = link_cmd_set_value(args->name, new_value, cmd);
Per Liden4323add2006-01-18 00:38:21 +01002803 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002804 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002805 return tipc_cfg_reply_error_string("cannot change link setting");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002806
Per Liden4323add2006-01-18 00:38:21 +01002807 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002808}
2809
2810/**
2811 * link_reset_statistics - reset link statistics
2812 * @l_ptr: pointer to link
2813 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002814static void link_reset_statistics(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002815{
2816 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2817 l_ptr->stats.sent_info = l_ptr->next_out_no;
2818 l_ptr->stats.recv_info = l_ptr->next_in_no;
2819}
2820
Per Liden4323add2006-01-18 00:38:21 +01002821struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002822{
2823 char *link_name;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002824 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002825 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002826
2827 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002828 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002829
2830 link_name = (char *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +01002831 if (!strcmp(link_name, tipc_bclink_name)) {
2832 if (tipc_bclink_reset_stats())
2833 return tipc_cfg_reply_error_string("link not found");
2834 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002835 }
2836
Per Liden4323add2006-01-18 00:38:21 +01002837 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002838 l_ptr = link_find_link(link_name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002839 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002840 read_unlock_bh(&tipc_net_lock);
2841 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002842 }
2843
Per Liden4323add2006-01-18 00:38:21 +01002844 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002845 link_reset_statistics(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +01002846 tipc_node_unlock(node);
2847 read_unlock_bh(&tipc_net_lock);
2848 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002849}
2850
2851/**
2852 * percent - convert count to a percentage of total (rounding up or down)
2853 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002854static u32 percent(u32 count, u32 total)
2855{
2856 return (count * 100 + (total / 2)) / total;
2857}
2858
2859/**
Per Liden4323add2006-01-18 00:38:21 +01002860 * tipc_link_stats - print link statistics
Per Lidenb97bf3f2006-01-02 19:04:38 +01002861 * @name: link name
2862 * @buf: print buffer area
2863 * @buf_size: size of print buffer area
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002864 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002865 * Returns length of print buffer data string (or 0 if error)
2866 */
Per Liden4323add2006-01-18 00:38:21 +01002867static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002868{
Erik Hugnedc1aed32012-06-29 00:50:23 -04002869 struct tipc_link *l;
2870 struct tipc_stats *s;
David S. Miller6c000552008-09-02 23:38:32 -07002871 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002872 char *status;
2873 u32 profile_total = 0;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002874 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002875
Per Liden4323add2006-01-18 00:38:21 +01002876 if (!strcmp(name, tipc_bclink_name))
2877 return tipc_bclink_stats(buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002878
Per Liden4323add2006-01-18 00:38:21 +01002879 read_lock_bh(&tipc_net_lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002880 l = link_find_link(name, &node);
2881 if (!l) {
Per Liden4323add2006-01-18 00:38:21 +01002882 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002883 return 0;
2884 }
Per Liden4323add2006-01-18 00:38:21 +01002885 tipc_node_lock(node);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002886 s = &l->stats;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002887
Erik Hugnedc1aed32012-06-29 00:50:23 -04002888 if (tipc_link_is_active(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002889 status = "ACTIVE";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002890 else if (tipc_link_is_up(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002891 status = "STANDBY";
2892 else
2893 status = "DEFUNCT";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002894
2895 ret = tipc_snprintf(buf, buf_size, "Link <%s>\n"
2896 " %s MTU:%u Priority:%u Tolerance:%u ms"
2897 " Window:%u packets\n",
2898 l->name, status, l->max_pkt, l->priority,
2899 l->tolerance, l->queue_limit[0]);
2900
2901 ret += tipc_snprintf(buf + ret, buf_size - ret,
2902 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
2903 l->next_in_no - s->recv_info, s->recv_fragments,
2904 s->recv_fragmented, s->recv_bundles,
2905 s->recv_bundled);
2906
2907 ret += tipc_snprintf(buf + ret, buf_size - ret,
2908 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
2909 l->next_out_no - s->sent_info, s->sent_fragments,
2910 s->sent_fragmented, s->sent_bundles,
2911 s->sent_bundled);
2912
2913 profile_total = s->msg_length_counts;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002914 if (!profile_total)
2915 profile_total = 1;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002916
2917 ret += tipc_snprintf(buf + ret, buf_size - ret,
2918 " TX profile sample:%u packets average:%u octets\n"
2919 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
2920 "-16384:%u%% -32768:%u%% -66000:%u%%\n",
2921 s->msg_length_counts,
2922 s->msg_lengths_total / profile_total,
2923 percent(s->msg_length_profile[0], profile_total),
2924 percent(s->msg_length_profile[1], profile_total),
2925 percent(s->msg_length_profile[2], profile_total),
2926 percent(s->msg_length_profile[3], profile_total),
2927 percent(s->msg_length_profile[4], profile_total),
2928 percent(s->msg_length_profile[5], profile_total),
2929 percent(s->msg_length_profile[6], profile_total));
2930
2931 ret += tipc_snprintf(buf + ret, buf_size - ret,
2932 " RX states:%u probes:%u naks:%u defs:%u"
2933 " dups:%u\n", s->recv_states, s->recv_probes,
2934 s->recv_nacks, s->deferred_recv, s->duplicates);
2935
2936 ret += tipc_snprintf(buf + ret, buf_size - ret,
2937 " TX states:%u probes:%u naks:%u acks:%u"
2938 " dups:%u\n", s->sent_states, s->sent_probes,
2939 s->sent_nacks, s->sent_acks, s->retransmitted);
2940
2941 ret += tipc_snprintf(buf + ret, buf_size - ret,
2942 " Congestion bearer:%u link:%u Send queue"
2943 " max:%u avg:%u\n", s->bearer_congs, s->link_congs,
2944 s->max_queue_sz, s->queue_sz_counts ?
2945 (s->accu_queue_sz / s->queue_sz_counts) : 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002946
Per Liden4323add2006-01-18 00:38:21 +01002947 tipc_node_unlock(node);
2948 read_unlock_bh(&tipc_net_lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002949 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002950}
2951
Per Liden4323add2006-01-18 00:38:21 +01002952struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002953{
2954 struct sk_buff *buf;
2955 struct tlv_desc *rep_tlv;
2956 int str_len;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002957 int pb_len;
2958 char *pb;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002959
2960 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002961 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002962
Erik Hugnedc1aed32012-06-29 00:50:23 -04002963 buf = tipc_cfg_reply_alloc(TLV_SPACE(ULTRA_STRING_MAX_LEN));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002964 if (!buf)
2965 return NULL;
2966
2967 rep_tlv = (struct tlv_desc *)buf->data;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002968 pb = TLV_DATA(rep_tlv);
2969 pb_len = ULTRA_STRING_MAX_LEN;
Per Liden4323add2006-01-18 00:38:21 +01002970 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
Erik Hugnedc1aed32012-06-29 00:50:23 -04002971 pb, pb_len);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002972 if (!str_len) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002973 kfree_skb(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002974 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002975 }
Erik Hugnedc1aed32012-06-29 00:50:23 -04002976 str_len += 1; /* for "\0" */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002977 skb_put(buf, TLV_SPACE(str_len));
2978 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
2979
2980 return buf;
2981}
2982
Per Lidenb97bf3f2006-01-02 19:04:38 +01002983/**
Per Liden4323add2006-01-18 00:38:21 +01002984 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
Per Lidenb97bf3f2006-01-02 19:04:38 +01002985 * @dest: network address of destination node
2986 * @selector: used to select from set of active links
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002987 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002988 * If no active link can be found, uses default maximum packet size.
2989 */
Per Liden4323add2006-01-18 00:38:21 +01002990u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002991{
David S. Miller6c000552008-09-02 23:38:32 -07002992 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002993 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002994 u32 res = MAX_PKT_DEFAULT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002995
Per Lidenb97bf3f2006-01-02 19:04:38 +01002996 if (dest == tipc_own_addr)
2997 return MAX_MSG_SIZE;
2998
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002999 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00003000 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003001 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01003002 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003003 l_ptr = n_ptr->active_links[selector & 1];
3004 if (l_ptr)
Allan Stephens15e979d2010-05-11 14:30:10 +00003005 res = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01003006 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003007 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003008 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003009 return res;
3010}
3011
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05003012static void link_print(struct tipc_link *l_ptr, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003013{
Paul Gortmaker5deedde2012-07-11 19:27:56 -04003014 pr_info("%s Link %x<%s>:", str, l_ptr->addr, l_ptr->b_ptr->name);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003015
Per Lidenb97bf3f2006-01-02 19:04:38 +01003016 if (link_working_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04003017 pr_cont(":WU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003018 else if (link_reset_reset(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04003019 pr_cont(":RR\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003020 else if (link_reset_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04003021 pr_cont(":RU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003022 else if (link_working_working(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04003023 pr_cont(":WW\n");
3024 else
3025 pr_cont("\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01003026}