blob: 0cc64800ab932357d12ecd933ddd9ec285f15632 [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. */
Ying Xue3c294cb2012-11-15 11:34:45 +0800875 if (likely(!tipc_bearer_blocked(l_ptr->b_ptr) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100876 !link_congested(l_ptr))) {
877 link_add_to_outqueue(l_ptr, buf, msg);
878
Ying Xue3c294cb2012-11-15 11:34:45 +0800879 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
880 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100881 return dsz;
882 }
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400883 /* Congestion: can message be bundled ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100884 if ((msg_user(msg) != CHANGEOVER_PROTOCOL) &&
885 (msg_user(msg) != MSG_FRAGMENTER)) {
886
887 /* Try adding message to an existing bundle */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900888 if (l_ptr->next_out &&
Ying Xue3c294cb2012-11-15 11:34:45 +0800889 link_bundle_buf(l_ptr, l_ptr->last_out, buf))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100890 return dsz;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100891
892 /* Try creating a new bundle */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100893 if (size <= max_packet * 2 / 3) {
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000894 struct sk_buff *bundler = tipc_buf_acquire(max_packet);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100895 struct tipc_msg bundler_hdr;
896
897 if (bundler) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000898 tipc_msg_init(&bundler_hdr, MSG_BUNDLER, OPEN_MSG,
Allan Stephens75715212008-06-04 17:37:34 -0700899 INT_H_SIZE, l_ptr->addr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300900 skb_copy_to_linear_data(bundler, &bundler_hdr,
901 INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100902 skb_trim(bundler, INT_H_SIZE);
903 link_bundle_buf(l_ptr, bundler, buf);
904 buf = bundler;
905 msg = buf_msg(buf);
906 l_ptr->stats.sent_bundles++;
907 }
908 }
909 }
910 if (!l_ptr->next_out)
911 l_ptr->next_out = buf;
912 link_add_to_outqueue(l_ptr, buf, msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100913 return dsz;
914}
915
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900916/*
917 * tipc_link_send(): same as tipc_link_send_buf(), but the link to use has
Per Lidenb97bf3f2006-01-02 19:04:38 +0100918 * not been selected yet, and the the owner node is not locked
919 * Called by TIPC internal users, e.g. the name distributor
920 */
Per Liden4323add2006-01-18 00:38:21 +0100921int tipc_link_send(struct sk_buff *buf, u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100922{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500923 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700924 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100925 int res = -ELINKCONG;
926
Per Liden4323add2006-01-18 00:38:21 +0100927 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000928 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100929 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +0100930 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100931 l_ptr = n_ptr->active_links[selector & 1];
Allan Stephensa0168922010-12-31 18:59:35 +0000932 if (l_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100933 res = tipc_link_send_buf(l_ptr, buf);
Allan Stephensa0168922010-12-31 18:59:35 +0000934 else
Allan Stephens5f6d9122011-11-04 13:24:29 -0400935 kfree_skb(buf);
Per Liden4323add2006-01-18 00:38:21 +0100936 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100937 } else {
Allan Stephens5f6d9122011-11-04 13:24:29 -0400938 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100939 }
Per Liden4323add2006-01-18 00:38:21 +0100940 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100941 return res;
942}
943
Ben Hutchings2c530402012-07-10 10:55:09 +0000944/**
Allan Stephens9aa88c22011-05-31 13:38:02 -0400945 * tipc_link_send_names - send name table entries to new neighbor
946 *
947 * Send routine for bulk delivery of name table messages when contact
948 * with a new neighbor occurs. No link congestion checking is performed
949 * because name table messages *must* be delivered. The messages must be
950 * small enough not to require fragmentation.
951 * Called without any locks held.
952 */
Allan Stephens9aa88c22011-05-31 13:38:02 -0400953void tipc_link_send_names(struct list_head *message_list, u32 dest)
954{
955 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500956 struct tipc_link *l_ptr;
Allan Stephens9aa88c22011-05-31 13:38:02 -0400957 struct sk_buff *buf;
958 struct sk_buff *temp_buf;
959
960 if (list_empty(message_list))
961 return;
962
963 read_lock_bh(&tipc_net_lock);
964 n_ptr = tipc_node_find(dest);
965 if (n_ptr) {
966 tipc_node_lock(n_ptr);
967 l_ptr = n_ptr->active_links[0];
968 if (l_ptr) {
969 /* convert circular list to linear list */
970 ((struct sk_buff *)message_list->prev)->next = NULL;
971 link_add_chain_to_outqueue(l_ptr,
972 (struct sk_buff *)message_list->next, 0);
973 tipc_link_push_queue(l_ptr);
974 INIT_LIST_HEAD(message_list);
975 }
976 tipc_node_unlock(n_ptr);
977 }
978 read_unlock_bh(&tipc_net_lock);
979
980 /* discard the messages if they couldn't be sent */
Allan Stephens9aa88c22011-05-31 13:38:02 -0400981 list_for_each_safe(buf, temp_buf, ((struct sk_buff *)message_list)) {
982 list_del((struct list_head *)buf);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400983 kfree_skb(buf);
Allan Stephens9aa88c22011-05-31 13:38:02 -0400984 }
985}
986
987/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900988 * link_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +0100989 * destination link is known and the header is complete,
990 * inclusive total message length. Very time critical.
991 * Link is locked. Returns user data length.
992 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500993static int link_send_buf_fast(struct tipc_link *l_ptr, struct sk_buff *buf,
Sam Ravnborg05790c62006-03-20 22:37:04 -0800994 u32 *used_max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100995{
996 struct tipc_msg *msg = buf_msg(buf);
997 int res = msg_data_sz(msg);
998
999 if (likely(!link_congested(l_ptr))) {
Allan Stephens15e979d2010-05-11 14:30:10 +00001000 if (likely(msg_size(msg) <= l_ptr->max_pkt)) {
Ying Xue3c294cb2012-11-15 11:34:45 +08001001 if (likely(!tipc_bearer_blocked(l_ptr->b_ptr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001002 link_add_to_outqueue(l_ptr, buf, msg);
Ying Xue3c294cb2012-11-15 11:34:45 +08001003 tipc_bearer_send(l_ptr->b_ptr, buf,
1004 &l_ptr->media_addr);
1005 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001006 return res;
1007 }
Allan Stephens0e659672010-12-31 18:59:32 +00001008 } else
Allan Stephens15e979d2010-05-11 14:30:10 +00001009 *used_max_pkt = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001010 }
Per Liden4323add2006-01-18 00:38:21 +01001011 return tipc_link_send_buf(l_ptr, buf); /* All other cases */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001012}
1013
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001014/*
1015 * tipc_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001016 * destination node is known and the header is complete,
1017 * inclusive total message length.
1018 * Returns user data length.
1019 */
1020int tipc_send_buf_fast(struct sk_buff *buf, u32 destnode)
1021{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001022 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001023 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001024 int res;
1025 u32 selector = msg_origport(buf_msg(buf)) & 1;
1026 u32 dummy;
1027
Per Liden4323add2006-01-18 00:38:21 +01001028 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001029 n_ptr = tipc_node_find(destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001030 if (likely(n_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001031 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001032 l_ptr = n_ptr->active_links[selector];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001033 if (likely(l_ptr)) {
1034 res = link_send_buf_fast(l_ptr, buf, &dummy);
Per Liden4323add2006-01-18 00:38:21 +01001035 tipc_node_unlock(n_ptr);
1036 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001037 return res;
1038 }
Per Liden4323add2006-01-18 00:38:21 +01001039 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001040 }
Per Liden4323add2006-01-18 00:38:21 +01001041 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001042 res = msg_data_sz(buf_msg(buf));
1043 tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1044 return res;
1045}
1046
1047
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001048/*
1049 * tipc_link_send_sections_fast: Entry for messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001050 * destination processor is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001051 * except for total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001052 * Returns user data length or errno.
1053 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001054int tipc_link_send_sections_fast(struct tipc_port *sender,
Per Liden4323add2006-01-18 00:38:21 +01001055 struct iovec const *msg_sect,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001056 const u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001057 unsigned int total_len,
Per Liden4323add2006-01-18 00:38:21 +01001058 u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001059{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001060 struct tipc_msg *hdr = &sender->phdr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001061 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001062 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -07001063 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001064 int res;
1065 u32 selector = msg_origport(hdr) & 1;
1066
Per Lidenb97bf3f2006-01-02 19:04:38 +01001067again:
1068 /*
1069 * Try building message using port's max_pkt hint.
1070 * (Must not hold any locks while building message.)
1071 */
Allan Stephens26896902011-04-21 10:42:07 -05001072 res = tipc_msg_build(hdr, msg_sect, num_sect, total_len,
1073 sender->max_pkt, !sender->user_port, &buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001074
Per Liden4323add2006-01-18 00:38:21 +01001075 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001076 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001077 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001078 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001079 l_ptr = node->active_links[selector];
1080 if (likely(l_ptr)) {
1081 if (likely(buf)) {
1082 res = link_send_buf_fast(l_ptr, buf,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001083 &sender->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001084exit:
Per Liden4323add2006-01-18 00:38:21 +01001085 tipc_node_unlock(node);
1086 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001087 return res;
1088 }
1089
1090 /* Exit if build request was invalid */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001091 if (unlikely(res < 0))
1092 goto exit;
1093
1094 /* Exit if link (or bearer) is congested */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001095 if (link_congested(l_ptr) ||
Ying Xue3c294cb2012-11-15 11:34:45 +08001096 tipc_bearer_blocked(l_ptr->b_ptr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001097 res = link_schedule_port(l_ptr,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001098 sender->ref, res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001099 goto exit;
1100 }
1101
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001102 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001103 * Message size exceeds max_pkt hint; update hint,
1104 * then re-try fast path or fragment the message
1105 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001106 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001107 tipc_node_unlock(node);
1108 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001109
1110
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001111 if ((msg_hdr_sz(hdr) + res) <= sender->max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001112 goto again;
1113
1114 return link_send_sections_long(sender, msg_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001115 num_sect, total_len,
1116 destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001117 }
Per Liden4323add2006-01-18 00:38:21 +01001118 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001119 }
Per Liden4323add2006-01-18 00:38:21 +01001120 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001121
1122 /* Couldn't find a link to the destination node */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001123 if (buf)
1124 return tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1125 if (res >= 0)
Per Liden4323add2006-01-18 00:38:21 +01001126 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001127 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001128 return res;
1129}
1130
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001131/*
1132 * link_send_sections_long(): Entry for long messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001133 * destination node is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001134 * inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001135 * Link and bearer congestion status have been checked to be ok,
1136 * and are ignored if they change.
1137 *
1138 * Note that fragments do not use the full link MTU so that they won't have
1139 * to undergo refragmentation if link changeover causes them to be sent
1140 * over another link with an additional tunnel header added as prefix.
1141 * (Refragmentation will still occur if the other link has a smaller MTU.)
1142 *
1143 * Returns user data length or errno.
1144 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001145static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001146 struct iovec const *msg_sect,
1147 u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001148 unsigned int total_len,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001149 u32 destaddr)
1150{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001151 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001152 struct tipc_node *node;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001153 struct tipc_msg *hdr = &sender->phdr;
Allan Stephens26896902011-04-21 10:42:07 -05001154 u32 dsz = total_len;
Allan Stephens0e659672010-12-31 18:59:32 +00001155 u32 max_pkt, fragm_sz, rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001156 struct tipc_msg fragm_hdr;
Allan Stephens0e659672010-12-31 18:59:32 +00001157 struct sk_buff *buf, *buf_chain, *prev;
1158 u32 fragm_crs, fragm_rest, hsz, sect_rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001159 const unchar *sect_crs;
1160 int curr_sect;
1161 u32 fragm_no;
1162
1163again:
1164 fragm_no = 1;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001165 max_pkt = sender->max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001166 /* leave room for tunnel header in case of link changeover */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001167 fragm_sz = max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001168 /* leave room for fragmentation header in each fragment */
1169 rest = dsz;
1170 fragm_crs = 0;
1171 fragm_rest = 0;
1172 sect_rest = 0;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001173 sect_crs = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001174 curr_sect = -1;
1175
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001176 /* Prepare reusable fragment header */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001177 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07001178 INT_H_SIZE, msg_destnode(hdr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001179 msg_set_size(&fragm_hdr, max_pkt);
1180 msg_set_fragm_no(&fragm_hdr, 1);
1181
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001182 /* Prepare header of first fragment */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001183 buf_chain = buf = tipc_buf_acquire(max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001184 if (!buf)
1185 return -ENOMEM;
1186 buf->next = NULL;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001187 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001188 hsz = msg_hdr_sz(hdr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001189 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, hdr, hsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001190
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001191 /* Chop up message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001192 fragm_crs = INT_H_SIZE + hsz;
1193 fragm_rest = fragm_sz - hsz;
1194
1195 do { /* For all sections */
1196 u32 sz;
1197
1198 if (!sect_rest) {
1199 sect_rest = msg_sect[++curr_sect].iov_len;
1200 sect_crs = (const unchar *)msg_sect[curr_sect].iov_base;
1201 }
1202
1203 if (sect_rest < fragm_rest)
1204 sz = sect_rest;
1205 else
1206 sz = fragm_rest;
1207
1208 if (likely(!sender->user_port)) {
1209 if (copy_from_user(buf->data + fragm_crs, sect_crs, sz)) {
1210error:
1211 for (; buf_chain; buf_chain = buf) {
1212 buf = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001213 kfree_skb(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001214 }
1215 return -EFAULT;
1216 }
1217 } else
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001218 skb_copy_to_linear_data_offset(buf, fragm_crs,
1219 sect_crs, sz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001220 sect_crs += sz;
1221 sect_rest -= sz;
1222 fragm_crs += sz;
1223 fragm_rest -= sz;
1224 rest -= sz;
1225
1226 if (!fragm_rest && rest) {
1227
1228 /* Initiate new fragment: */
1229 if (rest <= fragm_sz) {
1230 fragm_sz = rest;
Allan Stephens0e659672010-12-31 18:59:32 +00001231 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001232 } else {
1233 msg_set_type(&fragm_hdr, FRAGMENT);
1234 }
1235 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
1236 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
1237 prev = buf;
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001238 buf = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001239 if (!buf)
1240 goto error;
1241
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001242 buf->next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001243 prev->next = buf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001244 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001245 fragm_crs = INT_H_SIZE;
1246 fragm_rest = fragm_sz;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001247 }
Allan Stephens0e659672010-12-31 18:59:32 +00001248 } while (rest > 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001249
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001250 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001251 * Now we have a buffer chain. Select a link and check
1252 * that packet size is still OK
1253 */
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001254 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001255 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001256 tipc_node_lock(node);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001257 l_ptr = node->active_links[sender->ref & 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001258 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01001259 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001260 goto reject;
1261 }
Allan Stephens15e979d2010-05-11 14:30:10 +00001262 if (l_ptr->max_pkt < max_pkt) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001263 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001264 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001265 for (; buf_chain; buf_chain = buf) {
1266 buf = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001267 kfree_skb(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001268 }
1269 goto again;
1270 }
1271 } else {
1272reject:
1273 for (; buf_chain; buf_chain = buf) {
1274 buf = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001275 kfree_skb(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001276 }
Per Liden4323add2006-01-18 00:38:21 +01001277 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001278 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001279 }
1280
Allan Stephensdc63d912011-04-21 11:50:42 -04001281 /* Append chain of fragments to send queue & send them */
Allan Stephense0f08592011-04-17 11:44:24 -04001282 l_ptr->long_msg_seq_no++;
Allan Stephensdc63d912011-04-21 11:50:42 -04001283 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
1284 l_ptr->stats.sent_fragments += fragm_no;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001285 l_ptr->stats.sent_fragmented++;
Per Liden4323add2006-01-18 00:38:21 +01001286 tipc_link_push_queue(l_ptr);
1287 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001288 return dsz;
1289}
1290
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001291/*
Per Liden4323add2006-01-18 00:38:21 +01001292 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +01001293 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001294u32 tipc_link_push_packet(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001295{
1296 struct sk_buff *buf = l_ptr->first_out;
1297 u32 r_q_size = l_ptr->retransm_queue_size;
1298 u32 r_q_head = l_ptr->retransm_queue_head;
1299
1300 /* Step to position where retransmission failed, if any, */
1301 /* consider that buffers may have been released in meantime */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001302 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001303 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +01001304 link_last_sent(l_ptr));
Allan Stephensf9057302011-10-24 16:03:12 -04001305 u32 first = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001306
1307 while (buf && less(first, r_q_head)) {
1308 first = mod(first + 1);
1309 buf = buf->next;
1310 }
1311 l_ptr->retransm_queue_head = r_q_head = first;
1312 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1313 }
1314
1315 /* Continue retransmission now, if there is anything: */
Neil Hormanca509102010-03-15 07:58:45 +00001316 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001317 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001318 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001319 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1320 l_ptr->retransm_queue_head = mod(++r_q_head);
1321 l_ptr->retransm_queue_size = --r_q_size;
1322 l_ptr->stats.retransmitted++;
1323 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001324 }
1325
1326 /* Send deferred protocol message, if any: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001327 buf = l_ptr->proto_msg_queue;
1328 if (buf) {
1329 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +00001330 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001331 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1332 l_ptr->unacked_window = 0;
1333 kfree_skb(buf);
1334 l_ptr->proto_msg_queue = NULL;
1335 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001336 }
1337
1338 /* Send one deferred data message, if send window not full: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001339 buf = l_ptr->next_out;
1340 if (buf) {
1341 struct tipc_msg *msg = buf_msg(buf);
1342 u32 next = msg_seqno(msg);
Allan Stephensf9057302011-10-24 16:03:12 -04001343 u32 first = buf_seqno(l_ptr->first_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001344
1345 if (mod(next - first) < l_ptr->queue_limit[0]) {
1346 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001347 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001348 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1349 if (msg_user(msg) == MSG_BUNDLER)
1350 msg_set_type(msg, CLOSED_MSG);
1351 l_ptr->next_out = buf->next;
1352 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001353 }
1354 }
Ying Xue3c294cb2012-11-15 11:34:45 +08001355 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001356}
1357
1358/*
1359 * push_queue(): push out the unsent messages of a link where
1360 * congestion has abated. Node is locked
1361 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001362void tipc_link_push_queue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001363{
1364 u32 res;
1365
Ying Xue3c294cb2012-11-15 11:34:45 +08001366 if (tipc_bearer_blocked(l_ptr->b_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001367 return;
1368
1369 do {
Per Liden4323add2006-01-18 00:38:21 +01001370 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001371 } while (!res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001372}
1373
Allan Stephensd356eeb2006-06-25 23:40:01 -07001374static void link_reset_all(unsigned long addr)
1375{
David S. Miller6c000552008-09-02 23:38:32 -07001376 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001377 char addr_string[16];
1378 u32 i;
1379
1380 read_lock_bh(&tipc_net_lock);
1381 n_ptr = tipc_node_find((u32)addr);
1382 if (!n_ptr) {
1383 read_unlock_bh(&tipc_net_lock);
1384 return; /* node no longer exists */
1385 }
1386
1387 tipc_node_lock(n_ptr);
1388
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001389 pr_warn("Resetting all links to %s\n",
1390 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -07001391
1392 for (i = 0; i < MAX_BEARERS; i++) {
1393 if (n_ptr->links[i]) {
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001394 link_print(n_ptr->links[i], "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001395 tipc_link_reset(n_ptr->links[i]);
1396 }
1397 }
1398
1399 tipc_node_unlock(n_ptr);
1400 read_unlock_bh(&tipc_net_lock);
1401}
1402
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001403static void link_retransmit_failure(struct tipc_link *l_ptr,
1404 struct sk_buff *buf)
Allan Stephensd356eeb2006-06-25 23:40:01 -07001405{
1406 struct tipc_msg *msg = buf_msg(buf);
1407
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001408 pr_warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001409
1410 if (l_ptr->addr) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001411 /* Handle failure on standard link */
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001412 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001413 tipc_link_reset(l_ptr);
1414
1415 } else {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001416 /* Handle failure on broadcast link */
David S. Miller6c000552008-09-02 23:38:32 -07001417 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001418 char addr_string[16];
1419
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001420 pr_info("Msg seq number: %u, ", msg_seqno(msg));
1421 pr_cont("Outstanding acks: %lu\n",
1422 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -07001423
Allan Stephens01d83ed2011-01-18 13:53:16 -05001424 n_ptr = tipc_bclink_retransmit_to();
Allan Stephensd356eeb2006-06-25 23:40:01 -07001425 tipc_node_lock(n_ptr);
1426
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001427 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001428 pr_info("Broadcast link info for %s\n", addr_string);
1429 pr_info("Supportable: %d, Supported: %d, Acked: %u\n",
1430 n_ptr->bclink.supportable,
1431 n_ptr->bclink.supported,
1432 n_ptr->bclink.acked);
1433 pr_info("Last in: %u, Oos state: %u, Last sent: %u\n",
1434 n_ptr->bclink.last_in,
1435 n_ptr->bclink.oos_state,
1436 n_ptr->bclink.last_sent);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001437
1438 tipc_k_signal((Handler)link_reset_all, (unsigned long)n_ptr->addr);
1439
1440 tipc_node_unlock(n_ptr);
1441
1442 l_ptr->stale_count = 0;
1443 }
1444}
1445
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001446void tipc_link_retransmit(struct tipc_link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001447 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001448{
1449 struct tipc_msg *msg;
1450
Allan Stephensd356eeb2006-06-25 23:40:01 -07001451 if (!buf)
1452 return;
1453
1454 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001455
Ying Xue3c294cb2012-11-15 11:34:45 +08001456 if (tipc_bearer_blocked(l_ptr->b_ptr)) {
Neil Hormanca509102010-03-15 07:58:45 +00001457 if (l_ptr->retransm_queue_size == 0) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001458 l_ptr->retransm_queue_head = msg_seqno(msg);
1459 l_ptr->retransm_queue_size = retransmits;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001460 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001461 pr_err("Unexpected retransmit on link %s (qsize=%d)\n",
1462 l_ptr->name, l_ptr->retransm_queue_size);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001463 }
Neil Hormanca509102010-03-15 07:58:45 +00001464 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001465 } else {
Ying Xue3c294cb2012-11-15 11:34:45 +08001466 /* Detect repeated retransmit failures on unblocked bearer */
Allan Stephensd356eeb2006-06-25 23:40:01 -07001467 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1468 if (++l_ptr->stale_count > 100) {
1469 link_retransmit_failure(l_ptr, buf);
1470 return;
1471 }
1472 } else {
1473 l_ptr->last_retransmitted = msg_seqno(msg);
1474 l_ptr->stale_count = 1;
1475 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001476 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001477
Neil Hormanca509102010-03-15 07:58:45 +00001478 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001479 msg = buf_msg(buf);
1480 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001481 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001482 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1483 buf = buf->next;
1484 retransmits--;
1485 l_ptr->stats.retransmitted++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001486 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001487
Per Lidenb97bf3f2006-01-02 19:04:38 +01001488 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1489}
1490
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001491/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001492 * link_insert_deferred_queue - insert deferred messages back into receive chain
1493 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001494static struct sk_buff *link_insert_deferred_queue(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001495 struct sk_buff *buf)
1496{
1497 u32 seq_no;
1498
1499 if (l_ptr->oldest_deferred_in == NULL)
1500 return buf;
1501
Allan Stephensf9057302011-10-24 16:03:12 -04001502 seq_no = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001503 if (seq_no == mod(l_ptr->next_in_no)) {
1504 l_ptr->newest_deferred_in->next = buf;
1505 buf = l_ptr->oldest_deferred_in;
1506 l_ptr->oldest_deferred_in = NULL;
1507 l_ptr->deferred_inqueue_sz = 0;
1508 }
1509 return buf;
1510}
1511
Allan Stephens85035562008-04-15 19:04:54 -07001512/**
1513 * link_recv_buf_validate - validate basic format of received message
1514 *
1515 * This routine ensures a TIPC message has an acceptable header, and at least
1516 * as much data as the header indicates it should. The routine also ensures
1517 * that the entire message header is stored in the main fragment of the message
1518 * buffer, to simplify future access to message header fields.
1519 *
1520 * Note: Having extra info present in the message header or data areas is OK.
1521 * TIPC will ignore the excess, under the assumption that it is optional info
1522 * introduced by a later release of the protocol.
1523 */
Allan Stephens85035562008-04-15 19:04:54 -07001524static int link_recv_buf_validate(struct sk_buff *buf)
1525{
1526 static u32 min_data_hdr_size[8] = {
Allan Stephens741d9eb2011-05-31 15:03:18 -04001527 SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,
Allan Stephens85035562008-04-15 19:04:54 -07001528 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1529 };
1530
1531 struct tipc_msg *msg;
1532 u32 tipc_hdr[2];
1533 u32 size;
1534 u32 hdr_size;
1535 u32 min_hdr_size;
1536
1537 if (unlikely(buf->len < MIN_H_SIZE))
1538 return 0;
1539
1540 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1541 if (msg == NULL)
1542 return 0;
1543
1544 if (unlikely(msg_version(msg) != TIPC_VERSION))
1545 return 0;
1546
1547 size = msg_size(msg);
1548 hdr_size = msg_hdr_sz(msg);
1549 min_hdr_size = msg_isdata(msg) ?
1550 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1551
1552 if (unlikely((hdr_size < min_hdr_size) ||
1553 (size < hdr_size) ||
1554 (buf->len < size) ||
1555 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1556 return 0;
1557
1558 return pskb_may_pull(buf, hdr_size);
1559}
1560
Allan Stephensb02b69c2010-08-17 11:00:07 +00001561/**
1562 * tipc_recv_msg - process TIPC messages arriving from off-node
1563 * @head: pointer to message buffer chain
1564 * @tb_ptr: pointer to bearer message arrived on
1565 *
1566 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1567 * structure (i.e. cannot be NULL), but bearer can be inactive.
1568 */
Allan Stephens2d627b92011-01-07 13:00:11 -05001569void tipc_recv_msg(struct sk_buff *head, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001570{
Per Liden4323add2006-01-18 00:38:21 +01001571 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001572 while (head) {
David S. Miller6c000552008-09-02 23:38:32 -07001573 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001574 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001575 struct sk_buff *crs;
1576 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001577 struct tipc_msg *msg;
1578 u32 seq_no;
1579 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001580 u32 released = 0;
1581 int type;
1582
Per Lidenb97bf3f2006-01-02 19:04:38 +01001583 head = head->next;
Allan Stephens85035562008-04-15 19:04:54 -07001584
Allan Stephensb02b69c2010-08-17 11:00:07 +00001585 /* Ensure bearer is still enabled */
Allan Stephensb02b69c2010-08-17 11:00:07 +00001586 if (unlikely(!b_ptr->active))
1587 goto cont;
1588
Allan Stephens85035562008-04-15 19:04:54 -07001589 /* Ensure message is well-formed */
Allan Stephens85035562008-04-15 19:04:54 -07001590 if (unlikely(!link_recv_buf_validate(buf)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001591 goto cont;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001592
Allan Stephensfe13dda2008-04-15 19:03:23 -07001593 /* Ensure message data is a single contiguous unit */
Allan Stephens5f6d9122011-11-04 13:24:29 -04001594 if (unlikely(skb_linearize(buf)))
Allan Stephensfe13dda2008-04-15 19:03:23 -07001595 goto cont;
Allan Stephensfe13dda2008-04-15 19:03:23 -07001596
Allan Stephens85035562008-04-15 19:04:54 -07001597 /* Handle arrival of a non-unicast link message */
Allan Stephens85035562008-04-15 19:04:54 -07001598 msg = buf_msg(buf);
1599
Per Lidenb97bf3f2006-01-02 19:04:38 +01001600 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001601 if (msg_user(msg) == LINK_CONFIG)
1602 tipc_disc_recv_msg(buf, b_ptr);
1603 else
1604 tipc_bclink_recv_pkt(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001605 continue;
1606 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001607
Allan Stephensed33a9c2011-04-05 15:15:04 -04001608 /* Discard unicast link messages destined for another node */
Allan Stephens26008242006-06-25 23:39:31 -07001609 if (unlikely(!msg_short(msg) &&
1610 (msg_destnode(msg) != tipc_own_addr)))
1611 goto cont;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001612
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001613 /* Locate neighboring node that sent message */
Per Liden4323add2006-01-18 00:38:21 +01001614 n_ptr = tipc_node_find(msg_prevnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001615 if (unlikely(!n_ptr))
1616 goto cont;
Per Liden4323add2006-01-18 00:38:21 +01001617 tipc_node_lock(n_ptr);
Allan Stephens85035562008-04-15 19:04:54 -07001618
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001619 /* Locate unicast link endpoint that should handle message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001620 l_ptr = n_ptr->links[b_ptr->identity];
1621 if (unlikely(!l_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001622 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001623 goto cont;
1624 }
Allan Stephens85035562008-04-15 19:04:54 -07001625
Allan Stephensb4b56102011-05-27 11:00:51 -04001626 /* Verify that communication with node is currently allowed */
Allan Stephensb4b56102011-05-27 11:00:51 -04001627 if ((n_ptr->block_setup & WAIT_PEER_DOWN) &&
1628 msg_user(msg) == LINK_PROTOCOL &&
1629 (msg_type(msg) == RESET_MSG ||
1630 msg_type(msg) == ACTIVATE_MSG) &&
1631 !msg_redundant_link(msg))
1632 n_ptr->block_setup &= ~WAIT_PEER_DOWN;
1633
1634 if (n_ptr->block_setup) {
1635 tipc_node_unlock(n_ptr);
1636 goto cont;
1637 }
1638
Allan Stephens85035562008-04-15 19:04:54 -07001639 /* Validate message sequence number info */
Allan Stephens85035562008-04-15 19:04:54 -07001640 seq_no = msg_seqno(msg);
1641 ackd = msg_ack(msg);
1642
1643 /* Release acked messages */
Allan Stephens93499312011-10-25 15:14:46 -04001644 if (n_ptr->bclink.supported)
Allan Stephens365595912011-10-24 15:26:24 -04001645 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001646
1647 crs = l_ptr->first_out;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001648 while ((crs != l_ptr->next_out) &&
Allan Stephensf9057302011-10-24 16:03:12 -04001649 less_eq(buf_seqno(crs), ackd)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001650 struct sk_buff *next = crs->next;
1651
Allan Stephens5f6d9122011-11-04 13:24:29 -04001652 kfree_skb(crs);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001653 crs = next;
1654 released++;
1655 }
1656 if (released) {
1657 l_ptr->first_out = crs;
1658 l_ptr->out_queue_size -= released;
1659 }
Allan Stephens85035562008-04-15 19:04:54 -07001660
1661 /* Try sending any messages link endpoint has pending */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001662 if (unlikely(l_ptr->next_out))
Per Liden4323add2006-01-18 00:38:21 +01001663 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001664 if (unlikely(!list_empty(&l_ptr->waiting_ports)))
Per Liden4323add2006-01-18 00:38:21 +01001665 tipc_link_wakeup_ports(l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001666 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1667 l_ptr->stats.sent_acks++;
Per Liden4323add2006-01-18 00:38:21 +01001668 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001669 }
1670
Allan Stephens85035562008-04-15 19:04:54 -07001671 /* Now (finally!) process the incoming message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001672protocol_check:
1673 if (likely(link_working_working(l_ptr))) {
1674 if (likely(seq_no == mod(l_ptr->next_in_no))) {
1675 l_ptr->next_in_no++;
1676 if (unlikely(l_ptr->oldest_deferred_in))
1677 head = link_insert_deferred_queue(l_ptr,
1678 head);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001679deliver:
Allan Stephensc74a4612011-11-02 15:08:44 -04001680 if (likely(msg_isdata(msg))) {
1681 tipc_node_unlock(n_ptr);
1682 tipc_port_recv_msg(buf);
1683 continue;
1684 }
1685 switch (msg_user(msg)) {
1686 int ret;
1687 case MSG_BUNDLER:
1688 l_ptr->stats.recv_bundles++;
1689 l_ptr->stats.recv_bundled +=
1690 msg_msgcnt(msg);
1691 tipc_node_unlock(n_ptr);
1692 tipc_link_recv_bundle(buf);
1693 continue;
1694 case NAME_DISTRIBUTOR:
1695 tipc_node_unlock(n_ptr);
1696 tipc_named_recv(buf);
1697 continue;
1698 case CONN_MANAGER:
1699 tipc_node_unlock(n_ptr);
1700 tipc_port_recv_proto_msg(buf);
1701 continue;
1702 case MSG_FRAGMENTER:
1703 l_ptr->stats.recv_fragments++;
1704 ret = tipc_link_recv_fragment(
1705 &l_ptr->defragm_buf,
1706 &buf, &msg);
1707 if (ret == 1) {
1708 l_ptr->stats.recv_fragmented++;
1709 goto deliver;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001710 }
Allan Stephensc74a4612011-11-02 15:08:44 -04001711 if (ret == -1)
1712 l_ptr->next_in_no--;
1713 break;
1714 case CHANGEOVER_PROTOCOL:
1715 type = msg_type(msg);
1716 if (link_recv_changeover_msg(&l_ptr,
1717 &buf)) {
1718 msg = buf_msg(buf);
1719 seq_no = msg_seqno(msg);
1720 if (type == ORIGINAL_MSG)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001721 goto deliver;
Allan Stephensc74a4612011-11-02 15:08:44 -04001722 goto protocol_check;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001723 }
Allan Stephensc74a4612011-11-02 15:08:44 -04001724 break;
1725 default:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001726 kfree_skb(buf);
Allan Stephensc74a4612011-11-02 15:08:44 -04001727 buf = NULL;
1728 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001729 }
Per Liden4323add2006-01-18 00:38:21 +01001730 tipc_node_unlock(n_ptr);
1731 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001732 continue;
1733 }
1734 link_handle_out_of_seq_msg(l_ptr, buf);
1735 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001736 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001737 continue;
1738 }
1739
1740 if (msg_user(msg) == LINK_PROTOCOL) {
1741 link_recv_proto_msg(l_ptr, buf);
1742 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001743 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001744 continue;
1745 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001746 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1747
1748 if (link_working_working(l_ptr)) {
1749 /* Re-insert in front of queue */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001750 buf->next = head;
1751 head = buf;
Per Liden4323add2006-01-18 00:38:21 +01001752 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001753 continue;
1754 }
Per Liden4323add2006-01-18 00:38:21 +01001755 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001756cont:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001757 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001758 }
Per Liden4323add2006-01-18 00:38:21 +01001759 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001760}
1761
Ben Hutchings2c530402012-07-10 10:55:09 +00001762/**
Allan Stephens8809b252011-10-25 10:44:35 -04001763 * tipc_link_defer_pkt - Add out-of-sequence message to deferred reception queue
1764 *
1765 * Returns increase in queue length (i.e. 0 or 1)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001766 */
Allan Stephens8809b252011-10-25 10:44:35 -04001767u32 tipc_link_defer_pkt(struct sk_buff **head, struct sk_buff **tail,
Per Liden4323add2006-01-18 00:38:21 +01001768 struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001769{
Allan Stephens8809b252011-10-25 10:44:35 -04001770 struct sk_buff *queue_buf;
1771 struct sk_buff **prev;
Allan Stephensf9057302011-10-24 16:03:12 -04001772 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001773
1774 buf->next = NULL;
1775
1776 /* Empty queue ? */
1777 if (*head == NULL) {
1778 *head = *tail = buf;
1779 return 1;
1780 }
1781
1782 /* Last ? */
Allan Stephensf9057302011-10-24 16:03:12 -04001783 if (less(buf_seqno(*tail), seq_no)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001784 (*tail)->next = buf;
1785 *tail = buf;
1786 return 1;
1787 }
1788
Allan Stephens8809b252011-10-25 10:44:35 -04001789 /* Locate insertion point in queue, then insert; discard if duplicate */
1790 prev = head;
1791 queue_buf = *head;
1792 for (;;) {
1793 u32 curr_seqno = buf_seqno(queue_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001794
Allan Stephens8809b252011-10-25 10:44:35 -04001795 if (seq_no == curr_seqno) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001796 kfree_skb(buf);
Allan Stephens8809b252011-10-25 10:44:35 -04001797 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001798 }
Allan Stephens8809b252011-10-25 10:44:35 -04001799
1800 if (less(seq_no, curr_seqno))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001801 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001802
Allan Stephens8809b252011-10-25 10:44:35 -04001803 prev = &queue_buf->next;
1804 queue_buf = queue_buf->next;
1805 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001806
Allan Stephens8809b252011-10-25 10:44:35 -04001807 buf->next = queue_buf;
1808 *prev = buf;
1809 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001810}
1811
Allan Stephens8809b252011-10-25 10:44:35 -04001812/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001813 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1814 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001815static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001816 struct sk_buff *buf)
1817{
Allan Stephensf9057302011-10-24 16:03:12 -04001818 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001819
1820 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
1821 link_recv_proto_msg(l_ptr, buf);
1822 return;
1823 }
1824
Per Lidenb97bf3f2006-01-02 19:04:38 +01001825 /* Record OOS packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001826 l_ptr->checkpoint--;
1827
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001828 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001829 * Discard packet if a duplicate; otherwise add it to deferred queue
1830 * and notify peer of gap as per protocol specification
1831 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001832 if (less(seq_no, mod(l_ptr->next_in_no))) {
1833 l_ptr->stats.duplicates++;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001834 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001835 return;
1836 }
1837
Per Liden4323add2006-01-18 00:38:21 +01001838 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1839 &l_ptr->newest_deferred_in, buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001840 l_ptr->deferred_inqueue_sz++;
1841 l_ptr->stats.deferred_recv++;
1842 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
Per Liden4323add2006-01-18 00:38:21 +01001843 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001844 } else
1845 l_ptr->stats.duplicates++;
1846}
1847
1848/*
1849 * Send protocol message to the other endpoint.
1850 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001851void tipc_link_send_proto_msg(struct tipc_link *l_ptr, u32 msg_typ,
1852 int probe_msg, u32 gap, u32 tolerance,
1853 u32 priority, u32 ack_mtu)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001854{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001855 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001856 struct tipc_msg *msg = l_ptr->pmsg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001857 u32 msg_size = sizeof(l_ptr->proto_msg);
Allan Stephens75f0aa42011-02-28 15:30:20 -05001858 int r_flag;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001859
Allan Stephens92d2c902011-10-25 11:20:26 -04001860 /* Discard any previous message that was deferred due to congestion */
Allan Stephens92d2c902011-10-25 11:20:26 -04001861 if (l_ptr->proto_msg_queue) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001862 kfree_skb(l_ptr->proto_msg_queue);
Allan Stephens92d2c902011-10-25 11:20:26 -04001863 l_ptr->proto_msg_queue = NULL;
1864 }
1865
Per Lidenb97bf3f2006-01-02 19:04:38 +01001866 if (link_blocked(l_ptr))
1867 return;
Allan Stephensb4b56102011-05-27 11:00:51 -04001868
1869 /* Abort non-RESET send if communication with node is prohibited */
Allan Stephensb4b56102011-05-27 11:00:51 -04001870 if ((l_ptr->owner->block_setup) && (msg_typ != RESET_MSG))
1871 return;
1872
Allan Stephens92d2c902011-10-25 11:20:26 -04001873 /* Create protocol message with "out-of-sequence" sequence number */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001874 msg_set_type(msg, msg_typ);
1875 msg_set_net_plane(msg, l_ptr->b_ptr->net_plane);
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001876 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001877 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
Per Lidenb97bf3f2006-01-02 19:04:38 +01001878
1879 if (msg_typ == STATE_MSG) {
1880 u32 next_sent = mod(l_ptr->next_out_no);
1881
Per Liden4323add2006-01-18 00:38:21 +01001882 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001883 return;
1884 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -04001885 next_sent = buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001886 msg_set_next_sent(msg, next_sent);
1887 if (l_ptr->oldest_deferred_in) {
Allan Stephensf9057302011-10-24 16:03:12 -04001888 u32 rec = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001889 gap = mod(rec - mod(l_ptr->next_in_no));
1890 }
1891 msg_set_seq_gap(msg, gap);
1892 if (gap)
1893 l_ptr->stats.sent_nacks++;
1894 msg_set_link_tolerance(msg, tolerance);
1895 msg_set_linkprio(msg, priority);
1896 msg_set_max_pkt(msg, ack_mtu);
1897 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1898 msg_set_probe(msg, probe_msg != 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001899 if (probe_msg) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001900 u32 mtu = l_ptr->max_pkt;
1901
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001902 if ((mtu < l_ptr->max_pkt_target) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001903 link_working_working(l_ptr) &&
1904 l_ptr->fsm_msg_cnt) {
1905 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001906 if (l_ptr->max_pkt_probes == 10) {
1907 l_ptr->max_pkt_target = (msg_size - 4);
1908 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001909 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001910 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001911 l_ptr->max_pkt_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001912 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001913
1914 l_ptr->stats.sent_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001915 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001916 l_ptr->stats.sent_states++;
1917 } else { /* RESET_MSG or ACTIVATE_MSG */
1918 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
1919 msg_set_seq_gap(msg, 0);
1920 msg_set_next_sent(msg, 1);
Allan Stephensf23d9bf2011-01-18 15:15:34 -05001921 msg_set_probe(msg, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001922 msg_set_link_tolerance(msg, l_ptr->tolerance);
1923 msg_set_linkprio(msg, l_ptr->priority);
1924 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
1925 }
1926
Allan Stephens75f0aa42011-02-28 15:30:20 -05001927 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
1928 msg_set_redundant_link(msg, r_flag);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001929 msg_set_linkprio(msg, l_ptr->priority);
Allan Stephens92d2c902011-10-25 11:20:26 -04001930 msg_set_size(msg, msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001931
1932 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
1933
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001934 buf = tipc_buf_acquire(msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001935 if (!buf)
1936 return;
1937
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001938 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001939
Ying Xue3c294cb2012-11-15 11:34:45 +08001940 /* Defer message if bearer is already blocked */
1941 if (tipc_bearer_blocked(l_ptr->b_ptr)) {
Allan Stephens92d2c902011-10-25 11:20:26 -04001942 l_ptr->proto_msg_queue = buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001943 return;
1944 }
1945
Ying Xue3c294cb2012-11-15 11:34:45 +08001946 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
Allan Stephens92d2c902011-10-25 11:20:26 -04001947 l_ptr->unacked_window = 0;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001948 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001949}
1950
1951/*
1952 * Receive protocol message :
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001953 * Note that network plane id propagates through the network, and may
1954 * change at any time. The node with lowest address rules
Per Lidenb97bf3f2006-01-02 19:04:38 +01001955 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001956static void link_recv_proto_msg(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001957{
1958 u32 rec_gap = 0;
1959 u32 max_pkt_info;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001960 u32 max_pkt_ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001961 u32 msg_tol;
1962 struct tipc_msg *msg = buf_msg(buf);
1963
Per Lidenb97bf3f2006-01-02 19:04:38 +01001964 if (link_blocked(l_ptr))
1965 goto exit;
1966
1967 /* record unnumbered packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001968 l_ptr->checkpoint--;
1969
1970 if (l_ptr->b_ptr->net_plane != msg_net_plane(msg))
1971 if (tipc_own_addr > msg_prevnode(msg))
1972 l_ptr->b_ptr->net_plane = msg_net_plane(msg);
1973
1974 l_ptr->owner->permit_changeover = msg_redundant_link(msg);
1975
1976 switch (msg_type(msg)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001977
Per Lidenb97bf3f2006-01-02 19:04:38 +01001978 case RESET_MSG:
Allan Stephensa686e682008-06-04 17:29:39 -07001979 if (!link_working_unknown(l_ptr) &&
1980 (l_ptr->peer_session != INVALID_SESSION)) {
Allan Stephens641c2182011-04-07 09:54:43 -04001981 if (less_eq(msg_session(msg), l_ptr->peer_session))
1982 break; /* duplicate or old reset: ignore */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001983 }
Allan Stephensb4b56102011-05-27 11:00:51 -04001984
1985 if (!msg_redundant_link(msg) && (link_working_working(l_ptr) ||
1986 link_working_unknown(l_ptr))) {
1987 /*
1988 * peer has lost contact -- don't allow peer's links
1989 * to reactivate before we recognize loss & clean up
1990 */
1991 l_ptr->owner->block_setup = WAIT_NODE_DOWN;
1992 }
1993
Allan Stephens47361c82011-10-26 10:55:16 -04001994 link_state_event(l_ptr, RESET_MSG);
1995
Per Lidenb97bf3f2006-01-02 19:04:38 +01001996 /* fall thru' */
1997 case ACTIVATE_MSG:
1998 /* Update link settings according other endpoint's values */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001999 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
2000
Allan Stephens2db99832010-12-31 18:59:33 +00002001 msg_tol = msg_link_tolerance(msg);
2002 if (msg_tol > l_ptr->tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002003 link_set_supervision_props(l_ptr, msg_tol);
2004
2005 if (msg_linkprio(msg) > l_ptr->priority)
2006 l_ptr->priority = msg_linkprio(msg);
2007
2008 max_pkt_info = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002009 if (max_pkt_info) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002010 if (max_pkt_info < l_ptr->max_pkt_target)
2011 l_ptr->max_pkt_target = max_pkt_info;
2012 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
2013 l_ptr->max_pkt = l_ptr->max_pkt_target;
2014 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002015 l_ptr->max_pkt = l_ptr->max_pkt_target;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002016 }
Allan Stephens93499312011-10-25 15:14:46 -04002017 l_ptr->owner->bclink.supportable = (max_pkt_info != 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002018
Allan Stephens4d753132011-10-25 12:19:05 -04002019 /* Synchronize broadcast link info, if not done previously */
Allan Stephens7a54d4a2011-10-27 14:17:53 -04002020 if (!tipc_node_is_up(l_ptr->owner)) {
2021 l_ptr->owner->bclink.last_sent =
2022 l_ptr->owner->bclink.last_in =
2023 msg_last_bcast(msg);
2024 l_ptr->owner->bclink.oos_state = 0;
2025 }
Allan Stephens4d753132011-10-25 12:19:05 -04002026
Per Lidenb97bf3f2006-01-02 19:04:38 +01002027 l_ptr->peer_session = msg_session(msg);
2028 l_ptr->peer_bearer_id = msg_bearer_id(msg);
Allan Stephens47361c82011-10-26 10:55:16 -04002029
2030 if (msg_type(msg) == ACTIVATE_MSG)
2031 link_state_event(l_ptr, ACTIVATE_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002032 break;
2033 case STATE_MSG:
2034
Allan Stephens2db99832010-12-31 18:59:33 +00002035 msg_tol = msg_link_tolerance(msg);
2036 if (msg_tol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002037 link_set_supervision_props(l_ptr, msg_tol);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002038
2039 if (msg_linkprio(msg) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002040 (msg_linkprio(msg) != l_ptr->priority)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002041 pr_warn("%s<%s>, priority change %u->%u\n",
2042 link_rst_msg, l_ptr->name, l_ptr->priority,
2043 msg_linkprio(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002044 l_ptr->priority = msg_linkprio(msg);
Per Liden4323add2006-01-18 00:38:21 +01002045 tipc_link_reset(l_ptr); /* Enforce change to take effect */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002046 break;
2047 }
2048 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
2049 l_ptr->stats.recv_states++;
2050 if (link_reset_unknown(l_ptr))
2051 break;
2052
2053 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002054 rec_gap = mod(msg_next_sent(msg) -
Per Lidenb97bf3f2006-01-02 19:04:38 +01002055 mod(l_ptr->next_in_no));
2056 }
2057
2058 max_pkt_ack = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002059 if (max_pkt_ack > l_ptr->max_pkt) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002060 l_ptr->max_pkt = max_pkt_ack;
2061 l_ptr->max_pkt_probes = 0;
2062 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002063
2064 max_pkt_ack = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002065 if (msg_probe(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002066 l_ptr->stats.recv_probes++;
Allan Stephensa0168922010-12-31 18:59:35 +00002067 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002068 max_pkt_ack = msg_size(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002069 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002070
2071 /* Protocol message before retransmits, reduce loss risk */
Allan Stephens7a54d4a2011-10-27 14:17:53 -04002072 if (l_ptr->owner->bclink.supported)
2073 tipc_bclink_update_link_state(l_ptr->owner,
2074 msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002075
2076 if (rec_gap || (msg_probe(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01002077 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
2078 0, rec_gap, 0, 0, max_pkt_ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002079 }
2080 if (msg_seq_gap(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002081 l_ptr->stats.recv_nacks++;
Per Liden4323add2006-01-18 00:38:21 +01002082 tipc_link_retransmit(l_ptr, l_ptr->first_out,
2083 msg_seq_gap(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002084 }
2085 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002086 }
2087exit:
Allan Stephens5f6d9122011-11-04 13:24:29 -04002088 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002089}
2090
2091
2092/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002093 * tipc_link_tunnel(): Send one message via a link belonging to
Per Lidenb97bf3f2006-01-02 19:04:38 +01002094 * another bearer. Owner node is locked.
2095 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002096static void tipc_link_tunnel(struct tipc_link *l_ptr,
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002097 struct tipc_msg *tunnel_hdr,
2098 struct tipc_msg *msg,
2099 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002100{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002101 struct tipc_link *tunnel;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002102 struct sk_buff *buf;
2103 u32 length = msg_size(msg);
2104
2105 tunnel = l_ptr->owner->active_links[selector & 1];
Allan Stephens5392d642006-06-25 23:52:50 -07002106 if (!tipc_link_is_up(tunnel)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002107 pr_warn("%stunnel link no longer available\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002108 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002109 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002110 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002111 buf = tipc_buf_acquire(length + INT_H_SIZE);
Allan Stephens5392d642006-06-25 23:52:50 -07002112 if (!buf) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002113 pr_warn("%sunable to send tunnel msg\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002114 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002115 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002116 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
2117 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
Per Liden4323add2006-01-18 00:38:21 +01002118 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002119}
2120
2121
2122
2123/*
2124 * changeover(): Send whole message queue via the remaining link
2125 * Owner node is locked.
2126 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002127void tipc_link_changeover(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002128{
2129 u32 msgcount = l_ptr->out_queue_size;
2130 struct sk_buff *crs = l_ptr->first_out;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002131 struct tipc_link *tunnel = l_ptr->owner->active_links[0];
Per Lidenb97bf3f2006-01-02 19:04:38 +01002132 struct tipc_msg tunnel_hdr;
Allan Stephens5392d642006-06-25 23:52:50 -07002133 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002134
2135 if (!tunnel)
2136 return;
2137
Allan Stephens5392d642006-06-25 23:52:50 -07002138 if (!l_ptr->owner->permit_changeover) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002139 pr_warn("%speer did not permit changeover\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002140 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002141 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002142
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002143 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002144 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002145 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2146 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07002147
Per Lidenb97bf3f2006-01-02 19:04:38 +01002148 if (!l_ptr->first_out) {
2149 struct sk_buff *buf;
2150
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002151 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002152 if (buf) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002153 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002154 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Per Liden4323add2006-01-18 00:38:21 +01002155 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002156 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002157 pr_warn("%sunable to send changeover msg\n",
2158 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002159 }
2160 return;
2161 }
Allan Stephensf1310722006-06-25 23:51:37 -07002162
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002163 split_bundles = (l_ptr->owner->active_links[0] !=
Allan Stephens5392d642006-06-25 23:52:50 -07002164 l_ptr->owner->active_links[1]);
2165
Per Lidenb97bf3f2006-01-02 19:04:38 +01002166 while (crs) {
2167 struct tipc_msg *msg = buf_msg(crs);
2168
2169 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002170 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00002171 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002172
Florian Westphald788d802007-08-02 19:28:06 -07002173 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002174 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00002175 msg_set_seqno(m, msg_seqno(msg));
Per Liden4323add2006-01-18 00:38:21 +01002176 tipc_link_tunnel(l_ptr, &tunnel_hdr, m,
2177 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002178 pos += align(msg_size(m));
2179 m = (struct tipc_msg *)pos;
2180 }
2181 } else {
Per Liden4323add2006-01-18 00:38:21 +01002182 tipc_link_tunnel(l_ptr, &tunnel_hdr, msg,
2183 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002184 }
2185 crs = crs->next;
2186 }
2187}
2188
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002189void tipc_link_send_duplicate(struct tipc_link *l_ptr, struct tipc_link *tunnel)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002190{
2191 struct sk_buff *iter;
2192 struct tipc_msg tunnel_hdr;
2193
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002194 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002195 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002196 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
2197 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2198 iter = l_ptr->first_out;
2199 while (iter) {
2200 struct sk_buff *outbuf;
2201 struct tipc_msg *msg = buf_msg(iter);
2202 u32 length = msg_size(msg);
2203
2204 if (msg_user(msg) == MSG_BUNDLER)
2205 msg_set_type(msg, CLOSED_MSG);
2206 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002207 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002208 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002209 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002210 if (outbuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002211 pr_warn("%sunable to send duplicate msg\n",
2212 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002213 return;
2214 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002215 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
2216 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
2217 length);
Per Liden4323add2006-01-18 00:38:21 +01002218 tipc_link_send_buf(tunnel, outbuf);
2219 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002220 return;
2221 iter = iter->next;
2222 }
2223}
2224
Per Lidenb97bf3f2006-01-02 19:04:38 +01002225/**
2226 * buf_extract - extracts embedded TIPC message from another message
2227 * @skb: encapsulating message buffer
2228 * @from_pos: offset to extract from
2229 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002230 * Returns a new message buffer containing an embedded message. The
Per Lidenb97bf3f2006-01-02 19:04:38 +01002231 * encapsulating message itself is left unchanged.
2232 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002233static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
2234{
2235 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
2236 u32 size = msg_size(msg);
2237 struct sk_buff *eb;
2238
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002239 eb = tipc_buf_acquire(size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002240 if (eb)
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002241 skb_copy_to_linear_data(eb, msg, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002242 return eb;
2243}
2244
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002245/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01002246 * link_recv_changeover_msg(): Receive tunneled packet sent
2247 * via other link. Node is locked. Return extracted buffer.
2248 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002249static int link_recv_changeover_msg(struct tipc_link **l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002250 struct sk_buff **buf)
2251{
2252 struct sk_buff *tunnel_buf = *buf;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002253 struct tipc_link *dest_link;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002254 struct tipc_msg *msg;
2255 struct tipc_msg *tunnel_msg = buf_msg(tunnel_buf);
2256 u32 msg_typ = msg_type(tunnel_msg);
2257 u32 msg_count = msg_msgcnt(tunnel_msg);
2258
2259 dest_link = (*l_ptr)->owner->links[msg_bearer_id(tunnel_msg)];
Allan Stephensb29f1422010-12-31 18:59:25 +00002260 if (!dest_link)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002261 goto exit;
Allan Stephensf1310722006-06-25 23:51:37 -07002262 if (dest_link == *l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002263 pr_err("Unexpected changeover message on link <%s>\n",
2264 (*l_ptr)->name);
Allan Stephensf1310722006-06-25 23:51:37 -07002265 goto exit;
2266 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002267 *l_ptr = dest_link;
2268 msg = msg_get_wrapped(tunnel_msg);
2269
2270 if (msg_typ == DUPLICATE_MSG) {
Allan Stephensb29f1422010-12-31 18:59:25 +00002271 if (less(msg_seqno(msg), mod(dest_link->next_in_no)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002272 goto exit;
Allan Stephens0e659672010-12-31 18:59:32 +00002273 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002274 if (*buf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002275 pr_warn("%sduplicate msg dropped\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002276 goto exit;
2277 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002278 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002279 return 1;
2280 }
2281
2282 /* First original message ?: */
Per Liden4323add2006-01-18 00:38:21 +01002283 if (tipc_link_is_up(dest_link)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002284 pr_info("%s<%s>, changeover initiated by peer\n", link_rst_msg,
2285 dest_link->name);
Per Liden4323add2006-01-18 00:38:21 +01002286 tipc_link_reset(dest_link);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002287 dest_link->exp_msg_count = msg_count;
2288 if (!msg_count)
2289 goto exit;
2290 } else if (dest_link->exp_msg_count == START_CHANGEOVER) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002291 dest_link->exp_msg_count = msg_count;
2292 if (!msg_count)
2293 goto exit;
2294 }
2295
2296 /* Receive original message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002297 if (dest_link->exp_msg_count == 0) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002298 pr_warn("%sgot too many tunnelled messages\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002299 goto exit;
2300 }
2301 dest_link->exp_msg_count--;
2302 if (less(msg_seqno(msg), dest_link->reset_checkpoint)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002303 goto exit;
2304 } else {
2305 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
2306 if (*buf != NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002307 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002308 return 1;
2309 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002310 pr_warn("%soriginal msg dropped\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002311 }
2312 }
2313exit:
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002314 *buf = NULL;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002315 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002316 return 0;
2317}
2318
2319/*
2320 * Bundler functionality:
2321 */
Per Liden4323add2006-01-18 00:38:21 +01002322void tipc_link_recv_bundle(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002323{
2324 u32 msgcount = msg_msgcnt(buf_msg(buf));
2325 u32 pos = INT_H_SIZE;
2326 struct sk_buff *obuf;
2327
Per Lidenb97bf3f2006-01-02 19:04:38 +01002328 while (msgcount--) {
2329 obuf = buf_extract(buf, pos);
2330 if (obuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002331 pr_warn("Link unable to unbundle message(s)\n");
Allan Stephensa10bd922006-06-25 23:52:17 -07002332 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002333 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002334 pos += align(msg_size(buf_msg(obuf)));
Per Liden4323add2006-01-18 00:38:21 +01002335 tipc_net_route_msg(obuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002336 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002337 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002338}
2339
2340/*
2341 * Fragmentation/defragmentation:
2342 */
2343
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002344/*
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002345 * link_send_long_buf: Entry for buffers needing fragmentation.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002346 * The buffer is complete, inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002347 * Returns user data length.
2348 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002349static int link_send_long_buf(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002350{
Allan Stephens77561552011-04-17 13:06:23 -04002351 struct sk_buff *buf_chain = NULL;
2352 struct sk_buff *buf_chain_tail = (struct sk_buff *)&buf_chain;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002353 struct tipc_msg *inmsg = buf_msg(buf);
2354 struct tipc_msg fragm_hdr;
2355 u32 insize = msg_size(inmsg);
2356 u32 dsz = msg_data_sz(inmsg);
2357 unchar *crs = buf->data;
2358 u32 rest = insize;
Allan Stephens15e979d2010-05-11 14:30:10 +00002359 u32 pack_sz = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002360 u32 fragm_sz = pack_sz - INT_H_SIZE;
Allan Stephens77561552011-04-17 13:06:23 -04002361 u32 fragm_no = 0;
Allan Stephens9c396a72008-06-04 17:36:58 -07002362 u32 destaddr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002363
2364 if (msg_short(inmsg))
2365 destaddr = l_ptr->addr;
Allan Stephens9c396a72008-06-04 17:36:58 -07002366 else
2367 destaddr = msg_destnode(inmsg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002368
Per Lidenb97bf3f2006-01-02 19:04:38 +01002369 /* Prepare reusable fragment header: */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002370 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07002371 INT_H_SIZE, destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002372
2373 /* Chop up message: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002374 while (rest > 0) {
2375 struct sk_buff *fragm;
2376
2377 if (rest <= fragm_sz) {
2378 fragm_sz = rest;
2379 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
2380 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002381 fragm = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002382 if (fragm == NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002383 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002384 while (buf_chain) {
2385 buf = buf_chain;
2386 buf_chain = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002387 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002388 }
2389 return -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002390 }
2391 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
Allan Stephens77561552011-04-17 13:06:23 -04002392 fragm_no++;
2393 msg_set_fragm_no(&fragm_hdr, fragm_no);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002394 skb_copy_to_linear_data(fragm, &fragm_hdr, INT_H_SIZE);
2395 skb_copy_to_linear_data_offset(fragm, INT_H_SIZE, crs,
2396 fragm_sz);
Allan Stephens77561552011-04-17 13:06:23 -04002397 buf_chain_tail->next = fragm;
2398 buf_chain_tail = fragm;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002399
Per Lidenb97bf3f2006-01-02 19:04:38 +01002400 rest -= fragm_sz;
2401 crs += fragm_sz;
2402 msg_set_type(&fragm_hdr, FRAGMENT);
2403 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002404 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002405
2406 /* Append chain of fragments to send queue & send them */
Allan Stephens77561552011-04-17 13:06:23 -04002407 l_ptr->long_msg_seq_no++;
2408 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
2409 l_ptr->stats.sent_fragments += fragm_no;
2410 l_ptr->stats.sent_fragmented++;
2411 tipc_link_push_queue(l_ptr);
2412
Per Lidenb97bf3f2006-01-02 19:04:38 +01002413 return dsz;
2414}
2415
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002416/*
2417 * A pending message being re-assembled must store certain values
2418 * to handle subsequent fragments correctly. The following functions
Per Lidenb97bf3f2006-01-02 19:04:38 +01002419 * help storing these values in unused, available fields in the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002420 * pending message. This makes dynamic memory allocation unnecessary.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002421 */
Sam Ravnborg05790c62006-03-20 22:37:04 -08002422static void set_long_msg_seqno(struct sk_buff *buf, u32 seqno)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002423{
2424 msg_set_seqno(buf_msg(buf), seqno);
2425}
2426
Sam Ravnborg05790c62006-03-20 22:37:04 -08002427static u32 get_fragm_size(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002428{
2429 return msg_ack(buf_msg(buf));
2430}
2431
Sam Ravnborg05790c62006-03-20 22:37:04 -08002432static void set_fragm_size(struct sk_buff *buf, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002433{
2434 msg_set_ack(buf_msg(buf), sz);
2435}
2436
Sam Ravnborg05790c62006-03-20 22:37:04 -08002437static u32 get_expected_frags(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002438{
2439 return msg_bcast_ack(buf_msg(buf));
2440}
2441
Sam Ravnborg05790c62006-03-20 22:37:04 -08002442static void set_expected_frags(struct sk_buff *buf, u32 exp)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002443{
2444 msg_set_bcast_ack(buf_msg(buf), exp);
2445}
2446
Sam Ravnborg05790c62006-03-20 22:37:04 -08002447static u32 get_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002448{
2449 return msg_reroute_cnt(buf_msg(buf));
2450}
2451
Sam Ravnborg05790c62006-03-20 22:37:04 -08002452static void incr_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002453{
2454 msg_incr_reroute_cnt(buf_msg(buf));
2455}
2456
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002457/*
2458 * tipc_link_recv_fragment(): Called with node lock on. Returns
Per Lidenb97bf3f2006-01-02 19:04:38 +01002459 * the reassembled buffer if message is complete.
2460 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002461int tipc_link_recv_fragment(struct sk_buff **pending, struct sk_buff **fb,
Per Liden4323add2006-01-18 00:38:21 +01002462 struct tipc_msg **m)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002463{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002464 struct sk_buff *prev = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002465 struct sk_buff *fbuf = *fb;
2466 struct tipc_msg *fragm = buf_msg(fbuf);
2467 struct sk_buff *pbuf = *pending;
2468 u32 long_msg_seq_no = msg_long_msgno(fragm);
2469
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002470 *fb = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002471
2472 /* Is there an incomplete message waiting for this fragment? */
Allan Stephensf9057302011-10-24 16:03:12 -04002473 while (pbuf && ((buf_seqno(pbuf) != long_msg_seq_no) ||
Joe Perchesf64f9e72009-11-29 16:55:45 -08002474 (msg_orignode(fragm) != msg_orignode(buf_msg(pbuf))))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002475 prev = pbuf;
2476 pbuf = pbuf->next;
2477 }
2478
2479 if (!pbuf && (msg_type(fragm) == FIRST_FRAGMENT)) {
2480 struct tipc_msg *imsg = (struct tipc_msg *)msg_data(fragm);
2481 u32 msg_sz = msg_size(imsg);
2482 u32 fragm_sz = msg_data_sz(fragm);
2483 u32 exp_fragm_cnt = msg_sz/fragm_sz + !!(msg_sz % fragm_sz);
Allan Stephens741d9eb2011-05-31 15:03:18 -04002484 u32 max = TIPC_MAX_USER_MSG_SIZE + NAMED_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002485 if (msg_type(imsg) == TIPC_MCAST_MSG)
2486 max = TIPC_MAX_USER_MSG_SIZE + MCAST_H_SIZE;
2487 if (msg_size(imsg) > max) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002488 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002489 return 0;
2490 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002491 pbuf = tipc_buf_acquire(msg_size(imsg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002492 if (pbuf != NULL) {
2493 pbuf->next = *pending;
2494 *pending = pbuf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002495 skb_copy_to_linear_data(pbuf, imsg,
2496 msg_data_sz(fragm));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002497 /* Prepare buffer for subsequent fragments. */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002498 set_long_msg_seqno(pbuf, long_msg_seq_no);
Allan Stephens0e659672010-12-31 18:59:32 +00002499 set_fragm_size(pbuf, fragm_sz);
2500 set_expected_frags(pbuf, exp_fragm_cnt - 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002501 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002502 pr_debug("Link unable to reassemble fragmented message\n");
Allan Stephens5f6d9122011-11-04 13:24:29 -04002503 kfree_skb(fbuf);
Allan Stephensb76b27c2011-10-27 16:31:26 -04002504 return -1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002505 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002506 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002507 return 0;
2508 } else if (pbuf && (msg_type(fragm) != FIRST_FRAGMENT)) {
2509 u32 dsz = msg_data_sz(fragm);
2510 u32 fsz = get_fragm_size(pbuf);
2511 u32 crs = ((msg_fragm_no(fragm) - 1) * fsz);
2512 u32 exp_frags = get_expected_frags(pbuf) - 1;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002513 skb_copy_to_linear_data_offset(pbuf, crs,
2514 msg_data(fragm), dsz);
Allan Stephens5f6d9122011-11-04 13:24:29 -04002515 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002516
2517 /* Is message complete? */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002518 if (exp_frags == 0) {
2519 if (prev)
2520 prev->next = pbuf->next;
2521 else
2522 *pending = pbuf->next;
2523 msg_reset_reroute_cnt(buf_msg(pbuf));
2524 *fb = pbuf;
2525 *m = buf_msg(pbuf);
2526 return 1;
2527 }
Allan Stephens0e659672010-12-31 18:59:32 +00002528 set_expected_frags(pbuf, exp_frags);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002529 return 0;
2530 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002531 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002532 return 0;
2533}
2534
2535/**
2536 * link_check_defragm_bufs - flush stale incoming message fragments
2537 * @l_ptr: pointer to link
2538 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002539static void link_check_defragm_bufs(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002540{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002541 struct sk_buff *prev = NULL;
2542 struct sk_buff *next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002543 struct sk_buff *buf = l_ptr->defragm_buf;
2544
2545 if (!buf)
2546 return;
2547 if (!link_working_working(l_ptr))
2548 return;
2549 while (buf) {
2550 u32 cnt = get_timer_cnt(buf);
2551
2552 next = buf->next;
2553 if (cnt < 4) {
2554 incr_timer_cnt(buf);
2555 prev = buf;
2556 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002557 if (prev)
2558 prev->next = buf->next;
2559 else
2560 l_ptr->defragm_buf = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002561 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002562 }
2563 buf = next;
2564 }
2565}
2566
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002567static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002568{
Allan Stephens5413b4c2011-01-18 13:24:55 -05002569 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
2570 return;
2571
Per Lidenb97bf3f2006-01-02 19:04:38 +01002572 l_ptr->tolerance = tolerance;
2573 l_ptr->continuity_interval =
2574 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
2575 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
2576}
2577
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002578void tipc_link_set_queue_limits(struct tipc_link *l_ptr, u32 window)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002579{
2580 /* Data messages from this node, inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002581 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
2582 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
2583 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
2584 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002585 /* Transiting data messages,inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002586 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
2587 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
2588 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
2589 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002590 l_ptr->queue_limit[CONN_MANAGER] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002591 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
2592 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
2593 /* FRAGMENT and LAST_FRAGMENT packets */
2594 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
2595}
2596
2597/**
2598 * link_find_link - locate link by name
Ben Hutchings2c530402012-07-10 10:55:09 +00002599 * @name: ptr to link name string
2600 * @node: ptr to area to be filled with ptr to associated node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002601 *
Per Liden4323add2006-01-18 00:38:21 +01002602 * Caller must hold 'tipc_net_lock' to ensure node and bearer are not deleted;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002603 * this also prevents link deletion.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002604 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002605 * Returns pointer to link (or 0 if invalid link name).
2606 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002607static struct tipc_link *link_find_link(const char *name,
2608 struct tipc_node **node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002609{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002610 struct tipc_link_name link_name_parts;
Allan Stephens2d627b92011-01-07 13:00:11 -05002611 struct tipc_bearer *b_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002612 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002613
2614 if (!link_name_validate(name, &link_name_parts))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002615 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002616
Per Liden4323add2006-01-18 00:38:21 +01002617 b_ptr = tipc_bearer_find_interface(link_name_parts.if_local);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002618 if (!b_ptr)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002619 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002620
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002621 *node = tipc_node_find(link_name_parts.addr_peer);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002622 if (!*node)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002623 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002624
2625 l_ptr = (*node)->links[b_ptr->identity];
2626 if (!l_ptr || strcmp(l_ptr->name, name))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002627 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002628
2629 return l_ptr;
2630}
2631
Allan Stephens5c216e12011-10-18 11:34:29 -04002632/**
2633 * link_value_is_valid -- validate proposed link tolerance/priority/window
2634 *
Ben Hutchings2c530402012-07-10 10:55:09 +00002635 * @cmd: value type (TIPC_CMD_SET_LINK_*)
2636 * @new_value: the new value
Allan Stephens5c216e12011-10-18 11:34:29 -04002637 *
2638 * Returns 1 if value is within range, 0 if not.
2639 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002640static int link_value_is_valid(u16 cmd, u32 new_value)
2641{
2642 switch (cmd) {
2643 case TIPC_CMD_SET_LINK_TOL:
2644 return (new_value >= TIPC_MIN_LINK_TOL) &&
2645 (new_value <= TIPC_MAX_LINK_TOL);
2646 case TIPC_CMD_SET_LINK_PRI:
2647 return (new_value <= TIPC_MAX_LINK_PRI);
2648 case TIPC_CMD_SET_LINK_WINDOW:
2649 return (new_value >= TIPC_MIN_LINK_WIN) &&
2650 (new_value <= TIPC_MAX_LINK_WIN);
2651 }
2652 return 0;
2653}
2654
Allan Stephens5c216e12011-10-18 11:34:29 -04002655/**
2656 * link_cmd_set_value - change priority/tolerance/window for link/bearer/media
Ben Hutchings2c530402012-07-10 10:55:09 +00002657 * @name: ptr to link, bearer, or media name
2658 * @new_value: new value of link, bearer, or media setting
2659 * @cmd: which link, bearer, or media attribute to set (TIPC_CMD_SET_LINK_*)
Allan Stephens5c216e12011-10-18 11:34:29 -04002660 *
2661 * Caller must hold 'tipc_net_lock' to ensure link/bearer/media is not deleted.
2662 *
2663 * Returns 0 if value updated and negative value on error.
2664 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002665static int link_cmd_set_value(const char *name, u32 new_value, u16 cmd)
2666{
2667 struct tipc_node *node;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002668 struct tipc_link *l_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002669 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -05002670 struct tipc_media *m_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002671
2672 l_ptr = link_find_link(name, &node);
2673 if (l_ptr) {
2674 /*
2675 * acquire node lock for tipc_link_send_proto_msg().
2676 * see "TIPC locking policy" in net.c.
2677 */
2678 tipc_node_lock(node);
2679 switch (cmd) {
2680 case TIPC_CMD_SET_LINK_TOL:
2681 link_set_supervision_props(l_ptr, new_value);
2682 tipc_link_send_proto_msg(l_ptr,
2683 STATE_MSG, 0, 0, new_value, 0, 0);
2684 break;
2685 case TIPC_CMD_SET_LINK_PRI:
2686 l_ptr->priority = new_value;
2687 tipc_link_send_proto_msg(l_ptr,
2688 STATE_MSG, 0, 0, 0, new_value, 0);
2689 break;
2690 case TIPC_CMD_SET_LINK_WINDOW:
2691 tipc_link_set_queue_limits(l_ptr, new_value);
2692 break;
2693 }
2694 tipc_node_unlock(node);
2695 return 0;
2696 }
2697
2698 b_ptr = tipc_bearer_find(name);
2699 if (b_ptr) {
2700 switch (cmd) {
2701 case TIPC_CMD_SET_LINK_TOL:
2702 b_ptr->tolerance = new_value;
2703 return 0;
2704 case TIPC_CMD_SET_LINK_PRI:
2705 b_ptr->priority = new_value;
2706 return 0;
2707 case TIPC_CMD_SET_LINK_WINDOW:
2708 b_ptr->window = new_value;
2709 return 0;
2710 }
2711 return -EINVAL;
2712 }
2713
2714 m_ptr = tipc_media_find(name);
2715 if (!m_ptr)
2716 return -ENODEV;
2717 switch (cmd) {
2718 case TIPC_CMD_SET_LINK_TOL:
2719 m_ptr->tolerance = new_value;
2720 return 0;
2721 case TIPC_CMD_SET_LINK_PRI:
2722 m_ptr->priority = new_value;
2723 return 0;
2724 case TIPC_CMD_SET_LINK_WINDOW:
2725 m_ptr->window = new_value;
2726 return 0;
2727 }
2728 return -EINVAL;
2729}
2730
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002731struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
Per Liden4323add2006-01-18 00:38:21 +01002732 u16 cmd)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002733{
2734 struct tipc_link_config *args;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002735 u32 new_value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002736 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002737
2738 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
Per Liden4323add2006-01-18 00:38:21 +01002739 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002740
2741 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2742 new_value = ntohl(args->value);
2743
Allan Stephens5c216e12011-10-18 11:34:29 -04002744 if (!link_value_is_valid(cmd, new_value))
2745 return tipc_cfg_reply_error_string(
2746 "cannot change, value invalid");
2747
Per Liden4323add2006-01-18 00:38:21 +01002748 if (!strcmp(args->name, tipc_bclink_name)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002749 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
Per Liden4323add2006-01-18 00:38:21 +01002750 (tipc_bclink_set_queue_limits(new_value) == 0))
2751 return tipc_cfg_reply_none();
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002752 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
Per Liden4323add2006-01-18 00:38:21 +01002753 " (cannot change setting on broadcast link)");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002754 }
2755
Per Liden4323add2006-01-18 00:38:21 +01002756 read_lock_bh(&tipc_net_lock);
Allan Stephens5c216e12011-10-18 11:34:29 -04002757 res = link_cmd_set_value(args->name, new_value, cmd);
Per Liden4323add2006-01-18 00:38:21 +01002758 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002759 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002760 return tipc_cfg_reply_error_string("cannot change link setting");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002761
Per Liden4323add2006-01-18 00:38:21 +01002762 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002763}
2764
2765/**
2766 * link_reset_statistics - reset link statistics
2767 * @l_ptr: pointer to link
2768 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002769static void link_reset_statistics(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002770{
2771 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2772 l_ptr->stats.sent_info = l_ptr->next_out_no;
2773 l_ptr->stats.recv_info = l_ptr->next_in_no;
2774}
2775
Per Liden4323add2006-01-18 00:38:21 +01002776struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002777{
2778 char *link_name;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002779 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002780 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002781
2782 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002783 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002784
2785 link_name = (char *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +01002786 if (!strcmp(link_name, tipc_bclink_name)) {
2787 if (tipc_bclink_reset_stats())
2788 return tipc_cfg_reply_error_string("link not found");
2789 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002790 }
2791
Per Liden4323add2006-01-18 00:38:21 +01002792 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002793 l_ptr = link_find_link(link_name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002794 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002795 read_unlock_bh(&tipc_net_lock);
2796 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002797 }
2798
Per Liden4323add2006-01-18 00:38:21 +01002799 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002800 link_reset_statistics(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +01002801 tipc_node_unlock(node);
2802 read_unlock_bh(&tipc_net_lock);
2803 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002804}
2805
2806/**
2807 * percent - convert count to a percentage of total (rounding up or down)
2808 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002809static u32 percent(u32 count, u32 total)
2810{
2811 return (count * 100 + (total / 2)) / total;
2812}
2813
2814/**
Per Liden4323add2006-01-18 00:38:21 +01002815 * tipc_link_stats - print link statistics
Per Lidenb97bf3f2006-01-02 19:04:38 +01002816 * @name: link name
2817 * @buf: print buffer area
2818 * @buf_size: size of print buffer area
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002819 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002820 * Returns length of print buffer data string (or 0 if error)
2821 */
Per Liden4323add2006-01-18 00:38:21 +01002822static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002823{
Erik Hugnedc1aed32012-06-29 00:50:23 -04002824 struct tipc_link *l;
2825 struct tipc_stats *s;
David S. Miller6c000552008-09-02 23:38:32 -07002826 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002827 char *status;
2828 u32 profile_total = 0;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002829 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002830
Per Liden4323add2006-01-18 00:38:21 +01002831 if (!strcmp(name, tipc_bclink_name))
2832 return tipc_bclink_stats(buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002833
Per Liden4323add2006-01-18 00:38:21 +01002834 read_lock_bh(&tipc_net_lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002835 l = link_find_link(name, &node);
2836 if (!l) {
Per Liden4323add2006-01-18 00:38:21 +01002837 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002838 return 0;
2839 }
Per Liden4323add2006-01-18 00:38:21 +01002840 tipc_node_lock(node);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002841 s = &l->stats;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002842
Erik Hugnedc1aed32012-06-29 00:50:23 -04002843 if (tipc_link_is_active(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002844 status = "ACTIVE";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002845 else if (tipc_link_is_up(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002846 status = "STANDBY";
2847 else
2848 status = "DEFUNCT";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002849
2850 ret = tipc_snprintf(buf, buf_size, "Link <%s>\n"
2851 " %s MTU:%u Priority:%u Tolerance:%u ms"
2852 " Window:%u packets\n",
2853 l->name, status, l->max_pkt, l->priority,
2854 l->tolerance, l->queue_limit[0]);
2855
2856 ret += tipc_snprintf(buf + ret, buf_size - ret,
2857 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
2858 l->next_in_no - s->recv_info, s->recv_fragments,
2859 s->recv_fragmented, s->recv_bundles,
2860 s->recv_bundled);
2861
2862 ret += tipc_snprintf(buf + ret, buf_size - ret,
2863 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
2864 l->next_out_no - s->sent_info, s->sent_fragments,
2865 s->sent_fragmented, s->sent_bundles,
2866 s->sent_bundled);
2867
2868 profile_total = s->msg_length_counts;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002869 if (!profile_total)
2870 profile_total = 1;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002871
2872 ret += tipc_snprintf(buf + ret, buf_size - ret,
2873 " TX profile sample:%u packets average:%u octets\n"
2874 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
2875 "-16384:%u%% -32768:%u%% -66000:%u%%\n",
2876 s->msg_length_counts,
2877 s->msg_lengths_total / profile_total,
2878 percent(s->msg_length_profile[0], profile_total),
2879 percent(s->msg_length_profile[1], profile_total),
2880 percent(s->msg_length_profile[2], profile_total),
2881 percent(s->msg_length_profile[3], profile_total),
2882 percent(s->msg_length_profile[4], profile_total),
2883 percent(s->msg_length_profile[5], profile_total),
2884 percent(s->msg_length_profile[6], profile_total));
2885
2886 ret += tipc_snprintf(buf + ret, buf_size - ret,
2887 " RX states:%u probes:%u naks:%u defs:%u"
2888 " dups:%u\n", s->recv_states, s->recv_probes,
2889 s->recv_nacks, s->deferred_recv, s->duplicates);
2890
2891 ret += tipc_snprintf(buf + ret, buf_size - ret,
2892 " TX states:%u probes:%u naks:%u acks:%u"
2893 " dups:%u\n", s->sent_states, s->sent_probes,
2894 s->sent_nacks, s->sent_acks, s->retransmitted);
2895
2896 ret += tipc_snprintf(buf + ret, buf_size - ret,
Ying Xue3c294cb2012-11-15 11:34:45 +08002897 " Congestion link:%u Send queue"
2898 " max:%u avg:%u\n", s->link_congs,
Erik Hugnedc1aed32012-06-29 00:50:23 -04002899 s->max_queue_sz, s->queue_sz_counts ?
2900 (s->accu_queue_sz / s->queue_sz_counts) : 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002901
Per Liden4323add2006-01-18 00:38:21 +01002902 tipc_node_unlock(node);
2903 read_unlock_bh(&tipc_net_lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002904 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002905}
2906
Per Liden4323add2006-01-18 00:38:21 +01002907struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002908{
2909 struct sk_buff *buf;
2910 struct tlv_desc *rep_tlv;
2911 int str_len;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002912 int pb_len;
2913 char *pb;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002914
2915 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002916 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002917
Erik Hugnedc1aed32012-06-29 00:50:23 -04002918 buf = tipc_cfg_reply_alloc(TLV_SPACE(ULTRA_STRING_MAX_LEN));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002919 if (!buf)
2920 return NULL;
2921
2922 rep_tlv = (struct tlv_desc *)buf->data;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002923 pb = TLV_DATA(rep_tlv);
2924 pb_len = ULTRA_STRING_MAX_LEN;
Per Liden4323add2006-01-18 00:38:21 +01002925 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
Erik Hugnedc1aed32012-06-29 00:50:23 -04002926 pb, pb_len);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002927 if (!str_len) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002928 kfree_skb(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002929 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002930 }
Erik Hugnedc1aed32012-06-29 00:50:23 -04002931 str_len += 1; /* for "\0" */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002932 skb_put(buf, TLV_SPACE(str_len));
2933 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
2934
2935 return buf;
2936}
2937
Per Lidenb97bf3f2006-01-02 19:04:38 +01002938/**
Per Liden4323add2006-01-18 00:38:21 +01002939 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
Per Lidenb97bf3f2006-01-02 19:04:38 +01002940 * @dest: network address of destination node
2941 * @selector: used to select from set of active links
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002942 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002943 * If no active link can be found, uses default maximum packet size.
2944 */
Per Liden4323add2006-01-18 00:38:21 +01002945u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002946{
David S. Miller6c000552008-09-02 23:38:32 -07002947 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002948 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002949 u32 res = MAX_PKT_DEFAULT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002950
Per Lidenb97bf3f2006-01-02 19:04:38 +01002951 if (dest == tipc_own_addr)
2952 return MAX_MSG_SIZE;
2953
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002954 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00002955 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002956 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002957 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002958 l_ptr = n_ptr->active_links[selector & 1];
2959 if (l_ptr)
Allan Stephens15e979d2010-05-11 14:30:10 +00002960 res = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01002961 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002962 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002963 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002964 return res;
2965}
2966
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002967static void link_print(struct tipc_link *l_ptr, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002968{
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002969 pr_info("%s Link %x<%s>:", str, l_ptr->addr, l_ptr->b_ptr->name);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002970
Per Lidenb97bf3f2006-01-02 19:04:38 +01002971 if (link_working_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002972 pr_cont(":WU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002973 else if (link_reset_reset(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002974 pr_cont(":RR\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002975 else if (link_reset_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002976 pr_cont(":RU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002977 else if (link_working_working(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002978 pr_cont(":WW\n");
2979 else
2980 pr_cont("\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002981}