blob: b6de1aa059f4e31becabd241253aec8e86ec3b9d [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/link.c: TIPC link code
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Jon Maloyc64f7a62012-11-16 13:51:31 +08004 * Copyright (c) 1996-2007, 2012, Ericsson AB
Ying Xue198d73b2013-06-17 10:54:42 -04005 * Copyright (c) 2004-2007, 2010-2013, 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
Ying Xue796c75d2013-06-17 10:54:48 -040044#include <linux/pkt_sched.h>
45
Erik Hugne2cf8aa12012-06-29 00:16:37 -040046/*
47 * Error message prefixes
48 */
49static const char *link_co_err = "Link changeover error, ";
50static const char *link_rst_msg = "Resetting link ";
51static const char *link_unk_evt = "Unknown link event ";
Per Lidenb97bf3f2006-01-02 19:04:38 +010052
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090053/*
Allan Stephensa686e682008-06-04 17:29:39 -070054 * Out-of-range value for link session numbers
55 */
Allan Stephensa686e682008-06-04 17:29:39 -070056#define INVALID_SESSION 0x10000
57
58/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090059 * Link state events:
Per Lidenb97bf3f2006-01-02 19:04:38 +010060 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010061#define STARTING_EVT 856384768 /* link processing trigger */
62#define TRAFFIC_MSG_EVT 560815u /* rx'd ??? */
63#define TIMEOUT_EVT 560817u /* link timer expired */
64
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090065/*
66 * The following two 'message types' is really just implementation
67 * data conveniently stored in the message header.
Per Lidenb97bf3f2006-01-02 19:04:38 +010068 * They must not be considered part of the protocol
69 */
70#define OPEN_MSG 0
71#define CLOSED_MSG 1
72
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090073/*
Per Lidenb97bf3f2006-01-02 19:04:38 +010074 * State value stored in 'exp_msg_count'
75 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010076#define START_CHANGEOVER 100000u
77
78/**
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050079 * struct tipc_link_name - deconstructed link name
Per Lidenb97bf3f2006-01-02 19:04:38 +010080 * @addr_local: network address of node at this end
81 * @if_local: name of interface at this end
82 * @addr_peer: network address of node at far end
83 * @if_peer: name of interface at far end
84 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050085struct tipc_link_name {
Per Lidenb97bf3f2006-01-02 19:04:38 +010086 u32 addr_local;
87 char if_local[TIPC_MAX_IF_NAME];
88 u32 addr_peer;
89 char if_peer[TIPC_MAX_IF_NAME];
90};
91
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050092static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +010093 struct sk_buff *buf);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050094static void link_recv_proto_msg(struct tipc_link *l_ptr, struct sk_buff *buf);
95static int link_recv_changeover_msg(struct tipc_link **l_ptr,
96 struct sk_buff **buf);
97static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance);
Allan Stephens23dd4cc2011-01-07 11:43:40 -050098static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +010099 struct iovec const *msg_sect,
Allan Stephens26896902011-04-21 10:42:07 -0500100 u32 num_sect, unsigned int total_len,
101 u32 destnode);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500102static void link_state_event(struct tipc_link *l_ptr, u32 event);
103static void link_reset_statistics(struct tipc_link *l_ptr);
104static void link_print(struct tipc_link *l_ptr, const char *str);
105static void link_start(struct tipc_link *l_ptr);
106static int link_send_long_buf(struct tipc_link *l_ptr, struct sk_buff *buf);
Jon Maloyc64f7a62012-11-16 13:51:31 +0800107static void tipc_link_send_sync(struct tipc_link *l);
108static void tipc_link_recv_sync(struct tipc_node *n, struct sk_buff *buf);
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000109
Per Lidenb97bf3f2006-01-02 19:04:38 +0100110/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800111 * Simple link routines
Per Lidenb97bf3f2006-01-02 19:04:38 +0100112 */
Sam Ravnborg05790c62006-03-20 22:37:04 -0800113static unsigned int align(unsigned int i)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100114{
115 return (i + 3) & ~3u;
116}
117
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500118static void link_init_max_pkt(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100119{
120 u32 max_pkt;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900121
Allan Stephens2d627b92011-01-07 13:00:11 -0500122 max_pkt = (l_ptr->b_ptr->mtu & ~3);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100123 if (max_pkt > MAX_MSG_SIZE)
124 max_pkt = MAX_MSG_SIZE;
125
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900126 l_ptr->max_pkt_target = max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127 if (l_ptr->max_pkt_target < MAX_PKT_DEFAULT)
128 l_ptr->max_pkt = l_ptr->max_pkt_target;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900129 else
Per Lidenb97bf3f2006-01-02 19:04:38 +0100130 l_ptr->max_pkt = MAX_PKT_DEFAULT;
131
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900132 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100133}
134
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500135static u32 link_next_sent(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100136{
137 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -0400138 return buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100139 return mod(l_ptr->next_out_no);
140}
141
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500142static u32 link_last_sent(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100143{
144 return mod(link_next_sent(l_ptr) - 1);
145}
146
147/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800148 * Simple non-static link routines (i.e. referenced outside this file)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100149 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500150int tipc_link_is_up(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100151{
152 if (!l_ptr)
153 return 0;
Eric Dumazeta02cec22010-09-22 20:43:57 +0000154 return link_working_working(l_ptr) || link_working_unknown(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100155}
156
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500157int tipc_link_is_active(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100158{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000159 return (l_ptr->owner->active_links[0] == l_ptr) ||
160 (l_ptr->owner->active_links[1] == l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100161}
162
163/**
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500164 * link_name_validate - validate & (optionally) deconstruct tipc_link name
Ben Hutchings2c530402012-07-10 10:55:09 +0000165 * @name: ptr to link name string
166 * @name_parts: ptr to area for link name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900167 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100168 * Returns 1 if link name is valid, otherwise 0.
169 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500170static int link_name_validate(const char *name,
171 struct tipc_link_name *name_parts)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100172{
173 char name_copy[TIPC_MAX_LINK_NAME];
174 char *addr_local;
175 char *if_local;
176 char *addr_peer;
177 char *if_peer;
178 char dummy;
179 u32 z_local, c_local, n_local;
180 u32 z_peer, c_peer, n_peer;
181 u32 if_local_len;
182 u32 if_peer_len;
183
184 /* copy link name & ensure length is OK */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100185 name_copy[TIPC_MAX_LINK_NAME - 1] = 0;
186 /* need above in case non-Posix strncpy() doesn't pad with nulls */
187 strncpy(name_copy, name, TIPC_MAX_LINK_NAME);
188 if (name_copy[TIPC_MAX_LINK_NAME - 1] != 0)
189 return 0;
190
191 /* ensure all component parts of link name are present */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100192 addr_local = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000193 if_local = strchr(addr_local, ':');
194 if (if_local == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100195 return 0;
196 *(if_local++) = 0;
Allan Stephens2db99832010-12-31 18:59:33 +0000197 addr_peer = strchr(if_local, '-');
198 if (addr_peer == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100199 return 0;
200 *(addr_peer++) = 0;
201 if_local_len = addr_peer - if_local;
Allan Stephens2db99832010-12-31 18:59:33 +0000202 if_peer = strchr(addr_peer, ':');
203 if (if_peer == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100204 return 0;
205 *(if_peer++) = 0;
206 if_peer_len = strlen(if_peer) + 1;
207
208 /* validate component parts of link name */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100209 if ((sscanf(addr_local, "%u.%u.%u%c",
210 &z_local, &c_local, &n_local, &dummy) != 3) ||
211 (sscanf(addr_peer, "%u.%u.%u%c",
212 &z_peer, &c_peer, &n_peer, &dummy) != 3) ||
213 (z_local > 255) || (c_local > 4095) || (n_local > 4095) ||
214 (z_peer > 255) || (c_peer > 4095) || (n_peer > 4095) ||
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900215 (if_local_len <= 1) || (if_local_len > TIPC_MAX_IF_NAME) ||
Ying Xuefc073932012-08-16 12:09:08 +0000216 (if_peer_len <= 1) || (if_peer_len > TIPC_MAX_IF_NAME))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100217 return 0;
218
219 /* return link name components, if necessary */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100220 if (name_parts) {
221 name_parts->addr_local = tipc_addr(z_local, c_local, n_local);
222 strcpy(name_parts->if_local, if_local);
223 name_parts->addr_peer = tipc_addr(z_peer, c_peer, n_peer);
224 strcpy(name_parts->if_peer, if_peer);
225 }
226 return 1;
227}
228
229/**
230 * link_timeout - handle expiration of link timer
231 * @l_ptr: pointer to link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900232 *
Per Liden4323add2006-01-18 00:38:21 +0100233 * This routine must not grab "tipc_net_lock" to avoid a potential deadlock conflict
234 * with tipc_link_delete(). (There is no risk that the node will be deleted by
235 * another thread because tipc_link_delete() always cancels the link timer before
236 * tipc_node_delete() is called.)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100237 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500238static void link_timeout(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100239{
Per Liden4323add2006-01-18 00:38:21 +0100240 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100241
242 /* update counters used in statistical profiling of send traffic */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100243 l_ptr->stats.accu_queue_sz += l_ptr->out_queue_size;
244 l_ptr->stats.queue_sz_counts++;
245
Per Lidenb97bf3f2006-01-02 19:04:38 +0100246 if (l_ptr->first_out) {
247 struct tipc_msg *msg = buf_msg(l_ptr->first_out);
248 u32 length = msg_size(msg);
249
Joe Perchesf64f9e72009-11-29 16:55:45 -0800250 if ((msg_user(msg) == MSG_FRAGMENTER) &&
251 (msg_type(msg) == FIRST_FRAGMENT)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100252 length = msg_size(msg_get_wrapped(msg));
253 }
254 if (length) {
255 l_ptr->stats.msg_lengths_total += length;
256 l_ptr->stats.msg_length_counts++;
257 if (length <= 64)
258 l_ptr->stats.msg_length_profile[0]++;
259 else if (length <= 256)
260 l_ptr->stats.msg_length_profile[1]++;
261 else if (length <= 1024)
262 l_ptr->stats.msg_length_profile[2]++;
263 else if (length <= 4096)
264 l_ptr->stats.msg_length_profile[3]++;
265 else if (length <= 16384)
266 l_ptr->stats.msg_length_profile[4]++;
267 else if (length <= 32768)
268 l_ptr->stats.msg_length_profile[5]++;
269 else
270 l_ptr->stats.msg_length_profile[6]++;
271 }
272 }
273
274 /* do all other link processing performed on a periodic basis */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100275
276 link_state_event(l_ptr, TIMEOUT_EVT);
277
278 if (l_ptr->next_out)
Per Liden4323add2006-01-18 00:38:21 +0100279 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100280
Per Liden4323add2006-01-18 00:38:21 +0100281 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100282}
283
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500284static void link_set_timer(struct tipc_link *l_ptr, u32 time)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100285{
286 k_start_timer(&l_ptr->timer, time);
287}
288
289/**
Per Liden4323add2006-01-18 00:38:21 +0100290 * tipc_link_create - create a new link
Allan Stephens37b9c082011-02-28 11:32:27 -0500291 * @n_ptr: pointer to associated node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100292 * @b_ptr: pointer to associated bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100293 * @media_addr: media address to use when sending messages over link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900294 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100295 * Returns pointer to link.
296 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500297struct tipc_link *tipc_link_create(struct tipc_node *n_ptr,
Allan Stephens37b9c082011-02-28 11:32:27 -0500298 struct tipc_bearer *b_ptr,
Per Liden4323add2006-01-18 00:38:21 +0100299 const struct tipc_media_addr *media_addr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100300{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500301 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100302 struct tipc_msg *msg;
303 char *if_name;
Allan Stephens37b9c082011-02-28 11:32:27 -0500304 char addr_string[16];
305 u32 peer = n_ptr->addr;
306
307 if (n_ptr->link_cnt >= 2) {
308 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400309 pr_err("Attempt to establish third link to %s\n", addr_string);
Allan Stephens37b9c082011-02-28 11:32:27 -0500310 return NULL;
311 }
312
313 if (n_ptr->links[b_ptr->identity]) {
314 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400315 pr_err("Attempt to establish second link on <%s> to %s\n",
316 b_ptr->name, addr_string);
Allan Stephens37b9c082011-02-28 11:32:27 -0500317 return NULL;
318 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100319
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700320 l_ptr = kzalloc(sizeof(*l_ptr), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100321 if (!l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400322 pr_warn("Link creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100323 return NULL;
324 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100325
326 l_ptr->addr = peer;
Allan Stephens2d627b92011-01-07 13:00:11 -0500327 if_name = strchr(b_ptr->name, ':') + 1;
Allan Stephens062b4c92011-04-07 09:28:47 -0400328 sprintf(l_ptr->name, "%u.%u.%u:%s-%u.%u.%u:unknown",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100329 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900330 tipc_node(tipc_own_addr),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100331 if_name,
332 tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
Allan Stephens062b4c92011-04-07 09:28:47 -0400333 /* note: peer i/f name is updated by reset/activate message */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100334 memcpy(&l_ptr->media_addr, media_addr, sizeof(*media_addr));
Allan Stephens37b9c082011-02-28 11:32:27 -0500335 l_ptr->owner = n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100336 l_ptr->checkpoint = 1;
Allan Stephensf882cb72011-04-07 09:43:27 -0400337 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100338 l_ptr->b_ptr = b_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -0400339 link_set_supervision_props(l_ptr, b_ptr->tolerance);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100340 l_ptr->state = RESET_UNKNOWN;
341
342 l_ptr->pmsg = (struct tipc_msg *)&l_ptr->proto_msg;
343 msg = l_ptr->pmsg;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000344 tipc_msg_init(msg, LINK_PROTOCOL, RESET_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100345 msg_set_size(msg, sizeof(l_ptr->proto_msg));
Allan Stephensa686e682008-06-04 17:29:39 -0700346 msg_set_session(msg, (tipc_random & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100347 msg_set_bearer_id(msg, b_ptr->identity);
348 strcpy((char *)msg_data(msg), if_name);
349
350 l_ptr->priority = b_ptr->priority;
Allan Stephens5c216e12011-10-18 11:34:29 -0400351 tipc_link_set_queue_limits(l_ptr, b_ptr->window);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100352
353 link_init_max_pkt(l_ptr);
354
355 l_ptr->next_out_no = 1;
356 INIT_LIST_HEAD(&l_ptr->waiting_ports);
357
358 link_reset_statistics(l_ptr);
359
Allan Stephens37b9c082011-02-28 11:32:27 -0500360 tipc_node_attach_link(n_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100361
Florian Westphal945710652007-07-26 00:05:07 -0700362 k_init_timer(&l_ptr->timer, (Handler)link_timeout, (unsigned long)l_ptr);
363 list_add_tail(&l_ptr->link_list, &b_ptr->links);
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000364 tipc_k_signal((Handler)link_start, (unsigned long)l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100365
Per Lidenb97bf3f2006-01-02 19:04:38 +0100366 return l_ptr;
367}
368
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900369/**
Per Liden4323add2006-01-18 00:38:21 +0100370 * tipc_link_delete - delete a link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100371 * @l_ptr: pointer to link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900372 *
Per Liden4323add2006-01-18 00:38:21 +0100373 * Note: 'tipc_net_lock' is write_locked, bearer is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100374 * This routine must not grab the node lock until after link timer cancellation
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900375 * to avoid a potential deadlock situation.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100376 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500377void tipc_link_delete(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100378{
379 if (!l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400380 pr_err("Attempt to delete non-existent link\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100381 return;
382 }
383
Per Lidenb97bf3f2006-01-02 19:04:38 +0100384 k_cancel_timer(&l_ptr->timer);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900385
Per Liden4323add2006-01-18 00:38:21 +0100386 tipc_node_lock(l_ptr->owner);
387 tipc_link_reset(l_ptr);
388 tipc_node_detach_link(l_ptr->owner, l_ptr);
389 tipc_link_stop(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100390 list_del_init(&l_ptr->link_list);
Per Liden4323add2006-01-18 00:38:21 +0100391 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100392 k_term_timer(&l_ptr->timer);
393 kfree(l_ptr);
394}
395
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500396static void link_start(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100397{
Allan Stephens214dda42011-01-24 16:22:43 -0500398 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100399 link_state_event(l_ptr, STARTING_EVT);
Allan Stephens214dda42011-01-24 16:22:43 -0500400 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100401}
402
403/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900404 * link_schedule_port - schedule port for deferred sending
Per Lidenb97bf3f2006-01-02 19:04:38 +0100405 * @l_ptr: pointer to link
406 * @origport: reference to sending port
407 * @sz: amount of data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900408 *
409 * Schedules port for renewed sending of messages after link congestion
Per Lidenb97bf3f2006-01-02 19:04:38 +0100410 * has abated.
411 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500412static int link_schedule_port(struct tipc_link *l_ptr, u32 origport, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100413{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500414 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100415
Per Liden4323add2006-01-18 00:38:21 +0100416 spin_lock_bh(&tipc_port_list_lock);
417 p_ptr = tipc_port_lock(origport);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100418 if (p_ptr) {
419 if (!p_ptr->wakeup)
420 goto exit;
421 if (!list_empty(&p_ptr->wait_list))
422 goto exit;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500423 p_ptr->congested = 1;
Allan Stephens15e979d2010-05-11 14:30:10 +0000424 p_ptr->waiting_pkts = 1 + ((sz - 1) / l_ptr->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100425 list_add_tail(&p_ptr->wait_list, &l_ptr->waiting_ports);
426 l_ptr->stats.link_congs++;
427exit:
Per Liden4323add2006-01-18 00:38:21 +0100428 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100429 }
Per Liden4323add2006-01-18 00:38:21 +0100430 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100431 return -ELINKCONG;
432}
433
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500434void tipc_link_wakeup_ports(struct tipc_link *l_ptr, int all)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100435{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500436 struct tipc_port *p_ptr;
437 struct tipc_port *temp_p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100438 int win = l_ptr->queue_limit[0] - l_ptr->out_queue_size;
439
440 if (all)
441 win = 100000;
442 if (win <= 0)
443 return;
Per Liden4323add2006-01-18 00:38:21 +0100444 if (!spin_trylock_bh(&tipc_port_list_lock))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100445 return;
446 if (link_congested(l_ptr))
447 goto exit;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900448 list_for_each_entry_safe(p_ptr, temp_p_ptr, &l_ptr->waiting_ports,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100449 wait_list) {
450 if (win <= 0)
451 break;
452 list_del_init(&p_ptr->wait_list);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500453 spin_lock_bh(p_ptr->lock);
454 p_ptr->congested = 0;
455 p_ptr->wakeup(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100456 win -= p_ptr->waiting_pkts;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500457 spin_unlock_bh(p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100458 }
459
460exit:
Per Liden4323add2006-01-18 00:38:21 +0100461 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100462}
463
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900464/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100465 * link_release_outqueue - purge link's outbound message queue
466 * @l_ptr: pointer to link
467 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500468static void link_release_outqueue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100469{
470 struct sk_buff *buf = l_ptr->first_out;
471 struct sk_buff *next;
472
473 while (buf) {
474 next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400475 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100476 buf = next;
477 }
478 l_ptr->first_out = NULL;
479 l_ptr->out_queue_size = 0;
480}
481
482/**
Per Liden4323add2006-01-18 00:38:21 +0100483 * tipc_link_reset_fragments - purge link's inbound message fragments queue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100484 * @l_ptr: pointer to link
485 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500486void tipc_link_reset_fragments(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100487{
488 struct sk_buff *buf = l_ptr->defragm_buf;
489 struct sk_buff *next;
490
491 while (buf) {
492 next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400493 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100494 buf = next;
495 }
496 l_ptr->defragm_buf = NULL;
497}
498
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900499/**
Per Liden4323add2006-01-18 00:38:21 +0100500 * tipc_link_stop - purge all inbound and outbound messages associated with link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100501 * @l_ptr: pointer to link
502 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500503void tipc_link_stop(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100504{
505 struct sk_buff *buf;
506 struct sk_buff *next;
507
508 buf = l_ptr->oldest_deferred_in;
509 while (buf) {
510 next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400511 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100512 buf = next;
513 }
514
515 buf = l_ptr->first_out;
516 while (buf) {
517 next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400518 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100519 buf = next;
520 }
521
Per Liden4323add2006-01-18 00:38:21 +0100522 tipc_link_reset_fragments(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100523
Allan Stephens5f6d9122011-11-04 13:24:29 -0400524 kfree_skb(l_ptr->proto_msg_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100525 l_ptr->proto_msg_queue = NULL;
526}
527
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500528void tipc_link_reset(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100529{
530 struct sk_buff *buf;
531 u32 prev_state = l_ptr->state;
532 u32 checkpoint = l_ptr->next_in_no;
Allan Stephens5392d642006-06-25 23:52:50 -0700533 int was_active_link = tipc_link_is_active(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900534
Allan Stephensa686e682008-06-04 17:29:39 -0700535 msg_set_session(l_ptr->pmsg, ((msg_session(l_ptr->pmsg) + 1) & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100536
Allan Stephensa686e682008-06-04 17:29:39 -0700537 /* Link is down, accept any session */
538 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100539
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900540 /* Prepare for max packet size negotiation */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100541 link_init_max_pkt(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900542
Per Lidenb97bf3f2006-01-02 19:04:38 +0100543 l_ptr->state = RESET_UNKNOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100544
545 if ((prev_state == RESET_UNKNOWN) || (prev_state == RESET_RESET))
546 return;
547
Per Liden4323add2006-01-18 00:38:21 +0100548 tipc_node_link_down(l_ptr->owner, l_ptr);
549 tipc_bearer_remove_dest(l_ptr->b_ptr, l_ptr->addr);
Paul Gortmaker7368ddf2010-10-12 14:25:58 +0000550
Paul Gortmaker8f19afb2011-02-28 11:36:21 -0400551 if (was_active_link && tipc_node_active_links(l_ptr->owner) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100552 l_ptr->owner->permit_changeover) {
553 l_ptr->reset_checkpoint = checkpoint;
554 l_ptr->exp_msg_count = START_CHANGEOVER;
555 }
556
557 /* Clean up all queues: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100558 link_release_outqueue(l_ptr);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400559 kfree_skb(l_ptr->proto_msg_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100560 l_ptr->proto_msg_queue = NULL;
561 buf = l_ptr->oldest_deferred_in;
562 while (buf) {
563 struct sk_buff *next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400564 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100565 buf = next;
566 }
567 if (!list_empty(&l_ptr->waiting_ports))
Per Liden4323add2006-01-18 00:38:21 +0100568 tipc_link_wakeup_ports(l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100569
570 l_ptr->retransm_queue_head = 0;
571 l_ptr->retransm_queue_size = 0;
572 l_ptr->last_out = NULL;
573 l_ptr->first_out = NULL;
574 l_ptr->next_out = NULL;
575 l_ptr->unacked_window = 0;
576 l_ptr->checkpoint = 1;
577 l_ptr->next_out_no = 1;
578 l_ptr->deferred_inqueue_sz = 0;
579 l_ptr->oldest_deferred_in = NULL;
580 l_ptr->newest_deferred_in = NULL;
581 l_ptr->fsm_msg_cnt = 0;
582 l_ptr->stale_count = 0;
583 link_reset_statistics(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100584}
585
586
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500587static void link_activate(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100588{
Allan Stephens5392d642006-06-25 23:52:50 -0700589 l_ptr->next_in_no = l_ptr->stats.recv_info = 1;
Per Liden4323add2006-01-18 00:38:21 +0100590 tipc_node_link_up(l_ptr->owner, l_ptr);
591 tipc_bearer_add_dest(l_ptr->b_ptr, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100592}
593
594/**
595 * link_state_event - link finite state machine
596 * @l_ptr: pointer to link
597 * @event: state machine event to process
598 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000599static void link_state_event(struct tipc_link *l_ptr, unsigned int event)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100600{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500601 struct tipc_link *other;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100602 u32 cont_intv = l_ptr->continuity_interval;
603
604 if (!l_ptr->started && (event != STARTING_EVT))
605 return; /* Not yet. */
606
607 if (link_blocked(l_ptr)) {
Allan Stephensa0168922010-12-31 18:59:35 +0000608 if (event == TIMEOUT_EVT)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100609 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100610 return; /* Changeover going on */
611 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100612
613 switch (l_ptr->state) {
614 case WORKING_WORKING:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100615 switch (event) {
616 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100617 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100618 break;
619 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100620 if (l_ptr->next_in_no != l_ptr->checkpoint) {
621 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100622 if (tipc_bclink_acks_missing(l_ptr->owner)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900623 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100624 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100625 l_ptr->fsm_msg_cnt++;
626 } else if (l_ptr->max_pkt < l_ptr->max_pkt_target) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900627 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100628 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100629 l_ptr->fsm_msg_cnt++;
630 }
631 link_set_timer(l_ptr, cont_intv);
632 break;
633 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100634 l_ptr->state = WORKING_UNKNOWN;
635 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100636 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100637 l_ptr->fsm_msg_cnt++;
638 link_set_timer(l_ptr, cont_intv / 4);
639 break;
640 case RESET_MSG:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400641 pr_info("%s<%s>, requested by peer\n", link_rst_msg,
642 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100643 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100644 l_ptr->state = RESET_RESET;
645 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100646 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100647 l_ptr->fsm_msg_cnt++;
648 link_set_timer(l_ptr, cont_intv);
649 break;
650 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400651 pr_err("%s%u in WW state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100652 }
653 break;
654 case WORKING_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100655 switch (event) {
656 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100657 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100658 l_ptr->state = WORKING_WORKING;
659 l_ptr->fsm_msg_cnt = 0;
660 link_set_timer(l_ptr, cont_intv);
661 break;
662 case RESET_MSG:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400663 pr_info("%s<%s>, requested by peer while probing\n",
664 link_rst_msg, l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100665 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100666 l_ptr->state = RESET_RESET;
667 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100668 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100669 l_ptr->fsm_msg_cnt++;
670 link_set_timer(l_ptr, cont_intv);
671 break;
672 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100673 if (l_ptr->next_in_no != l_ptr->checkpoint) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100674 l_ptr->state = WORKING_WORKING;
675 l_ptr->fsm_msg_cnt = 0;
676 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100677 if (tipc_bclink_acks_missing(l_ptr->owner)) {
678 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
679 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100680 l_ptr->fsm_msg_cnt++;
681 }
682 link_set_timer(l_ptr, cont_intv);
683 } else if (l_ptr->fsm_msg_cnt < l_ptr->abort_limit) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900684 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100685 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100686 l_ptr->fsm_msg_cnt++;
687 link_set_timer(l_ptr, cont_intv / 4);
688 } else { /* Link has failed */
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400689 pr_warn("%s<%s>, peer not responding\n",
690 link_rst_msg, l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100691 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100692 l_ptr->state = RESET_UNKNOWN;
693 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100694 tipc_link_send_proto_msg(l_ptr, RESET_MSG,
695 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100696 l_ptr->fsm_msg_cnt++;
697 link_set_timer(l_ptr, cont_intv);
698 }
699 break;
700 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400701 pr_err("%s%u in WU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100702 }
703 break;
704 case RESET_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100705 switch (event) {
706 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100707 break;
708 case ACTIVATE_MSG:
709 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000710 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100711 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100712 l_ptr->state = WORKING_WORKING;
713 l_ptr->fsm_msg_cnt = 0;
714 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100715 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100716 l_ptr->fsm_msg_cnt++;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800717 if (l_ptr->owner->working_links == 1)
718 tipc_link_send_sync(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100719 link_set_timer(l_ptr, cont_intv);
720 break;
721 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100722 l_ptr->state = RESET_RESET;
723 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100724 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100725 l_ptr->fsm_msg_cnt++;
726 link_set_timer(l_ptr, cont_intv);
727 break;
728 case STARTING_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100729 l_ptr->started = 1;
730 /* fall through */
731 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100732 tipc_link_send_proto_msg(l_ptr, RESET_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100733 l_ptr->fsm_msg_cnt++;
734 link_set_timer(l_ptr, cont_intv);
735 break;
736 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400737 pr_err("%s%u in RU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100738 }
739 break;
740 case RESET_RESET:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100741 switch (event) {
742 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100743 case ACTIVATE_MSG:
744 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000745 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100746 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100747 l_ptr->state = WORKING_WORKING;
748 l_ptr->fsm_msg_cnt = 0;
749 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100750 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100751 l_ptr->fsm_msg_cnt++;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800752 if (l_ptr->owner->working_links == 1)
753 tipc_link_send_sync(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100754 link_set_timer(l_ptr, cont_intv);
755 break;
756 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100757 break;
758 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100759 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100760 l_ptr->fsm_msg_cnt++;
761 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100762 break;
763 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400764 pr_err("%s%u in RR state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100765 }
766 break;
767 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400768 pr_err("Unknown link state %u/%u\n", l_ptr->state, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100769 }
770}
771
772/*
773 * link_bundle_buf(): Append contents of a buffer to
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900774 * the tail of an existing one.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100775 */
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400776static int link_bundle_buf(struct tipc_link *l_ptr, struct sk_buff *bundler,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100777 struct sk_buff *buf)
778{
779 struct tipc_msg *bundler_msg = buf_msg(bundler);
780 struct tipc_msg *msg = buf_msg(buf);
781 u32 size = msg_size(msg);
Allan Stephense49060c2006-06-29 12:32:46 -0700782 u32 bundle_size = msg_size(bundler_msg);
783 u32 to_pos = align(bundle_size);
784 u32 pad = to_pos - bundle_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100785
786 if (msg_user(bundler_msg) != MSG_BUNDLER)
787 return 0;
788 if (msg_type(bundler_msg) != OPEN_MSG)
789 return 0;
Allan Stephense49060c2006-06-29 12:32:46 -0700790 if (skb_tailroom(bundler) < (pad + size))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100791 return 0;
Allan Stephens15e979d2010-05-11 14:30:10 +0000792 if (l_ptr->max_pkt < (to_pos + size))
Allan Stephens863fae62006-07-03 19:39:36 -0700793 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100794
Allan Stephense49060c2006-06-29 12:32:46 -0700795 skb_put(bundler, pad + size);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300796 skb_copy_to_linear_data_offset(bundler, to_pos, buf->data, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100797 msg_set_size(bundler_msg, to_pos + size);
798 msg_set_msgcnt(bundler_msg, msg_msgcnt(bundler_msg) + 1);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400799 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100800 l_ptr->stats.sent_bundled++;
801 return 1;
802}
803
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500804static void link_add_to_outqueue(struct tipc_link *l_ptr,
Sam Ravnborg05790c62006-03-20 22:37:04 -0800805 struct sk_buff *buf,
806 struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100807{
808 u32 ack = mod(l_ptr->next_in_no - 1);
809 u32 seqno = mod(l_ptr->next_out_no++);
810
811 msg_set_word(msg, 2, ((ack << 16) | seqno));
812 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
813 buf->next = NULL;
814 if (l_ptr->first_out) {
815 l_ptr->last_out->next = buf;
816 l_ptr->last_out = buf;
817 } else
818 l_ptr->first_out = l_ptr->last_out = buf;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500819
Per Lidenb97bf3f2006-01-02 19:04:38 +0100820 l_ptr->out_queue_size++;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500821 if (l_ptr->out_queue_size > l_ptr->stats.max_queue_sz)
822 l_ptr->stats.max_queue_sz = l_ptr->out_queue_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100823}
824
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500825static void link_add_chain_to_outqueue(struct tipc_link *l_ptr,
Allan Stephensdc63d912011-04-21 11:50:42 -0400826 struct sk_buff *buf_chain,
827 u32 long_msgno)
828{
829 struct sk_buff *buf;
830 struct tipc_msg *msg;
831
832 if (!l_ptr->next_out)
833 l_ptr->next_out = buf_chain;
834 while (buf_chain) {
835 buf = buf_chain;
836 buf_chain = buf_chain->next;
837
838 msg = buf_msg(buf);
839 msg_set_long_msgno(msg, long_msgno);
840 link_add_to_outqueue(l_ptr, buf, msg);
841 }
842}
843
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900844/*
845 * tipc_link_send_buf() is the 'full path' for messages, called from
Per Lidenb97bf3f2006-01-02 19:04:38 +0100846 * inside TIPC when the 'fast path' in tipc_send_buf
847 * has failed, and from link_send()
848 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500849int tipc_link_send_buf(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100850{
851 struct tipc_msg *msg = buf_msg(buf);
852 u32 size = msg_size(msg);
853 u32 dsz = msg_data_sz(msg);
854 u32 queue_size = l_ptr->out_queue_size;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000855 u32 imp = tipc_msg_tot_importance(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100856 u32 queue_limit = l_ptr->queue_limit[imp];
Allan Stephens15e979d2010-05-11 14:30:10 +0000857 u32 max_packet = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100858
Per Lidenb97bf3f2006-01-02 19:04:38 +0100859 /* Match msg importance against queue limits: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100860 if (unlikely(queue_size >= queue_limit)) {
861 if (imp <= TIPC_CRITICAL_IMPORTANCE) {
Allan Stephensbebc55a2011-04-19 10:17:58 -0400862 link_schedule_port(l_ptr, msg_origport(msg), size);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400863 kfree_skb(buf);
Allan Stephensbebc55a2011-04-19 10:17:58 -0400864 return -ELINKCONG;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100865 }
Allan Stephens5f6d9122011-11-04 13:24:29 -0400866 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100867 if (imp > CONN_MANAGER) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400868 pr_warn("%s<%s>, send queue full", link_rst_msg,
869 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100870 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100871 }
872 return dsz;
873 }
874
875 /* Fragmentation needed ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100876 if (size > max_packet)
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000877 return link_send_long_buf(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100878
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400879 /* Packet can be queued or sent. */
Ying Xue3c294cb2012-11-15 11:34:45 +0800880 if (likely(!tipc_bearer_blocked(l_ptr->b_ptr) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100881 !link_congested(l_ptr))) {
882 link_add_to_outqueue(l_ptr, buf, msg);
883
Ying Xue3c294cb2012-11-15 11:34:45 +0800884 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
885 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100886 return dsz;
887 }
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400888 /* Congestion: can message be bundled ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100889 if ((msg_user(msg) != CHANGEOVER_PROTOCOL) &&
890 (msg_user(msg) != MSG_FRAGMENTER)) {
891
892 /* Try adding message to an existing bundle */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900893 if (l_ptr->next_out &&
Ying Xue3c294cb2012-11-15 11:34:45 +0800894 link_bundle_buf(l_ptr, l_ptr->last_out, buf))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100895 return dsz;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100896
897 /* Try creating a new bundle */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100898 if (size <= max_packet * 2 / 3) {
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000899 struct sk_buff *bundler = tipc_buf_acquire(max_packet);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100900 struct tipc_msg bundler_hdr;
901
902 if (bundler) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000903 tipc_msg_init(&bundler_hdr, MSG_BUNDLER, OPEN_MSG,
Allan Stephens75715212008-06-04 17:37:34 -0700904 INT_H_SIZE, l_ptr->addr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300905 skb_copy_to_linear_data(bundler, &bundler_hdr,
906 INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100907 skb_trim(bundler, INT_H_SIZE);
908 link_bundle_buf(l_ptr, bundler, buf);
909 buf = bundler;
910 msg = buf_msg(buf);
911 l_ptr->stats.sent_bundles++;
912 }
913 }
914 }
915 if (!l_ptr->next_out)
916 l_ptr->next_out = buf;
917 link_add_to_outqueue(l_ptr, buf, msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100918 return dsz;
919}
920
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900921/*
922 * tipc_link_send(): same as tipc_link_send_buf(), but the link to use has
Per Lidenb97bf3f2006-01-02 19:04:38 +0100923 * not been selected yet, and the the owner node is not locked
924 * Called by TIPC internal users, e.g. the name distributor
925 */
Per Liden4323add2006-01-18 00:38:21 +0100926int tipc_link_send(struct sk_buff *buf, u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100927{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500928 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700929 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100930 int res = -ELINKCONG;
931
Per Liden4323add2006-01-18 00:38:21 +0100932 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000933 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100934 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +0100935 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100936 l_ptr = n_ptr->active_links[selector & 1];
Allan Stephensa0168922010-12-31 18:59:35 +0000937 if (l_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100938 res = tipc_link_send_buf(l_ptr, buf);
Allan Stephensa0168922010-12-31 18:59:35 +0000939 else
Allan Stephens5f6d9122011-11-04 13:24:29 -0400940 kfree_skb(buf);
Per Liden4323add2006-01-18 00:38:21 +0100941 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100942 } else {
Allan Stephens5f6d9122011-11-04 13:24:29 -0400943 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100944 }
Per Liden4323add2006-01-18 00:38:21 +0100945 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100946 return res;
947}
948
Jon Maloyc64f7a62012-11-16 13:51:31 +0800949/*
950 * tipc_link_send_sync - synchronize broadcast link endpoints.
951 *
952 * Give a newly added peer node the sequence number where it should
953 * start receiving and acking broadcast packets.
954 *
955 * Called with node locked
956 */
957static void tipc_link_send_sync(struct tipc_link *l)
958{
959 struct sk_buff *buf;
960 struct tipc_msg *msg;
961
962 buf = tipc_buf_acquire(INT_H_SIZE);
963 if (!buf)
964 return;
965
966 msg = buf_msg(buf);
967 tipc_msg_init(msg, BCAST_PROTOCOL, STATE_MSG, INT_H_SIZE, l->addr);
968 msg_set_last_bcast(msg, l->owner->bclink.acked);
969 link_add_chain_to_outqueue(l, buf, 0);
970 tipc_link_push_queue(l);
971}
972
973/*
974 * tipc_link_recv_sync - synchronize broadcast link endpoints.
975 * Receive the sequence number where we should start receiving and
976 * acking broadcast packets from a newly added peer node, and open
977 * up for reception of such packets.
978 *
979 * Called with node locked
980 */
981static void tipc_link_recv_sync(struct tipc_node *n, struct sk_buff *buf)
982{
983 struct tipc_msg *msg = buf_msg(buf);
984
985 n->bclink.last_sent = n->bclink.last_in = msg_last_bcast(msg);
986 n->bclink.recv_permitted = true;
987 kfree_skb(buf);
988}
989
990/*
Allan Stephens9aa88c22011-05-31 13:38:02 -0400991 * tipc_link_send_names - send name table entries to new neighbor
992 *
993 * Send routine for bulk delivery of name table messages when contact
994 * with a new neighbor occurs. No link congestion checking is performed
995 * because name table messages *must* be delivered. The messages must be
996 * small enough not to require fragmentation.
997 * Called without any locks held.
998 */
Allan Stephens9aa88c22011-05-31 13:38:02 -0400999void tipc_link_send_names(struct list_head *message_list, u32 dest)
1000{
1001 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001002 struct tipc_link *l_ptr;
Allan Stephens9aa88c22011-05-31 13:38:02 -04001003 struct sk_buff *buf;
1004 struct sk_buff *temp_buf;
1005
1006 if (list_empty(message_list))
1007 return;
1008
1009 read_lock_bh(&tipc_net_lock);
1010 n_ptr = tipc_node_find(dest);
1011 if (n_ptr) {
1012 tipc_node_lock(n_ptr);
1013 l_ptr = n_ptr->active_links[0];
1014 if (l_ptr) {
1015 /* convert circular list to linear list */
1016 ((struct sk_buff *)message_list->prev)->next = NULL;
1017 link_add_chain_to_outqueue(l_ptr,
1018 (struct sk_buff *)message_list->next, 0);
1019 tipc_link_push_queue(l_ptr);
1020 INIT_LIST_HEAD(message_list);
1021 }
1022 tipc_node_unlock(n_ptr);
1023 }
1024 read_unlock_bh(&tipc_net_lock);
1025
1026 /* discard the messages if they couldn't be sent */
Allan Stephens9aa88c22011-05-31 13:38:02 -04001027 list_for_each_safe(buf, temp_buf, ((struct sk_buff *)message_list)) {
1028 list_del((struct list_head *)buf);
Allan Stephens5f6d9122011-11-04 13:24:29 -04001029 kfree_skb(buf);
Allan Stephens9aa88c22011-05-31 13:38:02 -04001030 }
1031}
1032
1033/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001034 * link_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001035 * destination link is known and the header is complete,
1036 * inclusive total message length. Very time critical.
1037 * Link is locked. Returns user data length.
1038 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001039static int link_send_buf_fast(struct tipc_link *l_ptr, struct sk_buff *buf,
Sam Ravnborg05790c62006-03-20 22:37:04 -08001040 u32 *used_max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001041{
1042 struct tipc_msg *msg = buf_msg(buf);
1043 int res = msg_data_sz(msg);
1044
1045 if (likely(!link_congested(l_ptr))) {
Allan Stephens15e979d2010-05-11 14:30:10 +00001046 if (likely(msg_size(msg) <= l_ptr->max_pkt)) {
Ying Xue3c294cb2012-11-15 11:34:45 +08001047 if (likely(!tipc_bearer_blocked(l_ptr->b_ptr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001048 link_add_to_outqueue(l_ptr, buf, msg);
Ying Xue3c294cb2012-11-15 11:34:45 +08001049 tipc_bearer_send(l_ptr->b_ptr, buf,
1050 &l_ptr->media_addr);
1051 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001052 return res;
1053 }
Allan Stephens0e659672010-12-31 18:59:32 +00001054 } else
Allan Stephens15e979d2010-05-11 14:30:10 +00001055 *used_max_pkt = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001056 }
Per Liden4323add2006-01-18 00:38:21 +01001057 return tipc_link_send_buf(l_ptr, buf); /* All other cases */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001058}
1059
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001060/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001061 * tipc_link_send_sections_fast: Entry for messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001062 * destination processor is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001063 * except for total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001064 * Returns user data length or errno.
1065 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001066int tipc_link_send_sections_fast(struct tipc_port *sender,
Per Liden4323add2006-01-18 00:38:21 +01001067 struct iovec const *msg_sect,
Paul Gortmakerae8509c2013-06-17 10:54:47 -04001068 const u32 num_sect, unsigned int total_len,
Per Liden4323add2006-01-18 00:38:21 +01001069 u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001070{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001071 struct tipc_msg *hdr = &sender->phdr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001072 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001073 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -07001074 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001075 int res;
1076 u32 selector = msg_origport(hdr) & 1;
1077
Per Lidenb97bf3f2006-01-02 19:04:38 +01001078again:
1079 /*
1080 * Try building message using port's max_pkt hint.
1081 * (Must not hold any locks while building message.)
1082 */
Allan Stephens26896902011-04-21 10:42:07 -05001083 res = tipc_msg_build(hdr, msg_sect, num_sect, total_len,
Ying Xuef1733d72013-06-17 10:54:43 -04001084 sender->max_pkt, &buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001085
Per Liden4323add2006-01-18 00:38:21 +01001086 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001087 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001088 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001089 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001090 l_ptr = node->active_links[selector];
1091 if (likely(l_ptr)) {
1092 if (likely(buf)) {
1093 res = link_send_buf_fast(l_ptr, buf,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001094 &sender->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001095exit:
Per Liden4323add2006-01-18 00:38:21 +01001096 tipc_node_unlock(node);
1097 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001098 return res;
1099 }
1100
1101 /* Exit if build request was invalid */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001102 if (unlikely(res < 0))
1103 goto exit;
1104
1105 /* Exit if link (or bearer) is congested */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001106 if (link_congested(l_ptr) ||
Ying Xue3c294cb2012-11-15 11:34:45 +08001107 tipc_bearer_blocked(l_ptr->b_ptr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001108 res = link_schedule_port(l_ptr,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001109 sender->ref, res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001110 goto exit;
1111 }
1112
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001113 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001114 * Message size exceeds max_pkt hint; update hint,
1115 * then re-try fast path or fragment the message
1116 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001117 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001118 tipc_node_unlock(node);
1119 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001120
1121
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001122 if ((msg_hdr_sz(hdr) + res) <= sender->max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001123 goto again;
1124
1125 return link_send_sections_long(sender, msg_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001126 num_sect, total_len,
1127 destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001128 }
Per Liden4323add2006-01-18 00:38:21 +01001129 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001130 }
Per Liden4323add2006-01-18 00:38:21 +01001131 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001132
1133 /* Couldn't find a link to the destination node */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001134 if (buf)
1135 return tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1136 if (res >= 0)
Per Liden4323add2006-01-18 00:38:21 +01001137 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001138 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001139 return res;
1140}
1141
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001142/*
1143 * link_send_sections_long(): Entry for long messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001144 * destination node is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001145 * inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001146 * Link and bearer congestion status have been checked to be ok,
1147 * and are ignored if they change.
1148 *
1149 * Note that fragments do not use the full link MTU so that they won't have
1150 * to undergo refragmentation if link changeover causes them to be sent
1151 * over another link with an additional tunnel header added as prefix.
1152 * (Refragmentation will still occur if the other link has a smaller MTU.)
1153 *
1154 * Returns user data length or errno.
1155 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001156static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001157 struct iovec const *msg_sect,
Paul Gortmakerae8509c2013-06-17 10:54:47 -04001158 u32 num_sect, unsigned int total_len,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001159 u32 destaddr)
1160{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001161 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001162 struct tipc_node *node;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001163 struct tipc_msg *hdr = &sender->phdr;
Allan Stephens26896902011-04-21 10:42:07 -05001164 u32 dsz = total_len;
Allan Stephens0e659672010-12-31 18:59:32 +00001165 u32 max_pkt, fragm_sz, rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001166 struct tipc_msg fragm_hdr;
Allan Stephens0e659672010-12-31 18:59:32 +00001167 struct sk_buff *buf, *buf_chain, *prev;
1168 u32 fragm_crs, fragm_rest, hsz, sect_rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001169 const unchar *sect_crs;
1170 int curr_sect;
1171 u32 fragm_no;
1172
1173again:
1174 fragm_no = 1;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001175 max_pkt = sender->max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001176 /* leave room for tunnel header in case of link changeover */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001177 fragm_sz = max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001178 /* leave room for fragmentation header in each fragment */
1179 rest = dsz;
1180 fragm_crs = 0;
1181 fragm_rest = 0;
1182 sect_rest = 0;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001183 sect_crs = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001184 curr_sect = -1;
1185
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001186 /* Prepare reusable fragment header */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001187 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07001188 INT_H_SIZE, msg_destnode(hdr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001189 msg_set_size(&fragm_hdr, max_pkt);
1190 msg_set_fragm_no(&fragm_hdr, 1);
1191
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001192 /* Prepare header of first fragment */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001193 buf_chain = buf = tipc_buf_acquire(max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001194 if (!buf)
1195 return -ENOMEM;
1196 buf->next = NULL;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001197 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001198 hsz = msg_hdr_sz(hdr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001199 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, hdr, hsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001200
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001201 /* Chop up message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001202 fragm_crs = INT_H_SIZE + hsz;
1203 fragm_rest = fragm_sz - hsz;
1204
1205 do { /* For all sections */
1206 u32 sz;
1207
1208 if (!sect_rest) {
1209 sect_rest = msg_sect[++curr_sect].iov_len;
1210 sect_crs = (const unchar *)msg_sect[curr_sect].iov_base;
1211 }
1212
1213 if (sect_rest < fragm_rest)
1214 sz = sect_rest;
1215 else
1216 sz = fragm_rest;
1217
Ying Xuef1733d72013-06-17 10:54:43 -04001218 if (copy_from_user(buf->data + fragm_crs, sect_crs, sz)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001219error:
Ying Xuef1733d72013-06-17 10:54:43 -04001220 for (; buf_chain; buf_chain = buf) {
1221 buf = buf_chain->next;
1222 kfree_skb(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001223 }
Ying Xuef1733d72013-06-17 10:54:43 -04001224 return -EFAULT;
1225 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001226 sect_crs += sz;
1227 sect_rest -= sz;
1228 fragm_crs += sz;
1229 fragm_rest -= sz;
1230 rest -= sz;
1231
1232 if (!fragm_rest && rest) {
1233
1234 /* Initiate new fragment: */
1235 if (rest <= fragm_sz) {
1236 fragm_sz = rest;
Allan Stephens0e659672010-12-31 18:59:32 +00001237 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001238 } else {
1239 msg_set_type(&fragm_hdr, FRAGMENT);
1240 }
1241 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
1242 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
1243 prev = buf;
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001244 buf = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001245 if (!buf)
1246 goto error;
1247
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001248 buf->next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001249 prev->next = buf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001250 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001251 fragm_crs = INT_H_SIZE;
1252 fragm_rest = fragm_sz;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001253 }
Allan Stephens0e659672010-12-31 18:59:32 +00001254 } while (rest > 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001255
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001256 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001257 * Now we have a buffer chain. Select a link and check
1258 * that packet size is still OK
1259 */
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001260 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001261 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001262 tipc_node_lock(node);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001263 l_ptr = node->active_links[sender->ref & 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001264 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01001265 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001266 goto reject;
1267 }
Allan Stephens15e979d2010-05-11 14:30:10 +00001268 if (l_ptr->max_pkt < max_pkt) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001269 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001270 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001271 for (; buf_chain; buf_chain = buf) {
1272 buf = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001273 kfree_skb(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001274 }
1275 goto again;
1276 }
1277 } else {
1278reject:
1279 for (; buf_chain; buf_chain = buf) {
1280 buf = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001281 kfree_skb(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001282 }
Per Liden4323add2006-01-18 00:38:21 +01001283 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001284 total_len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001285 }
1286
Allan Stephensdc63d912011-04-21 11:50:42 -04001287 /* Append chain of fragments to send queue & send them */
Allan Stephense0f08592011-04-17 11:44:24 -04001288 l_ptr->long_msg_seq_no++;
Allan Stephensdc63d912011-04-21 11:50:42 -04001289 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
1290 l_ptr->stats.sent_fragments += fragm_no;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001291 l_ptr->stats.sent_fragmented++;
Per Liden4323add2006-01-18 00:38:21 +01001292 tipc_link_push_queue(l_ptr);
1293 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001294 return dsz;
1295}
1296
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001297/*
Per Liden4323add2006-01-18 00:38:21 +01001298 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +01001299 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001300u32 tipc_link_push_packet(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001301{
1302 struct sk_buff *buf = l_ptr->first_out;
1303 u32 r_q_size = l_ptr->retransm_queue_size;
1304 u32 r_q_head = l_ptr->retransm_queue_head;
1305
1306 /* Step to position where retransmission failed, if any, */
1307 /* consider that buffers may have been released in meantime */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001308 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001309 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +01001310 link_last_sent(l_ptr));
Allan Stephensf9057302011-10-24 16:03:12 -04001311 u32 first = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001312
1313 while (buf && less(first, r_q_head)) {
1314 first = mod(first + 1);
1315 buf = buf->next;
1316 }
1317 l_ptr->retransm_queue_head = r_q_head = first;
1318 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1319 }
1320
1321 /* Continue retransmission now, if there is anything: */
Neil Hormanca509102010-03-15 07:58:45 +00001322 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001323 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001324 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001325 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1326 l_ptr->retransm_queue_head = mod(++r_q_head);
1327 l_ptr->retransm_queue_size = --r_q_size;
1328 l_ptr->stats.retransmitted++;
1329 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001330 }
1331
1332 /* Send deferred protocol message, if any: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001333 buf = l_ptr->proto_msg_queue;
1334 if (buf) {
1335 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +00001336 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001337 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1338 l_ptr->unacked_window = 0;
1339 kfree_skb(buf);
1340 l_ptr->proto_msg_queue = NULL;
1341 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001342 }
1343
1344 /* Send one deferred data message, if send window not full: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001345 buf = l_ptr->next_out;
1346 if (buf) {
1347 struct tipc_msg *msg = buf_msg(buf);
1348 u32 next = msg_seqno(msg);
Allan Stephensf9057302011-10-24 16:03:12 -04001349 u32 first = buf_seqno(l_ptr->first_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001350
1351 if (mod(next - first) < l_ptr->queue_limit[0]) {
1352 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001353 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001354 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1355 if (msg_user(msg) == MSG_BUNDLER)
1356 msg_set_type(msg, CLOSED_MSG);
1357 l_ptr->next_out = buf->next;
1358 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001359 }
1360 }
Ying Xue3c294cb2012-11-15 11:34:45 +08001361 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001362}
1363
1364/*
1365 * push_queue(): push out the unsent messages of a link where
1366 * congestion has abated. Node is locked
1367 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001368void tipc_link_push_queue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001369{
1370 u32 res;
1371
Ying Xue3c294cb2012-11-15 11:34:45 +08001372 if (tipc_bearer_blocked(l_ptr->b_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001373 return;
1374
1375 do {
Per Liden4323add2006-01-18 00:38:21 +01001376 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001377 } while (!res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001378}
1379
Allan Stephensd356eeb2006-06-25 23:40:01 -07001380static void link_reset_all(unsigned long addr)
1381{
David S. Miller6c000552008-09-02 23:38:32 -07001382 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001383 char addr_string[16];
1384 u32 i;
1385
1386 read_lock_bh(&tipc_net_lock);
1387 n_ptr = tipc_node_find((u32)addr);
1388 if (!n_ptr) {
1389 read_unlock_bh(&tipc_net_lock);
1390 return; /* node no longer exists */
1391 }
1392
1393 tipc_node_lock(n_ptr);
1394
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001395 pr_warn("Resetting all links to %s\n",
1396 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -07001397
1398 for (i = 0; i < MAX_BEARERS; i++) {
1399 if (n_ptr->links[i]) {
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001400 link_print(n_ptr->links[i], "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001401 tipc_link_reset(n_ptr->links[i]);
1402 }
1403 }
1404
1405 tipc_node_unlock(n_ptr);
1406 read_unlock_bh(&tipc_net_lock);
1407}
1408
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001409static void link_retransmit_failure(struct tipc_link *l_ptr,
Paul Gortmakerae8509c2013-06-17 10:54:47 -04001410 struct sk_buff *buf)
Allan Stephensd356eeb2006-06-25 23:40:01 -07001411{
1412 struct tipc_msg *msg = buf_msg(buf);
1413
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001414 pr_warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001415
1416 if (l_ptr->addr) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001417 /* Handle failure on standard link */
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001418 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001419 tipc_link_reset(l_ptr);
1420
1421 } else {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001422 /* Handle failure on broadcast link */
David S. Miller6c000552008-09-02 23:38:32 -07001423 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001424 char addr_string[16];
1425
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001426 pr_info("Msg seq number: %u, ", msg_seqno(msg));
1427 pr_cont("Outstanding acks: %lu\n",
1428 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -07001429
Allan Stephens01d83ed2011-01-18 13:53:16 -05001430 n_ptr = tipc_bclink_retransmit_to();
Allan Stephensd356eeb2006-06-25 23:40:01 -07001431 tipc_node_lock(n_ptr);
1432
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001433 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001434 pr_info("Broadcast link info for %s\n", addr_string);
Ying Xue389dd9b2012-11-16 13:51:30 +08001435 pr_info("Reception permitted: %d, Acked: %u\n",
1436 n_ptr->bclink.recv_permitted,
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001437 n_ptr->bclink.acked);
1438 pr_info("Last in: %u, Oos state: %u, Last sent: %u\n",
1439 n_ptr->bclink.last_in,
1440 n_ptr->bclink.oos_state,
1441 n_ptr->bclink.last_sent);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001442
1443 tipc_k_signal((Handler)link_reset_all, (unsigned long)n_ptr->addr);
1444
1445 tipc_node_unlock(n_ptr);
1446
1447 l_ptr->stale_count = 0;
1448 }
1449}
1450
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001451void tipc_link_retransmit(struct tipc_link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001452 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001453{
1454 struct tipc_msg *msg;
1455
Allan Stephensd356eeb2006-06-25 23:40:01 -07001456 if (!buf)
1457 return;
1458
1459 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001460
Ying Xue3c294cb2012-11-15 11:34:45 +08001461 if (tipc_bearer_blocked(l_ptr->b_ptr)) {
Neil Hormanca509102010-03-15 07:58:45 +00001462 if (l_ptr->retransm_queue_size == 0) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001463 l_ptr->retransm_queue_head = msg_seqno(msg);
1464 l_ptr->retransm_queue_size = retransmits;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001465 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001466 pr_err("Unexpected retransmit on link %s (qsize=%d)\n",
1467 l_ptr->name, l_ptr->retransm_queue_size);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001468 }
Neil Hormanca509102010-03-15 07:58:45 +00001469 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001470 } else {
Ying Xue3c294cb2012-11-15 11:34:45 +08001471 /* Detect repeated retransmit failures on unblocked bearer */
Allan Stephensd356eeb2006-06-25 23:40:01 -07001472 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1473 if (++l_ptr->stale_count > 100) {
1474 link_retransmit_failure(l_ptr, buf);
1475 return;
1476 }
1477 } else {
1478 l_ptr->last_retransmitted = msg_seqno(msg);
1479 l_ptr->stale_count = 1;
1480 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001481 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001482
Neil Hormanca509102010-03-15 07:58:45 +00001483 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001484 msg = buf_msg(buf);
1485 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001486 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001487 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1488 buf = buf->next;
1489 retransmits--;
1490 l_ptr->stats.retransmitted++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001491 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001492
Per Lidenb97bf3f2006-01-02 19:04:38 +01001493 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1494}
1495
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001496/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001497 * link_insert_deferred_queue - insert deferred messages back into receive chain
1498 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001499static struct sk_buff *link_insert_deferred_queue(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001500 struct sk_buff *buf)
1501{
1502 u32 seq_no;
1503
1504 if (l_ptr->oldest_deferred_in == NULL)
1505 return buf;
1506
Allan Stephensf9057302011-10-24 16:03:12 -04001507 seq_no = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001508 if (seq_no == mod(l_ptr->next_in_no)) {
1509 l_ptr->newest_deferred_in->next = buf;
1510 buf = l_ptr->oldest_deferred_in;
1511 l_ptr->oldest_deferred_in = NULL;
1512 l_ptr->deferred_inqueue_sz = 0;
1513 }
1514 return buf;
1515}
1516
Allan Stephens85035562008-04-15 19:04:54 -07001517/**
1518 * link_recv_buf_validate - validate basic format of received message
1519 *
1520 * This routine ensures a TIPC message has an acceptable header, and at least
1521 * as much data as the header indicates it should. The routine also ensures
1522 * that the entire message header is stored in the main fragment of the message
1523 * buffer, to simplify future access to message header fields.
1524 *
1525 * Note: Having extra info present in the message header or data areas is OK.
1526 * TIPC will ignore the excess, under the assumption that it is optional info
1527 * introduced by a later release of the protocol.
1528 */
Allan Stephens85035562008-04-15 19:04:54 -07001529static int link_recv_buf_validate(struct sk_buff *buf)
1530{
1531 static u32 min_data_hdr_size[8] = {
Allan Stephens741d9eb2011-05-31 15:03:18 -04001532 SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,
Allan Stephens85035562008-04-15 19:04:54 -07001533 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1534 };
1535
1536 struct tipc_msg *msg;
1537 u32 tipc_hdr[2];
1538 u32 size;
1539 u32 hdr_size;
1540 u32 min_hdr_size;
1541
1542 if (unlikely(buf->len < MIN_H_SIZE))
1543 return 0;
1544
1545 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1546 if (msg == NULL)
1547 return 0;
1548
1549 if (unlikely(msg_version(msg) != TIPC_VERSION))
1550 return 0;
1551
1552 size = msg_size(msg);
1553 hdr_size = msg_hdr_sz(msg);
1554 min_hdr_size = msg_isdata(msg) ?
1555 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1556
1557 if (unlikely((hdr_size < min_hdr_size) ||
1558 (size < hdr_size) ||
1559 (buf->len < size) ||
1560 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1561 return 0;
1562
1563 return pskb_may_pull(buf, hdr_size);
1564}
1565
Allan Stephensb02b69c2010-08-17 11:00:07 +00001566/**
1567 * tipc_recv_msg - process TIPC messages arriving from off-node
1568 * @head: pointer to message buffer chain
1569 * @tb_ptr: pointer to bearer message arrived on
1570 *
1571 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1572 * structure (i.e. cannot be NULL), but bearer can be inactive.
1573 */
Allan Stephens2d627b92011-01-07 13:00:11 -05001574void tipc_recv_msg(struct sk_buff *head, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001575{
Per Liden4323add2006-01-18 00:38:21 +01001576 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001577 while (head) {
David S. Miller6c000552008-09-02 23:38:32 -07001578 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001579 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001580 struct sk_buff *crs;
1581 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001582 struct tipc_msg *msg;
1583 u32 seq_no;
1584 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001585 u32 released = 0;
1586 int type;
1587
Per Lidenb97bf3f2006-01-02 19:04:38 +01001588 head = head->next;
Allan Stephens85035562008-04-15 19:04:54 -07001589
Allan Stephensb02b69c2010-08-17 11:00:07 +00001590 /* Ensure bearer is still enabled */
Allan Stephensb02b69c2010-08-17 11:00:07 +00001591 if (unlikely(!b_ptr->active))
1592 goto cont;
1593
Allan Stephens85035562008-04-15 19:04:54 -07001594 /* Ensure message is well-formed */
Allan Stephens85035562008-04-15 19:04:54 -07001595 if (unlikely(!link_recv_buf_validate(buf)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001596 goto cont;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001597
Allan Stephensfe13dda2008-04-15 19:03:23 -07001598 /* Ensure message data is a single contiguous unit */
Allan Stephens5f6d9122011-11-04 13:24:29 -04001599 if (unlikely(skb_linearize(buf)))
Allan Stephensfe13dda2008-04-15 19:03:23 -07001600 goto cont;
Allan Stephensfe13dda2008-04-15 19:03:23 -07001601
Allan Stephens85035562008-04-15 19:04:54 -07001602 /* Handle arrival of a non-unicast link message */
Allan Stephens85035562008-04-15 19:04:54 -07001603 msg = buf_msg(buf);
1604
Per Lidenb97bf3f2006-01-02 19:04:38 +01001605 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001606 if (msg_user(msg) == LINK_CONFIG)
1607 tipc_disc_recv_msg(buf, b_ptr);
1608 else
1609 tipc_bclink_recv_pkt(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001610 continue;
1611 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001612
Allan Stephensed33a9c2011-04-05 15:15:04 -04001613 /* Discard unicast link messages destined for another node */
Allan Stephens26008242006-06-25 23:39:31 -07001614 if (unlikely(!msg_short(msg) &&
1615 (msg_destnode(msg) != tipc_own_addr)))
1616 goto cont;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001617
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001618 /* Locate neighboring node that sent message */
Per Liden4323add2006-01-18 00:38:21 +01001619 n_ptr = tipc_node_find(msg_prevnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001620 if (unlikely(!n_ptr))
1621 goto cont;
Per Liden4323add2006-01-18 00:38:21 +01001622 tipc_node_lock(n_ptr);
Allan Stephens85035562008-04-15 19:04:54 -07001623
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001624 /* Locate unicast link endpoint that should handle message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001625 l_ptr = n_ptr->links[b_ptr->identity];
1626 if (unlikely(!l_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001627 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001628 goto cont;
1629 }
Allan Stephens85035562008-04-15 19:04:54 -07001630
Allan Stephensb4b56102011-05-27 11:00:51 -04001631 /* Verify that communication with node is currently allowed */
Allan Stephensb4b56102011-05-27 11:00:51 -04001632 if ((n_ptr->block_setup & WAIT_PEER_DOWN) &&
1633 msg_user(msg) == LINK_PROTOCOL &&
1634 (msg_type(msg) == RESET_MSG ||
1635 msg_type(msg) == ACTIVATE_MSG) &&
1636 !msg_redundant_link(msg))
1637 n_ptr->block_setup &= ~WAIT_PEER_DOWN;
1638
1639 if (n_ptr->block_setup) {
1640 tipc_node_unlock(n_ptr);
1641 goto cont;
1642 }
1643
Allan Stephens85035562008-04-15 19:04:54 -07001644 /* Validate message sequence number info */
Allan Stephens85035562008-04-15 19:04:54 -07001645 seq_no = msg_seqno(msg);
1646 ackd = msg_ack(msg);
1647
1648 /* Release acked messages */
Ying Xue389dd9b2012-11-16 13:51:30 +08001649 if (n_ptr->bclink.recv_permitted)
Allan Stephens365595912011-10-24 15:26:24 -04001650 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001651
1652 crs = l_ptr->first_out;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001653 while ((crs != l_ptr->next_out) &&
Allan Stephensf9057302011-10-24 16:03:12 -04001654 less_eq(buf_seqno(crs), ackd)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001655 struct sk_buff *next = crs->next;
1656
Allan Stephens5f6d9122011-11-04 13:24:29 -04001657 kfree_skb(crs);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001658 crs = next;
1659 released++;
1660 }
1661 if (released) {
1662 l_ptr->first_out = crs;
1663 l_ptr->out_queue_size -= released;
1664 }
Allan Stephens85035562008-04-15 19:04:54 -07001665
1666 /* Try sending any messages link endpoint has pending */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001667 if (unlikely(l_ptr->next_out))
Per Liden4323add2006-01-18 00:38:21 +01001668 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001669 if (unlikely(!list_empty(&l_ptr->waiting_ports)))
Per Liden4323add2006-01-18 00:38:21 +01001670 tipc_link_wakeup_ports(l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001671 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1672 l_ptr->stats.sent_acks++;
Per Liden4323add2006-01-18 00:38:21 +01001673 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001674 }
1675
Allan Stephens85035562008-04-15 19:04:54 -07001676 /* Now (finally!) process the incoming message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001677protocol_check:
1678 if (likely(link_working_working(l_ptr))) {
1679 if (likely(seq_no == mod(l_ptr->next_in_no))) {
1680 l_ptr->next_in_no++;
1681 if (unlikely(l_ptr->oldest_deferred_in))
1682 head = link_insert_deferred_queue(l_ptr,
1683 head);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001684deliver:
Allan Stephensc74a4612011-11-02 15:08:44 -04001685 if (likely(msg_isdata(msg))) {
1686 tipc_node_unlock(n_ptr);
1687 tipc_port_recv_msg(buf);
1688 continue;
1689 }
1690 switch (msg_user(msg)) {
1691 int ret;
1692 case MSG_BUNDLER:
1693 l_ptr->stats.recv_bundles++;
1694 l_ptr->stats.recv_bundled +=
1695 msg_msgcnt(msg);
1696 tipc_node_unlock(n_ptr);
1697 tipc_link_recv_bundle(buf);
1698 continue;
1699 case NAME_DISTRIBUTOR:
Jon Maloyc64f7a62012-11-16 13:51:31 +08001700 n_ptr->bclink.recv_permitted = true;
Allan Stephensc74a4612011-11-02 15:08:44 -04001701 tipc_node_unlock(n_ptr);
1702 tipc_named_recv(buf);
1703 continue;
Jon Maloyc64f7a62012-11-16 13:51:31 +08001704 case BCAST_PROTOCOL:
1705 tipc_link_recv_sync(n_ptr, buf);
1706 tipc_node_unlock(n_ptr);
1707 continue;
Allan Stephensc74a4612011-11-02 15:08:44 -04001708 case CONN_MANAGER:
1709 tipc_node_unlock(n_ptr);
1710 tipc_port_recv_proto_msg(buf);
1711 continue;
1712 case MSG_FRAGMENTER:
1713 l_ptr->stats.recv_fragments++;
1714 ret = tipc_link_recv_fragment(
1715 &l_ptr->defragm_buf,
1716 &buf, &msg);
1717 if (ret == 1) {
1718 l_ptr->stats.recv_fragmented++;
1719 goto deliver;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001720 }
Allan Stephensc74a4612011-11-02 15:08:44 -04001721 if (ret == -1)
1722 l_ptr->next_in_no--;
1723 break;
1724 case CHANGEOVER_PROTOCOL:
1725 type = msg_type(msg);
1726 if (link_recv_changeover_msg(&l_ptr,
1727 &buf)) {
1728 msg = buf_msg(buf);
1729 seq_no = msg_seqno(msg);
1730 if (type == ORIGINAL_MSG)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001731 goto deliver;
Allan Stephensc74a4612011-11-02 15:08:44 -04001732 goto protocol_check;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001733 }
Allan Stephensc74a4612011-11-02 15:08:44 -04001734 break;
1735 default:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001736 kfree_skb(buf);
Allan Stephensc74a4612011-11-02 15:08:44 -04001737 buf = NULL;
1738 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001739 }
Per Liden4323add2006-01-18 00:38:21 +01001740 tipc_node_unlock(n_ptr);
1741 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001742 continue;
1743 }
1744 link_handle_out_of_seq_msg(l_ptr, buf);
1745 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001746 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001747 continue;
1748 }
1749
Jon Maloyc64f7a62012-11-16 13:51:31 +08001750 /* Link is not in state WORKING_WORKING */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001751 if (msg_user(msg) == LINK_PROTOCOL) {
1752 link_recv_proto_msg(l_ptr, buf);
1753 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001754 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001755 continue;
1756 }
Jon Maloyc64f7a62012-11-16 13:51:31 +08001757
1758 /* Traffic message. Conditionally activate link */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001759 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1760
1761 if (link_working_working(l_ptr)) {
Jon Maloyc64f7a62012-11-16 13:51:31 +08001762 /* Re-insert buffer in front of queue */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001763 buf->next = head;
1764 head = buf;
Per Liden4323add2006-01-18 00:38:21 +01001765 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001766 continue;
1767 }
Per Liden4323add2006-01-18 00:38:21 +01001768 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001769cont:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001770 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001771 }
Per Liden4323add2006-01-18 00:38:21 +01001772 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001773}
1774
Ben Hutchings2c530402012-07-10 10:55:09 +00001775/**
Allan Stephens8809b252011-10-25 10:44:35 -04001776 * tipc_link_defer_pkt - Add out-of-sequence message to deferred reception queue
1777 *
1778 * Returns increase in queue length (i.e. 0 or 1)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001779 */
Allan Stephens8809b252011-10-25 10:44:35 -04001780u32 tipc_link_defer_pkt(struct sk_buff **head, struct sk_buff **tail,
Per Liden4323add2006-01-18 00:38:21 +01001781 struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001782{
Allan Stephens8809b252011-10-25 10:44:35 -04001783 struct sk_buff *queue_buf;
1784 struct sk_buff **prev;
Allan Stephensf9057302011-10-24 16:03:12 -04001785 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001786
1787 buf->next = NULL;
1788
1789 /* Empty queue ? */
1790 if (*head == NULL) {
1791 *head = *tail = buf;
1792 return 1;
1793 }
1794
1795 /* Last ? */
Allan Stephensf9057302011-10-24 16:03:12 -04001796 if (less(buf_seqno(*tail), seq_no)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001797 (*tail)->next = buf;
1798 *tail = buf;
1799 return 1;
1800 }
1801
Allan Stephens8809b252011-10-25 10:44:35 -04001802 /* Locate insertion point in queue, then insert; discard if duplicate */
1803 prev = head;
1804 queue_buf = *head;
1805 for (;;) {
1806 u32 curr_seqno = buf_seqno(queue_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001807
Allan Stephens8809b252011-10-25 10:44:35 -04001808 if (seq_no == curr_seqno) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001809 kfree_skb(buf);
Allan Stephens8809b252011-10-25 10:44:35 -04001810 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001811 }
Allan Stephens8809b252011-10-25 10:44:35 -04001812
1813 if (less(seq_no, curr_seqno))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001814 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001815
Allan Stephens8809b252011-10-25 10:44:35 -04001816 prev = &queue_buf->next;
1817 queue_buf = queue_buf->next;
1818 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001819
Allan Stephens8809b252011-10-25 10:44:35 -04001820 buf->next = queue_buf;
1821 *prev = buf;
1822 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001823}
1824
Allan Stephens8809b252011-10-25 10:44:35 -04001825/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001826 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1827 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001828static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001829 struct sk_buff *buf)
1830{
Allan Stephensf9057302011-10-24 16:03:12 -04001831 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001832
1833 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
1834 link_recv_proto_msg(l_ptr, buf);
1835 return;
1836 }
1837
Per Lidenb97bf3f2006-01-02 19:04:38 +01001838 /* Record OOS packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001839 l_ptr->checkpoint--;
1840
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001841 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001842 * Discard packet if a duplicate; otherwise add it to deferred queue
1843 * and notify peer of gap as per protocol specification
1844 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001845 if (less(seq_no, mod(l_ptr->next_in_no))) {
1846 l_ptr->stats.duplicates++;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001847 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001848 return;
1849 }
1850
Per Liden4323add2006-01-18 00:38:21 +01001851 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1852 &l_ptr->newest_deferred_in, buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001853 l_ptr->deferred_inqueue_sz++;
1854 l_ptr->stats.deferred_recv++;
1855 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
Per Liden4323add2006-01-18 00:38:21 +01001856 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001857 } else
1858 l_ptr->stats.duplicates++;
1859}
1860
1861/*
1862 * Send protocol message to the other endpoint.
1863 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001864void tipc_link_send_proto_msg(struct tipc_link *l_ptr, u32 msg_typ,
Paul Gortmakerae8509c2013-06-17 10:54:47 -04001865 int probe_msg, u32 gap, u32 tolerance,
1866 u32 priority, u32 ack_mtu)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001867{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001868 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001869 struct tipc_msg *msg = l_ptr->pmsg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001870 u32 msg_size = sizeof(l_ptr->proto_msg);
Allan Stephens75f0aa42011-02-28 15:30:20 -05001871 int r_flag;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001872
Allan Stephens92d2c902011-10-25 11:20:26 -04001873 /* Discard any previous message that was deferred due to congestion */
Allan Stephens92d2c902011-10-25 11:20:26 -04001874 if (l_ptr->proto_msg_queue) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001875 kfree_skb(l_ptr->proto_msg_queue);
Allan Stephens92d2c902011-10-25 11:20:26 -04001876 l_ptr->proto_msg_queue = NULL;
1877 }
1878
Per Lidenb97bf3f2006-01-02 19:04:38 +01001879 if (link_blocked(l_ptr))
1880 return;
Allan Stephensb4b56102011-05-27 11:00:51 -04001881
1882 /* Abort non-RESET send if communication with node is prohibited */
Allan Stephensb4b56102011-05-27 11:00:51 -04001883 if ((l_ptr->owner->block_setup) && (msg_typ != RESET_MSG))
1884 return;
1885
Allan Stephens92d2c902011-10-25 11:20:26 -04001886 /* Create protocol message with "out-of-sequence" sequence number */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001887 msg_set_type(msg, msg_typ);
1888 msg_set_net_plane(msg, l_ptr->b_ptr->net_plane);
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001889 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001890 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
Per Lidenb97bf3f2006-01-02 19:04:38 +01001891
1892 if (msg_typ == STATE_MSG) {
1893 u32 next_sent = mod(l_ptr->next_out_no);
1894
Per Liden4323add2006-01-18 00:38:21 +01001895 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001896 return;
1897 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -04001898 next_sent = buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001899 msg_set_next_sent(msg, next_sent);
1900 if (l_ptr->oldest_deferred_in) {
Allan Stephensf9057302011-10-24 16:03:12 -04001901 u32 rec = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001902 gap = mod(rec - mod(l_ptr->next_in_no));
1903 }
1904 msg_set_seq_gap(msg, gap);
1905 if (gap)
1906 l_ptr->stats.sent_nacks++;
1907 msg_set_link_tolerance(msg, tolerance);
1908 msg_set_linkprio(msg, priority);
1909 msg_set_max_pkt(msg, ack_mtu);
1910 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1911 msg_set_probe(msg, probe_msg != 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001912 if (probe_msg) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001913 u32 mtu = l_ptr->max_pkt;
1914
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001915 if ((mtu < l_ptr->max_pkt_target) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001916 link_working_working(l_ptr) &&
1917 l_ptr->fsm_msg_cnt) {
1918 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001919 if (l_ptr->max_pkt_probes == 10) {
1920 l_ptr->max_pkt_target = (msg_size - 4);
1921 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001922 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001923 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001924 l_ptr->max_pkt_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001925 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001926
1927 l_ptr->stats.sent_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001928 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001929 l_ptr->stats.sent_states++;
1930 } else { /* RESET_MSG or ACTIVATE_MSG */
1931 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
1932 msg_set_seq_gap(msg, 0);
1933 msg_set_next_sent(msg, 1);
Allan Stephensf23d9bf2011-01-18 15:15:34 -05001934 msg_set_probe(msg, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001935 msg_set_link_tolerance(msg, l_ptr->tolerance);
1936 msg_set_linkprio(msg, l_ptr->priority);
1937 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
1938 }
1939
Allan Stephens75f0aa42011-02-28 15:30:20 -05001940 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
1941 msg_set_redundant_link(msg, r_flag);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001942 msg_set_linkprio(msg, l_ptr->priority);
Allan Stephens92d2c902011-10-25 11:20:26 -04001943 msg_set_size(msg, msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001944
1945 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
1946
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001947 buf = tipc_buf_acquire(msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001948 if (!buf)
1949 return;
1950
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001951 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
Ying Xue796c75d2013-06-17 10:54:48 -04001952 buf->priority = TC_PRIO_CONTROL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001953
Ying Xue3c294cb2012-11-15 11:34:45 +08001954 /* Defer message if bearer is already blocked */
1955 if (tipc_bearer_blocked(l_ptr->b_ptr)) {
Allan Stephens92d2c902011-10-25 11:20:26 -04001956 l_ptr->proto_msg_queue = buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001957 return;
1958 }
1959
Ying Xue3c294cb2012-11-15 11:34:45 +08001960 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
Allan Stephens92d2c902011-10-25 11:20:26 -04001961 l_ptr->unacked_window = 0;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001962 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001963}
1964
1965/*
1966 * Receive protocol message :
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001967 * Note that network plane id propagates through the network, and may
1968 * change at any time. The node with lowest address rules
Per Lidenb97bf3f2006-01-02 19:04:38 +01001969 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001970static void link_recv_proto_msg(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001971{
1972 u32 rec_gap = 0;
1973 u32 max_pkt_info;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001974 u32 max_pkt_ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001975 u32 msg_tol;
1976 struct tipc_msg *msg = buf_msg(buf);
1977
Per Lidenb97bf3f2006-01-02 19:04:38 +01001978 if (link_blocked(l_ptr))
1979 goto exit;
1980
1981 /* record unnumbered packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001982 l_ptr->checkpoint--;
1983
1984 if (l_ptr->b_ptr->net_plane != msg_net_plane(msg))
1985 if (tipc_own_addr > msg_prevnode(msg))
1986 l_ptr->b_ptr->net_plane = msg_net_plane(msg);
1987
1988 l_ptr->owner->permit_changeover = msg_redundant_link(msg);
1989
1990 switch (msg_type(msg)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001991
Per Lidenb97bf3f2006-01-02 19:04:38 +01001992 case RESET_MSG:
Allan Stephensa686e682008-06-04 17:29:39 -07001993 if (!link_working_unknown(l_ptr) &&
1994 (l_ptr->peer_session != INVALID_SESSION)) {
Allan Stephens641c2182011-04-07 09:54:43 -04001995 if (less_eq(msg_session(msg), l_ptr->peer_session))
1996 break; /* duplicate or old reset: ignore */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001997 }
Allan Stephensb4b56102011-05-27 11:00:51 -04001998
1999 if (!msg_redundant_link(msg) && (link_working_working(l_ptr) ||
2000 link_working_unknown(l_ptr))) {
2001 /*
2002 * peer has lost contact -- don't allow peer's links
2003 * to reactivate before we recognize loss & clean up
2004 */
2005 l_ptr->owner->block_setup = WAIT_NODE_DOWN;
2006 }
2007
Allan Stephens47361c82011-10-26 10:55:16 -04002008 link_state_event(l_ptr, RESET_MSG);
2009
Per Lidenb97bf3f2006-01-02 19:04:38 +01002010 /* fall thru' */
2011 case ACTIVATE_MSG:
2012 /* Update link settings according other endpoint's values */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002013 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
2014
Allan Stephens2db99832010-12-31 18:59:33 +00002015 msg_tol = msg_link_tolerance(msg);
2016 if (msg_tol > l_ptr->tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002017 link_set_supervision_props(l_ptr, msg_tol);
2018
2019 if (msg_linkprio(msg) > l_ptr->priority)
2020 l_ptr->priority = msg_linkprio(msg);
2021
2022 max_pkt_info = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002023 if (max_pkt_info) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002024 if (max_pkt_info < l_ptr->max_pkt_target)
2025 l_ptr->max_pkt_target = max_pkt_info;
2026 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
2027 l_ptr->max_pkt = l_ptr->max_pkt_target;
2028 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002029 l_ptr->max_pkt = l_ptr->max_pkt_target;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002030 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002031
Allan Stephens4d753132011-10-25 12:19:05 -04002032 /* Synchronize broadcast link info, if not done previously */
Allan Stephens7a54d4a2011-10-27 14:17:53 -04002033 if (!tipc_node_is_up(l_ptr->owner)) {
2034 l_ptr->owner->bclink.last_sent =
2035 l_ptr->owner->bclink.last_in =
2036 msg_last_bcast(msg);
2037 l_ptr->owner->bclink.oos_state = 0;
2038 }
Allan Stephens4d753132011-10-25 12:19:05 -04002039
Per Lidenb97bf3f2006-01-02 19:04:38 +01002040 l_ptr->peer_session = msg_session(msg);
2041 l_ptr->peer_bearer_id = msg_bearer_id(msg);
Allan Stephens47361c82011-10-26 10:55:16 -04002042
2043 if (msg_type(msg) == ACTIVATE_MSG)
2044 link_state_event(l_ptr, ACTIVATE_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002045 break;
2046 case STATE_MSG:
2047
Allan Stephens2db99832010-12-31 18:59:33 +00002048 msg_tol = msg_link_tolerance(msg);
2049 if (msg_tol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002050 link_set_supervision_props(l_ptr, msg_tol);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002051
2052 if (msg_linkprio(msg) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002053 (msg_linkprio(msg) != l_ptr->priority)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002054 pr_warn("%s<%s>, priority change %u->%u\n",
2055 link_rst_msg, l_ptr->name, l_ptr->priority,
2056 msg_linkprio(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002057 l_ptr->priority = msg_linkprio(msg);
Per Liden4323add2006-01-18 00:38:21 +01002058 tipc_link_reset(l_ptr); /* Enforce change to take effect */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002059 break;
2060 }
2061 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
2062 l_ptr->stats.recv_states++;
2063 if (link_reset_unknown(l_ptr))
2064 break;
2065
2066 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002067 rec_gap = mod(msg_next_sent(msg) -
Per Lidenb97bf3f2006-01-02 19:04:38 +01002068 mod(l_ptr->next_in_no));
2069 }
2070
2071 max_pkt_ack = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002072 if (max_pkt_ack > l_ptr->max_pkt) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002073 l_ptr->max_pkt = max_pkt_ack;
2074 l_ptr->max_pkt_probes = 0;
2075 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002076
2077 max_pkt_ack = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002078 if (msg_probe(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002079 l_ptr->stats.recv_probes++;
Allan Stephensa0168922010-12-31 18:59:35 +00002080 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002081 max_pkt_ack = msg_size(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002082 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002083
2084 /* Protocol message before retransmits, reduce loss risk */
Ying Xue389dd9b2012-11-16 13:51:30 +08002085 if (l_ptr->owner->bclink.recv_permitted)
Allan Stephens7a54d4a2011-10-27 14:17:53 -04002086 tipc_bclink_update_link_state(l_ptr->owner,
2087 msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002088
2089 if (rec_gap || (msg_probe(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01002090 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
2091 0, rec_gap, 0, 0, max_pkt_ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002092 }
2093 if (msg_seq_gap(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002094 l_ptr->stats.recv_nacks++;
Per Liden4323add2006-01-18 00:38:21 +01002095 tipc_link_retransmit(l_ptr, l_ptr->first_out,
2096 msg_seq_gap(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002097 }
2098 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002099 }
2100exit:
Allan Stephens5f6d9122011-11-04 13:24:29 -04002101 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002102}
2103
2104
2105/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002106 * tipc_link_tunnel(): Send one message via a link belonging to
Per Lidenb97bf3f2006-01-02 19:04:38 +01002107 * another bearer. Owner node is locked.
2108 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002109static void tipc_link_tunnel(struct tipc_link *l_ptr,
Paul Gortmakerae8509c2013-06-17 10:54:47 -04002110 struct tipc_msg *tunnel_hdr, struct tipc_msg *msg,
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002111 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002112{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002113 struct tipc_link *tunnel;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002114 struct sk_buff *buf;
2115 u32 length = msg_size(msg);
2116
2117 tunnel = l_ptr->owner->active_links[selector & 1];
Allan Stephens5392d642006-06-25 23:52:50 -07002118 if (!tipc_link_is_up(tunnel)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002119 pr_warn("%stunnel link no longer available\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002120 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002121 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002122 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002123 buf = tipc_buf_acquire(length + INT_H_SIZE);
Allan Stephens5392d642006-06-25 23:52:50 -07002124 if (!buf) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002125 pr_warn("%sunable to send tunnel msg\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002126 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002127 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002128 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
2129 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
Per Liden4323add2006-01-18 00:38:21 +01002130 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002131}
2132
2133
2134
2135/*
2136 * changeover(): Send whole message queue via the remaining link
2137 * Owner node is locked.
2138 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002139void tipc_link_changeover(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002140{
2141 u32 msgcount = l_ptr->out_queue_size;
2142 struct sk_buff *crs = l_ptr->first_out;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002143 struct tipc_link *tunnel = l_ptr->owner->active_links[0];
Per Lidenb97bf3f2006-01-02 19:04:38 +01002144 struct tipc_msg tunnel_hdr;
Allan Stephens5392d642006-06-25 23:52:50 -07002145 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002146
2147 if (!tunnel)
2148 return;
2149
Allan Stephens5392d642006-06-25 23:52:50 -07002150 if (!l_ptr->owner->permit_changeover) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002151 pr_warn("%speer did not permit changeover\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002152 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002153 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002154
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002155 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002156 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002157 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2158 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07002159
Per Lidenb97bf3f2006-01-02 19:04:38 +01002160 if (!l_ptr->first_out) {
2161 struct sk_buff *buf;
2162
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002163 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002164 if (buf) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002165 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002166 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Per Liden4323add2006-01-18 00:38:21 +01002167 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002168 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002169 pr_warn("%sunable to send changeover msg\n",
2170 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002171 }
2172 return;
2173 }
Allan Stephensf1310722006-06-25 23:51:37 -07002174
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002175 split_bundles = (l_ptr->owner->active_links[0] !=
Allan Stephens5392d642006-06-25 23:52:50 -07002176 l_ptr->owner->active_links[1]);
2177
Per Lidenb97bf3f2006-01-02 19:04:38 +01002178 while (crs) {
2179 struct tipc_msg *msg = buf_msg(crs);
2180
2181 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002182 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00002183 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002184
Florian Westphald788d802007-08-02 19:28:06 -07002185 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002186 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00002187 msg_set_seqno(m, msg_seqno(msg));
Per Liden4323add2006-01-18 00:38:21 +01002188 tipc_link_tunnel(l_ptr, &tunnel_hdr, m,
2189 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002190 pos += align(msg_size(m));
2191 m = (struct tipc_msg *)pos;
2192 }
2193 } else {
Per Liden4323add2006-01-18 00:38:21 +01002194 tipc_link_tunnel(l_ptr, &tunnel_hdr, msg,
2195 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002196 }
2197 crs = crs->next;
2198 }
2199}
2200
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002201void tipc_link_send_duplicate(struct tipc_link *l_ptr, struct tipc_link *tunnel)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002202{
2203 struct sk_buff *iter;
2204 struct tipc_msg tunnel_hdr;
2205
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002206 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002207 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002208 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
2209 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2210 iter = l_ptr->first_out;
2211 while (iter) {
2212 struct sk_buff *outbuf;
2213 struct tipc_msg *msg = buf_msg(iter);
2214 u32 length = msg_size(msg);
2215
2216 if (msg_user(msg) == MSG_BUNDLER)
2217 msg_set_type(msg, CLOSED_MSG);
2218 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002219 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002220 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002221 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002222 if (outbuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002223 pr_warn("%sunable to send duplicate msg\n",
2224 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002225 return;
2226 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002227 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
2228 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
2229 length);
Per Liden4323add2006-01-18 00:38:21 +01002230 tipc_link_send_buf(tunnel, outbuf);
2231 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002232 return;
2233 iter = iter->next;
2234 }
2235}
2236
Per Lidenb97bf3f2006-01-02 19:04:38 +01002237/**
2238 * buf_extract - extracts embedded TIPC message from another message
2239 * @skb: encapsulating message buffer
2240 * @from_pos: offset to extract from
2241 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002242 * Returns a new message buffer containing an embedded message. The
Per Lidenb97bf3f2006-01-02 19:04:38 +01002243 * encapsulating message itself is left unchanged.
2244 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002245static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
2246{
2247 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
2248 u32 size = msg_size(msg);
2249 struct sk_buff *eb;
2250
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002251 eb = tipc_buf_acquire(size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002252 if (eb)
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002253 skb_copy_to_linear_data(eb, msg, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002254 return eb;
2255}
2256
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002257/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01002258 * link_recv_changeover_msg(): Receive tunneled packet sent
2259 * via other link. Node is locked. Return extracted buffer.
2260 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002261static int link_recv_changeover_msg(struct tipc_link **l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002262 struct sk_buff **buf)
2263{
2264 struct sk_buff *tunnel_buf = *buf;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002265 struct tipc_link *dest_link;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002266 struct tipc_msg *msg;
2267 struct tipc_msg *tunnel_msg = buf_msg(tunnel_buf);
2268 u32 msg_typ = msg_type(tunnel_msg);
2269 u32 msg_count = msg_msgcnt(tunnel_msg);
Dan Carpentercb4b102f2013-05-06 08:28:41 +00002270 u32 bearer_id = msg_bearer_id(tunnel_msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002271
Dan Carpentercb4b102f2013-05-06 08:28:41 +00002272 if (bearer_id >= MAX_BEARERS)
2273 goto exit;
2274 dest_link = (*l_ptr)->owner->links[bearer_id];
Allan Stephensb29f1422010-12-31 18:59:25 +00002275 if (!dest_link)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002276 goto exit;
Allan Stephensf1310722006-06-25 23:51:37 -07002277 if (dest_link == *l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002278 pr_err("Unexpected changeover message on link <%s>\n",
2279 (*l_ptr)->name);
Allan Stephensf1310722006-06-25 23:51:37 -07002280 goto exit;
2281 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002282 *l_ptr = dest_link;
2283 msg = msg_get_wrapped(tunnel_msg);
2284
2285 if (msg_typ == DUPLICATE_MSG) {
Allan Stephensb29f1422010-12-31 18:59:25 +00002286 if (less(msg_seqno(msg), mod(dest_link->next_in_no)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002287 goto exit;
Allan Stephens0e659672010-12-31 18:59:32 +00002288 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002289 if (*buf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002290 pr_warn("%sduplicate msg dropped\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002291 goto exit;
2292 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002293 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002294 return 1;
2295 }
2296
2297 /* First original message ?: */
Per Liden4323add2006-01-18 00:38:21 +01002298 if (tipc_link_is_up(dest_link)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002299 pr_info("%s<%s>, changeover initiated by peer\n", link_rst_msg,
2300 dest_link->name);
Per Liden4323add2006-01-18 00:38:21 +01002301 tipc_link_reset(dest_link);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002302 dest_link->exp_msg_count = msg_count;
2303 if (!msg_count)
2304 goto exit;
2305 } else if (dest_link->exp_msg_count == START_CHANGEOVER) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002306 dest_link->exp_msg_count = msg_count;
2307 if (!msg_count)
2308 goto exit;
2309 }
2310
2311 /* Receive original message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002312 if (dest_link->exp_msg_count == 0) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002313 pr_warn("%sgot too many tunnelled messages\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002314 goto exit;
2315 }
2316 dest_link->exp_msg_count--;
2317 if (less(msg_seqno(msg), dest_link->reset_checkpoint)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002318 goto exit;
2319 } else {
2320 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
2321 if (*buf != NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002322 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002323 return 1;
2324 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002325 pr_warn("%soriginal msg dropped\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002326 }
2327 }
2328exit:
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002329 *buf = NULL;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002330 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002331 return 0;
2332}
2333
2334/*
2335 * Bundler functionality:
2336 */
Per Liden4323add2006-01-18 00:38:21 +01002337void tipc_link_recv_bundle(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002338{
2339 u32 msgcount = msg_msgcnt(buf_msg(buf));
2340 u32 pos = INT_H_SIZE;
2341 struct sk_buff *obuf;
2342
Per Lidenb97bf3f2006-01-02 19:04:38 +01002343 while (msgcount--) {
2344 obuf = buf_extract(buf, pos);
2345 if (obuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002346 pr_warn("Link unable to unbundle message(s)\n");
Allan Stephensa10bd922006-06-25 23:52:17 -07002347 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002348 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002349 pos += align(msg_size(buf_msg(obuf)));
Per Liden4323add2006-01-18 00:38:21 +01002350 tipc_net_route_msg(obuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002351 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002352 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002353}
2354
2355/*
2356 * Fragmentation/defragmentation:
2357 */
2358
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002359/*
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002360 * link_send_long_buf: Entry for buffers needing fragmentation.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002361 * The buffer is complete, inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002362 * Returns user data length.
2363 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002364static int link_send_long_buf(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002365{
Allan Stephens77561552011-04-17 13:06:23 -04002366 struct sk_buff *buf_chain = NULL;
2367 struct sk_buff *buf_chain_tail = (struct sk_buff *)&buf_chain;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002368 struct tipc_msg *inmsg = buf_msg(buf);
2369 struct tipc_msg fragm_hdr;
2370 u32 insize = msg_size(inmsg);
2371 u32 dsz = msg_data_sz(inmsg);
2372 unchar *crs = buf->data;
2373 u32 rest = insize;
Allan Stephens15e979d2010-05-11 14:30:10 +00002374 u32 pack_sz = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002375 u32 fragm_sz = pack_sz - INT_H_SIZE;
Allan Stephens77561552011-04-17 13:06:23 -04002376 u32 fragm_no = 0;
Allan Stephens9c396a72008-06-04 17:36:58 -07002377 u32 destaddr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002378
2379 if (msg_short(inmsg))
2380 destaddr = l_ptr->addr;
Allan Stephens9c396a72008-06-04 17:36:58 -07002381 else
2382 destaddr = msg_destnode(inmsg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002383
Per Lidenb97bf3f2006-01-02 19:04:38 +01002384 /* Prepare reusable fragment header: */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002385 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07002386 INT_H_SIZE, destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002387
2388 /* Chop up message: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002389 while (rest > 0) {
2390 struct sk_buff *fragm;
2391
2392 if (rest <= fragm_sz) {
2393 fragm_sz = rest;
2394 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
2395 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002396 fragm = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002397 if (fragm == NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002398 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002399 while (buf_chain) {
2400 buf = buf_chain;
2401 buf_chain = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002402 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002403 }
2404 return -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002405 }
2406 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
Allan Stephens77561552011-04-17 13:06:23 -04002407 fragm_no++;
2408 msg_set_fragm_no(&fragm_hdr, fragm_no);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002409 skb_copy_to_linear_data(fragm, &fragm_hdr, INT_H_SIZE);
2410 skb_copy_to_linear_data_offset(fragm, INT_H_SIZE, crs,
2411 fragm_sz);
Allan Stephens77561552011-04-17 13:06:23 -04002412 buf_chain_tail->next = fragm;
2413 buf_chain_tail = fragm;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002414
Per Lidenb97bf3f2006-01-02 19:04:38 +01002415 rest -= fragm_sz;
2416 crs += fragm_sz;
2417 msg_set_type(&fragm_hdr, FRAGMENT);
2418 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002419 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002420
2421 /* Append chain of fragments to send queue & send them */
Allan Stephens77561552011-04-17 13:06:23 -04002422 l_ptr->long_msg_seq_no++;
2423 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
2424 l_ptr->stats.sent_fragments += fragm_no;
2425 l_ptr->stats.sent_fragmented++;
2426 tipc_link_push_queue(l_ptr);
2427
Per Lidenb97bf3f2006-01-02 19:04:38 +01002428 return dsz;
2429}
2430
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002431/*
2432 * A pending message being re-assembled must store certain values
2433 * to handle subsequent fragments correctly. The following functions
Per Lidenb97bf3f2006-01-02 19:04:38 +01002434 * help storing these values in unused, available fields in the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002435 * pending message. This makes dynamic memory allocation unnecessary.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002436 */
Sam Ravnborg05790c62006-03-20 22:37:04 -08002437static void set_long_msg_seqno(struct sk_buff *buf, u32 seqno)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002438{
2439 msg_set_seqno(buf_msg(buf), seqno);
2440}
2441
Sam Ravnborg05790c62006-03-20 22:37:04 -08002442static u32 get_fragm_size(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002443{
2444 return msg_ack(buf_msg(buf));
2445}
2446
Sam Ravnborg05790c62006-03-20 22:37:04 -08002447static void set_fragm_size(struct sk_buff *buf, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002448{
2449 msg_set_ack(buf_msg(buf), sz);
2450}
2451
Sam Ravnborg05790c62006-03-20 22:37:04 -08002452static u32 get_expected_frags(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002453{
2454 return msg_bcast_ack(buf_msg(buf));
2455}
2456
Sam Ravnborg05790c62006-03-20 22:37:04 -08002457static void set_expected_frags(struct sk_buff *buf, u32 exp)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002458{
2459 msg_set_bcast_ack(buf_msg(buf), exp);
2460}
2461
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002462/*
2463 * tipc_link_recv_fragment(): Called with node lock on. Returns
Per Lidenb97bf3f2006-01-02 19:04:38 +01002464 * the reassembled buffer if message is complete.
2465 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002466int tipc_link_recv_fragment(struct sk_buff **pending, struct sk_buff **fb,
Per Liden4323add2006-01-18 00:38:21 +01002467 struct tipc_msg **m)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002468{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002469 struct sk_buff *prev = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002470 struct sk_buff *fbuf = *fb;
2471 struct tipc_msg *fragm = buf_msg(fbuf);
2472 struct sk_buff *pbuf = *pending;
2473 u32 long_msg_seq_no = msg_long_msgno(fragm);
2474
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002475 *fb = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002476
2477 /* Is there an incomplete message waiting for this fragment? */
Allan Stephensf9057302011-10-24 16:03:12 -04002478 while (pbuf && ((buf_seqno(pbuf) != long_msg_seq_no) ||
Joe Perchesf64f9e72009-11-29 16:55:45 -08002479 (msg_orignode(fragm) != msg_orignode(buf_msg(pbuf))))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002480 prev = pbuf;
2481 pbuf = pbuf->next;
2482 }
2483
2484 if (!pbuf && (msg_type(fragm) == FIRST_FRAGMENT)) {
2485 struct tipc_msg *imsg = (struct tipc_msg *)msg_data(fragm);
2486 u32 msg_sz = msg_size(imsg);
2487 u32 fragm_sz = msg_data_sz(fragm);
Dan Carpenter6bf15192013-05-06 09:31:17 +00002488 u32 exp_fragm_cnt;
Allan Stephens741d9eb2011-05-31 15:03:18 -04002489 u32 max = TIPC_MAX_USER_MSG_SIZE + NAMED_H_SIZE;
Dan Carpenter6bf15192013-05-06 09:31:17 +00002490
Per Lidenb97bf3f2006-01-02 19:04:38 +01002491 if (msg_type(imsg) == TIPC_MCAST_MSG)
2492 max = TIPC_MAX_USER_MSG_SIZE + MCAST_H_SIZE;
Dan Carpenter6bf15192013-05-06 09:31:17 +00002493 if (fragm_sz == 0 || msg_size(imsg) > max) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002494 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002495 return 0;
2496 }
Dan Carpenter6bf15192013-05-06 09:31:17 +00002497 exp_fragm_cnt = msg_sz / fragm_sz + !!(msg_sz % fragm_sz);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002498 pbuf = tipc_buf_acquire(msg_size(imsg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002499 if (pbuf != NULL) {
2500 pbuf->next = *pending;
2501 *pending = pbuf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002502 skb_copy_to_linear_data(pbuf, imsg,
2503 msg_data_sz(fragm));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002504 /* Prepare buffer for subsequent fragments. */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002505 set_long_msg_seqno(pbuf, long_msg_seq_no);
Allan Stephens0e659672010-12-31 18:59:32 +00002506 set_fragm_size(pbuf, fragm_sz);
2507 set_expected_frags(pbuf, exp_fragm_cnt - 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002508 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002509 pr_debug("Link unable to reassemble fragmented message\n");
Allan Stephens5f6d9122011-11-04 13:24:29 -04002510 kfree_skb(fbuf);
Allan Stephensb76b27c2011-10-27 16:31:26 -04002511 return -1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002512 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002513 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002514 return 0;
2515 } else if (pbuf && (msg_type(fragm) != FIRST_FRAGMENT)) {
2516 u32 dsz = msg_data_sz(fragm);
2517 u32 fsz = get_fragm_size(pbuf);
2518 u32 crs = ((msg_fragm_no(fragm) - 1) * fsz);
2519 u32 exp_frags = get_expected_frags(pbuf) - 1;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002520 skb_copy_to_linear_data_offset(pbuf, crs,
2521 msg_data(fragm), dsz);
Allan Stephens5f6d9122011-11-04 13:24:29 -04002522 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002523
2524 /* Is message complete? */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002525 if (exp_frags == 0) {
2526 if (prev)
2527 prev->next = pbuf->next;
2528 else
2529 *pending = pbuf->next;
2530 msg_reset_reroute_cnt(buf_msg(pbuf));
2531 *fb = pbuf;
2532 *m = buf_msg(pbuf);
2533 return 1;
2534 }
Allan Stephens0e659672010-12-31 18:59:32 +00002535 set_expected_frags(pbuf, exp_frags);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002536 return 0;
2537 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002538 kfree_skb(fbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002539 return 0;
2540}
2541
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002542static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002543{
Allan Stephens5413b4c2011-01-18 13:24:55 -05002544 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
2545 return;
2546
Per Lidenb97bf3f2006-01-02 19:04:38 +01002547 l_ptr->tolerance = tolerance;
2548 l_ptr->continuity_interval =
2549 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
2550 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
2551}
2552
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002553void tipc_link_set_queue_limits(struct tipc_link *l_ptr, u32 window)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002554{
2555 /* Data messages from this node, inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002556 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
2557 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
2558 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
2559 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002560 /* Transiting data messages,inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002561 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
2562 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
2563 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
2564 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002565 l_ptr->queue_limit[CONN_MANAGER] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002566 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
2567 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
2568 /* FRAGMENT and LAST_FRAGMENT packets */
2569 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
2570}
2571
2572/**
2573 * link_find_link - locate link by name
Ben Hutchings2c530402012-07-10 10:55:09 +00002574 * @name: ptr to link name string
2575 * @node: ptr to area to be filled with ptr to associated node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002576 *
Per Liden4323add2006-01-18 00:38:21 +01002577 * Caller must hold 'tipc_net_lock' to ensure node and bearer are not deleted;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002578 * this also prevents link deletion.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002579 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002580 * Returns pointer to link (or 0 if invalid link name).
2581 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002582static struct tipc_link *link_find_link(const char *name,
2583 struct tipc_node **node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002584{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002585 struct tipc_link_name link_name_parts;
Allan Stephens2d627b92011-01-07 13:00:11 -05002586 struct tipc_bearer *b_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002587 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002588
2589 if (!link_name_validate(name, &link_name_parts))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002590 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002591
Per Liden4323add2006-01-18 00:38:21 +01002592 b_ptr = tipc_bearer_find_interface(link_name_parts.if_local);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002593 if (!b_ptr)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002594 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002595
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002596 *node = tipc_node_find(link_name_parts.addr_peer);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002597 if (!*node)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002598 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002599
2600 l_ptr = (*node)->links[b_ptr->identity];
2601 if (!l_ptr || strcmp(l_ptr->name, name))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002602 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002603
2604 return l_ptr;
2605}
2606
Allan Stephens5c216e12011-10-18 11:34:29 -04002607/**
2608 * link_value_is_valid -- validate proposed link tolerance/priority/window
2609 *
Ben Hutchings2c530402012-07-10 10:55:09 +00002610 * @cmd: value type (TIPC_CMD_SET_LINK_*)
2611 * @new_value: the new value
Allan Stephens5c216e12011-10-18 11:34:29 -04002612 *
2613 * Returns 1 if value is within range, 0 if not.
2614 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002615static int link_value_is_valid(u16 cmd, u32 new_value)
2616{
2617 switch (cmd) {
2618 case TIPC_CMD_SET_LINK_TOL:
2619 return (new_value >= TIPC_MIN_LINK_TOL) &&
2620 (new_value <= TIPC_MAX_LINK_TOL);
2621 case TIPC_CMD_SET_LINK_PRI:
2622 return (new_value <= TIPC_MAX_LINK_PRI);
2623 case TIPC_CMD_SET_LINK_WINDOW:
2624 return (new_value >= TIPC_MIN_LINK_WIN) &&
2625 (new_value <= TIPC_MAX_LINK_WIN);
2626 }
2627 return 0;
2628}
2629
Allan Stephens5c216e12011-10-18 11:34:29 -04002630/**
2631 * link_cmd_set_value - change priority/tolerance/window for link/bearer/media
Ben Hutchings2c530402012-07-10 10:55:09 +00002632 * @name: ptr to link, bearer, or media name
2633 * @new_value: new value of link, bearer, or media setting
2634 * @cmd: which link, bearer, or media attribute to set (TIPC_CMD_SET_LINK_*)
Allan Stephens5c216e12011-10-18 11:34:29 -04002635 *
2636 * Caller must hold 'tipc_net_lock' to ensure link/bearer/media is not deleted.
2637 *
2638 * Returns 0 if value updated and negative value on error.
2639 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002640static int link_cmd_set_value(const char *name, u32 new_value, u16 cmd)
2641{
2642 struct tipc_node *node;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002643 struct tipc_link *l_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002644 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -05002645 struct tipc_media *m_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002646
2647 l_ptr = link_find_link(name, &node);
2648 if (l_ptr) {
2649 /*
2650 * acquire node lock for tipc_link_send_proto_msg().
2651 * see "TIPC locking policy" in net.c.
2652 */
2653 tipc_node_lock(node);
2654 switch (cmd) {
2655 case TIPC_CMD_SET_LINK_TOL:
2656 link_set_supervision_props(l_ptr, new_value);
2657 tipc_link_send_proto_msg(l_ptr,
2658 STATE_MSG, 0, 0, new_value, 0, 0);
2659 break;
2660 case TIPC_CMD_SET_LINK_PRI:
2661 l_ptr->priority = new_value;
2662 tipc_link_send_proto_msg(l_ptr,
2663 STATE_MSG, 0, 0, 0, new_value, 0);
2664 break;
2665 case TIPC_CMD_SET_LINK_WINDOW:
2666 tipc_link_set_queue_limits(l_ptr, new_value);
2667 break;
2668 }
2669 tipc_node_unlock(node);
2670 return 0;
2671 }
2672
2673 b_ptr = tipc_bearer_find(name);
2674 if (b_ptr) {
2675 switch (cmd) {
2676 case TIPC_CMD_SET_LINK_TOL:
2677 b_ptr->tolerance = new_value;
2678 return 0;
2679 case TIPC_CMD_SET_LINK_PRI:
2680 b_ptr->priority = new_value;
2681 return 0;
2682 case TIPC_CMD_SET_LINK_WINDOW:
2683 b_ptr->window = new_value;
2684 return 0;
2685 }
2686 return -EINVAL;
2687 }
2688
2689 m_ptr = tipc_media_find(name);
2690 if (!m_ptr)
2691 return -ENODEV;
2692 switch (cmd) {
2693 case TIPC_CMD_SET_LINK_TOL:
2694 m_ptr->tolerance = new_value;
2695 return 0;
2696 case TIPC_CMD_SET_LINK_PRI:
2697 m_ptr->priority = new_value;
2698 return 0;
2699 case TIPC_CMD_SET_LINK_WINDOW:
2700 m_ptr->window = new_value;
2701 return 0;
2702 }
2703 return -EINVAL;
2704}
2705
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002706struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
Per Liden4323add2006-01-18 00:38:21 +01002707 u16 cmd)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002708{
2709 struct tipc_link_config *args;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002710 u32 new_value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002711 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002712
2713 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
Per Liden4323add2006-01-18 00:38:21 +01002714 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002715
2716 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2717 new_value = ntohl(args->value);
2718
Allan Stephens5c216e12011-10-18 11:34:29 -04002719 if (!link_value_is_valid(cmd, new_value))
2720 return tipc_cfg_reply_error_string(
2721 "cannot change, value invalid");
2722
Per Liden4323add2006-01-18 00:38:21 +01002723 if (!strcmp(args->name, tipc_bclink_name)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002724 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
Per Liden4323add2006-01-18 00:38:21 +01002725 (tipc_bclink_set_queue_limits(new_value) == 0))
2726 return tipc_cfg_reply_none();
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002727 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
Per Liden4323add2006-01-18 00:38:21 +01002728 " (cannot change setting on broadcast link)");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002729 }
2730
Per Liden4323add2006-01-18 00:38:21 +01002731 read_lock_bh(&tipc_net_lock);
Allan Stephens5c216e12011-10-18 11:34:29 -04002732 res = link_cmd_set_value(args->name, new_value, cmd);
Per Liden4323add2006-01-18 00:38:21 +01002733 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002734 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002735 return tipc_cfg_reply_error_string("cannot change link setting");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002736
Per Liden4323add2006-01-18 00:38:21 +01002737 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002738}
2739
2740/**
2741 * link_reset_statistics - reset link statistics
2742 * @l_ptr: pointer to link
2743 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002744static void link_reset_statistics(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002745{
2746 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2747 l_ptr->stats.sent_info = l_ptr->next_out_no;
2748 l_ptr->stats.recv_info = l_ptr->next_in_no;
2749}
2750
Per Liden4323add2006-01-18 00:38:21 +01002751struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002752{
2753 char *link_name;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002754 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002755 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002756
2757 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002758 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002759
2760 link_name = (char *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +01002761 if (!strcmp(link_name, tipc_bclink_name)) {
2762 if (tipc_bclink_reset_stats())
2763 return tipc_cfg_reply_error_string("link not found");
2764 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002765 }
2766
Per Liden4323add2006-01-18 00:38:21 +01002767 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002768 l_ptr = link_find_link(link_name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002769 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002770 read_unlock_bh(&tipc_net_lock);
2771 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002772 }
2773
Per Liden4323add2006-01-18 00:38:21 +01002774 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002775 link_reset_statistics(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +01002776 tipc_node_unlock(node);
2777 read_unlock_bh(&tipc_net_lock);
2778 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002779}
2780
2781/**
2782 * percent - convert count to a percentage of total (rounding up or down)
2783 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002784static u32 percent(u32 count, u32 total)
2785{
2786 return (count * 100 + (total / 2)) / total;
2787}
2788
2789/**
Per Liden4323add2006-01-18 00:38:21 +01002790 * tipc_link_stats - print link statistics
Per Lidenb97bf3f2006-01-02 19:04:38 +01002791 * @name: link name
2792 * @buf: print buffer area
2793 * @buf_size: size of print buffer area
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002794 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002795 * Returns length of print buffer data string (or 0 if error)
2796 */
Per Liden4323add2006-01-18 00:38:21 +01002797static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002798{
Erik Hugnedc1aed32012-06-29 00:50:23 -04002799 struct tipc_link *l;
2800 struct tipc_stats *s;
David S. Miller6c000552008-09-02 23:38:32 -07002801 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002802 char *status;
2803 u32 profile_total = 0;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002804 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002805
Per Liden4323add2006-01-18 00:38:21 +01002806 if (!strcmp(name, tipc_bclink_name))
2807 return tipc_bclink_stats(buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002808
Per Liden4323add2006-01-18 00:38:21 +01002809 read_lock_bh(&tipc_net_lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002810 l = link_find_link(name, &node);
2811 if (!l) {
Per Liden4323add2006-01-18 00:38:21 +01002812 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002813 return 0;
2814 }
Per Liden4323add2006-01-18 00:38:21 +01002815 tipc_node_lock(node);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002816 s = &l->stats;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002817
Erik Hugnedc1aed32012-06-29 00:50:23 -04002818 if (tipc_link_is_active(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002819 status = "ACTIVE";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002820 else if (tipc_link_is_up(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002821 status = "STANDBY";
2822 else
2823 status = "DEFUNCT";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002824
2825 ret = tipc_snprintf(buf, buf_size, "Link <%s>\n"
2826 " %s MTU:%u Priority:%u Tolerance:%u ms"
2827 " Window:%u packets\n",
2828 l->name, status, l->max_pkt, l->priority,
2829 l->tolerance, l->queue_limit[0]);
2830
2831 ret += tipc_snprintf(buf + ret, buf_size - ret,
2832 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
2833 l->next_in_no - s->recv_info, s->recv_fragments,
2834 s->recv_fragmented, s->recv_bundles,
2835 s->recv_bundled);
2836
2837 ret += tipc_snprintf(buf + ret, buf_size - ret,
2838 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
2839 l->next_out_no - s->sent_info, s->sent_fragments,
2840 s->sent_fragmented, s->sent_bundles,
2841 s->sent_bundled);
2842
2843 profile_total = s->msg_length_counts;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002844 if (!profile_total)
2845 profile_total = 1;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002846
2847 ret += tipc_snprintf(buf + ret, buf_size - ret,
2848 " TX profile sample:%u packets average:%u octets\n"
2849 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
2850 "-16384:%u%% -32768:%u%% -66000:%u%%\n",
2851 s->msg_length_counts,
2852 s->msg_lengths_total / profile_total,
2853 percent(s->msg_length_profile[0], profile_total),
2854 percent(s->msg_length_profile[1], profile_total),
2855 percent(s->msg_length_profile[2], profile_total),
2856 percent(s->msg_length_profile[3], profile_total),
2857 percent(s->msg_length_profile[4], profile_total),
2858 percent(s->msg_length_profile[5], profile_total),
2859 percent(s->msg_length_profile[6], profile_total));
2860
2861 ret += tipc_snprintf(buf + ret, buf_size - ret,
2862 " RX states:%u probes:%u naks:%u defs:%u"
2863 " dups:%u\n", s->recv_states, s->recv_probes,
2864 s->recv_nacks, s->deferred_recv, s->duplicates);
2865
2866 ret += tipc_snprintf(buf + ret, buf_size - ret,
2867 " TX states:%u probes:%u naks:%u acks:%u"
2868 " dups:%u\n", s->sent_states, s->sent_probes,
2869 s->sent_nacks, s->sent_acks, s->retransmitted);
2870
2871 ret += tipc_snprintf(buf + ret, buf_size - ret,
Ying Xue3c294cb2012-11-15 11:34:45 +08002872 " Congestion link:%u Send queue"
2873 " max:%u avg:%u\n", s->link_congs,
Erik Hugnedc1aed32012-06-29 00:50:23 -04002874 s->max_queue_sz, s->queue_sz_counts ?
2875 (s->accu_queue_sz / s->queue_sz_counts) : 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002876
Per Liden4323add2006-01-18 00:38:21 +01002877 tipc_node_unlock(node);
2878 read_unlock_bh(&tipc_net_lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002879 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002880}
2881
Per Liden4323add2006-01-18 00:38:21 +01002882struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002883{
2884 struct sk_buff *buf;
2885 struct tlv_desc *rep_tlv;
2886 int str_len;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002887 int pb_len;
2888 char *pb;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002889
2890 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002891 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002892
Erik Hugnedc1aed32012-06-29 00:50:23 -04002893 buf = tipc_cfg_reply_alloc(TLV_SPACE(ULTRA_STRING_MAX_LEN));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002894 if (!buf)
2895 return NULL;
2896
2897 rep_tlv = (struct tlv_desc *)buf->data;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002898 pb = TLV_DATA(rep_tlv);
2899 pb_len = ULTRA_STRING_MAX_LEN;
Per Liden4323add2006-01-18 00:38:21 +01002900 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
Erik Hugnedc1aed32012-06-29 00:50:23 -04002901 pb, pb_len);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002902 if (!str_len) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002903 kfree_skb(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002904 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002905 }
Erik Hugnedc1aed32012-06-29 00:50:23 -04002906 str_len += 1; /* for "\0" */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002907 skb_put(buf, TLV_SPACE(str_len));
2908 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
2909
2910 return buf;
2911}
2912
Per Lidenb97bf3f2006-01-02 19:04:38 +01002913/**
Per Liden4323add2006-01-18 00:38:21 +01002914 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
Per Lidenb97bf3f2006-01-02 19:04:38 +01002915 * @dest: network address of destination node
2916 * @selector: used to select from set of active links
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002917 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002918 * If no active link can be found, uses default maximum packet size.
2919 */
Per Liden4323add2006-01-18 00:38:21 +01002920u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002921{
David S. Miller6c000552008-09-02 23:38:32 -07002922 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002923 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002924 u32 res = MAX_PKT_DEFAULT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002925
Per Lidenb97bf3f2006-01-02 19:04:38 +01002926 if (dest == tipc_own_addr)
2927 return MAX_MSG_SIZE;
2928
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002929 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00002930 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002931 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002932 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002933 l_ptr = n_ptr->active_links[selector & 1];
2934 if (l_ptr)
Allan Stephens15e979d2010-05-11 14:30:10 +00002935 res = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01002936 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002937 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002938 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002939 return res;
2940}
2941
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002942static void link_print(struct tipc_link *l_ptr, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002943{
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002944 pr_info("%s Link %x<%s>:", str, l_ptr->addr, l_ptr->b_ptr->name);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002945
Per Lidenb97bf3f2006-01-02 19:04:38 +01002946 if (link_working_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002947 pr_cont(":WU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002948 else if (link_reset_reset(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002949 pr_cont(":RR\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002950 else if (link_reset_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002951 pr_cont(":RU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002952 else if (link_working_working(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002953 pr_cont(":WW\n");
2954 else
2955 pr_cont("\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002956}