blob: a79c755cb41714bf40c66de615ce6d0cc737cb3b [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) ||
Ying Xuefc073932012-08-16 12:09:08 +0000213 (if_peer_len <= 1) || (if_peer_len > TIPC_MAX_IF_NAME))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100214 return 0;
215
216 /* return link name components, if necessary */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100217 if (name_parts) {
218 name_parts->addr_local = tipc_addr(z_local, c_local, n_local);
219 strcpy(name_parts->if_local, if_local);
220 name_parts->addr_peer = tipc_addr(z_peer, c_peer, n_peer);
221 strcpy(name_parts->if_peer, if_peer);
222 }
223 return 1;
224}
225
226/**
227 * link_timeout - handle expiration of link timer
228 * @l_ptr: pointer to link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900229 *
Per Liden4323add2006-01-18 00:38:21 +0100230 * This routine must not grab "tipc_net_lock" to avoid a potential deadlock conflict
231 * with tipc_link_delete(). (There is no risk that the node will be deleted by
232 * another thread because tipc_link_delete() always cancels the link timer before
233 * tipc_node_delete() is called.)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100234 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500235static void link_timeout(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100236{
Per Liden4323add2006-01-18 00:38:21 +0100237 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100238
239 /* update counters used in statistical profiling of send traffic */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100240 l_ptr->stats.accu_queue_sz += l_ptr->out_queue_size;
241 l_ptr->stats.queue_sz_counts++;
242
Per Lidenb97bf3f2006-01-02 19:04:38 +0100243 if (l_ptr->first_out) {
244 struct tipc_msg *msg = buf_msg(l_ptr->first_out);
245 u32 length = msg_size(msg);
246
Joe Perchesf64f9e72009-11-29 16:55:45 -0800247 if ((msg_user(msg) == MSG_FRAGMENTER) &&
248 (msg_type(msg) == FIRST_FRAGMENT)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100249 length = msg_size(msg_get_wrapped(msg));
250 }
251 if (length) {
252 l_ptr->stats.msg_lengths_total += length;
253 l_ptr->stats.msg_length_counts++;
254 if (length <= 64)
255 l_ptr->stats.msg_length_profile[0]++;
256 else if (length <= 256)
257 l_ptr->stats.msg_length_profile[1]++;
258 else if (length <= 1024)
259 l_ptr->stats.msg_length_profile[2]++;
260 else if (length <= 4096)
261 l_ptr->stats.msg_length_profile[3]++;
262 else if (length <= 16384)
263 l_ptr->stats.msg_length_profile[4]++;
264 else if (length <= 32768)
265 l_ptr->stats.msg_length_profile[5]++;
266 else
267 l_ptr->stats.msg_length_profile[6]++;
268 }
269 }
270
271 /* do all other link processing performed on a periodic basis */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100272 link_check_defragm_bufs(l_ptr);
273
274 link_state_event(l_ptr, TIMEOUT_EVT);
275
276 if (l_ptr->next_out)
Per Liden4323add2006-01-18 00:38:21 +0100277 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100278
Per Liden4323add2006-01-18 00:38:21 +0100279 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100280}
281
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500282static void link_set_timer(struct tipc_link *l_ptr, u32 time)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100283{
284 k_start_timer(&l_ptr->timer, time);
285}
286
287/**
Per Liden4323add2006-01-18 00:38:21 +0100288 * tipc_link_create - create a new link
Allan Stephens37b9c082011-02-28 11:32:27 -0500289 * @n_ptr: pointer to associated node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100290 * @b_ptr: pointer to associated bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100291 * @media_addr: media address to use when sending messages over link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900292 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100293 * Returns pointer to link.
294 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500295struct tipc_link *tipc_link_create(struct tipc_node *n_ptr,
Allan Stephens37b9c082011-02-28 11:32:27 -0500296 struct tipc_bearer *b_ptr,
Per Liden4323add2006-01-18 00:38:21 +0100297 const struct tipc_media_addr *media_addr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100298{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500299 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100300 struct tipc_msg *msg;
301 char *if_name;
Allan Stephens37b9c082011-02-28 11:32:27 -0500302 char addr_string[16];
303 u32 peer = n_ptr->addr;
304
305 if (n_ptr->link_cnt >= 2) {
306 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400307 pr_err("Attempt to establish third link to %s\n", addr_string);
Allan Stephens37b9c082011-02-28 11:32:27 -0500308 return NULL;
309 }
310
311 if (n_ptr->links[b_ptr->identity]) {
312 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400313 pr_err("Attempt to establish second link on <%s> to %s\n",
314 b_ptr->name, addr_string);
Allan Stephens37b9c082011-02-28 11:32:27 -0500315 return NULL;
316 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100317
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700318 l_ptr = kzalloc(sizeof(*l_ptr), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100319 if (!l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400320 pr_warn("Link creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100321 return NULL;
322 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100323
324 l_ptr->addr = peer;
Allan Stephens2d627b92011-01-07 13:00:11 -0500325 if_name = strchr(b_ptr->name, ':') + 1;
Allan Stephens062b4c92011-04-07 09:28:47 -0400326 sprintf(l_ptr->name, "%u.%u.%u:%s-%u.%u.%u:unknown",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100327 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900328 tipc_node(tipc_own_addr),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100329 if_name,
330 tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
Allan Stephens062b4c92011-04-07 09:28:47 -0400331 /* note: peer i/f name is updated by reset/activate message */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100332 memcpy(&l_ptr->media_addr, media_addr, sizeof(*media_addr));
Allan Stephens37b9c082011-02-28 11:32:27 -0500333 l_ptr->owner = n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100334 l_ptr->checkpoint = 1;
Allan Stephensf882cb72011-04-07 09:43:27 -0400335 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100336 l_ptr->b_ptr = b_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -0400337 link_set_supervision_props(l_ptr, b_ptr->tolerance);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100338 l_ptr->state = RESET_UNKNOWN;
339
340 l_ptr->pmsg = (struct tipc_msg *)&l_ptr->proto_msg;
341 msg = l_ptr->pmsg;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000342 tipc_msg_init(msg, LINK_PROTOCOL, RESET_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100343 msg_set_size(msg, sizeof(l_ptr->proto_msg));
Allan Stephensa686e682008-06-04 17:29:39 -0700344 msg_set_session(msg, (tipc_random & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100345 msg_set_bearer_id(msg, b_ptr->identity);
346 strcpy((char *)msg_data(msg), if_name);
347
348 l_ptr->priority = b_ptr->priority;
Allan Stephens5c216e12011-10-18 11:34:29 -0400349 tipc_link_set_queue_limits(l_ptr, b_ptr->window);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100350
351 link_init_max_pkt(l_ptr);
352
353 l_ptr->next_out_no = 1;
354 INIT_LIST_HEAD(&l_ptr->waiting_ports);
355
356 link_reset_statistics(l_ptr);
357
Allan Stephens37b9c082011-02-28 11:32:27 -0500358 tipc_node_attach_link(n_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100359
Florian Westphal945710652007-07-26 00:05:07 -0700360 k_init_timer(&l_ptr->timer, (Handler)link_timeout, (unsigned long)l_ptr);
361 list_add_tail(&l_ptr->link_list, &b_ptr->links);
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000362 tipc_k_signal((Handler)link_start, (unsigned long)l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100363
Per Lidenb97bf3f2006-01-02 19:04:38 +0100364 return l_ptr;
365}
366
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900367/**
Per Liden4323add2006-01-18 00:38:21 +0100368 * tipc_link_delete - delete a link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100369 * @l_ptr: pointer to link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900370 *
Per Liden4323add2006-01-18 00:38:21 +0100371 * Note: 'tipc_net_lock' is write_locked, bearer is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100372 * This routine must not grab the node lock until after link timer cancellation
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900373 * to avoid a potential deadlock situation.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100374 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500375void tipc_link_delete(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100376{
377 if (!l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400378 pr_err("Attempt to delete non-existent link\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100379 return;
380 }
381
Per Lidenb97bf3f2006-01-02 19:04:38 +0100382 k_cancel_timer(&l_ptr->timer);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900383
Per Liden4323add2006-01-18 00:38:21 +0100384 tipc_node_lock(l_ptr->owner);
385 tipc_link_reset(l_ptr);
386 tipc_node_detach_link(l_ptr->owner, l_ptr);
387 tipc_link_stop(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100388 list_del_init(&l_ptr->link_list);
Per Liden4323add2006-01-18 00:38:21 +0100389 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100390 k_term_timer(&l_ptr->timer);
391 kfree(l_ptr);
392}
393
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500394static void link_start(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100395{
Allan Stephens214dda42011-01-24 16:22:43 -0500396 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100397 link_state_event(l_ptr, STARTING_EVT);
Allan Stephens214dda42011-01-24 16:22:43 -0500398 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100399}
400
401/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900402 * link_schedule_port - schedule port for deferred sending
Per Lidenb97bf3f2006-01-02 19:04:38 +0100403 * @l_ptr: pointer to link
404 * @origport: reference to sending port
405 * @sz: amount of data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900406 *
407 * Schedules port for renewed sending of messages after link congestion
Per Lidenb97bf3f2006-01-02 19:04:38 +0100408 * has abated.
409 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500410static int link_schedule_port(struct tipc_link *l_ptr, u32 origport, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100411{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500412 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100413
Per Liden4323add2006-01-18 00:38:21 +0100414 spin_lock_bh(&tipc_port_list_lock);
415 p_ptr = tipc_port_lock(origport);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100416 if (p_ptr) {
417 if (!p_ptr->wakeup)
418 goto exit;
419 if (!list_empty(&p_ptr->wait_list))
420 goto exit;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500421 p_ptr->congested = 1;
Allan Stephens15e979d2010-05-11 14:30:10 +0000422 p_ptr->waiting_pkts = 1 + ((sz - 1) / l_ptr->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100423 list_add_tail(&p_ptr->wait_list, &l_ptr->waiting_ports);
424 l_ptr->stats.link_congs++;
425exit:
Per Liden4323add2006-01-18 00:38:21 +0100426 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100427 }
Per Liden4323add2006-01-18 00:38:21 +0100428 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100429 return -ELINKCONG;
430}
431
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500432void tipc_link_wakeup_ports(struct tipc_link *l_ptr, int all)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100433{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500434 struct tipc_port *p_ptr;
435 struct tipc_port *temp_p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100436 int win = l_ptr->queue_limit[0] - l_ptr->out_queue_size;
437
438 if (all)
439 win = 100000;
440 if (win <= 0)
441 return;
Per Liden4323add2006-01-18 00:38:21 +0100442 if (!spin_trylock_bh(&tipc_port_list_lock))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100443 return;
444 if (link_congested(l_ptr))
445 goto exit;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900446 list_for_each_entry_safe(p_ptr, temp_p_ptr, &l_ptr->waiting_ports,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100447 wait_list) {
448 if (win <= 0)
449 break;
450 list_del_init(&p_ptr->wait_list);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500451 spin_lock_bh(p_ptr->lock);
452 p_ptr->congested = 0;
453 p_ptr->wakeup(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100454 win -= p_ptr->waiting_pkts;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500455 spin_unlock_bh(p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100456 }
457
458exit:
Per Liden4323add2006-01-18 00:38:21 +0100459 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100460}
461
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900462/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100463 * link_release_outqueue - purge link's outbound message queue
464 * @l_ptr: pointer to link
465 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500466static void link_release_outqueue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100467{
468 struct sk_buff *buf = l_ptr->first_out;
469 struct sk_buff *next;
470
471 while (buf) {
472 next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400473 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100474 buf = next;
475 }
476 l_ptr->first_out = NULL;
477 l_ptr->out_queue_size = 0;
478}
479
480/**
Per Liden4323add2006-01-18 00:38:21 +0100481 * tipc_link_reset_fragments - purge link's inbound message fragments queue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100482 * @l_ptr: pointer to link
483 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500484void tipc_link_reset_fragments(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100485{
486 struct sk_buff *buf = l_ptr->defragm_buf;
487 struct sk_buff *next;
488
489 while (buf) {
490 next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400491 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100492 buf = next;
493 }
494 l_ptr->defragm_buf = NULL;
495}
496
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900497/**
Per Liden4323add2006-01-18 00:38:21 +0100498 * tipc_link_stop - purge all inbound and outbound messages associated with link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100499 * @l_ptr: pointer to link
500 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500501void tipc_link_stop(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100502{
503 struct sk_buff *buf;
504 struct sk_buff *next;
505
506 buf = l_ptr->oldest_deferred_in;
507 while (buf) {
508 next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400509 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100510 buf = next;
511 }
512
513 buf = l_ptr->first_out;
514 while (buf) {
515 next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400516 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100517 buf = next;
518 }
519
Per Liden4323add2006-01-18 00:38:21 +0100520 tipc_link_reset_fragments(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100521
Allan Stephens5f6d9122011-11-04 13:24:29 -0400522 kfree_skb(l_ptr->proto_msg_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100523 l_ptr->proto_msg_queue = NULL;
524}
525
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500526void tipc_link_reset(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100527{
528 struct sk_buff *buf;
529 u32 prev_state = l_ptr->state;
530 u32 checkpoint = l_ptr->next_in_no;
Allan Stephens5392d642006-06-25 23:52:50 -0700531 int was_active_link = tipc_link_is_active(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900532
Allan Stephensa686e682008-06-04 17:29:39 -0700533 msg_set_session(l_ptr->pmsg, ((msg_session(l_ptr->pmsg) + 1) & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100534
Allan Stephensa686e682008-06-04 17:29:39 -0700535 /* Link is down, accept any session */
536 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100537
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900538 /* Prepare for max packet size negotiation */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100539 link_init_max_pkt(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900540
Per Lidenb97bf3f2006-01-02 19:04:38 +0100541 l_ptr->state = RESET_UNKNOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100542
543 if ((prev_state == RESET_UNKNOWN) || (prev_state == RESET_RESET))
544 return;
545
Per Liden4323add2006-01-18 00:38:21 +0100546 tipc_node_link_down(l_ptr->owner, l_ptr);
547 tipc_bearer_remove_dest(l_ptr->b_ptr, l_ptr->addr);
Paul Gortmaker7368ddf2010-10-12 14:25:58 +0000548
Paul Gortmaker8f19afb2011-02-28 11:36:21 -0400549 if (was_active_link && tipc_node_active_links(l_ptr->owner) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100550 l_ptr->owner->permit_changeover) {
551 l_ptr->reset_checkpoint = checkpoint;
552 l_ptr->exp_msg_count = START_CHANGEOVER;
553 }
554
555 /* Clean up all queues: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100556 link_release_outqueue(l_ptr);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400557 kfree_skb(l_ptr->proto_msg_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100558 l_ptr->proto_msg_queue = NULL;
559 buf = l_ptr->oldest_deferred_in;
560 while (buf) {
561 struct sk_buff *next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400562 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100563 buf = next;
564 }
565 if (!list_empty(&l_ptr->waiting_ports))
Per Liden4323add2006-01-18 00:38:21 +0100566 tipc_link_wakeup_ports(l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100567
568 l_ptr->retransm_queue_head = 0;
569 l_ptr->retransm_queue_size = 0;
570 l_ptr->last_out = NULL;
571 l_ptr->first_out = NULL;
572 l_ptr->next_out = NULL;
573 l_ptr->unacked_window = 0;
574 l_ptr->checkpoint = 1;
575 l_ptr->next_out_no = 1;
576 l_ptr->deferred_inqueue_sz = 0;
577 l_ptr->oldest_deferred_in = NULL;
578 l_ptr->newest_deferred_in = NULL;
579 l_ptr->fsm_msg_cnt = 0;
580 l_ptr->stale_count = 0;
581 link_reset_statistics(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100582}
583
584
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500585static void link_activate(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100586{
Allan Stephens5392d642006-06-25 23:52:50 -0700587 l_ptr->next_in_no = l_ptr->stats.recv_info = 1;
Per Liden4323add2006-01-18 00:38:21 +0100588 tipc_node_link_up(l_ptr->owner, l_ptr);
589 tipc_bearer_add_dest(l_ptr->b_ptr, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100590}
591
592/**
593 * link_state_event - link finite state machine
594 * @l_ptr: pointer to link
595 * @event: state machine event to process
596 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000597static void link_state_event(struct tipc_link *l_ptr, unsigned int event)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100598{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500599 struct tipc_link *other;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100600 u32 cont_intv = l_ptr->continuity_interval;
601
602 if (!l_ptr->started && (event != STARTING_EVT))
603 return; /* Not yet. */
604
605 if (link_blocked(l_ptr)) {
Allan Stephensa0168922010-12-31 18:59:35 +0000606 if (event == TIMEOUT_EVT)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100607 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100608 return; /* Changeover going on */
609 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100610
611 switch (l_ptr->state) {
612 case WORKING_WORKING:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100613 switch (event) {
614 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100615 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100616 break;
617 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100618 if (l_ptr->next_in_no != l_ptr->checkpoint) {
619 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100620 if (tipc_bclink_acks_missing(l_ptr->owner)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900621 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100622 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100623 l_ptr->fsm_msg_cnt++;
624 } else if (l_ptr->max_pkt < l_ptr->max_pkt_target) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900625 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100626 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100627 l_ptr->fsm_msg_cnt++;
628 }
629 link_set_timer(l_ptr, cont_intv);
630 break;
631 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100632 l_ptr->state = WORKING_UNKNOWN;
633 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100634 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100635 l_ptr->fsm_msg_cnt++;
636 link_set_timer(l_ptr, cont_intv / 4);
637 break;
638 case RESET_MSG:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400639 pr_info("%s<%s>, requested by peer\n", link_rst_msg,
640 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100641 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100642 l_ptr->state = RESET_RESET;
643 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100644 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100645 l_ptr->fsm_msg_cnt++;
646 link_set_timer(l_ptr, cont_intv);
647 break;
648 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400649 pr_err("%s%u in WW state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100650 }
651 break;
652 case WORKING_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100653 switch (event) {
654 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100655 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100656 l_ptr->state = WORKING_WORKING;
657 l_ptr->fsm_msg_cnt = 0;
658 link_set_timer(l_ptr, cont_intv);
659 break;
660 case RESET_MSG:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400661 pr_info("%s<%s>, requested by peer while probing\n",
662 link_rst_msg, l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100663 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100664 l_ptr->state = RESET_RESET;
665 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100666 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100667 l_ptr->fsm_msg_cnt++;
668 link_set_timer(l_ptr, cont_intv);
669 break;
670 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100671 if (l_ptr->next_in_no != l_ptr->checkpoint) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100672 l_ptr->state = WORKING_WORKING;
673 l_ptr->fsm_msg_cnt = 0;
674 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100675 if (tipc_bclink_acks_missing(l_ptr->owner)) {
676 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
677 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100678 l_ptr->fsm_msg_cnt++;
679 }
680 link_set_timer(l_ptr, cont_intv);
681 } else if (l_ptr->fsm_msg_cnt < l_ptr->abort_limit) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900682 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100683 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100684 l_ptr->fsm_msg_cnt++;
685 link_set_timer(l_ptr, cont_intv / 4);
686 } else { /* Link has failed */
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400687 pr_warn("%s<%s>, peer not responding\n",
688 link_rst_msg, l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100689 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100690 l_ptr->state = RESET_UNKNOWN;
691 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100692 tipc_link_send_proto_msg(l_ptr, RESET_MSG,
693 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100694 l_ptr->fsm_msg_cnt++;
695 link_set_timer(l_ptr, cont_intv);
696 }
697 break;
698 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400699 pr_err("%s%u in WU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100700 }
701 break;
702 case RESET_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100703 switch (event) {
704 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100705 break;
706 case ACTIVATE_MSG:
707 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000708 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100709 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100710 l_ptr->state = WORKING_WORKING;
711 l_ptr->fsm_msg_cnt = 0;
712 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100713 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100714 l_ptr->fsm_msg_cnt++;
715 link_set_timer(l_ptr, cont_intv);
716 break;
717 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100718 l_ptr->state = RESET_RESET;
719 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100720 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100721 l_ptr->fsm_msg_cnt++;
722 link_set_timer(l_ptr, cont_intv);
723 break;
724 case STARTING_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100725 l_ptr->started = 1;
726 /* fall through */
727 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100728 tipc_link_send_proto_msg(l_ptr, RESET_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100729 l_ptr->fsm_msg_cnt++;
730 link_set_timer(l_ptr, cont_intv);
731 break;
732 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400733 pr_err("%s%u in RU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100734 }
735 break;
736 case RESET_RESET:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100737 switch (event) {
738 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100739 case ACTIVATE_MSG:
740 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000741 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100742 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100743 l_ptr->state = WORKING_WORKING;
744 l_ptr->fsm_msg_cnt = 0;
745 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100746 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100747 l_ptr->fsm_msg_cnt++;
748 link_set_timer(l_ptr, cont_intv);
749 break;
750 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100751 break;
752 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100753 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100754 l_ptr->fsm_msg_cnt++;
755 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100756 break;
757 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400758 pr_err("%s%u in RR state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100759 }
760 break;
761 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400762 pr_err("Unknown link state %u/%u\n", l_ptr->state, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100763 }
764}
765
766/*
767 * link_bundle_buf(): Append contents of a buffer to
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900768 * the tail of an existing one.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100769 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500770static int link_bundle_buf(struct tipc_link *l_ptr,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900771 struct sk_buff *bundler,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100772 struct sk_buff *buf)
773{
774 struct tipc_msg *bundler_msg = buf_msg(bundler);
775 struct tipc_msg *msg = buf_msg(buf);
776 u32 size = msg_size(msg);
Allan Stephense49060c2006-06-29 12:32:46 -0700777 u32 bundle_size = msg_size(bundler_msg);
778 u32 to_pos = align(bundle_size);
779 u32 pad = to_pos - bundle_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100780
781 if (msg_user(bundler_msg) != MSG_BUNDLER)
782 return 0;
783 if (msg_type(bundler_msg) != OPEN_MSG)
784 return 0;
Allan Stephense49060c2006-06-29 12:32:46 -0700785 if (skb_tailroom(bundler) < (pad + size))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100786 return 0;
Allan Stephens15e979d2010-05-11 14:30:10 +0000787 if (l_ptr->max_pkt < (to_pos + size))
Allan Stephens863fae62006-07-03 19:39:36 -0700788 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100789
Allan Stephense49060c2006-06-29 12:32:46 -0700790 skb_put(bundler, pad + size);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300791 skb_copy_to_linear_data_offset(bundler, to_pos, buf->data, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100792 msg_set_size(bundler_msg, to_pos + size);
793 msg_set_msgcnt(bundler_msg, msg_msgcnt(bundler_msg) + 1);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400794 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100795 l_ptr->stats.sent_bundled++;
796 return 1;
797}
798
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500799static void link_add_to_outqueue(struct tipc_link *l_ptr,
Sam Ravnborg05790c62006-03-20 22:37:04 -0800800 struct sk_buff *buf,
801 struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100802{
803 u32 ack = mod(l_ptr->next_in_no - 1);
804 u32 seqno = mod(l_ptr->next_out_no++);
805
806 msg_set_word(msg, 2, ((ack << 16) | seqno));
807 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
808 buf->next = NULL;
809 if (l_ptr->first_out) {
810 l_ptr->last_out->next = buf;
811 l_ptr->last_out = buf;
812 } else
813 l_ptr->first_out = l_ptr->last_out = buf;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500814
Per Lidenb97bf3f2006-01-02 19:04:38 +0100815 l_ptr->out_queue_size++;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500816 if (l_ptr->out_queue_size > l_ptr->stats.max_queue_sz)
817 l_ptr->stats.max_queue_sz = l_ptr->out_queue_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100818}
819
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500820static void link_add_chain_to_outqueue(struct tipc_link *l_ptr,
Allan Stephensdc63d912011-04-21 11:50:42 -0400821 struct sk_buff *buf_chain,
822 u32 long_msgno)
823{
824 struct sk_buff *buf;
825 struct tipc_msg *msg;
826
827 if (!l_ptr->next_out)
828 l_ptr->next_out = buf_chain;
829 while (buf_chain) {
830 buf = buf_chain;
831 buf_chain = buf_chain->next;
832
833 msg = buf_msg(buf);
834 msg_set_long_msgno(msg, long_msgno);
835 link_add_to_outqueue(l_ptr, buf, msg);
836 }
837}
838
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900839/*
840 * tipc_link_send_buf() is the 'full path' for messages, called from
Per Lidenb97bf3f2006-01-02 19:04:38 +0100841 * inside TIPC when the 'fast path' in tipc_send_buf
842 * has failed, and from link_send()
843 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500844int tipc_link_send_buf(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100845{
846 struct tipc_msg *msg = buf_msg(buf);
847 u32 size = msg_size(msg);
848 u32 dsz = msg_data_sz(msg);
849 u32 queue_size = l_ptr->out_queue_size;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000850 u32 imp = tipc_msg_tot_importance(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100851 u32 queue_limit = l_ptr->queue_limit[imp];
Allan Stephens15e979d2010-05-11 14:30:10 +0000852 u32 max_packet = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100853
Per Lidenb97bf3f2006-01-02 19:04:38 +0100854 /* Match msg importance against queue limits: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100855 if (unlikely(queue_size >= queue_limit)) {
856 if (imp <= TIPC_CRITICAL_IMPORTANCE) {
Allan Stephensbebc55a2011-04-19 10:17:58 -0400857 link_schedule_port(l_ptr, msg_origport(msg), size);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400858 kfree_skb(buf);
Allan Stephensbebc55a2011-04-19 10:17:58 -0400859 return -ELINKCONG;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100860 }
Allan Stephens5f6d9122011-11-04 13:24:29 -0400861 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100862 if (imp > CONN_MANAGER) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400863 pr_warn("%s<%s>, send queue full", link_rst_msg,
864 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100865 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100866 }
867 return dsz;
868 }
869
870 /* Fragmentation needed ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100871 if (size > max_packet)
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000872 return link_send_long_buf(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100873
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400874 /* Packet can be queued or sent. */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900875 if (likely(!tipc_bearer_congested(l_ptr->b_ptr, l_ptr) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100876 !link_congested(l_ptr))) {
877 link_add_to_outqueue(l_ptr, buf, msg);
878
Per Liden4323add2006-01-18 00:38:21 +0100879 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100880 l_ptr->unacked_window = 0;
881 } else {
Per Liden4323add2006-01-18 00:38:21 +0100882 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100883 l_ptr->stats.bearer_congs++;
884 l_ptr->next_out = buf;
885 }
886 return dsz;
887 }
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400888 /* Congestion: can message be bundled ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100889 if ((msg_user(msg) != CHANGEOVER_PROTOCOL) &&
890 (msg_user(msg) != MSG_FRAGMENTER)) {
891
892 /* Try adding message to an existing bundle */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900893 if (l_ptr->next_out &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100894 link_bundle_buf(l_ptr, l_ptr->last_out, buf)) {
Per Liden4323add2006-01-18 00:38:21 +0100895 tipc_bearer_resolve_congestion(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100896 return dsz;
897 }
898
899 /* Try creating a new bundle */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100900 if (size <= max_packet * 2 / 3) {
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000901 struct sk_buff *bundler = tipc_buf_acquire(max_packet);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100902 struct tipc_msg bundler_hdr;
903
904 if (bundler) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000905 tipc_msg_init(&bundler_hdr, MSG_BUNDLER, OPEN_MSG,
Allan Stephens75715212008-06-04 17:37:34 -0700906 INT_H_SIZE, l_ptr->addr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300907 skb_copy_to_linear_data(bundler, &bundler_hdr,
908 INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100909 skb_trim(bundler, INT_H_SIZE);
910 link_bundle_buf(l_ptr, bundler, buf);
911 buf = bundler;
912 msg = buf_msg(buf);
913 l_ptr->stats.sent_bundles++;
914 }
915 }
916 }
917 if (!l_ptr->next_out)
918 l_ptr->next_out = buf;
919 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +0100920 tipc_bearer_resolve_congestion(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100921 return dsz;
922}
923
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900924/*
925 * tipc_link_send(): same as tipc_link_send_buf(), but the link to use has
Per Lidenb97bf3f2006-01-02 19:04:38 +0100926 * not been selected yet, and the the owner node is not locked
927 * Called by TIPC internal users, e.g. the name distributor
928 */
Per Liden4323add2006-01-18 00:38:21 +0100929int tipc_link_send(struct sk_buff *buf, u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100930{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500931 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700932 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100933 int res = -ELINKCONG;
934
Per Liden4323add2006-01-18 00:38:21 +0100935 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000936 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100937 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +0100938 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100939 l_ptr = n_ptr->active_links[selector & 1];
Allan Stephensa0168922010-12-31 18:59:35 +0000940 if (l_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100941 res = tipc_link_send_buf(l_ptr, buf);
Allan Stephensa0168922010-12-31 18:59:35 +0000942 else
Allan Stephens5f6d9122011-11-04 13:24:29 -0400943 kfree_skb(buf);
Per Liden4323add2006-01-18 00:38:21 +0100944 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100945 } else {
Allan Stephens5f6d9122011-11-04 13:24:29 -0400946 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100947 }
Per Liden4323add2006-01-18 00:38:21 +0100948 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100949 return res;
950}
951
Ben Hutchings2c530402012-07-10 10:55:09 +0000952/**
Allan Stephens9aa88c22011-05-31 13:38:02 -0400953 * tipc_link_send_names - send name table entries to new neighbor
954 *
955 * Send routine for bulk delivery of name table messages when contact
956 * with a new neighbor occurs. No link congestion checking is performed
957 * because name table messages *must* be delivered. The messages must be
958 * small enough not to require fragmentation.
959 * Called without any locks held.
960 */
Allan Stephens9aa88c22011-05-31 13:38:02 -0400961void tipc_link_send_names(struct list_head *message_list, u32 dest)
962{
963 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500964 struct tipc_link *l_ptr;
Allan Stephens9aa88c22011-05-31 13:38:02 -0400965 struct sk_buff *buf;
966 struct sk_buff *temp_buf;
967
968 if (list_empty(message_list))
969 return;
970
971 read_lock_bh(&tipc_net_lock);
972 n_ptr = tipc_node_find(dest);
973 if (n_ptr) {
974 tipc_node_lock(n_ptr);
975 l_ptr = n_ptr->active_links[0];
976 if (l_ptr) {
977 /* convert circular list to linear list */
978 ((struct sk_buff *)message_list->prev)->next = NULL;
979 link_add_chain_to_outqueue(l_ptr,
980 (struct sk_buff *)message_list->next, 0);
981 tipc_link_push_queue(l_ptr);
982 INIT_LIST_HEAD(message_list);
983 }
984 tipc_node_unlock(n_ptr);
985 }
986 read_unlock_bh(&tipc_net_lock);
987
988 /* discard the messages if they couldn't be sent */
Allan Stephens9aa88c22011-05-31 13:38:02 -0400989 list_for_each_safe(buf, temp_buf, ((struct sk_buff *)message_list)) {
990 list_del((struct list_head *)buf);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400991 kfree_skb(buf);
Allan Stephens9aa88c22011-05-31 13:38:02 -0400992 }
993}
994
995/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900996 * link_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +0100997 * destination link is known and the header is complete,
998 * inclusive total message length. Very time critical.
999 * Link is locked. Returns user data length.
1000 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001001static int link_send_buf_fast(struct tipc_link *l_ptr, struct sk_buff *buf,
Sam Ravnborg05790c62006-03-20 22:37:04 -08001002 u32 *used_max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001003{
1004 struct tipc_msg *msg = buf_msg(buf);
1005 int res = msg_data_sz(msg);
1006
1007 if (likely(!link_congested(l_ptr))) {
Allan Stephens15e979d2010-05-11 14:30:10 +00001008 if (likely(msg_size(msg) <= l_ptr->max_pkt)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001009 if (likely(list_empty(&l_ptr->b_ptr->cong_links))) {
1010 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +01001011 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf,
1012 &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001013 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001014 return res;
1015 }
Per Liden4323add2006-01-18 00:38:21 +01001016 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001017 l_ptr->stats.bearer_congs++;
1018 l_ptr->next_out = buf;
1019 return res;
1020 }
Allan Stephens0e659672010-12-31 18:59:32 +00001021 } else
Allan Stephens15e979d2010-05-11 14:30:10 +00001022 *used_max_pkt = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001023 }
Per Liden4323add2006-01-18 00:38:21 +01001024 return tipc_link_send_buf(l_ptr, buf); /* All other cases */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001025}
1026
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001027/*
1028 * tipc_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001029 * destination node is known and the header is complete,
1030 * inclusive total message length.
1031 * Returns user data length.
1032 */
1033int tipc_send_buf_fast(struct sk_buff *buf, u32 destnode)
1034{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001035 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001036 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001037 int res;
1038 u32 selector = msg_origport(buf_msg(buf)) & 1;
1039 u32 dummy;
1040
Per Liden4323add2006-01-18 00:38:21 +01001041 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001042 n_ptr = tipc_node_find(destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001043 if (likely(n_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001044 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001045 l_ptr = n_ptr->active_links[selector];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001046 if (likely(l_ptr)) {
1047 res = link_send_buf_fast(l_ptr, buf, &dummy);
Per Liden4323add2006-01-18 00:38:21 +01001048 tipc_node_unlock(n_ptr);
1049 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001050 return res;
1051 }
Per Liden4323add2006-01-18 00:38:21 +01001052 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001053 }
Per Liden4323add2006-01-18 00:38:21 +01001054 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001055 res = msg_data_sz(buf_msg(buf));
1056 tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1057 return res;
1058}
1059
1060
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001061/*
1062 * tipc_link_send_sections_fast: Entry for messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001063 * destination processor is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001064 * except for total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001065 * Returns user data length or errno.
1066 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001067int tipc_link_send_sections_fast(struct tipc_port *sender,
Per Liden4323add2006-01-18 00:38:21 +01001068 struct iovec const *msg_sect,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001069 const u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001070 unsigned int total_len,
Per Liden4323add2006-01-18 00:38:21 +01001071 u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001072{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001073 struct tipc_msg *hdr = &sender->phdr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001074 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001075 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -07001076 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001077 int res;
1078 u32 selector = msg_origport(hdr) & 1;
1079
Per Lidenb97bf3f2006-01-02 19:04:38 +01001080again:
1081 /*
1082 * Try building message using port's max_pkt hint.
1083 * (Must not hold any locks while building message.)
1084 */
Allan Stephens26896902011-04-21 10:42:07 -05001085 res = tipc_msg_build(hdr, msg_sect, num_sect, total_len,
1086 sender->max_pkt, !sender->user_port, &buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001087
Per Liden4323add2006-01-18 00:38:21 +01001088 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001089 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001090 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001091 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001092 l_ptr = node->active_links[selector];
1093 if (likely(l_ptr)) {
1094 if (likely(buf)) {
1095 res = link_send_buf_fast(l_ptr, buf,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001096 &sender->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001097exit:
Per Liden4323add2006-01-18 00:38:21 +01001098 tipc_node_unlock(node);
1099 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001100 return res;
1101 }
1102
1103 /* Exit if build request was invalid */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001104 if (unlikely(res < 0))
1105 goto exit;
1106
1107 /* Exit if link (or bearer) is congested */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001108 if (link_congested(l_ptr) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +01001109 !list_empty(&l_ptr->b_ptr->cong_links)) {
1110 res = link_schedule_port(l_ptr,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001111 sender->ref, res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001112 goto exit;
1113 }
1114
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001115 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001116 * Message size exceeds max_pkt hint; update hint,
1117 * then re-try fast path or fragment the message
1118 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001119 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001120 tipc_node_unlock(node);
1121 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001122
1123
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001124 if ((msg_hdr_sz(hdr) + res) <= sender->max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001125 goto again;
1126
1127 return link_send_sections_long(sender, msg_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001128 num_sect, total_len,
1129 destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001130 }
Per Liden4323add2006-01-18 00:38:21 +01001131 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001132 }
Per Liden4323add2006-01-18 00:38:21 +01001133 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001134
1135 /* Couldn't find a link to the destination node */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001136 if (buf)
1137 return tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1138 if (res >= 0)
Per Liden4323add2006-01-18 00:38:21 +01001139 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001140 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001141 return res;
1142}
1143
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001144/*
1145 * link_send_sections_long(): Entry for long messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001146 * destination node is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001147 * inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001148 * Link and bearer congestion status have been checked to be ok,
1149 * and are ignored if they change.
1150 *
1151 * Note that fragments do not use the full link MTU so that they won't have
1152 * to undergo refragmentation if link changeover causes them to be sent
1153 * over another link with an additional tunnel header added as prefix.
1154 * (Refragmentation will still occur if the other link has a smaller MTU.)
1155 *
1156 * Returns user data length or errno.
1157 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001158static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001159 struct iovec const *msg_sect,
1160 u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001161 unsigned int total_len,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001162 u32 destaddr)
1163{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001164 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001165 struct tipc_node *node;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001166 struct tipc_msg *hdr = &sender->phdr;
Allan Stephens26896902011-04-21 10:42:07 -05001167 u32 dsz = total_len;
Allan Stephens0e659672010-12-31 18:59:32 +00001168 u32 max_pkt, fragm_sz, rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001169 struct tipc_msg fragm_hdr;
Allan Stephens0e659672010-12-31 18:59:32 +00001170 struct sk_buff *buf, *buf_chain, *prev;
1171 u32 fragm_crs, fragm_rest, hsz, sect_rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001172 const unchar *sect_crs;
1173 int curr_sect;
1174 u32 fragm_no;
1175
1176again:
1177 fragm_no = 1;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001178 max_pkt = sender->max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001179 /* leave room for tunnel header in case of link changeover */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001180 fragm_sz = max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001181 /* leave room for fragmentation header in each fragment */
1182 rest = dsz;
1183 fragm_crs = 0;
1184 fragm_rest = 0;
1185 sect_rest = 0;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001186 sect_crs = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001187 curr_sect = -1;
1188
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001189 /* Prepare reusable fragment header */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001190 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07001191 INT_H_SIZE, msg_destnode(hdr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001192 msg_set_size(&fragm_hdr, max_pkt);
1193 msg_set_fragm_no(&fragm_hdr, 1);
1194
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001195 /* Prepare header of first fragment */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001196 buf_chain = buf = tipc_buf_acquire(max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001197 if (!buf)
1198 return -ENOMEM;
1199 buf->next = NULL;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001200 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001201 hsz = msg_hdr_sz(hdr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001202 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, hdr, hsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001203
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001204 /* Chop up message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001205 fragm_crs = INT_H_SIZE + hsz;
1206 fragm_rest = fragm_sz - hsz;
1207
1208 do { /* For all sections */
1209 u32 sz;
1210
1211 if (!sect_rest) {
1212 sect_rest = msg_sect[++curr_sect].iov_len;
1213 sect_crs = (const unchar *)msg_sect[curr_sect].iov_base;
1214 }
1215
1216 if (sect_rest < fragm_rest)
1217 sz = sect_rest;
1218 else
1219 sz = fragm_rest;
1220
1221 if (likely(!sender->user_port)) {
1222 if (copy_from_user(buf->data + fragm_crs, sect_crs, sz)) {
1223error:
1224 for (; buf_chain; buf_chain = buf) {
1225 buf = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001226 kfree_skb(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001227 }
1228 return -EFAULT;
1229 }
1230 } else
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001231 skb_copy_to_linear_data_offset(buf, fragm_crs,
1232 sect_crs, sz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001233 sect_crs += sz;
1234 sect_rest -= sz;
1235 fragm_crs += sz;
1236 fragm_rest -= sz;
1237 rest -= sz;
1238
1239 if (!fragm_rest && rest) {
1240
1241 /* Initiate new fragment: */
1242 if (rest <= fragm_sz) {
1243 fragm_sz = rest;
Allan Stephens0e659672010-12-31 18:59:32 +00001244 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001245 } else {
1246 msg_set_type(&fragm_hdr, FRAGMENT);
1247 }
1248 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
1249 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
1250 prev = buf;
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001251 buf = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001252 if (!buf)
1253 goto error;
1254
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001255 buf->next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001256 prev->next = buf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001257 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001258 fragm_crs = INT_H_SIZE;
1259 fragm_rest = fragm_sz;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001260 }
Allan Stephens0e659672010-12-31 18:59:32 +00001261 } while (rest > 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001262
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001263 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001264 * Now we have a buffer chain. Select a link and check
1265 * that packet size is still OK
1266 */
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001267 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001268 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001269 tipc_node_lock(node);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001270 l_ptr = node->active_links[sender->ref & 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001271 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01001272 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001273 goto reject;
1274 }
Allan Stephens15e979d2010-05-11 14:30:10 +00001275 if (l_ptr->max_pkt < max_pkt) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001276 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001277 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001278 for (; buf_chain; buf_chain = buf) {
1279 buf = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001280 kfree_skb(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001281 }
1282 goto again;
1283 }
1284 } else {
1285reject:
1286 for (; buf_chain; buf_chain = buf) {
1287 buf = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001288 kfree_skb(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001289 }
Per Liden4323add2006-01-18 00:38:21 +01001290 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001291 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001292 }
1293
Allan Stephensdc63d912011-04-21 11:50:42 -04001294 /* Append chain of fragments to send queue & send them */
Allan Stephense0f08592011-04-17 11:44:24 -04001295 l_ptr->long_msg_seq_no++;
Allan Stephensdc63d912011-04-21 11:50:42 -04001296 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
1297 l_ptr->stats.sent_fragments += fragm_no;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001298 l_ptr->stats.sent_fragmented++;
Per Liden4323add2006-01-18 00:38:21 +01001299 tipc_link_push_queue(l_ptr);
1300 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001301 return dsz;
1302}
1303
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001304/*
Per Liden4323add2006-01-18 00:38:21 +01001305 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +01001306 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001307u32 tipc_link_push_packet(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001308{
1309 struct sk_buff *buf = l_ptr->first_out;
1310 u32 r_q_size = l_ptr->retransm_queue_size;
1311 u32 r_q_head = l_ptr->retransm_queue_head;
1312
1313 /* Step to position where retransmission failed, if any, */
1314 /* consider that buffers may have been released in meantime */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001315 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001316 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +01001317 link_last_sent(l_ptr));
Allan Stephensf9057302011-10-24 16:03:12 -04001318 u32 first = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001319
1320 while (buf && less(first, r_q_head)) {
1321 first = mod(first + 1);
1322 buf = buf->next;
1323 }
1324 l_ptr->retransm_queue_head = r_q_head = first;
1325 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1326 }
1327
1328 /* Continue retransmission now, if there is anything: */
Neil Hormanca509102010-03-15 07:58:45 +00001329 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001330 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001331 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001332 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001333 l_ptr->retransm_queue_head = mod(++r_q_head);
1334 l_ptr->retransm_queue_size = --r_q_size;
1335 l_ptr->stats.retransmitted++;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001336 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001337 } else {
1338 l_ptr->stats.bearer_congs++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001339 return PUSH_FAILED;
1340 }
1341 }
1342
1343 /* Send deferred protocol message, if any: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001344 buf = l_ptr->proto_msg_queue;
1345 if (buf) {
1346 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +00001347 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001348 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001349 l_ptr->unacked_window = 0;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001350 kfree_skb(buf);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001351 l_ptr->proto_msg_queue = NULL;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001352 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001353 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001354 l_ptr->stats.bearer_congs++;
1355 return PUSH_FAILED;
1356 }
1357 }
1358
1359 /* Send one deferred data message, if send window not full: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001360 buf = l_ptr->next_out;
1361 if (buf) {
1362 struct tipc_msg *msg = buf_msg(buf);
1363 u32 next = msg_seqno(msg);
Allan Stephensf9057302011-10-24 16:03:12 -04001364 u32 first = buf_seqno(l_ptr->first_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001365
1366 if (mod(next - first) < l_ptr->queue_limit[0]) {
1367 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001368 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001369 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001370 if (msg_user(msg) == MSG_BUNDLER)
1371 msg_set_type(msg, CLOSED_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001372 l_ptr->next_out = buf->next;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001373 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001374 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001375 l_ptr->stats.bearer_congs++;
1376 return PUSH_FAILED;
1377 }
1378 }
1379 }
1380 return PUSH_FINISHED;
1381}
1382
1383/*
1384 * push_queue(): push out the unsent messages of a link where
1385 * congestion has abated. Node is locked
1386 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001387void tipc_link_push_queue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001388{
1389 u32 res;
1390
Per Liden4323add2006-01-18 00:38:21 +01001391 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001392 return;
1393
1394 do {
Per Liden4323add2006-01-18 00:38:21 +01001395 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001396 } while (!res);
1397
Per Lidenb97bf3f2006-01-02 19:04:38 +01001398 if (res == PUSH_FAILED)
Per Liden4323add2006-01-18 00:38:21 +01001399 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001400}
1401
Allan Stephensd356eeb2006-06-25 23:40:01 -07001402static void link_reset_all(unsigned long addr)
1403{
David S. Miller6c000552008-09-02 23:38:32 -07001404 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001405 char addr_string[16];
1406 u32 i;
1407
1408 read_lock_bh(&tipc_net_lock);
1409 n_ptr = tipc_node_find((u32)addr);
1410 if (!n_ptr) {
1411 read_unlock_bh(&tipc_net_lock);
1412 return; /* node no longer exists */
1413 }
1414
1415 tipc_node_lock(n_ptr);
1416
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001417 pr_warn("Resetting all links to %s\n",
1418 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -07001419
1420 for (i = 0; i < MAX_BEARERS; i++) {
1421 if (n_ptr->links[i]) {
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001422 link_print(n_ptr->links[i], "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001423 tipc_link_reset(n_ptr->links[i]);
1424 }
1425 }
1426
1427 tipc_node_unlock(n_ptr);
1428 read_unlock_bh(&tipc_net_lock);
1429}
1430
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001431static void link_retransmit_failure(struct tipc_link *l_ptr,
1432 struct sk_buff *buf)
Allan Stephensd356eeb2006-06-25 23:40:01 -07001433{
1434 struct tipc_msg *msg = buf_msg(buf);
1435
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001436 pr_warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001437
1438 if (l_ptr->addr) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001439 /* Handle failure on standard link */
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001440 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001441 tipc_link_reset(l_ptr);
1442
1443 } else {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001444 /* Handle failure on broadcast link */
David S. Miller6c000552008-09-02 23:38:32 -07001445 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001446 char addr_string[16];
1447
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001448 pr_info("Msg seq number: %u, ", msg_seqno(msg));
1449 pr_cont("Outstanding acks: %lu\n",
1450 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -07001451
Allan Stephens01d83ed2011-01-18 13:53:16 -05001452 n_ptr = tipc_bclink_retransmit_to();
Allan Stephensd356eeb2006-06-25 23:40:01 -07001453 tipc_node_lock(n_ptr);
1454
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001455 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001456 pr_info("Broadcast link info for %s\n", addr_string);
1457 pr_info("Supportable: %d, Supported: %d, Acked: %u\n",
1458 n_ptr->bclink.supportable,
1459 n_ptr->bclink.supported,
1460 n_ptr->bclink.acked);
1461 pr_info("Last in: %u, Oos state: %u, Last sent: %u\n",
1462 n_ptr->bclink.last_in,
1463 n_ptr->bclink.oos_state,
1464 n_ptr->bclink.last_sent);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001465
1466 tipc_k_signal((Handler)link_reset_all, (unsigned long)n_ptr->addr);
1467
1468 tipc_node_unlock(n_ptr);
1469
1470 l_ptr->stale_count = 0;
1471 }
1472}
1473
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001474void tipc_link_retransmit(struct tipc_link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001475 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001476{
1477 struct tipc_msg *msg;
1478
Allan Stephensd356eeb2006-06-25 23:40:01 -07001479 if (!buf)
1480 return;
1481
1482 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001483
Allan Stephensd356eeb2006-06-25 23:40:01 -07001484 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
Neil Hormanca509102010-03-15 07:58:45 +00001485 if (l_ptr->retransm_queue_size == 0) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001486 l_ptr->retransm_queue_head = msg_seqno(msg);
1487 l_ptr->retransm_queue_size = retransmits;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001488 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001489 pr_err("Unexpected retransmit on link %s (qsize=%d)\n",
1490 l_ptr->name, l_ptr->retransm_queue_size);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001491 }
Neil Hormanca509102010-03-15 07:58:45 +00001492 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001493 } else {
1494 /* Detect repeated retransmit failures on uncongested bearer */
Allan Stephensd356eeb2006-06-25 23:40:01 -07001495 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1496 if (++l_ptr->stale_count > 100) {
1497 link_retransmit_failure(l_ptr, buf);
1498 return;
1499 }
1500 } else {
1501 l_ptr->last_retransmitted = msg_seqno(msg);
1502 l_ptr->stale_count = 1;
1503 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001504 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001505
Neil Hormanca509102010-03-15 07:58:45 +00001506 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001507 msg = buf_msg(buf);
1508 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001509 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001510 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001511 buf = buf->next;
1512 retransmits--;
1513 l_ptr->stats.retransmitted++;
1514 } else {
Per Liden4323add2006-01-18 00:38:21 +01001515 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001516 l_ptr->stats.bearer_congs++;
Allan Stephensf9057302011-10-24 16:03:12 -04001517 l_ptr->retransm_queue_head = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001518 l_ptr->retransm_queue_size = retransmits;
1519 return;
1520 }
1521 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001522
Per Lidenb97bf3f2006-01-02 19:04:38 +01001523 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1524}
1525
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001526/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001527 * link_insert_deferred_queue - insert deferred messages back into receive chain
1528 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001529static struct sk_buff *link_insert_deferred_queue(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001530 struct sk_buff *buf)
1531{
1532 u32 seq_no;
1533
1534 if (l_ptr->oldest_deferred_in == NULL)
1535 return buf;
1536
Allan Stephensf9057302011-10-24 16:03:12 -04001537 seq_no = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001538 if (seq_no == mod(l_ptr->next_in_no)) {
1539 l_ptr->newest_deferred_in->next = buf;
1540 buf = l_ptr->oldest_deferred_in;
1541 l_ptr->oldest_deferred_in = NULL;
1542 l_ptr->deferred_inqueue_sz = 0;
1543 }
1544 return buf;
1545}
1546
Allan Stephens85035562008-04-15 19:04:54 -07001547/**
1548 * link_recv_buf_validate - validate basic format of received message
1549 *
1550 * This routine ensures a TIPC message has an acceptable header, and at least
1551 * as much data as the header indicates it should. The routine also ensures
1552 * that the entire message header is stored in the main fragment of the message
1553 * buffer, to simplify future access to message header fields.
1554 *
1555 * Note: Having extra info present in the message header or data areas is OK.
1556 * TIPC will ignore the excess, under the assumption that it is optional info
1557 * introduced by a later release of the protocol.
1558 */
Allan Stephens85035562008-04-15 19:04:54 -07001559static int link_recv_buf_validate(struct sk_buff *buf)
1560{
1561 static u32 min_data_hdr_size[8] = {
Allan Stephens741d9eb2011-05-31 15:03:18 -04001562 SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,
Allan Stephens85035562008-04-15 19:04:54 -07001563 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1564 };
1565
1566 struct tipc_msg *msg;
1567 u32 tipc_hdr[2];
1568 u32 size;
1569 u32 hdr_size;
1570 u32 min_hdr_size;
1571
1572 if (unlikely(buf->len < MIN_H_SIZE))
1573 return 0;
1574
1575 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1576 if (msg == NULL)
1577 return 0;
1578
1579 if (unlikely(msg_version(msg) != TIPC_VERSION))
1580 return 0;
1581
1582 size = msg_size(msg);
1583 hdr_size = msg_hdr_sz(msg);
1584 min_hdr_size = msg_isdata(msg) ?
1585 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1586
1587 if (unlikely((hdr_size < min_hdr_size) ||
1588 (size < hdr_size) ||
1589 (buf->len < size) ||
1590 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1591 return 0;
1592
1593 return pskb_may_pull(buf, hdr_size);
1594}
1595
Allan Stephensb02b69c2010-08-17 11:00:07 +00001596/**
1597 * tipc_recv_msg - process TIPC messages arriving from off-node
1598 * @head: pointer to message buffer chain
1599 * @tb_ptr: pointer to bearer message arrived on
1600 *
1601 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1602 * structure (i.e. cannot be NULL), but bearer can be inactive.
1603 */
Allan Stephens2d627b92011-01-07 13:00:11 -05001604void tipc_recv_msg(struct sk_buff *head, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001605{
Per Liden4323add2006-01-18 00:38:21 +01001606 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001607 while (head) {
David S. Miller6c000552008-09-02 23:38:32 -07001608 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001609 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001610 struct sk_buff *crs;
1611 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001612 struct tipc_msg *msg;
1613 u32 seq_no;
1614 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001615 u32 released = 0;
1616 int type;
1617
Per Lidenb97bf3f2006-01-02 19:04:38 +01001618 head = head->next;
Allan Stephens85035562008-04-15 19:04:54 -07001619
Allan Stephensb02b69c2010-08-17 11:00:07 +00001620 /* Ensure bearer is still enabled */
Allan Stephensb02b69c2010-08-17 11:00:07 +00001621 if (unlikely(!b_ptr->active))
1622 goto cont;
1623
Allan Stephens85035562008-04-15 19:04:54 -07001624 /* Ensure message is well-formed */
Allan Stephens85035562008-04-15 19:04:54 -07001625 if (unlikely(!link_recv_buf_validate(buf)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001626 goto cont;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001627
Allan Stephensfe13dda2008-04-15 19:03:23 -07001628 /* Ensure message data is a single contiguous unit */
Allan Stephens5f6d9122011-11-04 13:24:29 -04001629 if (unlikely(skb_linearize(buf)))
Allan Stephensfe13dda2008-04-15 19:03:23 -07001630 goto cont;
Allan Stephensfe13dda2008-04-15 19:03:23 -07001631
Allan Stephens85035562008-04-15 19:04:54 -07001632 /* Handle arrival of a non-unicast link message */
Allan Stephens85035562008-04-15 19:04:54 -07001633 msg = buf_msg(buf);
1634
Per Lidenb97bf3f2006-01-02 19:04:38 +01001635 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001636 if (msg_user(msg) == LINK_CONFIG)
1637 tipc_disc_recv_msg(buf, b_ptr);
1638 else
1639 tipc_bclink_recv_pkt(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001640 continue;
1641 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001642
Allan Stephensed33a9c2011-04-05 15:15:04 -04001643 /* Discard unicast link messages destined for another node */
Allan Stephens26008242006-06-25 23:39:31 -07001644 if (unlikely(!msg_short(msg) &&
1645 (msg_destnode(msg) != tipc_own_addr)))
1646 goto cont;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001647
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001648 /* Locate neighboring node that sent message */
Per Liden4323add2006-01-18 00:38:21 +01001649 n_ptr = tipc_node_find(msg_prevnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001650 if (unlikely(!n_ptr))
1651 goto cont;
Per Liden4323add2006-01-18 00:38:21 +01001652 tipc_node_lock(n_ptr);
Allan Stephens85035562008-04-15 19:04:54 -07001653
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001654 /* Locate unicast link endpoint that should handle message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001655 l_ptr = n_ptr->links[b_ptr->identity];
1656 if (unlikely(!l_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001657 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001658 goto cont;
1659 }
Allan Stephens85035562008-04-15 19:04:54 -07001660
Allan Stephensb4b56102011-05-27 11:00:51 -04001661 /* Verify that communication with node is currently allowed */
Allan Stephensb4b56102011-05-27 11:00:51 -04001662 if ((n_ptr->block_setup & WAIT_PEER_DOWN) &&
1663 msg_user(msg) == LINK_PROTOCOL &&
1664 (msg_type(msg) == RESET_MSG ||
1665 msg_type(msg) == ACTIVATE_MSG) &&
1666 !msg_redundant_link(msg))
1667 n_ptr->block_setup &= ~WAIT_PEER_DOWN;
1668
1669 if (n_ptr->block_setup) {
1670 tipc_node_unlock(n_ptr);
1671 goto cont;
1672 }
1673
Allan Stephens85035562008-04-15 19:04:54 -07001674 /* Validate message sequence number info */
Allan Stephens85035562008-04-15 19:04:54 -07001675 seq_no = msg_seqno(msg);
1676 ackd = msg_ack(msg);
1677
1678 /* Release acked messages */
Allan Stephens93499312011-10-25 15:14:46 -04001679 if (n_ptr->bclink.supported)
Allan Stephens365595912011-10-24 15:26:24 -04001680 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001681
1682 crs = l_ptr->first_out;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001683 while ((crs != l_ptr->next_out) &&
Allan Stephensf9057302011-10-24 16:03:12 -04001684 less_eq(buf_seqno(crs), ackd)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001685 struct sk_buff *next = crs->next;
1686
Allan Stephens5f6d9122011-11-04 13:24:29 -04001687 kfree_skb(crs);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001688 crs = next;
1689 released++;
1690 }
1691 if (released) {
1692 l_ptr->first_out = crs;
1693 l_ptr->out_queue_size -= released;
1694 }
Allan Stephens85035562008-04-15 19:04:54 -07001695
1696 /* Try sending any messages link endpoint has pending */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001697 if (unlikely(l_ptr->next_out))
Per Liden4323add2006-01-18 00:38:21 +01001698 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001699 if (unlikely(!list_empty(&l_ptr->waiting_ports)))
Per Liden4323add2006-01-18 00:38:21 +01001700 tipc_link_wakeup_ports(l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001701 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1702 l_ptr->stats.sent_acks++;
Per Liden4323add2006-01-18 00:38:21 +01001703 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001704 }
1705
Allan Stephens85035562008-04-15 19:04:54 -07001706 /* Now (finally!) process the incoming message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001707protocol_check:
1708 if (likely(link_working_working(l_ptr))) {
1709 if (likely(seq_no == mod(l_ptr->next_in_no))) {
1710 l_ptr->next_in_no++;
1711 if (unlikely(l_ptr->oldest_deferred_in))
1712 head = link_insert_deferred_queue(l_ptr,
1713 head);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001714deliver:
Allan Stephensc74a4612011-11-02 15:08:44 -04001715 if (likely(msg_isdata(msg))) {
1716 tipc_node_unlock(n_ptr);
1717 tipc_port_recv_msg(buf);
1718 continue;
1719 }
1720 switch (msg_user(msg)) {
1721 int ret;
1722 case MSG_BUNDLER:
1723 l_ptr->stats.recv_bundles++;
1724 l_ptr->stats.recv_bundled +=
1725 msg_msgcnt(msg);
1726 tipc_node_unlock(n_ptr);
1727 tipc_link_recv_bundle(buf);
1728 continue;
1729 case NAME_DISTRIBUTOR:
1730 tipc_node_unlock(n_ptr);
1731 tipc_named_recv(buf);
1732 continue;
1733 case CONN_MANAGER:
1734 tipc_node_unlock(n_ptr);
1735 tipc_port_recv_proto_msg(buf);
1736 continue;
1737 case MSG_FRAGMENTER:
1738 l_ptr->stats.recv_fragments++;
1739 ret = tipc_link_recv_fragment(
1740 &l_ptr->defragm_buf,
1741 &buf, &msg);
1742 if (ret == 1) {
1743 l_ptr->stats.recv_fragmented++;
1744 goto deliver;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001745 }
Allan Stephensc74a4612011-11-02 15:08:44 -04001746 if (ret == -1)
1747 l_ptr->next_in_no--;
1748 break;
1749 case CHANGEOVER_PROTOCOL:
1750 type = msg_type(msg);
1751 if (link_recv_changeover_msg(&l_ptr,
1752 &buf)) {
1753 msg = buf_msg(buf);
1754 seq_no = msg_seqno(msg);
1755 if (type == ORIGINAL_MSG)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001756 goto deliver;
Allan Stephensc74a4612011-11-02 15:08:44 -04001757 goto protocol_check;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001758 }
Allan Stephensc74a4612011-11-02 15:08:44 -04001759 break;
1760 default:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001761 kfree_skb(buf);
Allan Stephensc74a4612011-11-02 15:08:44 -04001762 buf = NULL;
1763 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001764 }
Per Liden4323add2006-01-18 00:38:21 +01001765 tipc_node_unlock(n_ptr);
1766 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001767 continue;
1768 }
1769 link_handle_out_of_seq_msg(l_ptr, buf);
1770 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001771 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001772 continue;
1773 }
1774
1775 if (msg_user(msg) == LINK_PROTOCOL) {
1776 link_recv_proto_msg(l_ptr, buf);
1777 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001778 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001779 continue;
1780 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001781 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1782
1783 if (link_working_working(l_ptr)) {
1784 /* Re-insert in front of queue */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001785 buf->next = head;
1786 head = buf;
Per Liden4323add2006-01-18 00:38:21 +01001787 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001788 continue;
1789 }
Per Liden4323add2006-01-18 00:38:21 +01001790 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001791cont:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001792 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001793 }
Per Liden4323add2006-01-18 00:38:21 +01001794 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001795}
1796
Ben Hutchings2c530402012-07-10 10:55:09 +00001797/**
Allan Stephens8809b252011-10-25 10:44:35 -04001798 * tipc_link_defer_pkt - Add out-of-sequence message to deferred reception queue
1799 *
1800 * Returns increase in queue length (i.e. 0 or 1)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001801 */
Allan Stephens8809b252011-10-25 10:44:35 -04001802u32 tipc_link_defer_pkt(struct sk_buff **head, struct sk_buff **tail,
Per Liden4323add2006-01-18 00:38:21 +01001803 struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001804{
Allan Stephens8809b252011-10-25 10:44:35 -04001805 struct sk_buff *queue_buf;
1806 struct sk_buff **prev;
Allan Stephensf9057302011-10-24 16:03:12 -04001807 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001808
1809 buf->next = NULL;
1810
1811 /* Empty queue ? */
1812 if (*head == NULL) {
1813 *head = *tail = buf;
1814 return 1;
1815 }
1816
1817 /* Last ? */
Allan Stephensf9057302011-10-24 16:03:12 -04001818 if (less(buf_seqno(*tail), seq_no)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001819 (*tail)->next = buf;
1820 *tail = buf;
1821 return 1;
1822 }
1823
Allan Stephens8809b252011-10-25 10:44:35 -04001824 /* Locate insertion point in queue, then insert; discard if duplicate */
1825 prev = head;
1826 queue_buf = *head;
1827 for (;;) {
1828 u32 curr_seqno = buf_seqno(queue_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001829
Allan Stephens8809b252011-10-25 10:44:35 -04001830 if (seq_no == curr_seqno) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001831 kfree_skb(buf);
Allan Stephens8809b252011-10-25 10:44:35 -04001832 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001833 }
Allan Stephens8809b252011-10-25 10:44:35 -04001834
1835 if (less(seq_no, curr_seqno))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001836 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001837
Allan Stephens8809b252011-10-25 10:44:35 -04001838 prev = &queue_buf->next;
1839 queue_buf = queue_buf->next;
1840 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001841
Allan Stephens8809b252011-10-25 10:44:35 -04001842 buf->next = queue_buf;
1843 *prev = buf;
1844 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001845}
1846
Allan Stephens8809b252011-10-25 10:44:35 -04001847/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001848 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1849 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001850static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001851 struct sk_buff *buf)
1852{
Allan Stephensf9057302011-10-24 16:03:12 -04001853 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001854
1855 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
1856 link_recv_proto_msg(l_ptr, buf);
1857 return;
1858 }
1859
Per Lidenb97bf3f2006-01-02 19:04:38 +01001860 /* Record OOS packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001861 l_ptr->checkpoint--;
1862
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001863 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001864 * Discard packet if a duplicate; otherwise add it to deferred queue
1865 * and notify peer of gap as per protocol specification
1866 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001867 if (less(seq_no, mod(l_ptr->next_in_no))) {
1868 l_ptr->stats.duplicates++;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001869 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001870 return;
1871 }
1872
Per Liden4323add2006-01-18 00:38:21 +01001873 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1874 &l_ptr->newest_deferred_in, buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001875 l_ptr->deferred_inqueue_sz++;
1876 l_ptr->stats.deferred_recv++;
1877 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
Per Liden4323add2006-01-18 00:38:21 +01001878 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001879 } else
1880 l_ptr->stats.duplicates++;
1881}
1882
1883/*
1884 * Send protocol message to the other endpoint.
1885 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001886void tipc_link_send_proto_msg(struct tipc_link *l_ptr, u32 msg_typ,
1887 int probe_msg, u32 gap, u32 tolerance,
1888 u32 priority, u32 ack_mtu)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001889{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001890 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001891 struct tipc_msg *msg = l_ptr->pmsg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001892 u32 msg_size = sizeof(l_ptr->proto_msg);
Allan Stephens75f0aa42011-02-28 15:30:20 -05001893 int r_flag;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001894
Allan Stephens92d2c902011-10-25 11:20:26 -04001895 /* Discard any previous message that was deferred due to congestion */
Allan Stephens92d2c902011-10-25 11:20:26 -04001896 if (l_ptr->proto_msg_queue) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001897 kfree_skb(l_ptr->proto_msg_queue);
Allan Stephens92d2c902011-10-25 11:20:26 -04001898 l_ptr->proto_msg_queue = NULL;
1899 }
1900
Per Lidenb97bf3f2006-01-02 19:04:38 +01001901 if (link_blocked(l_ptr))
1902 return;
Allan Stephensb4b56102011-05-27 11:00:51 -04001903
1904 /* Abort non-RESET send if communication with node is prohibited */
Allan Stephensb4b56102011-05-27 11:00:51 -04001905 if ((l_ptr->owner->block_setup) && (msg_typ != RESET_MSG))
1906 return;
1907
Allan Stephens92d2c902011-10-25 11:20:26 -04001908 /* Create protocol message with "out-of-sequence" sequence number */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001909 msg_set_type(msg, msg_typ);
1910 msg_set_net_plane(msg, l_ptr->b_ptr->net_plane);
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001911 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001912 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
Per Lidenb97bf3f2006-01-02 19:04:38 +01001913
1914 if (msg_typ == STATE_MSG) {
1915 u32 next_sent = mod(l_ptr->next_out_no);
1916
Per Liden4323add2006-01-18 00:38:21 +01001917 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001918 return;
1919 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -04001920 next_sent = buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001921 msg_set_next_sent(msg, next_sent);
1922 if (l_ptr->oldest_deferred_in) {
Allan Stephensf9057302011-10-24 16:03:12 -04001923 u32 rec = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001924 gap = mod(rec - mod(l_ptr->next_in_no));
1925 }
1926 msg_set_seq_gap(msg, gap);
1927 if (gap)
1928 l_ptr->stats.sent_nacks++;
1929 msg_set_link_tolerance(msg, tolerance);
1930 msg_set_linkprio(msg, priority);
1931 msg_set_max_pkt(msg, ack_mtu);
1932 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1933 msg_set_probe(msg, probe_msg != 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001934 if (probe_msg) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001935 u32 mtu = l_ptr->max_pkt;
1936
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001937 if ((mtu < l_ptr->max_pkt_target) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001938 link_working_working(l_ptr) &&
1939 l_ptr->fsm_msg_cnt) {
1940 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001941 if (l_ptr->max_pkt_probes == 10) {
1942 l_ptr->max_pkt_target = (msg_size - 4);
1943 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001944 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001945 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001946 l_ptr->max_pkt_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001947 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001948
1949 l_ptr->stats.sent_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001950 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001951 l_ptr->stats.sent_states++;
1952 } else { /* RESET_MSG or ACTIVATE_MSG */
1953 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
1954 msg_set_seq_gap(msg, 0);
1955 msg_set_next_sent(msg, 1);
Allan Stephensf23d9bf2011-01-18 15:15:34 -05001956 msg_set_probe(msg, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001957 msg_set_link_tolerance(msg, l_ptr->tolerance);
1958 msg_set_linkprio(msg, l_ptr->priority);
1959 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
1960 }
1961
Allan Stephens75f0aa42011-02-28 15:30:20 -05001962 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
1963 msg_set_redundant_link(msg, r_flag);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001964 msg_set_linkprio(msg, l_ptr->priority);
Allan Stephens92d2c902011-10-25 11:20:26 -04001965 msg_set_size(msg, msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001966
1967 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
1968
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001969 buf = tipc_buf_acquire(msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001970 if (!buf)
1971 return;
1972
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001973 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001974
Allan Stephens92d2c902011-10-25 11:20:26 -04001975 /* Defer message if bearer is already congested */
Allan Stephens92d2c902011-10-25 11:20:26 -04001976 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
1977 l_ptr->proto_msg_queue = buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001978 return;
1979 }
1980
Allan Stephens92d2c902011-10-25 11:20:26 -04001981 /* Defer message if attempting to send results in bearer congestion */
Allan Stephens92d2c902011-10-25 11:20:26 -04001982 if (!tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
1983 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
1984 l_ptr->proto_msg_queue = buf;
1985 l_ptr->stats.bearer_congs++;
1986 return;
1987 }
1988
1989 /* Discard message if it was sent successfully */
Allan Stephens92d2c902011-10-25 11:20:26 -04001990 l_ptr->unacked_window = 0;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001991 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001992}
1993
1994/*
1995 * Receive protocol message :
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001996 * Note that network plane id propagates through the network, and may
1997 * change at any time. The node with lowest address rules
Per Lidenb97bf3f2006-01-02 19:04:38 +01001998 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001999static void link_recv_proto_msg(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002000{
2001 u32 rec_gap = 0;
2002 u32 max_pkt_info;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002003 u32 max_pkt_ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002004 u32 msg_tol;
2005 struct tipc_msg *msg = buf_msg(buf);
2006
Per Lidenb97bf3f2006-01-02 19:04:38 +01002007 if (link_blocked(l_ptr))
2008 goto exit;
2009
2010 /* record unnumbered packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002011 l_ptr->checkpoint--;
2012
2013 if (l_ptr->b_ptr->net_plane != msg_net_plane(msg))
2014 if (tipc_own_addr > msg_prevnode(msg))
2015 l_ptr->b_ptr->net_plane = msg_net_plane(msg);
2016
2017 l_ptr->owner->permit_changeover = msg_redundant_link(msg);
2018
2019 switch (msg_type(msg)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002020
Per Lidenb97bf3f2006-01-02 19:04:38 +01002021 case RESET_MSG:
Allan Stephensa686e682008-06-04 17:29:39 -07002022 if (!link_working_unknown(l_ptr) &&
2023 (l_ptr->peer_session != INVALID_SESSION)) {
Allan Stephens641c2182011-04-07 09:54:43 -04002024 if (less_eq(msg_session(msg), l_ptr->peer_session))
2025 break; /* duplicate or old reset: ignore */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002026 }
Allan Stephensb4b56102011-05-27 11:00:51 -04002027
2028 if (!msg_redundant_link(msg) && (link_working_working(l_ptr) ||
2029 link_working_unknown(l_ptr))) {
2030 /*
2031 * peer has lost contact -- don't allow peer's links
2032 * to reactivate before we recognize loss & clean up
2033 */
2034 l_ptr->owner->block_setup = WAIT_NODE_DOWN;
2035 }
2036
Allan Stephens47361c82011-10-26 10:55:16 -04002037 link_state_event(l_ptr, RESET_MSG);
2038
Per Lidenb97bf3f2006-01-02 19:04:38 +01002039 /* fall thru' */
2040 case ACTIVATE_MSG:
2041 /* Update link settings according other endpoint's values */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002042 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
2043
Allan Stephens2db99832010-12-31 18:59:33 +00002044 msg_tol = msg_link_tolerance(msg);
2045 if (msg_tol > l_ptr->tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002046 link_set_supervision_props(l_ptr, msg_tol);
2047
2048 if (msg_linkprio(msg) > l_ptr->priority)
2049 l_ptr->priority = msg_linkprio(msg);
2050
2051 max_pkt_info = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002052 if (max_pkt_info) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002053 if (max_pkt_info < l_ptr->max_pkt_target)
2054 l_ptr->max_pkt_target = max_pkt_info;
2055 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
2056 l_ptr->max_pkt = l_ptr->max_pkt_target;
2057 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002058 l_ptr->max_pkt = l_ptr->max_pkt_target;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002059 }
Allan Stephens93499312011-10-25 15:14:46 -04002060 l_ptr->owner->bclink.supportable = (max_pkt_info != 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002061
Allan Stephens4d753132011-10-25 12:19:05 -04002062 /* Synchronize broadcast link info, if not done previously */
Allan Stephens7a54d4a2011-10-27 14:17:53 -04002063 if (!tipc_node_is_up(l_ptr->owner)) {
2064 l_ptr->owner->bclink.last_sent =
2065 l_ptr->owner->bclink.last_in =
2066 msg_last_bcast(msg);
2067 l_ptr->owner->bclink.oos_state = 0;
2068 }
Allan Stephens4d753132011-10-25 12:19:05 -04002069
Per Lidenb97bf3f2006-01-02 19:04:38 +01002070 l_ptr->peer_session = msg_session(msg);
2071 l_ptr->peer_bearer_id = msg_bearer_id(msg);
Allan Stephens47361c82011-10-26 10:55:16 -04002072
2073 if (msg_type(msg) == ACTIVATE_MSG)
2074 link_state_event(l_ptr, ACTIVATE_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002075 break;
2076 case STATE_MSG:
2077
Allan Stephens2db99832010-12-31 18:59:33 +00002078 msg_tol = msg_link_tolerance(msg);
2079 if (msg_tol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002080 link_set_supervision_props(l_ptr, msg_tol);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002081
2082 if (msg_linkprio(msg) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002083 (msg_linkprio(msg) != l_ptr->priority)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002084 pr_warn("%s<%s>, priority change %u->%u\n",
2085 link_rst_msg, l_ptr->name, l_ptr->priority,
2086 msg_linkprio(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002087 l_ptr->priority = msg_linkprio(msg);
Per Liden4323add2006-01-18 00:38:21 +01002088 tipc_link_reset(l_ptr); /* Enforce change to take effect */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002089 break;
2090 }
2091 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
2092 l_ptr->stats.recv_states++;
2093 if (link_reset_unknown(l_ptr))
2094 break;
2095
2096 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002097 rec_gap = mod(msg_next_sent(msg) -
Per Lidenb97bf3f2006-01-02 19:04:38 +01002098 mod(l_ptr->next_in_no));
2099 }
2100
2101 max_pkt_ack = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002102 if (max_pkt_ack > l_ptr->max_pkt) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002103 l_ptr->max_pkt = max_pkt_ack;
2104 l_ptr->max_pkt_probes = 0;
2105 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002106
2107 max_pkt_ack = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002108 if (msg_probe(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002109 l_ptr->stats.recv_probes++;
Allan Stephensa0168922010-12-31 18:59:35 +00002110 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002111 max_pkt_ack = msg_size(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002112 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002113
2114 /* Protocol message before retransmits, reduce loss risk */
Allan Stephens7a54d4a2011-10-27 14:17:53 -04002115 if (l_ptr->owner->bclink.supported)
2116 tipc_bclink_update_link_state(l_ptr->owner,
2117 msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002118
2119 if (rec_gap || (msg_probe(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01002120 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
2121 0, rec_gap, 0, 0, max_pkt_ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002122 }
2123 if (msg_seq_gap(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002124 l_ptr->stats.recv_nacks++;
Per Liden4323add2006-01-18 00:38:21 +01002125 tipc_link_retransmit(l_ptr, l_ptr->first_out,
2126 msg_seq_gap(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002127 }
2128 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002129 }
2130exit:
Allan Stephens5f6d9122011-11-04 13:24:29 -04002131 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002132}
2133
2134
2135/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002136 * tipc_link_tunnel(): Send one message via a link belonging to
Per Lidenb97bf3f2006-01-02 19:04:38 +01002137 * another bearer. Owner node is locked.
2138 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002139static void tipc_link_tunnel(struct tipc_link *l_ptr,
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002140 struct tipc_msg *tunnel_hdr,
2141 struct tipc_msg *msg,
2142 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002143{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002144 struct tipc_link *tunnel;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002145 struct sk_buff *buf;
2146 u32 length = msg_size(msg);
2147
2148 tunnel = l_ptr->owner->active_links[selector & 1];
Allan Stephens5392d642006-06-25 23:52:50 -07002149 if (!tipc_link_is_up(tunnel)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002150 pr_warn("%stunnel link no longer available\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002151 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002152 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002153 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002154 buf = tipc_buf_acquire(length + INT_H_SIZE);
Allan Stephens5392d642006-06-25 23:52:50 -07002155 if (!buf) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002156 pr_warn("%sunable to send tunnel msg\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002157 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002158 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002159 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
2160 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
Per Liden4323add2006-01-18 00:38:21 +01002161 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002162}
2163
2164
2165
2166/*
2167 * changeover(): Send whole message queue via the remaining link
2168 * Owner node is locked.
2169 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002170void tipc_link_changeover(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002171{
2172 u32 msgcount = l_ptr->out_queue_size;
2173 struct sk_buff *crs = l_ptr->first_out;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002174 struct tipc_link *tunnel = l_ptr->owner->active_links[0];
Per Lidenb97bf3f2006-01-02 19:04:38 +01002175 struct tipc_msg tunnel_hdr;
Allan Stephens5392d642006-06-25 23:52:50 -07002176 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002177
2178 if (!tunnel)
2179 return;
2180
Allan Stephens5392d642006-06-25 23:52:50 -07002181 if (!l_ptr->owner->permit_changeover) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002182 pr_warn("%speer did not permit changeover\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002183 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002184 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002185
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002186 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002187 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002188 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2189 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07002190
Per Lidenb97bf3f2006-01-02 19:04:38 +01002191 if (!l_ptr->first_out) {
2192 struct sk_buff *buf;
2193
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002194 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002195 if (buf) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002196 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002197 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Per Liden4323add2006-01-18 00:38:21 +01002198 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002199 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002200 pr_warn("%sunable to send changeover msg\n",
2201 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002202 }
2203 return;
2204 }
Allan Stephensf1310722006-06-25 23:51:37 -07002205
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002206 split_bundles = (l_ptr->owner->active_links[0] !=
Allan Stephens5392d642006-06-25 23:52:50 -07002207 l_ptr->owner->active_links[1]);
2208
Per Lidenb97bf3f2006-01-02 19:04:38 +01002209 while (crs) {
2210 struct tipc_msg *msg = buf_msg(crs);
2211
2212 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002213 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00002214 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002215
Florian Westphald788d802007-08-02 19:28:06 -07002216 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002217 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00002218 msg_set_seqno(m, msg_seqno(msg));
Per Liden4323add2006-01-18 00:38:21 +01002219 tipc_link_tunnel(l_ptr, &tunnel_hdr, m,
2220 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002221 pos += align(msg_size(m));
2222 m = (struct tipc_msg *)pos;
2223 }
2224 } else {
Per Liden4323add2006-01-18 00:38:21 +01002225 tipc_link_tunnel(l_ptr, &tunnel_hdr, msg,
2226 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002227 }
2228 crs = crs->next;
2229 }
2230}
2231
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002232void tipc_link_send_duplicate(struct tipc_link *l_ptr, struct tipc_link *tunnel)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002233{
2234 struct sk_buff *iter;
2235 struct tipc_msg tunnel_hdr;
2236
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002237 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002238 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002239 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
2240 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2241 iter = l_ptr->first_out;
2242 while (iter) {
2243 struct sk_buff *outbuf;
2244 struct tipc_msg *msg = buf_msg(iter);
2245 u32 length = msg_size(msg);
2246
2247 if (msg_user(msg) == MSG_BUNDLER)
2248 msg_set_type(msg, CLOSED_MSG);
2249 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002250 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002251 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002252 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002253 if (outbuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002254 pr_warn("%sunable to send duplicate msg\n",
2255 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002256 return;
2257 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002258 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
2259 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
2260 length);
Per Liden4323add2006-01-18 00:38:21 +01002261 tipc_link_send_buf(tunnel, outbuf);
2262 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002263 return;
2264 iter = iter->next;
2265 }
2266}
2267
Per Lidenb97bf3f2006-01-02 19:04:38 +01002268/**
2269 * buf_extract - extracts embedded TIPC message from another message
2270 * @skb: encapsulating message buffer
2271 * @from_pos: offset to extract from
2272 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002273 * Returns a new message buffer containing an embedded message. The
Per Lidenb97bf3f2006-01-02 19:04:38 +01002274 * encapsulating message itself is left unchanged.
2275 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002276static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
2277{
2278 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
2279 u32 size = msg_size(msg);
2280 struct sk_buff *eb;
2281
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002282 eb = tipc_buf_acquire(size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002283 if (eb)
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002284 skb_copy_to_linear_data(eb, msg, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002285 return eb;
2286}
2287
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002288/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01002289 * link_recv_changeover_msg(): Receive tunneled packet sent
2290 * via other link. Node is locked. Return extracted buffer.
2291 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002292static int link_recv_changeover_msg(struct tipc_link **l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002293 struct sk_buff **buf)
2294{
2295 struct sk_buff *tunnel_buf = *buf;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002296 struct tipc_link *dest_link;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002297 struct tipc_msg *msg;
2298 struct tipc_msg *tunnel_msg = buf_msg(tunnel_buf);
2299 u32 msg_typ = msg_type(tunnel_msg);
2300 u32 msg_count = msg_msgcnt(tunnel_msg);
2301
2302 dest_link = (*l_ptr)->owner->links[msg_bearer_id(tunnel_msg)];
Allan Stephensb29f1422010-12-31 18:59:25 +00002303 if (!dest_link)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002304 goto exit;
Allan Stephensf1310722006-06-25 23:51:37 -07002305 if (dest_link == *l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002306 pr_err("Unexpected changeover message on link <%s>\n",
2307 (*l_ptr)->name);
Allan Stephensf1310722006-06-25 23:51:37 -07002308 goto exit;
2309 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002310 *l_ptr = dest_link;
2311 msg = msg_get_wrapped(tunnel_msg);
2312
2313 if (msg_typ == DUPLICATE_MSG) {
Allan Stephensb29f1422010-12-31 18:59:25 +00002314 if (less(msg_seqno(msg), mod(dest_link->next_in_no)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002315 goto exit;
Allan Stephens0e659672010-12-31 18:59:32 +00002316 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002317 if (*buf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002318 pr_warn("%sduplicate msg dropped\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002319 goto exit;
2320 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002321 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002322 return 1;
2323 }
2324
2325 /* First original message ?: */
Per Liden4323add2006-01-18 00:38:21 +01002326 if (tipc_link_is_up(dest_link)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002327 pr_info("%s<%s>, changeover initiated by peer\n", link_rst_msg,
2328 dest_link->name);
Per Liden4323add2006-01-18 00:38:21 +01002329 tipc_link_reset(dest_link);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002330 dest_link->exp_msg_count = msg_count;
2331 if (!msg_count)
2332 goto exit;
2333 } else if (dest_link->exp_msg_count == START_CHANGEOVER) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002334 dest_link->exp_msg_count = msg_count;
2335 if (!msg_count)
2336 goto exit;
2337 }
2338
2339 /* Receive original message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002340 if (dest_link->exp_msg_count == 0) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002341 pr_warn("%sgot too many tunnelled messages\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002342 goto exit;
2343 }
2344 dest_link->exp_msg_count--;
2345 if (less(msg_seqno(msg), dest_link->reset_checkpoint)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002346 goto exit;
2347 } else {
2348 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
2349 if (*buf != NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002350 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002351 return 1;
2352 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002353 pr_warn("%soriginal msg dropped\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002354 }
2355 }
2356exit:
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002357 *buf = NULL;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002358 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002359 return 0;
2360}
2361
2362/*
2363 * Bundler functionality:
2364 */
Per Liden4323add2006-01-18 00:38:21 +01002365void tipc_link_recv_bundle(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002366{
2367 u32 msgcount = msg_msgcnt(buf_msg(buf));
2368 u32 pos = INT_H_SIZE;
2369 struct sk_buff *obuf;
2370
Per Lidenb97bf3f2006-01-02 19:04:38 +01002371 while (msgcount--) {
2372 obuf = buf_extract(buf, pos);
2373 if (obuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002374 pr_warn("Link unable to unbundle message(s)\n");
Allan Stephensa10bd922006-06-25 23:52:17 -07002375 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002376 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002377 pos += align(msg_size(buf_msg(obuf)));
Per Liden4323add2006-01-18 00:38:21 +01002378 tipc_net_route_msg(obuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002379 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002380 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002381}
2382
2383/*
2384 * Fragmentation/defragmentation:
2385 */
2386
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002387/*
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002388 * link_send_long_buf: Entry for buffers needing fragmentation.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002389 * The buffer is complete, inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002390 * Returns user data length.
2391 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002392static int link_send_long_buf(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002393{
Allan Stephens77561552011-04-17 13:06:23 -04002394 struct sk_buff *buf_chain = NULL;
2395 struct sk_buff *buf_chain_tail = (struct sk_buff *)&buf_chain;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002396 struct tipc_msg *inmsg = buf_msg(buf);
2397 struct tipc_msg fragm_hdr;
2398 u32 insize = msg_size(inmsg);
2399 u32 dsz = msg_data_sz(inmsg);
2400 unchar *crs = buf->data;
2401 u32 rest = insize;
Allan Stephens15e979d2010-05-11 14:30:10 +00002402 u32 pack_sz = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002403 u32 fragm_sz = pack_sz - INT_H_SIZE;
Allan Stephens77561552011-04-17 13:06:23 -04002404 u32 fragm_no = 0;
Allan Stephens9c396a72008-06-04 17:36:58 -07002405 u32 destaddr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002406
2407 if (msg_short(inmsg))
2408 destaddr = l_ptr->addr;
Allan Stephens9c396a72008-06-04 17:36:58 -07002409 else
2410 destaddr = msg_destnode(inmsg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002411
Per Lidenb97bf3f2006-01-02 19:04:38 +01002412 /* Prepare reusable fragment header: */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002413 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07002414 INT_H_SIZE, destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002415
2416 /* Chop up message: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002417 while (rest > 0) {
2418 struct sk_buff *fragm;
2419
2420 if (rest <= fragm_sz) {
2421 fragm_sz = rest;
2422 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
2423 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002424 fragm = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002425 if (fragm == NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002426 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002427 while (buf_chain) {
2428 buf = buf_chain;
2429 buf_chain = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002430 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002431 }
2432 return -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002433 }
2434 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
Allan Stephens77561552011-04-17 13:06:23 -04002435 fragm_no++;
2436 msg_set_fragm_no(&fragm_hdr, fragm_no);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002437 skb_copy_to_linear_data(fragm, &fragm_hdr, INT_H_SIZE);
2438 skb_copy_to_linear_data_offset(fragm, INT_H_SIZE, crs,
2439 fragm_sz);
Allan Stephens77561552011-04-17 13:06:23 -04002440 buf_chain_tail->next = fragm;
2441 buf_chain_tail = fragm;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002442
Per Lidenb97bf3f2006-01-02 19:04:38 +01002443 rest -= fragm_sz;
2444 crs += fragm_sz;
2445 msg_set_type(&fragm_hdr, FRAGMENT);
2446 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002447 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002448
2449 /* Append chain of fragments to send queue & send them */
Allan Stephens77561552011-04-17 13:06:23 -04002450 l_ptr->long_msg_seq_no++;
2451 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
2452 l_ptr->stats.sent_fragments += fragm_no;
2453 l_ptr->stats.sent_fragmented++;
2454 tipc_link_push_queue(l_ptr);
2455
Per Lidenb97bf3f2006-01-02 19:04:38 +01002456 return dsz;
2457}
2458
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002459/*
2460 * A pending message being re-assembled must store certain values
2461 * to handle subsequent fragments correctly. The following functions
Per Lidenb97bf3f2006-01-02 19:04:38 +01002462 * help storing these values in unused, available fields in the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002463 * pending message. This makes dynamic memory allocation unnecessary.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002464 */
Sam Ravnborg05790c62006-03-20 22:37:04 -08002465static void set_long_msg_seqno(struct sk_buff *buf, u32 seqno)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002466{
2467 msg_set_seqno(buf_msg(buf), seqno);
2468}
2469
Sam Ravnborg05790c62006-03-20 22:37:04 -08002470static u32 get_fragm_size(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002471{
2472 return msg_ack(buf_msg(buf));
2473}
2474
Sam Ravnborg05790c62006-03-20 22:37:04 -08002475static void set_fragm_size(struct sk_buff *buf, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002476{
2477 msg_set_ack(buf_msg(buf), sz);
2478}
2479
Sam Ravnborg05790c62006-03-20 22:37:04 -08002480static u32 get_expected_frags(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002481{
2482 return msg_bcast_ack(buf_msg(buf));
2483}
2484
Sam Ravnborg05790c62006-03-20 22:37:04 -08002485static void set_expected_frags(struct sk_buff *buf, u32 exp)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002486{
2487 msg_set_bcast_ack(buf_msg(buf), exp);
2488}
2489
Sam Ravnborg05790c62006-03-20 22:37:04 -08002490static u32 get_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002491{
2492 return msg_reroute_cnt(buf_msg(buf));
2493}
2494
Sam Ravnborg05790c62006-03-20 22:37:04 -08002495static void incr_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002496{
2497 msg_incr_reroute_cnt(buf_msg(buf));
2498}
2499
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002500/*
2501 * tipc_link_recv_fragment(): Called with node lock on. Returns
Per Lidenb97bf3f2006-01-02 19:04:38 +01002502 * the reassembled buffer if message is complete.
2503 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002504int tipc_link_recv_fragment(struct sk_buff **pending, struct sk_buff **fb,
Per Liden4323add2006-01-18 00:38:21 +01002505 struct tipc_msg **m)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002506{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002507 struct sk_buff *prev = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002508 struct sk_buff *fbuf = *fb;
2509 struct tipc_msg *fragm = buf_msg(fbuf);
2510 struct sk_buff *pbuf = *pending;
2511 u32 long_msg_seq_no = msg_long_msgno(fragm);
2512
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002513 *fb = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002514
2515 /* Is there an incomplete message waiting for this fragment? */
Allan Stephensf9057302011-10-24 16:03:12 -04002516 while (pbuf && ((buf_seqno(pbuf) != long_msg_seq_no) ||
Joe Perchesf64f9e72009-11-29 16:55:45 -08002517 (msg_orignode(fragm) != msg_orignode(buf_msg(pbuf))))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002518 prev = pbuf;
2519 pbuf = pbuf->next;
2520 }
2521
2522 if (!pbuf && (msg_type(fragm) == FIRST_FRAGMENT)) {
2523 struct tipc_msg *imsg = (struct tipc_msg *)msg_data(fragm);
2524 u32 msg_sz = msg_size(imsg);
2525 u32 fragm_sz = msg_data_sz(fragm);
2526 u32 exp_fragm_cnt = msg_sz/fragm_sz + !!(msg_sz % fragm_sz);
Allan Stephens741d9eb2011-05-31 15:03:18 -04002527 u32 max = TIPC_MAX_USER_MSG_SIZE + NAMED_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002528 if (msg_type(imsg) == TIPC_MCAST_MSG)
2529 max = TIPC_MAX_USER_MSG_SIZE + MCAST_H_SIZE;
2530 if (msg_size(imsg) > max) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002531 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002532 return 0;
2533 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002534 pbuf = tipc_buf_acquire(msg_size(imsg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002535 if (pbuf != NULL) {
2536 pbuf->next = *pending;
2537 *pending = pbuf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002538 skb_copy_to_linear_data(pbuf, imsg,
2539 msg_data_sz(fragm));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002540 /* Prepare buffer for subsequent fragments. */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002541 set_long_msg_seqno(pbuf, long_msg_seq_no);
Allan Stephens0e659672010-12-31 18:59:32 +00002542 set_fragm_size(pbuf, fragm_sz);
2543 set_expected_frags(pbuf, exp_fragm_cnt - 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002544 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002545 pr_debug("Link unable to reassemble fragmented message\n");
Allan Stephens5f6d9122011-11-04 13:24:29 -04002546 kfree_skb(fbuf);
Allan Stephensb76b27c2011-10-27 16:31:26 -04002547 return -1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002548 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002549 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002550 return 0;
2551 } else if (pbuf && (msg_type(fragm) != FIRST_FRAGMENT)) {
2552 u32 dsz = msg_data_sz(fragm);
2553 u32 fsz = get_fragm_size(pbuf);
2554 u32 crs = ((msg_fragm_no(fragm) - 1) * fsz);
2555 u32 exp_frags = get_expected_frags(pbuf) - 1;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002556 skb_copy_to_linear_data_offset(pbuf, crs,
2557 msg_data(fragm), dsz);
Allan Stephens5f6d9122011-11-04 13:24:29 -04002558 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002559
2560 /* Is message complete? */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002561 if (exp_frags == 0) {
2562 if (prev)
2563 prev->next = pbuf->next;
2564 else
2565 *pending = pbuf->next;
2566 msg_reset_reroute_cnt(buf_msg(pbuf));
2567 *fb = pbuf;
2568 *m = buf_msg(pbuf);
2569 return 1;
2570 }
Allan Stephens0e659672010-12-31 18:59:32 +00002571 set_expected_frags(pbuf, exp_frags);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002572 return 0;
2573 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002574 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002575 return 0;
2576}
2577
2578/**
2579 * link_check_defragm_bufs - flush stale incoming message fragments
2580 * @l_ptr: pointer to link
2581 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002582static void link_check_defragm_bufs(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002583{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002584 struct sk_buff *prev = NULL;
2585 struct sk_buff *next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002586 struct sk_buff *buf = l_ptr->defragm_buf;
2587
2588 if (!buf)
2589 return;
2590 if (!link_working_working(l_ptr))
2591 return;
2592 while (buf) {
2593 u32 cnt = get_timer_cnt(buf);
2594
2595 next = buf->next;
2596 if (cnt < 4) {
2597 incr_timer_cnt(buf);
2598 prev = buf;
2599 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002600 if (prev)
2601 prev->next = buf->next;
2602 else
2603 l_ptr->defragm_buf = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002604 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002605 }
2606 buf = next;
2607 }
2608}
2609
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002610static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002611{
Allan Stephens5413b4c2011-01-18 13:24:55 -05002612 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
2613 return;
2614
Per Lidenb97bf3f2006-01-02 19:04:38 +01002615 l_ptr->tolerance = tolerance;
2616 l_ptr->continuity_interval =
2617 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
2618 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
2619}
2620
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002621void tipc_link_set_queue_limits(struct tipc_link *l_ptr, u32 window)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002622{
2623 /* Data messages from this node, inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002624 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
2625 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
2626 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
2627 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002628 /* Transiting data messages,inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002629 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
2630 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
2631 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
2632 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002633 l_ptr->queue_limit[CONN_MANAGER] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002634 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
2635 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
2636 /* FRAGMENT and LAST_FRAGMENT packets */
2637 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
2638}
2639
2640/**
2641 * link_find_link - locate link by name
Ben Hutchings2c530402012-07-10 10:55:09 +00002642 * @name: ptr to link name string
2643 * @node: ptr to area to be filled with ptr to associated node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002644 *
Per Liden4323add2006-01-18 00:38:21 +01002645 * Caller must hold 'tipc_net_lock' to ensure node and bearer are not deleted;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002646 * this also prevents link deletion.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002647 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002648 * Returns pointer to link (or 0 if invalid link name).
2649 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002650static struct tipc_link *link_find_link(const char *name,
2651 struct tipc_node **node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002652{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002653 struct tipc_link_name link_name_parts;
Allan Stephens2d627b92011-01-07 13:00:11 -05002654 struct tipc_bearer *b_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002655 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002656
2657 if (!link_name_validate(name, &link_name_parts))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002658 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002659
Per Liden4323add2006-01-18 00:38:21 +01002660 b_ptr = tipc_bearer_find_interface(link_name_parts.if_local);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002661 if (!b_ptr)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002662 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002663
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002664 *node = tipc_node_find(link_name_parts.addr_peer);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002665 if (!*node)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002666 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002667
2668 l_ptr = (*node)->links[b_ptr->identity];
2669 if (!l_ptr || strcmp(l_ptr->name, name))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002670 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002671
2672 return l_ptr;
2673}
2674
Allan Stephens5c216e12011-10-18 11:34:29 -04002675/**
2676 * link_value_is_valid -- validate proposed link tolerance/priority/window
2677 *
Ben Hutchings2c530402012-07-10 10:55:09 +00002678 * @cmd: value type (TIPC_CMD_SET_LINK_*)
2679 * @new_value: the new value
Allan Stephens5c216e12011-10-18 11:34:29 -04002680 *
2681 * Returns 1 if value is within range, 0 if not.
2682 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002683static int link_value_is_valid(u16 cmd, u32 new_value)
2684{
2685 switch (cmd) {
2686 case TIPC_CMD_SET_LINK_TOL:
2687 return (new_value >= TIPC_MIN_LINK_TOL) &&
2688 (new_value <= TIPC_MAX_LINK_TOL);
2689 case TIPC_CMD_SET_LINK_PRI:
2690 return (new_value <= TIPC_MAX_LINK_PRI);
2691 case TIPC_CMD_SET_LINK_WINDOW:
2692 return (new_value >= TIPC_MIN_LINK_WIN) &&
2693 (new_value <= TIPC_MAX_LINK_WIN);
2694 }
2695 return 0;
2696}
2697
Allan Stephens5c216e12011-10-18 11:34:29 -04002698/**
2699 * link_cmd_set_value - change priority/tolerance/window for link/bearer/media
Ben Hutchings2c530402012-07-10 10:55:09 +00002700 * @name: ptr to link, bearer, or media name
2701 * @new_value: new value of link, bearer, or media setting
2702 * @cmd: which link, bearer, or media attribute to set (TIPC_CMD_SET_LINK_*)
Allan Stephens5c216e12011-10-18 11:34:29 -04002703 *
2704 * Caller must hold 'tipc_net_lock' to ensure link/bearer/media is not deleted.
2705 *
2706 * Returns 0 if value updated and negative value on error.
2707 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002708static int link_cmd_set_value(const char *name, u32 new_value, u16 cmd)
2709{
2710 struct tipc_node *node;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002711 struct tipc_link *l_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002712 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -05002713 struct tipc_media *m_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002714
2715 l_ptr = link_find_link(name, &node);
2716 if (l_ptr) {
2717 /*
2718 * acquire node lock for tipc_link_send_proto_msg().
2719 * see "TIPC locking policy" in net.c.
2720 */
2721 tipc_node_lock(node);
2722 switch (cmd) {
2723 case TIPC_CMD_SET_LINK_TOL:
2724 link_set_supervision_props(l_ptr, new_value);
2725 tipc_link_send_proto_msg(l_ptr,
2726 STATE_MSG, 0, 0, new_value, 0, 0);
2727 break;
2728 case TIPC_CMD_SET_LINK_PRI:
2729 l_ptr->priority = new_value;
2730 tipc_link_send_proto_msg(l_ptr,
2731 STATE_MSG, 0, 0, 0, new_value, 0);
2732 break;
2733 case TIPC_CMD_SET_LINK_WINDOW:
2734 tipc_link_set_queue_limits(l_ptr, new_value);
2735 break;
2736 }
2737 tipc_node_unlock(node);
2738 return 0;
2739 }
2740
2741 b_ptr = tipc_bearer_find(name);
2742 if (b_ptr) {
2743 switch (cmd) {
2744 case TIPC_CMD_SET_LINK_TOL:
2745 b_ptr->tolerance = new_value;
2746 return 0;
2747 case TIPC_CMD_SET_LINK_PRI:
2748 b_ptr->priority = new_value;
2749 return 0;
2750 case TIPC_CMD_SET_LINK_WINDOW:
2751 b_ptr->window = new_value;
2752 return 0;
2753 }
2754 return -EINVAL;
2755 }
2756
2757 m_ptr = tipc_media_find(name);
2758 if (!m_ptr)
2759 return -ENODEV;
2760 switch (cmd) {
2761 case TIPC_CMD_SET_LINK_TOL:
2762 m_ptr->tolerance = new_value;
2763 return 0;
2764 case TIPC_CMD_SET_LINK_PRI:
2765 m_ptr->priority = new_value;
2766 return 0;
2767 case TIPC_CMD_SET_LINK_WINDOW:
2768 m_ptr->window = new_value;
2769 return 0;
2770 }
2771 return -EINVAL;
2772}
2773
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002774struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
Per Liden4323add2006-01-18 00:38:21 +01002775 u16 cmd)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002776{
2777 struct tipc_link_config *args;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002778 u32 new_value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002779 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002780
2781 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
Per Liden4323add2006-01-18 00:38:21 +01002782 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002783
2784 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2785 new_value = ntohl(args->value);
2786
Allan Stephens5c216e12011-10-18 11:34:29 -04002787 if (!link_value_is_valid(cmd, new_value))
2788 return tipc_cfg_reply_error_string(
2789 "cannot change, value invalid");
2790
Per Liden4323add2006-01-18 00:38:21 +01002791 if (!strcmp(args->name, tipc_bclink_name)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002792 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
Per Liden4323add2006-01-18 00:38:21 +01002793 (tipc_bclink_set_queue_limits(new_value) == 0))
2794 return tipc_cfg_reply_none();
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002795 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
Per Liden4323add2006-01-18 00:38:21 +01002796 " (cannot change setting on broadcast link)");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002797 }
2798
Per Liden4323add2006-01-18 00:38:21 +01002799 read_lock_bh(&tipc_net_lock);
Allan Stephens5c216e12011-10-18 11:34:29 -04002800 res = link_cmd_set_value(args->name, new_value, cmd);
Per Liden4323add2006-01-18 00:38:21 +01002801 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002802 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002803 return tipc_cfg_reply_error_string("cannot change link setting");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002804
Per Liden4323add2006-01-18 00:38:21 +01002805 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002806}
2807
2808/**
2809 * link_reset_statistics - reset link statistics
2810 * @l_ptr: pointer to link
2811 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002812static void link_reset_statistics(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002813{
2814 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2815 l_ptr->stats.sent_info = l_ptr->next_out_no;
2816 l_ptr->stats.recv_info = l_ptr->next_in_no;
2817}
2818
Per Liden4323add2006-01-18 00:38:21 +01002819struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002820{
2821 char *link_name;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002822 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002823 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002824
2825 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002826 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002827
2828 link_name = (char *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +01002829 if (!strcmp(link_name, tipc_bclink_name)) {
2830 if (tipc_bclink_reset_stats())
2831 return tipc_cfg_reply_error_string("link not found");
2832 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002833 }
2834
Per Liden4323add2006-01-18 00:38:21 +01002835 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002836 l_ptr = link_find_link(link_name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002837 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002838 read_unlock_bh(&tipc_net_lock);
2839 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002840 }
2841
Per Liden4323add2006-01-18 00:38:21 +01002842 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002843 link_reset_statistics(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +01002844 tipc_node_unlock(node);
2845 read_unlock_bh(&tipc_net_lock);
2846 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002847}
2848
2849/**
2850 * percent - convert count to a percentage of total (rounding up or down)
2851 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002852static u32 percent(u32 count, u32 total)
2853{
2854 return (count * 100 + (total / 2)) / total;
2855}
2856
2857/**
Per Liden4323add2006-01-18 00:38:21 +01002858 * tipc_link_stats - print link statistics
Per Lidenb97bf3f2006-01-02 19:04:38 +01002859 * @name: link name
2860 * @buf: print buffer area
2861 * @buf_size: size of print buffer area
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002862 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002863 * Returns length of print buffer data string (or 0 if error)
2864 */
Per Liden4323add2006-01-18 00:38:21 +01002865static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002866{
Erik Hugnedc1aed32012-06-29 00:50:23 -04002867 struct tipc_link *l;
2868 struct tipc_stats *s;
David S. Miller6c000552008-09-02 23:38:32 -07002869 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002870 char *status;
2871 u32 profile_total = 0;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002872 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002873
Per Liden4323add2006-01-18 00:38:21 +01002874 if (!strcmp(name, tipc_bclink_name))
2875 return tipc_bclink_stats(buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002876
Per Liden4323add2006-01-18 00:38:21 +01002877 read_lock_bh(&tipc_net_lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002878 l = link_find_link(name, &node);
2879 if (!l) {
Per Liden4323add2006-01-18 00:38:21 +01002880 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002881 return 0;
2882 }
Per Liden4323add2006-01-18 00:38:21 +01002883 tipc_node_lock(node);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002884 s = &l->stats;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002885
Erik Hugnedc1aed32012-06-29 00:50:23 -04002886 if (tipc_link_is_active(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002887 status = "ACTIVE";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002888 else if (tipc_link_is_up(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002889 status = "STANDBY";
2890 else
2891 status = "DEFUNCT";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002892
2893 ret = tipc_snprintf(buf, buf_size, "Link <%s>\n"
2894 " %s MTU:%u Priority:%u Tolerance:%u ms"
2895 " Window:%u packets\n",
2896 l->name, status, l->max_pkt, l->priority,
2897 l->tolerance, l->queue_limit[0]);
2898
2899 ret += tipc_snprintf(buf + ret, buf_size - ret,
2900 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
2901 l->next_in_no - s->recv_info, s->recv_fragments,
2902 s->recv_fragmented, s->recv_bundles,
2903 s->recv_bundled);
2904
2905 ret += tipc_snprintf(buf + ret, buf_size - ret,
2906 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
2907 l->next_out_no - s->sent_info, s->sent_fragments,
2908 s->sent_fragmented, s->sent_bundles,
2909 s->sent_bundled);
2910
2911 profile_total = s->msg_length_counts;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002912 if (!profile_total)
2913 profile_total = 1;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002914
2915 ret += tipc_snprintf(buf + ret, buf_size - ret,
2916 " TX profile sample:%u packets average:%u octets\n"
2917 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
2918 "-16384:%u%% -32768:%u%% -66000:%u%%\n",
2919 s->msg_length_counts,
2920 s->msg_lengths_total / profile_total,
2921 percent(s->msg_length_profile[0], profile_total),
2922 percent(s->msg_length_profile[1], profile_total),
2923 percent(s->msg_length_profile[2], profile_total),
2924 percent(s->msg_length_profile[3], profile_total),
2925 percent(s->msg_length_profile[4], profile_total),
2926 percent(s->msg_length_profile[5], profile_total),
2927 percent(s->msg_length_profile[6], profile_total));
2928
2929 ret += tipc_snprintf(buf + ret, buf_size - ret,
2930 " RX states:%u probes:%u naks:%u defs:%u"
2931 " dups:%u\n", s->recv_states, s->recv_probes,
2932 s->recv_nacks, s->deferred_recv, s->duplicates);
2933
2934 ret += tipc_snprintf(buf + ret, buf_size - ret,
2935 " TX states:%u probes:%u naks:%u acks:%u"
2936 " dups:%u\n", s->sent_states, s->sent_probes,
2937 s->sent_nacks, s->sent_acks, s->retransmitted);
2938
2939 ret += tipc_snprintf(buf + ret, buf_size - ret,
2940 " Congestion bearer:%u link:%u Send queue"
2941 " max:%u avg:%u\n", s->bearer_congs, s->link_congs,
2942 s->max_queue_sz, s->queue_sz_counts ?
2943 (s->accu_queue_sz / s->queue_sz_counts) : 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002944
Per Liden4323add2006-01-18 00:38:21 +01002945 tipc_node_unlock(node);
2946 read_unlock_bh(&tipc_net_lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002947 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002948}
2949
Per Liden4323add2006-01-18 00:38:21 +01002950struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002951{
2952 struct sk_buff *buf;
2953 struct tlv_desc *rep_tlv;
2954 int str_len;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002955 int pb_len;
2956 char *pb;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002957
2958 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002959 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002960
Erik Hugnedc1aed32012-06-29 00:50:23 -04002961 buf = tipc_cfg_reply_alloc(TLV_SPACE(ULTRA_STRING_MAX_LEN));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002962 if (!buf)
2963 return NULL;
2964
2965 rep_tlv = (struct tlv_desc *)buf->data;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002966 pb = TLV_DATA(rep_tlv);
2967 pb_len = ULTRA_STRING_MAX_LEN;
Per Liden4323add2006-01-18 00:38:21 +01002968 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
Erik Hugnedc1aed32012-06-29 00:50:23 -04002969 pb, pb_len);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002970 if (!str_len) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002971 kfree_skb(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002972 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002973 }
Erik Hugnedc1aed32012-06-29 00:50:23 -04002974 str_len += 1; /* for "\0" */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002975 skb_put(buf, TLV_SPACE(str_len));
2976 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
2977
2978 return buf;
2979}
2980
Per Lidenb97bf3f2006-01-02 19:04:38 +01002981/**
Per Liden4323add2006-01-18 00:38:21 +01002982 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
Per Lidenb97bf3f2006-01-02 19:04:38 +01002983 * @dest: network address of destination node
2984 * @selector: used to select from set of active links
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002985 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002986 * If no active link can be found, uses default maximum packet size.
2987 */
Per Liden4323add2006-01-18 00:38:21 +01002988u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002989{
David S. Miller6c000552008-09-02 23:38:32 -07002990 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002991 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002992 u32 res = MAX_PKT_DEFAULT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002993
Per Lidenb97bf3f2006-01-02 19:04:38 +01002994 if (dest == tipc_own_addr)
2995 return MAX_MSG_SIZE;
2996
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002997 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00002998 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002999 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01003000 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003001 l_ptr = n_ptr->active_links[selector & 1];
3002 if (l_ptr)
Allan Stephens15e979d2010-05-11 14:30:10 +00003003 res = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01003004 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003005 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003006 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003007 return res;
3008}
3009
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05003010static void link_print(struct tipc_link *l_ptr, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003011{
Paul Gortmaker5deedde2012-07-11 19:27:56 -04003012 pr_info("%s Link %x<%s>:", str, l_ptr->addr, l_ptr->b_ptr->name);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003013
Per Lidenb97bf3f2006-01-02 19:04:38 +01003014 if (link_working_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04003015 pr_cont(":WU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003016 else if (link_reset_reset(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04003017 pr_cont(":RR\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003018 else if (link_reset_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04003019 pr_cont(":RU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003020 else if (link_working_working(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04003021 pr_cont(":WW\n");
3022 else
3023 pr_cont("\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01003024}