blob: 24d058796cd955d99452c7c90d941ec0fd124878 [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 Paul Maloy170b3922014-01-07 17:02:41 -05004 * Copyright (c) 1996-2007, 2012-2014, 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
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050078static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +010079 struct sk_buff *buf);
Ying Xue247f0f32014-02-18 16:06:46 +080080static void tipc_link_proto_rcv(struct tipc_link *l_ptr, struct sk_buff *buf);
Jon Paul Maloy3bb53382014-02-13 17:29:12 -050081static int tipc_link_tunnel_rcv(struct tipc_node *n_ptr,
Jon Paul Maloy170b3922014-01-07 17:02:41 -050082 struct sk_buff **buf);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050083static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance);
Ying Xue247f0f32014-02-18 16:06:46 +080084static int tipc_link_iovec_long_xmit(struct tipc_port *sender,
85 struct iovec const *msg_sect,
86 unsigned int len, u32 destnode);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050087static void link_state_event(struct tipc_link *l_ptr, u32 event);
88static void link_reset_statistics(struct tipc_link *l_ptr);
89static void link_print(struct tipc_link *l_ptr, const char *str);
Ying Xue247f0f32014-02-18 16:06:46 +080090static int tipc_link_frag_xmit(struct tipc_link *l_ptr, struct sk_buff *buf);
91static void tipc_link_sync_xmit(struct tipc_link *l);
92static void tipc_link_sync_rcv(struct tipc_node *n, struct sk_buff *buf);
stephen hemminger31e3c3f2010-10-13 13:20:35 +000093
Per Lidenb97bf3f2006-01-02 19:04:38 +010094/*
Sam Ravnborg05790c62006-03-20 22:37:04 -080095 * Simple link routines
Per Lidenb97bf3f2006-01-02 19:04:38 +010096 */
Sam Ravnborg05790c62006-03-20 22:37:04 -080097static unsigned int align(unsigned int i)
Per Lidenb97bf3f2006-01-02 19:04:38 +010098{
99 return (i + 3) & ~3u;
100}
101
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500102static void link_init_max_pkt(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100103{
Ying Xue7a2f7d12014-04-21 10:55:46 +0800104 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100105 u32 max_pkt;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900106
Ying Xue7a2f7d12014-04-21 10:55:46 +0800107 rcu_read_lock();
108 b_ptr = rcu_dereference_rtnl(bearer_list[l_ptr->bearer_id]);
109 if (!b_ptr) {
110 rcu_read_unlock();
111 return;
112 }
113 max_pkt = (b_ptr->mtu & ~3);
114 rcu_read_unlock();
115
Per Lidenb97bf3f2006-01-02 19:04:38 +0100116 if (max_pkt > MAX_MSG_SIZE)
117 max_pkt = MAX_MSG_SIZE;
118
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900119 l_ptr->max_pkt_target = max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100120 if (l_ptr->max_pkt_target < MAX_PKT_DEFAULT)
121 l_ptr->max_pkt = l_ptr->max_pkt_target;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900122 else
Per Lidenb97bf3f2006-01-02 19:04:38 +0100123 l_ptr->max_pkt = MAX_PKT_DEFAULT;
124
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900125 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100126}
127
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500128static u32 link_next_sent(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100129{
130 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -0400131 return buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100132 return mod(l_ptr->next_out_no);
133}
134
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500135static u32 link_last_sent(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100136{
137 return mod(link_next_sent(l_ptr) - 1);
138}
139
140/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800141 * Simple non-static link routines (i.e. referenced outside this file)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100142 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500143int tipc_link_is_up(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100144{
145 if (!l_ptr)
146 return 0;
Eric Dumazeta02cec22010-09-22 20:43:57 +0000147 return link_working_working(l_ptr) || link_working_unknown(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100148}
149
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500150int tipc_link_is_active(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100151{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000152 return (l_ptr->owner->active_links[0] == l_ptr) ||
153 (l_ptr->owner->active_links[1] == l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100154}
155
156/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100157 * link_timeout - handle expiration of link timer
158 * @l_ptr: pointer to link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100159 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500160static void link_timeout(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100161{
Per Liden4323add2006-01-18 00:38:21 +0100162 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100163
164 /* update counters used in statistical profiling of send traffic */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100165 l_ptr->stats.accu_queue_sz += l_ptr->out_queue_size;
166 l_ptr->stats.queue_sz_counts++;
167
Per Lidenb97bf3f2006-01-02 19:04:38 +0100168 if (l_ptr->first_out) {
169 struct tipc_msg *msg = buf_msg(l_ptr->first_out);
170 u32 length = msg_size(msg);
171
Joe Perchesf64f9e72009-11-29 16:55:45 -0800172 if ((msg_user(msg) == MSG_FRAGMENTER) &&
173 (msg_type(msg) == FIRST_FRAGMENT)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100174 length = msg_size(msg_get_wrapped(msg));
175 }
176 if (length) {
177 l_ptr->stats.msg_lengths_total += length;
178 l_ptr->stats.msg_length_counts++;
179 if (length <= 64)
180 l_ptr->stats.msg_length_profile[0]++;
181 else if (length <= 256)
182 l_ptr->stats.msg_length_profile[1]++;
183 else if (length <= 1024)
184 l_ptr->stats.msg_length_profile[2]++;
185 else if (length <= 4096)
186 l_ptr->stats.msg_length_profile[3]++;
187 else if (length <= 16384)
188 l_ptr->stats.msg_length_profile[4]++;
189 else if (length <= 32768)
190 l_ptr->stats.msg_length_profile[5]++;
191 else
192 l_ptr->stats.msg_length_profile[6]++;
193 }
194 }
195
196 /* do all other link processing performed on a periodic basis */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100197
198 link_state_event(l_ptr, TIMEOUT_EVT);
199
200 if (l_ptr->next_out)
Per Liden4323add2006-01-18 00:38:21 +0100201 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100202
Per Liden4323add2006-01-18 00:38:21 +0100203 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100204}
205
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500206static void link_set_timer(struct tipc_link *l_ptr, u32 time)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100207{
208 k_start_timer(&l_ptr->timer, time);
209}
210
211/**
Per Liden4323add2006-01-18 00:38:21 +0100212 * tipc_link_create - create a new link
Allan Stephens37b9c082011-02-28 11:32:27 -0500213 * @n_ptr: pointer to associated node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100214 * @b_ptr: pointer to associated bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100215 * @media_addr: media address to use when sending messages over link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900216 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100217 * Returns pointer to link.
218 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500219struct tipc_link *tipc_link_create(struct tipc_node *n_ptr,
Ying Xuec61dd612014-02-13 17:29:09 -0500220 struct tipc_bearer *b_ptr,
221 const struct tipc_media_addr *media_addr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100222{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500223 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100224 struct tipc_msg *msg;
225 char *if_name;
Allan Stephens37b9c082011-02-28 11:32:27 -0500226 char addr_string[16];
227 u32 peer = n_ptr->addr;
228
229 if (n_ptr->link_cnt >= 2) {
230 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400231 pr_err("Attempt to establish third link to %s\n", addr_string);
Allan Stephens37b9c082011-02-28 11:32:27 -0500232 return NULL;
233 }
234
235 if (n_ptr->links[b_ptr->identity]) {
236 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400237 pr_err("Attempt to establish second link on <%s> to %s\n",
238 b_ptr->name, addr_string);
Allan Stephens37b9c082011-02-28 11:32:27 -0500239 return NULL;
240 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100241
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700242 l_ptr = kzalloc(sizeof(*l_ptr), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100243 if (!l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400244 pr_warn("Link creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100245 return NULL;
246 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100247
248 l_ptr->addr = peer;
Allan Stephens2d627b92011-01-07 13:00:11 -0500249 if_name = strchr(b_ptr->name, ':') + 1;
Allan Stephens062b4c92011-04-07 09:28:47 -0400250 sprintf(l_ptr->name, "%u.%u.%u:%s-%u.%u.%u:unknown",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100251 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900252 tipc_node(tipc_own_addr),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100253 if_name,
254 tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
Allan Stephens062b4c92011-04-07 09:28:47 -0400255 /* note: peer i/f name is updated by reset/activate message */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100256 memcpy(&l_ptr->media_addr, media_addr, sizeof(*media_addr));
Allan Stephens37b9c082011-02-28 11:32:27 -0500257 l_ptr->owner = n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100258 l_ptr->checkpoint = 1;
Allan Stephensf882cb72011-04-07 09:43:27 -0400259 l_ptr->peer_session = INVALID_SESSION;
Ying Xue7a2f7d12014-04-21 10:55:46 +0800260 l_ptr->bearer_id = b_ptr->identity;
Allan Stephens5c216e12011-10-18 11:34:29 -0400261 link_set_supervision_props(l_ptr, b_ptr->tolerance);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100262 l_ptr->state = RESET_UNKNOWN;
263
264 l_ptr->pmsg = (struct tipc_msg *)&l_ptr->proto_msg;
265 msg = l_ptr->pmsg;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000266 tipc_msg_init(msg, LINK_PROTOCOL, RESET_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100267 msg_set_size(msg, sizeof(l_ptr->proto_msg));
Allan Stephensa686e682008-06-04 17:29:39 -0700268 msg_set_session(msg, (tipc_random & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100269 msg_set_bearer_id(msg, b_ptr->identity);
270 strcpy((char *)msg_data(msg), if_name);
271
272 l_ptr->priority = b_ptr->priority;
Allan Stephens5c216e12011-10-18 11:34:29 -0400273 tipc_link_set_queue_limits(l_ptr, b_ptr->window);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100274
Ying Xue7a2f7d12014-04-21 10:55:46 +0800275 l_ptr->net_plane = b_ptr->net_plane;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100276 link_init_max_pkt(l_ptr);
277
278 l_ptr->next_out_no = 1;
279 INIT_LIST_HEAD(&l_ptr->waiting_ports);
280
281 link_reset_statistics(l_ptr);
282
Allan Stephens37b9c082011-02-28 11:32:27 -0500283 tipc_node_attach_link(n_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100284
Jon Paul Maloy170b3922014-01-07 17:02:41 -0500285 k_init_timer(&l_ptr->timer, (Handler)link_timeout,
286 (unsigned long)l_ptr);
Jon Paul Maloy581465f2014-01-07 17:02:44 -0500287
288 link_state_event(l_ptr, STARTING_EVT);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100289
Per Lidenb97bf3f2006-01-02 19:04:38 +0100290 return l_ptr;
291}
292
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500293void tipc_link_delete_list(unsigned int bearer_id, bool shutting_down)
Ying Xue8d8439b2014-02-13 17:29:07 -0500294{
295 struct tipc_link *l_ptr;
Ying Xuec61dd612014-02-13 17:29:09 -0500296 struct tipc_node *n_ptr;
Ying Xue8d8439b2014-02-13 17:29:07 -0500297
Ying Xue6c7a7622014-03-27 12:54:37 +0800298 rcu_read_lock();
299 list_for_each_entry_rcu(n_ptr, &tipc_node_list, list) {
Ying Xue5356f3d2014-05-05 08:56:09 +0800300 tipc_node_lock(n_ptr);
Ying Xuec61dd612014-02-13 17:29:09 -0500301 l_ptr = n_ptr->links[bearer_id];
302 if (l_ptr) {
303 tipc_link_reset(l_ptr);
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500304 if (shutting_down || !tipc_node_is_up(n_ptr)) {
305 tipc_node_detach_link(l_ptr->owner, l_ptr);
306 tipc_link_reset_fragments(l_ptr);
Ying Xue5356f3d2014-05-05 08:56:09 +0800307 tipc_node_unlock(n_ptr);
Ying Xuec61dd612014-02-13 17:29:09 -0500308
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500309 /* Nobody else can access this link now: */
310 del_timer_sync(&l_ptr->timer);
311 kfree(l_ptr);
312 } else {
313 /* Detach/delete when failover is finished: */
314 l_ptr->flags |= LINK_STOPPED;
Ying Xue5356f3d2014-05-05 08:56:09 +0800315 tipc_node_unlock(n_ptr);
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500316 del_timer_sync(&l_ptr->timer);
317 }
Ying Xuec61dd612014-02-13 17:29:09 -0500318 continue;
319 }
Ying Xue5356f3d2014-05-05 08:56:09 +0800320 tipc_node_unlock(n_ptr);
Ying Xue8d8439b2014-02-13 17:29:07 -0500321 }
Ying Xue6c7a7622014-03-27 12:54:37 +0800322 rcu_read_unlock();
Ying Xue8d8439b2014-02-13 17:29:07 -0500323}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100324
325/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900326 * link_schedule_port - schedule port for deferred sending
Per Lidenb97bf3f2006-01-02 19:04:38 +0100327 * @l_ptr: pointer to link
328 * @origport: reference to sending port
329 * @sz: amount of data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900330 *
331 * Schedules port for renewed sending of messages after link congestion
Per Lidenb97bf3f2006-01-02 19:04:38 +0100332 * has abated.
333 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500334static int link_schedule_port(struct tipc_link *l_ptr, u32 origport, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100335{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500336 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100337
Per Liden4323add2006-01-18 00:38:21 +0100338 spin_lock_bh(&tipc_port_list_lock);
339 p_ptr = tipc_port_lock(origport);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100340 if (p_ptr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100341 if (!list_empty(&p_ptr->wait_list))
342 goto exit;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500343 p_ptr->congested = 1;
Allan Stephens15e979d2010-05-11 14:30:10 +0000344 p_ptr->waiting_pkts = 1 + ((sz - 1) / l_ptr->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100345 list_add_tail(&p_ptr->wait_list, &l_ptr->waiting_ports);
346 l_ptr->stats.link_congs++;
347exit:
Per Liden4323add2006-01-18 00:38:21 +0100348 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100349 }
Per Liden4323add2006-01-18 00:38:21 +0100350 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100351 return -ELINKCONG;
352}
353
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500354void tipc_link_wakeup_ports(struct tipc_link *l_ptr, int all)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100355{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500356 struct tipc_port *p_ptr;
357 struct tipc_port *temp_p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100358 int win = l_ptr->queue_limit[0] - l_ptr->out_queue_size;
359
360 if (all)
361 win = 100000;
362 if (win <= 0)
363 return;
Per Liden4323add2006-01-18 00:38:21 +0100364 if (!spin_trylock_bh(&tipc_port_list_lock))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100365 return;
366 if (link_congested(l_ptr))
367 goto exit;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900368 list_for_each_entry_safe(p_ptr, temp_p_ptr, &l_ptr->waiting_ports,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100369 wait_list) {
370 if (win <= 0)
371 break;
372 list_del_init(&p_ptr->wait_list);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500373 spin_lock_bh(p_ptr->lock);
374 p_ptr->congested = 0;
Jon Paul Maloy24be34b2014-03-12 11:31:10 -0400375 tipc_port_wakeup(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100376 win -= p_ptr->waiting_pkts;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500377 spin_unlock_bh(p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100378 }
379
380exit:
Per Liden4323add2006-01-18 00:38:21 +0100381 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100382}
383
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900384/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100385 * link_release_outqueue - purge link's outbound message queue
386 * @l_ptr: pointer to link
387 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500388static void link_release_outqueue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100389{
Ying Xued77b3832013-12-10 20:45:38 -0800390 kfree_skb_list(l_ptr->first_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100391 l_ptr->first_out = NULL;
392 l_ptr->out_queue_size = 0;
393}
394
395/**
Per Liden4323add2006-01-18 00:38:21 +0100396 * tipc_link_reset_fragments - purge link's inbound message fragments queue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100397 * @l_ptr: pointer to link
398 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500399void tipc_link_reset_fragments(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100400{
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400401 kfree_skb(l_ptr->reasm_buf);
402 l_ptr->reasm_buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100403}
404
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900405/**
Jon Paul Maloy581465f2014-01-07 17:02:44 -0500406 * tipc_link_purge_queues - purge all pkt queues associated with link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100407 * @l_ptr: pointer to link
408 */
Jon Paul Maloy581465f2014-01-07 17:02:44 -0500409void tipc_link_purge_queues(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100410{
Ying Xued77b3832013-12-10 20:45:38 -0800411 kfree_skb_list(l_ptr->oldest_deferred_in);
412 kfree_skb_list(l_ptr->first_out);
Per Liden4323add2006-01-18 00:38:21 +0100413 tipc_link_reset_fragments(l_ptr);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400414 kfree_skb(l_ptr->proto_msg_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100415 l_ptr->proto_msg_queue = NULL;
416}
417
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500418void tipc_link_reset(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100419{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100420 u32 prev_state = l_ptr->state;
421 u32 checkpoint = l_ptr->next_in_no;
Allan Stephens5392d642006-06-25 23:52:50 -0700422 int was_active_link = tipc_link_is_active(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900423
Allan Stephensa686e682008-06-04 17:29:39 -0700424 msg_set_session(l_ptr->pmsg, ((msg_session(l_ptr->pmsg) + 1) & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100425
Allan Stephensa686e682008-06-04 17:29:39 -0700426 /* Link is down, accept any session */
427 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100428
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900429 /* Prepare for max packet size negotiation */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100430 link_init_max_pkt(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900431
Per Lidenb97bf3f2006-01-02 19:04:38 +0100432 l_ptr->state = RESET_UNKNOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100433
434 if ((prev_state == RESET_UNKNOWN) || (prev_state == RESET_RESET))
435 return;
436
Per Liden4323add2006-01-18 00:38:21 +0100437 tipc_node_link_down(l_ptr->owner, l_ptr);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800438 tipc_bearer_remove_dest(l_ptr->bearer_id, l_ptr->addr);
Paul Gortmaker7368ddf2010-10-12 14:25:58 +0000439
Jon Paul Maloyb9d4c332014-01-07 17:02:42 -0500440 if (was_active_link && tipc_node_active_links(l_ptr->owner)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100441 l_ptr->reset_checkpoint = checkpoint;
442 l_ptr->exp_msg_count = START_CHANGEOVER;
443 }
444
445 /* Clean up all queues: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100446 link_release_outqueue(l_ptr);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400447 kfree_skb(l_ptr->proto_msg_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100448 l_ptr->proto_msg_queue = NULL;
Ying Xued77b3832013-12-10 20:45:38 -0800449 kfree_skb_list(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100450 if (!list_empty(&l_ptr->waiting_ports))
Per Liden4323add2006-01-18 00:38:21 +0100451 tipc_link_wakeup_ports(l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100452
453 l_ptr->retransm_queue_head = 0;
454 l_ptr->retransm_queue_size = 0;
455 l_ptr->last_out = NULL;
456 l_ptr->first_out = NULL;
457 l_ptr->next_out = NULL;
458 l_ptr->unacked_window = 0;
459 l_ptr->checkpoint = 1;
460 l_ptr->next_out_no = 1;
461 l_ptr->deferred_inqueue_sz = 0;
462 l_ptr->oldest_deferred_in = NULL;
463 l_ptr->newest_deferred_in = NULL;
464 l_ptr->fsm_msg_cnt = 0;
465 l_ptr->stale_count = 0;
466 link_reset_statistics(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100467}
468
Ying Xuec61dd612014-02-13 17:29:09 -0500469void tipc_link_reset_list(unsigned int bearer_id)
Ying Xuee0ca2c32014-02-13 17:29:06 -0500470{
471 struct tipc_link *l_ptr;
Ying Xuec61dd612014-02-13 17:29:09 -0500472 struct tipc_node *n_ptr;
Ying Xuee0ca2c32014-02-13 17:29:06 -0500473
Ying Xue6c7a7622014-03-27 12:54:37 +0800474 rcu_read_lock();
475 list_for_each_entry_rcu(n_ptr, &tipc_node_list, list) {
Ying Xue5356f3d2014-05-05 08:56:09 +0800476 tipc_node_lock(n_ptr);
Ying Xuec61dd612014-02-13 17:29:09 -0500477 l_ptr = n_ptr->links[bearer_id];
478 if (l_ptr)
479 tipc_link_reset(l_ptr);
Ying Xue5356f3d2014-05-05 08:56:09 +0800480 tipc_node_unlock(n_ptr);
Ying Xuee0ca2c32014-02-13 17:29:06 -0500481 }
Ying Xue6c7a7622014-03-27 12:54:37 +0800482 rcu_read_unlock();
Ying Xuee0ca2c32014-02-13 17:29:06 -0500483}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100484
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500485static void link_activate(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100486{
Allan Stephens5392d642006-06-25 23:52:50 -0700487 l_ptr->next_in_no = l_ptr->stats.recv_info = 1;
Per Liden4323add2006-01-18 00:38:21 +0100488 tipc_node_link_up(l_ptr->owner, l_ptr);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800489 tipc_bearer_add_dest(l_ptr->bearer_id, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100490}
491
492/**
493 * link_state_event - link finite state machine
494 * @l_ptr: pointer to link
495 * @event: state machine event to process
496 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000497static void link_state_event(struct tipc_link *l_ptr, unsigned int event)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100498{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500499 struct tipc_link *other;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100500 u32 cont_intv = l_ptr->continuity_interval;
501
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500502 if (l_ptr->flags & LINK_STOPPED)
503 return;
504
Ying Xue135daee2014-02-13 17:29:08 -0500505 if (!(l_ptr->flags & LINK_STARTED) && (event != STARTING_EVT))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100506 return; /* Not yet. */
507
Ying Xue77a7e072013-12-10 20:45:44 -0800508 /* Check whether changeover is going on */
509 if (l_ptr->exp_msg_count) {
Allan Stephensa0168922010-12-31 18:59:35 +0000510 if (event == TIMEOUT_EVT)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100511 link_set_timer(l_ptr, cont_intv);
Ying Xue77a7e072013-12-10 20:45:44 -0800512 return;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100513 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100514
515 switch (l_ptr->state) {
516 case WORKING_WORKING:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100517 switch (event) {
518 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100519 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100520 break;
521 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100522 if (l_ptr->next_in_no != l_ptr->checkpoint) {
523 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100524 if (tipc_bclink_acks_missing(l_ptr->owner)) {
Ying Xue247f0f32014-02-18 16:06:46 +0800525 tipc_link_proto_xmit(l_ptr, STATE_MSG,
526 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100527 l_ptr->fsm_msg_cnt++;
528 } else if (l_ptr->max_pkt < l_ptr->max_pkt_target) {
Ying Xue247f0f32014-02-18 16:06:46 +0800529 tipc_link_proto_xmit(l_ptr, STATE_MSG,
530 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100531 l_ptr->fsm_msg_cnt++;
532 }
533 link_set_timer(l_ptr, cont_intv);
534 break;
535 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100536 l_ptr->state = WORKING_UNKNOWN;
537 l_ptr->fsm_msg_cnt = 0;
Ying Xue247f0f32014-02-18 16:06:46 +0800538 tipc_link_proto_xmit(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100539 l_ptr->fsm_msg_cnt++;
540 link_set_timer(l_ptr, cont_intv / 4);
541 break;
542 case RESET_MSG:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400543 pr_info("%s<%s>, requested by peer\n", link_rst_msg,
544 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100545 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100546 l_ptr->state = RESET_RESET;
547 l_ptr->fsm_msg_cnt = 0;
Ying Xue247f0f32014-02-18 16:06:46 +0800548 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
549 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100550 l_ptr->fsm_msg_cnt++;
551 link_set_timer(l_ptr, cont_intv);
552 break;
553 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400554 pr_err("%s%u in WW state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100555 }
556 break;
557 case WORKING_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100558 switch (event) {
559 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100560 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100561 l_ptr->state = WORKING_WORKING;
562 l_ptr->fsm_msg_cnt = 0;
563 link_set_timer(l_ptr, cont_intv);
564 break;
565 case RESET_MSG:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400566 pr_info("%s<%s>, requested by peer while probing\n",
567 link_rst_msg, l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100568 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100569 l_ptr->state = RESET_RESET;
570 l_ptr->fsm_msg_cnt = 0;
Ying Xue247f0f32014-02-18 16:06:46 +0800571 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
572 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100573 l_ptr->fsm_msg_cnt++;
574 link_set_timer(l_ptr, cont_intv);
575 break;
576 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100577 if (l_ptr->next_in_no != l_ptr->checkpoint) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100578 l_ptr->state = WORKING_WORKING;
579 l_ptr->fsm_msg_cnt = 0;
580 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100581 if (tipc_bclink_acks_missing(l_ptr->owner)) {
Ying Xue247f0f32014-02-18 16:06:46 +0800582 tipc_link_proto_xmit(l_ptr, STATE_MSG,
583 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100584 l_ptr->fsm_msg_cnt++;
585 }
586 link_set_timer(l_ptr, cont_intv);
587 } else if (l_ptr->fsm_msg_cnt < l_ptr->abort_limit) {
Ying Xue247f0f32014-02-18 16:06:46 +0800588 tipc_link_proto_xmit(l_ptr, STATE_MSG,
589 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100590 l_ptr->fsm_msg_cnt++;
591 link_set_timer(l_ptr, cont_intv / 4);
592 } else { /* Link has failed */
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400593 pr_warn("%s<%s>, peer not responding\n",
594 link_rst_msg, l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100595 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100596 l_ptr->state = RESET_UNKNOWN;
597 l_ptr->fsm_msg_cnt = 0;
Ying Xue247f0f32014-02-18 16:06:46 +0800598 tipc_link_proto_xmit(l_ptr, RESET_MSG,
599 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100600 l_ptr->fsm_msg_cnt++;
601 link_set_timer(l_ptr, cont_intv);
602 }
603 break;
604 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400605 pr_err("%s%u in WU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100606 }
607 break;
608 case RESET_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100609 switch (event) {
610 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100611 break;
612 case ACTIVATE_MSG:
613 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000614 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100615 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100616 l_ptr->state = WORKING_WORKING;
617 l_ptr->fsm_msg_cnt = 0;
618 link_activate(l_ptr);
Ying Xue247f0f32014-02-18 16:06:46 +0800619 tipc_link_proto_xmit(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100620 l_ptr->fsm_msg_cnt++;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800621 if (l_ptr->owner->working_links == 1)
Ying Xue247f0f32014-02-18 16:06:46 +0800622 tipc_link_sync_xmit(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100623 link_set_timer(l_ptr, cont_intv);
624 break;
625 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100626 l_ptr->state = RESET_RESET;
627 l_ptr->fsm_msg_cnt = 0;
Ying Xue247f0f32014-02-18 16:06:46 +0800628 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
629 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100630 l_ptr->fsm_msg_cnt++;
631 link_set_timer(l_ptr, cont_intv);
632 break;
633 case STARTING_EVT:
Ying Xue135daee2014-02-13 17:29:08 -0500634 l_ptr->flags |= LINK_STARTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100635 /* fall through */
636 case TIMEOUT_EVT:
Ying Xue247f0f32014-02-18 16:06:46 +0800637 tipc_link_proto_xmit(l_ptr, RESET_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100638 l_ptr->fsm_msg_cnt++;
639 link_set_timer(l_ptr, cont_intv);
640 break;
641 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400642 pr_err("%s%u in RU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100643 }
644 break;
645 case RESET_RESET:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100646 switch (event) {
647 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100648 case ACTIVATE_MSG:
649 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000650 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100651 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100652 l_ptr->state = WORKING_WORKING;
653 l_ptr->fsm_msg_cnt = 0;
654 link_activate(l_ptr);
Ying Xue247f0f32014-02-18 16:06:46 +0800655 tipc_link_proto_xmit(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100656 l_ptr->fsm_msg_cnt++;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800657 if (l_ptr->owner->working_links == 1)
Ying Xue247f0f32014-02-18 16:06:46 +0800658 tipc_link_sync_xmit(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100659 link_set_timer(l_ptr, cont_intv);
660 break;
661 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100662 break;
663 case TIMEOUT_EVT:
Ying Xue247f0f32014-02-18 16:06:46 +0800664 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
665 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100666 l_ptr->fsm_msg_cnt++;
667 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100668 break;
669 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400670 pr_err("%s%u in RR state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100671 }
672 break;
673 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400674 pr_err("Unknown link state %u/%u\n", l_ptr->state, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100675 }
676}
677
678/*
679 * link_bundle_buf(): Append contents of a buffer to
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900680 * the tail of an existing one.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100681 */
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400682static int link_bundle_buf(struct tipc_link *l_ptr, struct sk_buff *bundler,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100683 struct sk_buff *buf)
684{
685 struct tipc_msg *bundler_msg = buf_msg(bundler);
686 struct tipc_msg *msg = buf_msg(buf);
687 u32 size = msg_size(msg);
Allan Stephense49060c2006-06-29 12:32:46 -0700688 u32 bundle_size = msg_size(bundler_msg);
689 u32 to_pos = align(bundle_size);
690 u32 pad = to_pos - bundle_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100691
692 if (msg_user(bundler_msg) != MSG_BUNDLER)
693 return 0;
694 if (msg_type(bundler_msg) != OPEN_MSG)
695 return 0;
Allan Stephense49060c2006-06-29 12:32:46 -0700696 if (skb_tailroom(bundler) < (pad + size))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100697 return 0;
Allan Stephens15e979d2010-05-11 14:30:10 +0000698 if (l_ptr->max_pkt < (to_pos + size))
Allan Stephens863fae62006-07-03 19:39:36 -0700699 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100700
Allan Stephense49060c2006-06-29 12:32:46 -0700701 skb_put(bundler, pad + size);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300702 skb_copy_to_linear_data_offset(bundler, to_pos, buf->data, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100703 msg_set_size(bundler_msg, to_pos + size);
704 msg_set_msgcnt(bundler_msg, msg_msgcnt(bundler_msg) + 1);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400705 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100706 l_ptr->stats.sent_bundled++;
707 return 1;
708}
709
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500710static void link_add_to_outqueue(struct tipc_link *l_ptr,
Sam Ravnborg05790c62006-03-20 22:37:04 -0800711 struct sk_buff *buf,
712 struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100713{
714 u32 ack = mod(l_ptr->next_in_no - 1);
715 u32 seqno = mod(l_ptr->next_out_no++);
716
717 msg_set_word(msg, 2, ((ack << 16) | seqno));
718 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
719 buf->next = NULL;
720 if (l_ptr->first_out) {
721 l_ptr->last_out->next = buf;
722 l_ptr->last_out = buf;
723 } else
724 l_ptr->first_out = l_ptr->last_out = buf;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500725
Per Lidenb97bf3f2006-01-02 19:04:38 +0100726 l_ptr->out_queue_size++;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500727 if (l_ptr->out_queue_size > l_ptr->stats.max_queue_sz)
728 l_ptr->stats.max_queue_sz = l_ptr->out_queue_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100729}
730
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500731static void link_add_chain_to_outqueue(struct tipc_link *l_ptr,
Allan Stephensdc63d912011-04-21 11:50:42 -0400732 struct sk_buff *buf_chain,
733 u32 long_msgno)
734{
735 struct sk_buff *buf;
736 struct tipc_msg *msg;
737
738 if (!l_ptr->next_out)
739 l_ptr->next_out = buf_chain;
740 while (buf_chain) {
741 buf = buf_chain;
742 buf_chain = buf_chain->next;
743
744 msg = buf_msg(buf);
745 msg_set_long_msgno(msg, long_msgno);
746 link_add_to_outqueue(l_ptr, buf, msg);
747 }
748}
749
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900750/*
Ying Xue247f0f32014-02-18 16:06:46 +0800751 * tipc_link_xmit() is the 'full path' for messages, called from
752 * inside TIPC when the 'fast path' in tipc_send_xmit
Per Lidenb97bf3f2006-01-02 19:04:38 +0100753 * has failed, and from link_send()
754 */
Ying Xue247f0f32014-02-18 16:06:46 +0800755int __tipc_link_xmit(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100756{
757 struct tipc_msg *msg = buf_msg(buf);
758 u32 size = msg_size(msg);
759 u32 dsz = msg_data_sz(msg);
760 u32 queue_size = l_ptr->out_queue_size;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000761 u32 imp = tipc_msg_tot_importance(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100762 u32 queue_limit = l_ptr->queue_limit[imp];
Allan Stephens15e979d2010-05-11 14:30:10 +0000763 u32 max_packet = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100764
Per Lidenb97bf3f2006-01-02 19:04:38 +0100765 /* Match msg importance against queue limits: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100766 if (unlikely(queue_size >= queue_limit)) {
767 if (imp <= TIPC_CRITICAL_IMPORTANCE) {
Allan Stephensbebc55a2011-04-19 10:17:58 -0400768 link_schedule_port(l_ptr, msg_origport(msg), size);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400769 kfree_skb(buf);
Allan Stephensbebc55a2011-04-19 10:17:58 -0400770 return -ELINKCONG;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100771 }
Allan Stephens5f6d9122011-11-04 13:24:29 -0400772 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100773 if (imp > CONN_MANAGER) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400774 pr_warn("%s<%s>, send queue full", link_rst_msg,
775 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100776 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100777 }
778 return dsz;
779 }
780
781 /* Fragmentation needed ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100782 if (size > max_packet)
Ying Xue247f0f32014-02-18 16:06:46 +0800783 return tipc_link_frag_xmit(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100784
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400785 /* Packet can be queued or sent. */
Erik Hugne512137e2013-12-06 10:08:00 -0500786 if (likely(!link_congested(l_ptr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100787 link_add_to_outqueue(l_ptr, buf, msg);
788
Ying Xue7a2f7d12014-04-21 10:55:46 +0800789 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
Ying Xue3c294cb2012-11-15 11:34:45 +0800790 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100791 return dsz;
792 }
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400793 /* Congestion: can message be bundled ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100794 if ((msg_user(msg) != CHANGEOVER_PROTOCOL) &&
795 (msg_user(msg) != MSG_FRAGMENTER)) {
796
797 /* Try adding message to an existing bundle */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900798 if (l_ptr->next_out &&
Ying Xue3c294cb2012-11-15 11:34:45 +0800799 link_bundle_buf(l_ptr, l_ptr->last_out, buf))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100800 return dsz;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100801
802 /* Try creating a new bundle */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100803 if (size <= max_packet * 2 / 3) {
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000804 struct sk_buff *bundler = tipc_buf_acquire(max_packet);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100805 struct tipc_msg bundler_hdr;
806
807 if (bundler) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000808 tipc_msg_init(&bundler_hdr, MSG_BUNDLER, OPEN_MSG,
Allan Stephens75715212008-06-04 17:37:34 -0700809 INT_H_SIZE, l_ptr->addr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300810 skb_copy_to_linear_data(bundler, &bundler_hdr,
811 INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100812 skb_trim(bundler, INT_H_SIZE);
813 link_bundle_buf(l_ptr, bundler, buf);
814 buf = bundler;
815 msg = buf_msg(buf);
816 l_ptr->stats.sent_bundles++;
817 }
818 }
819 }
820 if (!l_ptr->next_out)
821 l_ptr->next_out = buf;
822 link_add_to_outqueue(l_ptr, buf, msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100823 return dsz;
824}
825
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900826/*
Ying Xue247f0f32014-02-18 16:06:46 +0800827 * tipc_link_xmit(): same as __tipc_link_xmit(), but the link to use
828 * has not been selected yet, and the the owner node is not locked
Per Lidenb97bf3f2006-01-02 19:04:38 +0100829 * Called by TIPC internal users, e.g. the name distributor
830 */
Ying Xue247f0f32014-02-18 16:06:46 +0800831int tipc_link_xmit(struct sk_buff *buf, u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100832{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500833 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700834 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100835 int res = -ELINKCONG;
836
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000837 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100838 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +0100839 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100840 l_ptr = n_ptr->active_links[selector & 1];
Allan Stephensa0168922010-12-31 18:59:35 +0000841 if (l_ptr)
Ying Xue247f0f32014-02-18 16:06:46 +0800842 res = __tipc_link_xmit(l_ptr, buf);
Allan Stephensa0168922010-12-31 18:59:35 +0000843 else
Allan Stephens5f6d9122011-11-04 13:24:29 -0400844 kfree_skb(buf);
Per Liden4323add2006-01-18 00:38:21 +0100845 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100846 } else {
Allan Stephens5f6d9122011-11-04 13:24:29 -0400847 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100848 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100849 return res;
850}
851
Jon Maloyc64f7a62012-11-16 13:51:31 +0800852/*
Ying Xue247f0f32014-02-18 16:06:46 +0800853 * tipc_link_sync_xmit - synchronize broadcast link endpoints.
Jon Maloyc64f7a62012-11-16 13:51:31 +0800854 *
855 * Give a newly added peer node the sequence number where it should
856 * start receiving and acking broadcast packets.
857 *
858 * Called with node locked
859 */
Ying Xue247f0f32014-02-18 16:06:46 +0800860static void tipc_link_sync_xmit(struct tipc_link *l)
Jon Maloyc64f7a62012-11-16 13:51:31 +0800861{
862 struct sk_buff *buf;
863 struct tipc_msg *msg;
864
865 buf = tipc_buf_acquire(INT_H_SIZE);
866 if (!buf)
867 return;
868
869 msg = buf_msg(buf);
870 tipc_msg_init(msg, BCAST_PROTOCOL, STATE_MSG, INT_H_SIZE, l->addr);
871 msg_set_last_bcast(msg, l->owner->bclink.acked);
872 link_add_chain_to_outqueue(l, buf, 0);
873 tipc_link_push_queue(l);
874}
875
876/*
Ying Xue247f0f32014-02-18 16:06:46 +0800877 * tipc_link_sync_rcv - synchronize broadcast link endpoints.
Jon Maloyc64f7a62012-11-16 13:51:31 +0800878 * Receive the sequence number where we should start receiving and
879 * acking broadcast packets from a newly added peer node, and open
880 * up for reception of such packets.
881 *
882 * Called with node locked
883 */
Ying Xue247f0f32014-02-18 16:06:46 +0800884static void tipc_link_sync_rcv(struct tipc_node *n, struct sk_buff *buf)
Jon Maloyc64f7a62012-11-16 13:51:31 +0800885{
886 struct tipc_msg *msg = buf_msg(buf);
887
888 n->bclink.last_sent = n->bclink.last_in = msg_last_bcast(msg);
889 n->bclink.recv_permitted = true;
890 kfree_skb(buf);
891}
892
893/*
Ying Xue247f0f32014-02-18 16:06:46 +0800894 * tipc_link_names_xmit - send name table entries to new neighbor
Allan Stephens9aa88c22011-05-31 13:38:02 -0400895 *
896 * Send routine for bulk delivery of name table messages when contact
897 * with a new neighbor occurs. No link congestion checking is performed
898 * because name table messages *must* be delivered. The messages must be
899 * small enough not to require fragmentation.
900 * Called without any locks held.
901 */
Ying Xue247f0f32014-02-18 16:06:46 +0800902void tipc_link_names_xmit(struct list_head *message_list, u32 dest)
Allan Stephens9aa88c22011-05-31 13:38:02 -0400903{
904 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500905 struct tipc_link *l_ptr;
Allan Stephens9aa88c22011-05-31 13:38:02 -0400906 struct sk_buff *buf;
907 struct sk_buff *temp_buf;
908
909 if (list_empty(message_list))
910 return;
911
Allan Stephens9aa88c22011-05-31 13:38:02 -0400912 n_ptr = tipc_node_find(dest);
913 if (n_ptr) {
914 tipc_node_lock(n_ptr);
915 l_ptr = n_ptr->active_links[0];
916 if (l_ptr) {
917 /* convert circular list to linear list */
918 ((struct sk_buff *)message_list->prev)->next = NULL;
919 link_add_chain_to_outqueue(l_ptr,
920 (struct sk_buff *)message_list->next, 0);
921 tipc_link_push_queue(l_ptr);
922 INIT_LIST_HEAD(message_list);
923 }
924 tipc_node_unlock(n_ptr);
925 }
Allan Stephens9aa88c22011-05-31 13:38:02 -0400926
927 /* discard the messages if they couldn't be sent */
Allan Stephens9aa88c22011-05-31 13:38:02 -0400928 list_for_each_safe(buf, temp_buf, ((struct sk_buff *)message_list)) {
929 list_del((struct list_head *)buf);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400930 kfree_skb(buf);
Allan Stephens9aa88c22011-05-31 13:38:02 -0400931 }
932}
933
934/*
Ying Xue247f0f32014-02-18 16:06:46 +0800935 * tipc_link_xmit_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +0100936 * destination link is known and the header is complete,
937 * inclusive total message length. Very time critical.
938 * Link is locked. Returns user data length.
939 */
Ying Xue247f0f32014-02-18 16:06:46 +0800940static int tipc_link_xmit_fast(struct tipc_link *l_ptr, struct sk_buff *buf,
941 u32 *used_max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100942{
943 struct tipc_msg *msg = buf_msg(buf);
944 int res = msg_data_sz(msg);
945
946 if (likely(!link_congested(l_ptr))) {
Allan Stephens15e979d2010-05-11 14:30:10 +0000947 if (likely(msg_size(msg) <= l_ptr->max_pkt)) {
Erik Hugne512137e2013-12-06 10:08:00 -0500948 link_add_to_outqueue(l_ptr, buf, msg);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800949 tipc_bearer_send(l_ptr->bearer_id, buf,
Erik Hugne512137e2013-12-06 10:08:00 -0500950 &l_ptr->media_addr);
951 l_ptr->unacked_window = 0;
952 return res;
953 }
954 else
Allan Stephens15e979d2010-05-11 14:30:10 +0000955 *used_max_pkt = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100956 }
Ying Xue247f0f32014-02-18 16:06:46 +0800957 return __tipc_link_xmit(l_ptr, buf); /* All other cases */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100958}
959
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900960/*
Ying Xue247f0f32014-02-18 16:06:46 +0800961 * tipc_link_iovec_xmit_fast: Entry for messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +0100962 * destination processor is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900963 * except for total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100964 * Returns user data length or errno.
965 */
Ying Xue247f0f32014-02-18 16:06:46 +0800966int tipc_link_iovec_xmit_fast(struct tipc_port *sender,
967 struct iovec const *msg_sect,
968 unsigned int len, u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100969{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500970 struct tipc_msg *hdr = &sender->phdr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500971 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100972 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -0700973 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100974 int res;
975 u32 selector = msg_origport(hdr) & 1;
976
Per Lidenb97bf3f2006-01-02 19:04:38 +0100977again:
978 /*
979 * Try building message using port's max_pkt hint.
980 * (Must not hold any locks while building message.)
981 */
Ying Xue9446b872013-10-18 07:23:15 +0200982 res = tipc_msg_build(hdr, msg_sect, len, sender->max_pkt, &buf);
Ying Xue7410f962013-06-17 10:54:49 -0400983 /* Exit if build request was invalid */
984 if (unlikely(res < 0))
985 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100986
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000987 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100988 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +0100989 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100990 l_ptr = node->active_links[selector];
991 if (likely(l_ptr)) {
992 if (likely(buf)) {
Ying Xue247f0f32014-02-18 16:06:46 +0800993 res = tipc_link_xmit_fast(l_ptr, buf,
994 &sender->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100995exit:
Per Liden4323add2006-01-18 00:38:21 +0100996 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100997 return res;
998 }
999
Per Lidenb97bf3f2006-01-02 19:04:38 +01001000 /* Exit if link (or bearer) is congested */
Erik Hugne512137e2013-12-06 10:08:00 -05001001 if (link_congested(l_ptr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001002 res = link_schedule_port(l_ptr,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001003 sender->ref, res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001004 goto exit;
1005 }
1006
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001007 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001008 * Message size exceeds max_pkt hint; update hint,
1009 * then re-try fast path or fragment the message
1010 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001011 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001012 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001013
1014
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001015 if ((msg_hdr_sz(hdr) + res) <= sender->max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001016 goto again;
1017
Ying Xue247f0f32014-02-18 16:06:46 +08001018 return tipc_link_iovec_long_xmit(sender, msg_sect,
1019 len, destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001020 }
Per Liden4323add2006-01-18 00:38:21 +01001021 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001022 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001023
1024 /* Couldn't find a link to the destination node */
Erik Hugne63fa01c2014-02-19 08:37:58 +01001025 kfree_skb(buf);
1026 tipc_port_iovec_reject(sender, hdr, msg_sect, len, TIPC_ERR_NO_NODE);
1027 return -ENETUNREACH;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001028}
1029
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001030/*
Ying Xue247f0f32014-02-18 16:06:46 +08001031 * tipc_link_iovec_long_xmit(): Entry for long messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001032 * destination node is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001033 * inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001034 * Link and bearer congestion status have been checked to be ok,
1035 * and are ignored if they change.
1036 *
1037 * Note that fragments do not use the full link MTU so that they won't have
1038 * to undergo refragmentation if link changeover causes them to be sent
1039 * over another link with an additional tunnel header added as prefix.
1040 * (Refragmentation will still occur if the other link has a smaller MTU.)
1041 *
1042 * Returns user data length or errno.
1043 */
Ying Xue247f0f32014-02-18 16:06:46 +08001044static int tipc_link_iovec_long_xmit(struct tipc_port *sender,
1045 struct iovec const *msg_sect,
1046 unsigned int len, u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001047{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001048 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001049 struct tipc_node *node;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001050 struct tipc_msg *hdr = &sender->phdr;
Ying Xue9446b872013-10-18 07:23:15 +02001051 u32 dsz = len;
Allan Stephens0e659672010-12-31 18:59:32 +00001052 u32 max_pkt, fragm_sz, rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001053 struct tipc_msg fragm_hdr;
Allan Stephens0e659672010-12-31 18:59:32 +00001054 struct sk_buff *buf, *buf_chain, *prev;
1055 u32 fragm_crs, fragm_rest, hsz, sect_rest;
Ying Xue40682432013-10-18 07:23:16 +02001056 const unchar __user *sect_crs;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001057 int curr_sect;
1058 u32 fragm_no;
Ying Xue126c0522013-06-17 10:54:50 -04001059 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001060
1061again:
1062 fragm_no = 1;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001063 max_pkt = sender->max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001064 /* leave room for tunnel header in case of link changeover */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001065 fragm_sz = max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001066 /* leave room for fragmentation header in each fragment */
1067 rest = dsz;
1068 fragm_crs = 0;
1069 fragm_rest = 0;
1070 sect_rest = 0;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001071 sect_crs = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001072 curr_sect = -1;
1073
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001074 /* Prepare reusable fragment header */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001075 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07001076 INT_H_SIZE, msg_destnode(hdr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001077 msg_set_size(&fragm_hdr, max_pkt);
1078 msg_set_fragm_no(&fragm_hdr, 1);
1079
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001080 /* Prepare header of first fragment */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001081 buf_chain = buf = tipc_buf_acquire(max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001082 if (!buf)
1083 return -ENOMEM;
1084 buf->next = NULL;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001085 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001086 hsz = msg_hdr_sz(hdr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001087 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, hdr, hsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001088
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001089 /* Chop up message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001090 fragm_crs = INT_H_SIZE + hsz;
1091 fragm_rest = fragm_sz - hsz;
1092
1093 do { /* For all sections */
1094 u32 sz;
1095
1096 if (!sect_rest) {
1097 sect_rest = msg_sect[++curr_sect].iov_len;
Ying Xue40682432013-10-18 07:23:16 +02001098 sect_crs = msg_sect[curr_sect].iov_base;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001099 }
1100
1101 if (sect_rest < fragm_rest)
1102 sz = sect_rest;
1103 else
1104 sz = fragm_rest;
1105
Ying Xuef1733d72013-06-17 10:54:43 -04001106 if (copy_from_user(buf->data + fragm_crs, sect_crs, sz)) {
Ying Xue126c0522013-06-17 10:54:50 -04001107 res = -EFAULT;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001108error:
Ying Xued77b3832013-12-10 20:45:38 -08001109 kfree_skb_list(buf_chain);
Ying Xue126c0522013-06-17 10:54:50 -04001110 return res;
Ying Xuef1733d72013-06-17 10:54:43 -04001111 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001112 sect_crs += sz;
1113 sect_rest -= sz;
1114 fragm_crs += sz;
1115 fragm_rest -= sz;
1116 rest -= sz;
1117
1118 if (!fragm_rest && rest) {
1119
1120 /* Initiate new fragment: */
1121 if (rest <= fragm_sz) {
1122 fragm_sz = rest;
Allan Stephens0e659672010-12-31 18:59:32 +00001123 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001124 } else {
1125 msg_set_type(&fragm_hdr, FRAGMENT);
1126 }
1127 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
1128 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
1129 prev = buf;
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001130 buf = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Ying Xue126c0522013-06-17 10:54:50 -04001131 if (!buf) {
1132 res = -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001133 goto error;
Ying Xue126c0522013-06-17 10:54:50 -04001134 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001135
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001136 buf->next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001137 prev->next = buf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001138 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001139 fragm_crs = INT_H_SIZE;
1140 fragm_rest = fragm_sz;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001141 }
Allan Stephens0e659672010-12-31 18:59:32 +00001142 } while (rest > 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001143
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001144 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001145 * Now we have a buffer chain. Select a link and check
1146 * that packet size is still OK
1147 */
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001148 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001149 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001150 tipc_node_lock(node);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001151 l_ptr = node->active_links[sender->ref & 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001152 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01001153 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001154 goto reject;
1155 }
Allan Stephens15e979d2010-05-11 14:30:10 +00001156 if (l_ptr->max_pkt < max_pkt) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001157 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001158 tipc_node_unlock(node);
Ying Xued77b3832013-12-10 20:45:38 -08001159 kfree_skb_list(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001160 goto again;
1161 }
1162 } else {
1163reject:
Ying Xued77b3832013-12-10 20:45:38 -08001164 kfree_skb_list(buf_chain);
Erik Hugne63fa01c2014-02-19 08:37:58 +01001165 tipc_port_iovec_reject(sender, hdr, msg_sect, len,
1166 TIPC_ERR_NO_NODE);
1167 return -ENETUNREACH;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001168 }
1169
Allan Stephensdc63d912011-04-21 11:50:42 -04001170 /* Append chain of fragments to send queue & send them */
Allan Stephense0f08592011-04-17 11:44:24 -04001171 l_ptr->long_msg_seq_no++;
Allan Stephensdc63d912011-04-21 11:50:42 -04001172 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
1173 l_ptr->stats.sent_fragments += fragm_no;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001174 l_ptr->stats.sent_fragmented++;
Per Liden4323add2006-01-18 00:38:21 +01001175 tipc_link_push_queue(l_ptr);
1176 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001177 return dsz;
1178}
1179
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001180/*
Per Liden4323add2006-01-18 00:38:21 +01001181 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +01001182 */
stephen hemminger98056962014-01-04 13:47:48 -08001183static u32 tipc_link_push_packet(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001184{
1185 struct sk_buff *buf = l_ptr->first_out;
1186 u32 r_q_size = l_ptr->retransm_queue_size;
1187 u32 r_q_head = l_ptr->retransm_queue_head;
1188
1189 /* Step to position where retransmission failed, if any, */
1190 /* consider that buffers may have been released in meantime */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001191 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001192 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +01001193 link_last_sent(l_ptr));
Allan Stephensf9057302011-10-24 16:03:12 -04001194 u32 first = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001195
1196 while (buf && less(first, r_q_head)) {
1197 first = mod(first + 1);
1198 buf = buf->next;
1199 }
1200 l_ptr->retransm_queue_head = r_q_head = first;
1201 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1202 }
1203
1204 /* Continue retransmission now, if there is anything: */
Neil Hormanca509102010-03-15 07:58:45 +00001205 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001206 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001207 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Ying Xue7a2f7d12014-04-21 10:55:46 +08001208 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
Ying Xue3c294cb2012-11-15 11:34:45 +08001209 l_ptr->retransm_queue_head = mod(++r_q_head);
1210 l_ptr->retransm_queue_size = --r_q_size;
1211 l_ptr->stats.retransmitted++;
1212 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001213 }
1214
1215 /* Send deferred protocol message, if any: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001216 buf = l_ptr->proto_msg_queue;
1217 if (buf) {
1218 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +00001219 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Ying Xue7a2f7d12014-04-21 10:55:46 +08001220 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
Ying Xue3c294cb2012-11-15 11:34:45 +08001221 l_ptr->unacked_window = 0;
1222 kfree_skb(buf);
1223 l_ptr->proto_msg_queue = NULL;
1224 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001225 }
1226
1227 /* Send one deferred data message, if send window not full: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001228 buf = l_ptr->next_out;
1229 if (buf) {
1230 struct tipc_msg *msg = buf_msg(buf);
1231 u32 next = msg_seqno(msg);
Allan Stephensf9057302011-10-24 16:03:12 -04001232 u32 first = buf_seqno(l_ptr->first_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001233
1234 if (mod(next - first) < l_ptr->queue_limit[0]) {
1235 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001236 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue7a2f7d12014-04-21 10:55:46 +08001237 tipc_bearer_send(l_ptr->bearer_id, buf,
1238 &l_ptr->media_addr);
Ying Xue3c294cb2012-11-15 11:34:45 +08001239 if (msg_user(msg) == MSG_BUNDLER)
1240 msg_set_type(msg, CLOSED_MSG);
1241 l_ptr->next_out = buf->next;
1242 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001243 }
1244 }
Ying Xue3c294cb2012-11-15 11:34:45 +08001245 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001246}
1247
1248/*
1249 * push_queue(): push out the unsent messages of a link where
1250 * congestion has abated. Node is locked
1251 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001252void tipc_link_push_queue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001253{
1254 u32 res;
1255
Per Lidenb97bf3f2006-01-02 19:04:38 +01001256 do {
Per Liden4323add2006-01-18 00:38:21 +01001257 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001258 } while (!res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001259}
1260
Ying Xue3f5a12b2014-05-05 08:56:17 +08001261void tipc_link_reset_all(struct tipc_node *node)
Allan Stephensd356eeb2006-06-25 23:40:01 -07001262{
Allan Stephensd356eeb2006-06-25 23:40:01 -07001263 char addr_string[16];
1264 u32 i;
1265
Ying Xue3f5a12b2014-05-05 08:56:17 +08001266 tipc_node_lock(node);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001267
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001268 pr_warn("Resetting all links to %s\n",
Ying Xue3f5a12b2014-05-05 08:56:17 +08001269 tipc_addr_string_fill(addr_string, node->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -07001270
1271 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue3f5a12b2014-05-05 08:56:17 +08001272 if (node->links[i]) {
1273 link_print(node->links[i], "Resetting link\n");
1274 tipc_link_reset(node->links[i]);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001275 }
1276 }
1277
Ying Xue3f5a12b2014-05-05 08:56:17 +08001278 tipc_node_unlock(node);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001279}
1280
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001281static void link_retransmit_failure(struct tipc_link *l_ptr,
Paul Gortmakerae8509c2013-06-17 10:54:47 -04001282 struct sk_buff *buf)
Allan Stephensd356eeb2006-06-25 23:40:01 -07001283{
1284 struct tipc_msg *msg = buf_msg(buf);
1285
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001286 pr_warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001287
1288 if (l_ptr->addr) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001289 /* Handle failure on standard link */
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001290 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001291 tipc_link_reset(l_ptr);
1292
1293 } else {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001294 /* Handle failure on broadcast link */
David S. Miller6c000552008-09-02 23:38:32 -07001295 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001296 char addr_string[16];
1297
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001298 pr_info("Msg seq number: %u, ", msg_seqno(msg));
1299 pr_cont("Outstanding acks: %lu\n",
1300 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -07001301
Allan Stephens01d83ed2011-01-18 13:53:16 -05001302 n_ptr = tipc_bclink_retransmit_to();
Allan Stephensd356eeb2006-06-25 23:40:01 -07001303 tipc_node_lock(n_ptr);
1304
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001305 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001306 pr_info("Broadcast link info for %s\n", addr_string);
Ying Xue389dd9b2012-11-16 13:51:30 +08001307 pr_info("Reception permitted: %d, Acked: %u\n",
1308 n_ptr->bclink.recv_permitted,
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001309 n_ptr->bclink.acked);
1310 pr_info("Last in: %u, Oos state: %u, Last sent: %u\n",
1311 n_ptr->bclink.last_in,
1312 n_ptr->bclink.oos_state,
1313 n_ptr->bclink.last_sent);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001314
Allan Stephensd356eeb2006-06-25 23:40:01 -07001315 tipc_node_unlock(n_ptr);
1316
Ying Xue3f5a12b2014-05-05 08:56:17 +08001317 tipc_bclink_set_flags(TIPC_BCLINK_RESET);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001318 l_ptr->stale_count = 0;
1319 }
1320}
1321
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001322void tipc_link_retransmit(struct tipc_link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001323 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001324{
1325 struct tipc_msg *msg;
1326
Allan Stephensd356eeb2006-06-25 23:40:01 -07001327 if (!buf)
1328 return;
1329
1330 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001331
Erik Hugne512137e2013-12-06 10:08:00 -05001332 /* Detect repeated retransmit failures */
1333 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1334 if (++l_ptr->stale_count > 100) {
1335 link_retransmit_failure(l_ptr, buf);
1336 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001337 }
1338 } else {
Erik Hugne512137e2013-12-06 10:08:00 -05001339 l_ptr->last_retransmitted = msg_seqno(msg);
1340 l_ptr->stale_count = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001341 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001342
Neil Hormanca509102010-03-15 07:58:45 +00001343 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001344 msg = buf_msg(buf);
1345 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001346 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue7a2f7d12014-04-21 10:55:46 +08001347 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
Ying Xue3c294cb2012-11-15 11:34:45 +08001348 buf = buf->next;
1349 retransmits--;
1350 l_ptr->stats.retransmitted++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001351 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001352
Per Lidenb97bf3f2006-01-02 19:04:38 +01001353 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1354}
1355
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001356/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001357 * link_insert_deferred_queue - insert deferred messages back into receive chain
1358 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001359static struct sk_buff *link_insert_deferred_queue(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001360 struct sk_buff *buf)
1361{
1362 u32 seq_no;
1363
1364 if (l_ptr->oldest_deferred_in == NULL)
1365 return buf;
1366
Allan Stephensf9057302011-10-24 16:03:12 -04001367 seq_no = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001368 if (seq_no == mod(l_ptr->next_in_no)) {
1369 l_ptr->newest_deferred_in->next = buf;
1370 buf = l_ptr->oldest_deferred_in;
1371 l_ptr->oldest_deferred_in = NULL;
1372 l_ptr->deferred_inqueue_sz = 0;
1373 }
1374 return buf;
1375}
1376
Allan Stephens85035562008-04-15 19:04:54 -07001377/**
1378 * link_recv_buf_validate - validate basic format of received message
1379 *
1380 * This routine ensures a TIPC message has an acceptable header, and at least
1381 * as much data as the header indicates it should. The routine also ensures
1382 * that the entire message header is stored in the main fragment of the message
1383 * buffer, to simplify future access to message header fields.
1384 *
1385 * Note: Having extra info present in the message header or data areas is OK.
1386 * TIPC will ignore the excess, under the assumption that it is optional info
1387 * introduced by a later release of the protocol.
1388 */
Allan Stephens85035562008-04-15 19:04:54 -07001389static int link_recv_buf_validate(struct sk_buff *buf)
1390{
1391 static u32 min_data_hdr_size[8] = {
Allan Stephens741d9eb2011-05-31 15:03:18 -04001392 SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,
Allan Stephens85035562008-04-15 19:04:54 -07001393 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1394 };
1395
1396 struct tipc_msg *msg;
1397 u32 tipc_hdr[2];
1398 u32 size;
1399 u32 hdr_size;
1400 u32 min_hdr_size;
1401
Erik Hugne64380a02014-02-11 11:38:26 +01001402 /* If this packet comes from the defer queue, the skb has already
1403 * been validated
1404 */
1405 if (unlikely(TIPC_SKB_CB(buf)->deferred))
1406 return 1;
1407
Allan Stephens85035562008-04-15 19:04:54 -07001408 if (unlikely(buf->len < MIN_H_SIZE))
1409 return 0;
1410
1411 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1412 if (msg == NULL)
1413 return 0;
1414
1415 if (unlikely(msg_version(msg) != TIPC_VERSION))
1416 return 0;
1417
1418 size = msg_size(msg);
1419 hdr_size = msg_hdr_sz(msg);
1420 min_hdr_size = msg_isdata(msg) ?
1421 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1422
1423 if (unlikely((hdr_size < min_hdr_size) ||
1424 (size < hdr_size) ||
1425 (buf->len < size) ||
1426 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1427 return 0;
1428
1429 return pskb_may_pull(buf, hdr_size);
1430}
1431
Allan Stephensb02b69c2010-08-17 11:00:07 +00001432/**
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001433 * tipc_rcv - process TIPC packets/messages arriving from off-node
Allan Stephensb02b69c2010-08-17 11:00:07 +00001434 * @head: pointer to message buffer chain
Ying Xue7a2f7d12014-04-21 10:55:46 +08001435 * @b_ptr: pointer to bearer message arrived on
Allan Stephensb02b69c2010-08-17 11:00:07 +00001436 *
1437 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1438 * structure (i.e. cannot be NULL), but bearer can be inactive.
1439 */
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001440void tipc_rcv(struct sk_buff *head, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001441{
Per Lidenb97bf3f2006-01-02 19:04:38 +01001442 while (head) {
David S. Miller6c000552008-09-02 23:38:32 -07001443 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001444 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001445 struct sk_buff *crs;
1446 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001447 struct tipc_msg *msg;
1448 u32 seq_no;
1449 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001450 u32 released = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001451
Per Lidenb97bf3f2006-01-02 19:04:38 +01001452 head = head->next;
Erik Hugne732256b2014-01-07 15:51:36 -05001453 buf->next = NULL;
Allan Stephens85035562008-04-15 19:04:54 -07001454
1455 /* Ensure message is well-formed */
Allan Stephens85035562008-04-15 19:04:54 -07001456 if (unlikely(!link_recv_buf_validate(buf)))
Ying Xue3af390e2013-10-30 11:26:57 +08001457 goto discard;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001458
Allan Stephensfe13dda2008-04-15 19:03:23 -07001459 /* Ensure message data is a single contiguous unit */
Allan Stephens5f6d9122011-11-04 13:24:29 -04001460 if (unlikely(skb_linearize(buf)))
Ying Xue3af390e2013-10-30 11:26:57 +08001461 goto discard;
Allan Stephensfe13dda2008-04-15 19:03:23 -07001462
Allan Stephens85035562008-04-15 19:04:54 -07001463 /* Handle arrival of a non-unicast link message */
Allan Stephens85035562008-04-15 19:04:54 -07001464 msg = buf_msg(buf);
1465
Per Lidenb97bf3f2006-01-02 19:04:38 +01001466 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001467 if (msg_user(msg) == LINK_CONFIG)
Ying Xue247f0f32014-02-18 16:06:46 +08001468 tipc_disc_rcv(buf, b_ptr);
Allan Stephens1265a022008-06-04 17:32:35 -07001469 else
Ying Xue247f0f32014-02-18 16:06:46 +08001470 tipc_bclink_rcv(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001471 continue;
1472 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001473
Allan Stephensed33a9c2011-04-05 15:15:04 -04001474 /* Discard unicast link messages destined for another node */
Allan Stephens26008242006-06-25 23:39:31 -07001475 if (unlikely(!msg_short(msg) &&
1476 (msg_destnode(msg) != tipc_own_addr)))
Ying Xue3af390e2013-10-30 11:26:57 +08001477 goto discard;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001478
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001479 /* Locate neighboring node that sent message */
Per Liden4323add2006-01-18 00:38:21 +01001480 n_ptr = tipc_node_find(msg_prevnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001481 if (unlikely(!n_ptr))
Ying Xue3af390e2013-10-30 11:26:57 +08001482 goto discard;
Per Liden4323add2006-01-18 00:38:21 +01001483 tipc_node_lock(n_ptr);
Allan Stephens85035562008-04-15 19:04:54 -07001484
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001485 /* Locate unicast link endpoint that should handle message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001486 l_ptr = n_ptr->links[b_ptr->identity];
Ying Xue3af390e2013-10-30 11:26:57 +08001487 if (unlikely(!l_ptr))
1488 goto unlock_discard;
Allan Stephens85035562008-04-15 19:04:54 -07001489
Allan Stephensb4b56102011-05-27 11:00:51 -04001490 /* Verify that communication with node is currently allowed */
Ying Xueaecb9bb2014-05-08 08:54:39 +08001491 if ((n_ptr->action_flags & TIPC_WAIT_PEER_LINKS_DOWN) &&
Ying Xue10f465c2014-05-05 08:56:11 +08001492 msg_user(msg) == LINK_PROTOCOL &&
1493 (msg_type(msg) == RESET_MSG ||
1494 msg_type(msg) == ACTIVATE_MSG) &&
1495 !msg_redundant_link(msg))
Ying Xueaecb9bb2014-05-08 08:54:39 +08001496 n_ptr->action_flags &= ~TIPC_WAIT_PEER_LINKS_DOWN;
Allan Stephensb4b56102011-05-27 11:00:51 -04001497
Ying Xue10f465c2014-05-05 08:56:11 +08001498 if (tipc_node_blocked(n_ptr))
Ying Xue3af390e2013-10-30 11:26:57 +08001499 goto unlock_discard;
Allan Stephensb4b56102011-05-27 11:00:51 -04001500
Allan Stephens85035562008-04-15 19:04:54 -07001501 /* Validate message sequence number info */
Allan Stephens85035562008-04-15 19:04:54 -07001502 seq_no = msg_seqno(msg);
1503 ackd = msg_ack(msg);
1504
1505 /* Release acked messages */
Ying Xue389dd9b2012-11-16 13:51:30 +08001506 if (n_ptr->bclink.recv_permitted)
Allan Stephens365595912011-10-24 15:26:24 -04001507 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001508
1509 crs = l_ptr->first_out;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001510 while ((crs != l_ptr->next_out) &&
Allan Stephensf9057302011-10-24 16:03:12 -04001511 less_eq(buf_seqno(crs), ackd)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001512 struct sk_buff *next = crs->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001513 kfree_skb(crs);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001514 crs = next;
1515 released++;
1516 }
1517 if (released) {
1518 l_ptr->first_out = crs;
1519 l_ptr->out_queue_size -= released;
1520 }
Allan Stephens85035562008-04-15 19:04:54 -07001521
1522 /* Try sending any messages link endpoint has pending */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001523 if (unlikely(l_ptr->next_out))
Per Liden4323add2006-01-18 00:38:21 +01001524 tipc_link_push_queue(l_ptr);
Jon Paul Maloya5377832014-02-13 17:29:15 -05001525
Per Lidenb97bf3f2006-01-02 19:04:38 +01001526 if (unlikely(!list_empty(&l_ptr->waiting_ports)))
Per Liden4323add2006-01-18 00:38:21 +01001527 tipc_link_wakeup_ports(l_ptr, 0);
Jon Paul Maloya5377832014-02-13 17:29:15 -05001528
Per Lidenb97bf3f2006-01-02 19:04:38 +01001529 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1530 l_ptr->stats.sent_acks++;
Ying Xue247f0f32014-02-18 16:06:46 +08001531 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001532 }
1533
Jon Paul Maloya5377832014-02-13 17:29:15 -05001534 /* Process the incoming packet */
Ying Xue3af390e2013-10-30 11:26:57 +08001535 if (unlikely(!link_working_working(l_ptr))) {
1536 if (msg_user(msg) == LINK_PROTOCOL) {
Ying Xue247f0f32014-02-18 16:06:46 +08001537 tipc_link_proto_rcv(l_ptr, buf);
Ying Xue3af390e2013-10-30 11:26:57 +08001538 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001539 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001540 continue;
1541 }
Ying Xue3af390e2013-10-30 11:26:57 +08001542
1543 /* Traffic message. Conditionally activate link */
1544 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1545
1546 if (link_working_working(l_ptr)) {
1547 /* Re-insert buffer in front of queue */
1548 buf->next = head;
1549 head = buf;
1550 tipc_node_unlock(n_ptr);
1551 continue;
1552 }
1553 goto unlock_discard;
1554 }
1555
1556 /* Link is now in state WORKING_WORKING */
1557 if (unlikely(seq_no != mod(l_ptr->next_in_no))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001558 link_handle_out_of_seq_msg(l_ptr, buf);
1559 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001560 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001561 continue;
1562 }
Ying Xue3af390e2013-10-30 11:26:57 +08001563 l_ptr->next_in_no++;
1564 if (unlikely(l_ptr->oldest_deferred_in))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001565 head = link_insert_deferred_queue(l_ptr, head);
Jon Paul Maloya5377832014-02-13 17:29:15 -05001566
1567 /* Deliver packet/message to correct user: */
1568 if (unlikely(msg_user(msg) == CHANGEOVER_PROTOCOL)) {
1569 if (!tipc_link_tunnel_rcv(n_ptr, &buf)) {
1570 tipc_node_unlock(n_ptr);
1571 continue;
1572 }
1573 msg = buf_msg(buf);
1574 } else if (msg_user(msg) == MSG_FRAGMENTER) {
Jon Paul Maloya5377832014-02-13 17:29:15 -05001575 l_ptr->stats.recv_fragments++;
Jon Paul Maloy37e22162014-05-14 05:39:12 -04001576 if (tipc_buf_append(&l_ptr->reasm_buf, &buf)) {
Jon Paul Maloya5377832014-02-13 17:29:15 -05001577 l_ptr->stats.recv_fragmented++;
1578 msg = buf_msg(buf);
1579 } else {
Jon Paul Maloy37e22162014-05-14 05:39:12 -04001580 if (!l_ptr->reasm_buf)
Jon Paul Maloya5377832014-02-13 17:29:15 -05001581 tipc_link_reset(l_ptr);
1582 tipc_node_unlock(n_ptr);
1583 continue;
1584 }
1585 }
1586
1587 switch (msg_user(msg)) {
1588 case TIPC_LOW_IMPORTANCE:
1589 case TIPC_MEDIUM_IMPORTANCE:
1590 case TIPC_HIGH_IMPORTANCE:
1591 case TIPC_CRITICAL_IMPORTANCE:
Per Liden4323add2006-01-18 00:38:21 +01001592 tipc_node_unlock(n_ptr);
Ying Xue247f0f32014-02-18 16:06:46 +08001593 tipc_port_rcv(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001594 continue;
Ying Xue3af390e2013-10-30 11:26:57 +08001595 case MSG_BUNDLER:
1596 l_ptr->stats.recv_bundles++;
1597 l_ptr->stats.recv_bundled += msg_msgcnt(msg);
1598 tipc_node_unlock(n_ptr);
Ying Xue247f0f32014-02-18 16:06:46 +08001599 tipc_link_bundle_rcv(buf);
Ying Xue3af390e2013-10-30 11:26:57 +08001600 continue;
1601 case NAME_DISTRIBUTOR:
1602 n_ptr->bclink.recv_permitted = true;
1603 tipc_node_unlock(n_ptr);
Ying Xue247f0f32014-02-18 16:06:46 +08001604 tipc_named_rcv(buf);
Ying Xue3af390e2013-10-30 11:26:57 +08001605 continue;
Ying Xue3af390e2013-10-30 11:26:57 +08001606 case CONN_MANAGER:
1607 tipc_node_unlock(n_ptr);
Ying Xue247f0f32014-02-18 16:06:46 +08001608 tipc_port_proto_rcv(buf);
Ying Xue3af390e2013-10-30 11:26:57 +08001609 continue;
Jon Paul Maloya5377832014-02-13 17:29:15 -05001610 case BCAST_PROTOCOL:
Ying Xue247f0f32014-02-18 16:06:46 +08001611 tipc_link_sync_rcv(n_ptr, buf);
Jon Paul Maloya5377832014-02-13 17:29:15 -05001612 break;
Ying Xue3af390e2013-10-30 11:26:57 +08001613 default:
1614 kfree_skb(buf);
Ying Xue3af390e2013-10-30 11:26:57 +08001615 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001616 }
Per Liden4323add2006-01-18 00:38:21 +01001617 tipc_node_unlock(n_ptr);
Ying Xue3af390e2013-10-30 11:26:57 +08001618 continue;
1619unlock_discard:
Ying Xue3af390e2013-10-30 11:26:57 +08001620 tipc_node_unlock(n_ptr);
1621discard:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001622 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001623 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001624}
1625
Ben Hutchings2c530402012-07-10 10:55:09 +00001626/**
Allan Stephens8809b252011-10-25 10:44:35 -04001627 * tipc_link_defer_pkt - Add out-of-sequence message to deferred reception queue
1628 *
1629 * Returns increase in queue length (i.e. 0 or 1)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001630 */
Allan Stephens8809b252011-10-25 10:44:35 -04001631u32 tipc_link_defer_pkt(struct sk_buff **head, struct sk_buff **tail,
Per Liden4323add2006-01-18 00:38:21 +01001632 struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001633{
Allan Stephens8809b252011-10-25 10:44:35 -04001634 struct sk_buff *queue_buf;
1635 struct sk_buff **prev;
Allan Stephensf9057302011-10-24 16:03:12 -04001636 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001637
1638 buf->next = NULL;
1639
1640 /* Empty queue ? */
1641 if (*head == NULL) {
1642 *head = *tail = buf;
1643 return 1;
1644 }
1645
1646 /* Last ? */
Allan Stephensf9057302011-10-24 16:03:12 -04001647 if (less(buf_seqno(*tail), seq_no)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001648 (*tail)->next = buf;
1649 *tail = buf;
1650 return 1;
1651 }
1652
Allan Stephens8809b252011-10-25 10:44:35 -04001653 /* Locate insertion point in queue, then insert; discard if duplicate */
1654 prev = head;
1655 queue_buf = *head;
1656 for (;;) {
1657 u32 curr_seqno = buf_seqno(queue_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001658
Allan Stephens8809b252011-10-25 10:44:35 -04001659 if (seq_no == curr_seqno) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001660 kfree_skb(buf);
Allan Stephens8809b252011-10-25 10:44:35 -04001661 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001662 }
Allan Stephens8809b252011-10-25 10:44:35 -04001663
1664 if (less(seq_no, curr_seqno))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001665 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001666
Allan Stephens8809b252011-10-25 10:44:35 -04001667 prev = &queue_buf->next;
1668 queue_buf = queue_buf->next;
1669 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001670
Allan Stephens8809b252011-10-25 10:44:35 -04001671 buf->next = queue_buf;
1672 *prev = buf;
1673 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001674}
1675
Allan Stephens8809b252011-10-25 10:44:35 -04001676/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001677 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1678 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001679static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001680 struct sk_buff *buf)
1681{
Allan Stephensf9057302011-10-24 16:03:12 -04001682 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001683
1684 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
Ying Xue247f0f32014-02-18 16:06:46 +08001685 tipc_link_proto_rcv(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001686 return;
1687 }
1688
Per Lidenb97bf3f2006-01-02 19:04:38 +01001689 /* Record OOS packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001690 l_ptr->checkpoint--;
1691
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001692 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001693 * Discard packet if a duplicate; otherwise add it to deferred queue
1694 * and notify peer of gap as per protocol specification
1695 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001696 if (less(seq_no, mod(l_ptr->next_in_no))) {
1697 l_ptr->stats.duplicates++;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001698 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001699 return;
1700 }
1701
Per Liden4323add2006-01-18 00:38:21 +01001702 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1703 &l_ptr->newest_deferred_in, buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001704 l_ptr->deferred_inqueue_sz++;
1705 l_ptr->stats.deferred_recv++;
Erik Hugne64380a02014-02-11 11:38:26 +01001706 TIPC_SKB_CB(buf)->deferred = true;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001707 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
Ying Xue247f0f32014-02-18 16:06:46 +08001708 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001709 } else
1710 l_ptr->stats.duplicates++;
1711}
1712
1713/*
1714 * Send protocol message to the other endpoint.
1715 */
Ying Xue247f0f32014-02-18 16:06:46 +08001716void tipc_link_proto_xmit(struct tipc_link *l_ptr, u32 msg_typ, int probe_msg,
1717 u32 gap, u32 tolerance, u32 priority, u32 ack_mtu)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001718{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001719 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001720 struct tipc_msg *msg = l_ptr->pmsg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001721 u32 msg_size = sizeof(l_ptr->proto_msg);
Allan Stephens75f0aa42011-02-28 15:30:20 -05001722 int r_flag;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001723
Allan Stephens92d2c902011-10-25 11:20:26 -04001724 /* Discard any previous message that was deferred due to congestion */
Allan Stephens92d2c902011-10-25 11:20:26 -04001725 if (l_ptr->proto_msg_queue) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001726 kfree_skb(l_ptr->proto_msg_queue);
Allan Stephens92d2c902011-10-25 11:20:26 -04001727 l_ptr->proto_msg_queue = NULL;
1728 }
1729
Ying Xue77a7e072013-12-10 20:45:44 -08001730 /* Don't send protocol message during link changeover */
1731 if (l_ptr->exp_msg_count)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001732 return;
Allan Stephensb4b56102011-05-27 11:00:51 -04001733
1734 /* Abort non-RESET send if communication with node is prohibited */
Ying Xue10f465c2014-05-05 08:56:11 +08001735 if ((tipc_node_blocked(l_ptr->owner)) && (msg_typ != RESET_MSG))
Allan Stephensb4b56102011-05-27 11:00:51 -04001736 return;
1737
Allan Stephens92d2c902011-10-25 11:20:26 -04001738 /* Create protocol message with "out-of-sequence" sequence number */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001739 msg_set_type(msg, msg_typ);
Ying Xue7a2f7d12014-04-21 10:55:46 +08001740 msg_set_net_plane(msg, l_ptr->net_plane);
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001741 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001742 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
Per Lidenb97bf3f2006-01-02 19:04:38 +01001743
1744 if (msg_typ == STATE_MSG) {
1745 u32 next_sent = mod(l_ptr->next_out_no);
1746
Per Liden4323add2006-01-18 00:38:21 +01001747 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001748 return;
1749 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -04001750 next_sent = buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001751 msg_set_next_sent(msg, next_sent);
1752 if (l_ptr->oldest_deferred_in) {
Allan Stephensf9057302011-10-24 16:03:12 -04001753 u32 rec = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001754 gap = mod(rec - mod(l_ptr->next_in_no));
1755 }
1756 msg_set_seq_gap(msg, gap);
1757 if (gap)
1758 l_ptr->stats.sent_nacks++;
1759 msg_set_link_tolerance(msg, tolerance);
1760 msg_set_linkprio(msg, priority);
1761 msg_set_max_pkt(msg, ack_mtu);
1762 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1763 msg_set_probe(msg, probe_msg != 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001764 if (probe_msg) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001765 u32 mtu = l_ptr->max_pkt;
1766
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001767 if ((mtu < l_ptr->max_pkt_target) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001768 link_working_working(l_ptr) &&
1769 l_ptr->fsm_msg_cnt) {
1770 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001771 if (l_ptr->max_pkt_probes == 10) {
1772 l_ptr->max_pkt_target = (msg_size - 4);
1773 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001774 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001775 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001776 l_ptr->max_pkt_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001777 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001778
1779 l_ptr->stats.sent_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001780 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001781 l_ptr->stats.sent_states++;
1782 } else { /* RESET_MSG or ACTIVATE_MSG */
1783 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
1784 msg_set_seq_gap(msg, 0);
1785 msg_set_next_sent(msg, 1);
Allan Stephensf23d9bf2011-01-18 15:15:34 -05001786 msg_set_probe(msg, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001787 msg_set_link_tolerance(msg, l_ptr->tolerance);
1788 msg_set_linkprio(msg, l_ptr->priority);
1789 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
1790 }
1791
Allan Stephens75f0aa42011-02-28 15:30:20 -05001792 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
1793 msg_set_redundant_link(msg, r_flag);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001794 msg_set_linkprio(msg, l_ptr->priority);
Allan Stephens92d2c902011-10-25 11:20:26 -04001795 msg_set_size(msg, msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001796
1797 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
1798
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001799 buf = tipc_buf_acquire(msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001800 if (!buf)
1801 return;
1802
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001803 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
Ying Xue796c75d2013-06-17 10:54:48 -04001804 buf->priority = TC_PRIO_CONTROL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001805
Ying Xue7a2f7d12014-04-21 10:55:46 +08001806 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
Allan Stephens92d2c902011-10-25 11:20:26 -04001807 l_ptr->unacked_window = 0;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001808 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001809}
1810
1811/*
1812 * Receive protocol message :
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001813 * Note that network plane id propagates through the network, and may
1814 * change at any time. The node with lowest address rules
Per Lidenb97bf3f2006-01-02 19:04:38 +01001815 */
Ying Xue247f0f32014-02-18 16:06:46 +08001816static void tipc_link_proto_rcv(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001817{
1818 u32 rec_gap = 0;
1819 u32 max_pkt_info;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001820 u32 max_pkt_ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001821 u32 msg_tol;
1822 struct tipc_msg *msg = buf_msg(buf);
1823
Ying Xue77a7e072013-12-10 20:45:44 -08001824 /* Discard protocol message during link changeover */
1825 if (l_ptr->exp_msg_count)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001826 goto exit;
1827
Ying Xue7a2f7d12014-04-21 10:55:46 +08001828 if (l_ptr->net_plane != msg_net_plane(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001829 if (tipc_own_addr > msg_prevnode(msg))
Ying Xue7a2f7d12014-04-21 10:55:46 +08001830 l_ptr->net_plane = msg_net_plane(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001831
Per Lidenb97bf3f2006-01-02 19:04:38 +01001832 switch (msg_type(msg)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001833
Per Lidenb97bf3f2006-01-02 19:04:38 +01001834 case RESET_MSG:
Allan Stephensa686e682008-06-04 17:29:39 -07001835 if (!link_working_unknown(l_ptr) &&
1836 (l_ptr->peer_session != INVALID_SESSION)) {
Allan Stephens641c2182011-04-07 09:54:43 -04001837 if (less_eq(msg_session(msg), l_ptr->peer_session))
1838 break; /* duplicate or old reset: ignore */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001839 }
Allan Stephensb4b56102011-05-27 11:00:51 -04001840
1841 if (!msg_redundant_link(msg) && (link_working_working(l_ptr) ||
1842 link_working_unknown(l_ptr))) {
1843 /*
1844 * peer has lost contact -- don't allow peer's links
1845 * to reactivate before we recognize loss & clean up
1846 */
Ying Xueca9cf062014-05-08 08:54:40 +08001847 l_ptr->owner->action_flags |= TIPC_WAIT_OWN_LINKS_DOWN;
Allan Stephensb4b56102011-05-27 11:00:51 -04001848 }
1849
Allan Stephens47361c82011-10-26 10:55:16 -04001850 link_state_event(l_ptr, RESET_MSG);
1851
Per Lidenb97bf3f2006-01-02 19:04:38 +01001852 /* fall thru' */
1853 case ACTIVATE_MSG:
1854 /* Update link settings according other endpoint's values */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001855 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
1856
Allan Stephens2db99832010-12-31 18:59:33 +00001857 msg_tol = msg_link_tolerance(msg);
1858 if (msg_tol > l_ptr->tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001859 link_set_supervision_props(l_ptr, msg_tol);
1860
1861 if (msg_linkprio(msg) > l_ptr->priority)
1862 l_ptr->priority = msg_linkprio(msg);
1863
1864 max_pkt_info = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001865 if (max_pkt_info) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001866 if (max_pkt_info < l_ptr->max_pkt_target)
1867 l_ptr->max_pkt_target = max_pkt_info;
1868 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
1869 l_ptr->max_pkt = l_ptr->max_pkt_target;
1870 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001871 l_ptr->max_pkt = l_ptr->max_pkt_target;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001872 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001873
Allan Stephens4d753132011-10-25 12:19:05 -04001874 /* Synchronize broadcast link info, if not done previously */
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001875 if (!tipc_node_is_up(l_ptr->owner)) {
1876 l_ptr->owner->bclink.last_sent =
1877 l_ptr->owner->bclink.last_in =
1878 msg_last_bcast(msg);
1879 l_ptr->owner->bclink.oos_state = 0;
1880 }
Allan Stephens4d753132011-10-25 12:19:05 -04001881
Per Lidenb97bf3f2006-01-02 19:04:38 +01001882 l_ptr->peer_session = msg_session(msg);
1883 l_ptr->peer_bearer_id = msg_bearer_id(msg);
Allan Stephens47361c82011-10-26 10:55:16 -04001884
1885 if (msg_type(msg) == ACTIVATE_MSG)
1886 link_state_event(l_ptr, ACTIVATE_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001887 break;
1888 case STATE_MSG:
1889
Allan Stephens2db99832010-12-31 18:59:33 +00001890 msg_tol = msg_link_tolerance(msg);
1891 if (msg_tol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001892 link_set_supervision_props(l_ptr, msg_tol);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001893
1894 if (msg_linkprio(msg) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001895 (msg_linkprio(msg) != l_ptr->priority)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001896 pr_warn("%s<%s>, priority change %u->%u\n",
1897 link_rst_msg, l_ptr->name, l_ptr->priority,
1898 msg_linkprio(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001899 l_ptr->priority = msg_linkprio(msg);
Per Liden4323add2006-01-18 00:38:21 +01001900 tipc_link_reset(l_ptr); /* Enforce change to take effect */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001901 break;
1902 }
Jon Paul Maloyec37dcd2014-05-14 05:39:10 -04001903
1904 /* Record reception; force mismatch at next timeout: */
1905 l_ptr->checkpoint--;
1906
Per Lidenb97bf3f2006-01-02 19:04:38 +01001907 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1908 l_ptr->stats.recv_states++;
1909 if (link_reset_unknown(l_ptr))
1910 break;
1911
1912 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001913 rec_gap = mod(msg_next_sent(msg) -
Per Lidenb97bf3f2006-01-02 19:04:38 +01001914 mod(l_ptr->next_in_no));
1915 }
1916
1917 max_pkt_ack = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001918 if (max_pkt_ack > l_ptr->max_pkt) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001919 l_ptr->max_pkt = max_pkt_ack;
1920 l_ptr->max_pkt_probes = 0;
1921 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001922
1923 max_pkt_ack = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001924 if (msg_probe(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001925 l_ptr->stats.recv_probes++;
Allan Stephensa0168922010-12-31 18:59:35 +00001926 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001927 max_pkt_ack = msg_size(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001928 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001929
1930 /* Protocol message before retransmits, reduce loss risk */
Ying Xue389dd9b2012-11-16 13:51:30 +08001931 if (l_ptr->owner->bclink.recv_permitted)
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001932 tipc_bclink_update_link_state(l_ptr->owner,
1933 msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001934
1935 if (rec_gap || (msg_probe(msg))) {
Ying Xue247f0f32014-02-18 16:06:46 +08001936 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, rec_gap, 0,
1937 0, max_pkt_ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001938 }
1939 if (msg_seq_gap(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001940 l_ptr->stats.recv_nacks++;
Per Liden4323add2006-01-18 00:38:21 +01001941 tipc_link_retransmit(l_ptr, l_ptr->first_out,
1942 msg_seq_gap(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001943 }
1944 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001945 }
1946exit:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001947 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001948}
1949
1950
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001951/* tipc_link_tunnel_xmit(): Tunnel one packet via a link belonging to
1952 * a different bearer. Owner node is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001953 */
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001954static void tipc_link_tunnel_xmit(struct tipc_link *l_ptr,
1955 struct tipc_msg *tunnel_hdr,
1956 struct tipc_msg *msg,
1957 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001958{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001959 struct tipc_link *tunnel;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001960 struct sk_buff *buf;
1961 u32 length = msg_size(msg);
1962
1963 tunnel = l_ptr->owner->active_links[selector & 1];
Allan Stephens5392d642006-06-25 23:52:50 -07001964 if (!tipc_link_is_up(tunnel)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001965 pr_warn("%stunnel link no longer available\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001966 return;
Allan Stephens5392d642006-06-25 23:52:50 -07001967 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001968 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001969 buf = tipc_buf_acquire(length + INT_H_SIZE);
Allan Stephens5392d642006-06-25 23:52:50 -07001970 if (!buf) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001971 pr_warn("%sunable to send tunnel msg\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001972 return;
Allan Stephens5392d642006-06-25 23:52:50 -07001973 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001974 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
1975 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
Ying Xue247f0f32014-02-18 16:06:46 +08001976 __tipc_link_xmit(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001977}
1978
1979
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001980/* tipc_link_failover_send_queue(): A link has gone down, but a second
1981 * link is still active. We can do failover. Tunnel the failing link's
1982 * whole send queue via the remaining link. This way, we don't lose
1983 * any packets, and sequence order is preserved for subsequent traffic
1984 * sent over the remaining link. Owner node is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001985 */
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001986void tipc_link_failover_send_queue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001987{
1988 u32 msgcount = l_ptr->out_queue_size;
1989 struct sk_buff *crs = l_ptr->first_out;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001990 struct tipc_link *tunnel = l_ptr->owner->active_links[0];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001991 struct tipc_msg tunnel_hdr;
Allan Stephens5392d642006-06-25 23:52:50 -07001992 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001993
1994 if (!tunnel)
1995 return;
1996
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001997 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07001998 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001999 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2000 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07002001
Per Lidenb97bf3f2006-01-02 19:04:38 +01002002 if (!l_ptr->first_out) {
2003 struct sk_buff *buf;
2004
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002005 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002006 if (buf) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002007 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002008 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Ying Xue247f0f32014-02-18 16:06:46 +08002009 __tipc_link_xmit(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002010 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002011 pr_warn("%sunable to send changeover msg\n",
2012 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002013 }
2014 return;
2015 }
Allan Stephensf1310722006-06-25 23:51:37 -07002016
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002017 split_bundles = (l_ptr->owner->active_links[0] !=
Allan Stephens5392d642006-06-25 23:52:50 -07002018 l_ptr->owner->active_links[1]);
2019
Per Lidenb97bf3f2006-01-02 19:04:38 +01002020 while (crs) {
2021 struct tipc_msg *msg = buf_msg(crs);
2022
2023 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002024 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00002025 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002026
Florian Westphald788d802007-08-02 19:28:06 -07002027 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002028 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00002029 msg_set_seqno(m, msg_seqno(msg));
Jon Paul Maloy170b3922014-01-07 17:02:41 -05002030 tipc_link_tunnel_xmit(l_ptr, &tunnel_hdr, m,
2031 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002032 pos += align(msg_size(m));
2033 m = (struct tipc_msg *)pos;
2034 }
2035 } else {
Jon Paul Maloy170b3922014-01-07 17:02:41 -05002036 tipc_link_tunnel_xmit(l_ptr, &tunnel_hdr, msg,
2037 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002038 }
2039 crs = crs->next;
2040 }
2041}
2042
Ying Xue247f0f32014-02-18 16:06:46 +08002043/* tipc_link_dup_queue_xmit(): A second link has become active. Tunnel a
Jon Paul Maloy170b3922014-01-07 17:02:41 -05002044 * duplicate of the first link's send queue via the new link. This way, we
2045 * are guaranteed that currently queued packets from a socket are delivered
2046 * before future traffic from the same socket, even if this is using the
2047 * new link. The last arriving copy of each duplicate packet is dropped at
2048 * the receiving end by the regular protocol check, so packet cardinality
2049 * and sequence order is preserved per sender/receiver socket pair.
2050 * Owner node is locked.
2051 */
Ying Xue247f0f32014-02-18 16:06:46 +08002052void tipc_link_dup_queue_xmit(struct tipc_link *l_ptr,
Jon Paul Maloy170b3922014-01-07 17:02:41 -05002053 struct tipc_link *tunnel)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002054{
2055 struct sk_buff *iter;
2056 struct tipc_msg tunnel_hdr;
2057
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002058 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002059 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002060 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
2061 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2062 iter = l_ptr->first_out;
2063 while (iter) {
2064 struct sk_buff *outbuf;
2065 struct tipc_msg *msg = buf_msg(iter);
2066 u32 length = msg_size(msg);
2067
2068 if (msg_user(msg) == MSG_BUNDLER)
2069 msg_set_type(msg, CLOSED_MSG);
2070 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002071 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002072 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002073 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002074 if (outbuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002075 pr_warn("%sunable to send duplicate msg\n",
2076 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002077 return;
2078 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002079 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
2080 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
2081 length);
Ying Xue247f0f32014-02-18 16:06:46 +08002082 __tipc_link_xmit(tunnel, outbuf);
Per Liden4323add2006-01-18 00:38:21 +01002083 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002084 return;
2085 iter = iter->next;
2086 }
2087}
2088
Per Lidenb97bf3f2006-01-02 19:04:38 +01002089/**
2090 * buf_extract - extracts embedded TIPC message from another message
2091 * @skb: encapsulating message buffer
2092 * @from_pos: offset to extract from
2093 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002094 * Returns a new message buffer containing an embedded message. The
Per Lidenb97bf3f2006-01-02 19:04:38 +01002095 * encapsulating message itself is left unchanged.
2096 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002097static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
2098{
2099 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
2100 u32 size = msg_size(msg);
2101 struct sk_buff *eb;
2102
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002103 eb = tipc_buf_acquire(size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002104 if (eb)
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002105 skb_copy_to_linear_data(eb, msg, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002106 return eb;
2107}
2108
Jon Paul Maloy1dab3d52014-02-13 17:29:10 -05002109
2110
2111/* tipc_link_dup_rcv(): Receive a tunnelled DUPLICATE_MSG packet.
2112 * Owner node is locked.
2113 */
2114static void tipc_link_dup_rcv(struct tipc_link *l_ptr,
2115 struct sk_buff *t_buf)
2116{
2117 struct sk_buff *buf;
2118
2119 if (!tipc_link_is_up(l_ptr))
2120 return;
2121
2122 buf = buf_extract(t_buf, INT_H_SIZE);
2123 if (buf == NULL) {
2124 pr_warn("%sfailed to extract inner dup pkt\n", link_co_err);
2125 return;
2126 }
2127
2128 /* Add buffer to deferred queue, if applicable: */
2129 link_handle_out_of_seq_msg(l_ptr, buf);
2130}
2131
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05002132/* tipc_link_failover_rcv(): Receive a tunnelled ORIGINAL_MSG packet
2133 * Owner node is locked.
2134 */
2135static struct sk_buff *tipc_link_failover_rcv(struct tipc_link *l_ptr,
2136 struct sk_buff *t_buf)
2137{
2138 struct tipc_msg *t_msg = buf_msg(t_buf);
2139 struct sk_buff *buf = NULL;
2140 struct tipc_msg *msg;
2141
2142 if (tipc_link_is_up(l_ptr))
2143 tipc_link_reset(l_ptr);
2144
2145 /* First failover packet? */
2146 if (l_ptr->exp_msg_count == START_CHANGEOVER)
2147 l_ptr->exp_msg_count = msg_msgcnt(t_msg);
2148
2149 /* Should there be an inner packet? */
2150 if (l_ptr->exp_msg_count) {
2151 l_ptr->exp_msg_count--;
2152 buf = buf_extract(t_buf, INT_H_SIZE);
2153 if (buf == NULL) {
2154 pr_warn("%sno inner failover pkt\n", link_co_err);
2155 goto exit;
2156 }
2157 msg = buf_msg(buf);
2158
2159 if (less(msg_seqno(msg), l_ptr->reset_checkpoint)) {
2160 kfree_skb(buf);
2161 buf = NULL;
2162 goto exit;
2163 }
2164 if (msg_user(msg) == MSG_FRAGMENTER) {
2165 l_ptr->stats.recv_fragments++;
Jon Paul Maloy37e22162014-05-14 05:39:12 -04002166 tipc_buf_append(&l_ptr->reasm_buf, &buf);
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05002167 }
2168 }
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05002169exit:
Jon Paul Maloy7d339392014-02-13 17:29:16 -05002170 if ((l_ptr->exp_msg_count == 0) && (l_ptr->flags & LINK_STOPPED)) {
2171 tipc_node_detach_link(l_ptr->owner, l_ptr);
2172 kfree(l_ptr);
2173 }
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05002174 return buf;
2175}
2176
Jon Paul Maloy1dab3d52014-02-13 17:29:10 -05002177/* tipc_link_tunnel_rcv(): Receive a tunnelled packet, sent
Jon Paul Maloy170b3922014-01-07 17:02:41 -05002178 * via other link as result of a failover (ORIGINAL_MSG) or
2179 * a new active link (DUPLICATE_MSG). Failover packets are
2180 * returned to the active link for delivery upwards.
2181 * Owner node is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002182 */
Jon Paul Maloy3bb53382014-02-13 17:29:12 -05002183static int tipc_link_tunnel_rcv(struct tipc_node *n_ptr,
Jon Paul Maloy170b3922014-01-07 17:02:41 -05002184 struct sk_buff **buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002185{
Jon Paul Maloy02842f72014-02-13 17:29:14 -05002186 struct sk_buff *t_buf = *buf;
2187 struct tipc_link *l_ptr;
2188 struct tipc_msg *t_msg = buf_msg(t_buf);
2189 u32 bearer_id = msg_bearer_id(t_msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002190
Jon Paul Maloy1e9d47a2014-02-13 17:29:13 -05002191 *buf = NULL;
2192
Dan Carpentercb4b102f2013-05-06 08:28:41 +00002193 if (bearer_id >= MAX_BEARERS)
2194 goto exit;
Jon Paul Maloy1dab3d52014-02-13 17:29:10 -05002195
Jon Paul Maloy02842f72014-02-13 17:29:14 -05002196 l_ptr = n_ptr->links[bearer_id];
2197 if (!l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002198 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002199
Jon Paul Maloy02842f72014-02-13 17:29:14 -05002200 if (msg_type(t_msg) == DUPLICATE_MSG)
2201 tipc_link_dup_rcv(l_ptr, t_buf);
2202 else if (msg_type(t_msg) == ORIGINAL_MSG)
2203 *buf = tipc_link_failover_rcv(l_ptr, t_buf);
Jon Paul Maloy1e9d47a2014-02-13 17:29:13 -05002204 else
2205 pr_warn("%sunknown tunnel pkt received\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002206exit:
Jon Paul Maloy02842f72014-02-13 17:29:14 -05002207 kfree_skb(t_buf);
Jon Paul Maloy1e9d47a2014-02-13 17:29:13 -05002208 return *buf != NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002209}
2210
2211/*
2212 * Bundler functionality:
2213 */
Ying Xue247f0f32014-02-18 16:06:46 +08002214void tipc_link_bundle_rcv(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002215{
2216 u32 msgcount = msg_msgcnt(buf_msg(buf));
2217 u32 pos = INT_H_SIZE;
2218 struct sk_buff *obuf;
2219
Per Lidenb97bf3f2006-01-02 19:04:38 +01002220 while (msgcount--) {
2221 obuf = buf_extract(buf, pos);
2222 if (obuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002223 pr_warn("Link unable to unbundle message(s)\n");
Allan Stephensa10bd922006-06-25 23:52:17 -07002224 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002225 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002226 pos += align(msg_size(buf_msg(obuf)));
Per Liden4323add2006-01-18 00:38:21 +01002227 tipc_net_route_msg(obuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002228 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002229 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002230}
2231
2232/*
2233 * Fragmentation/defragmentation:
2234 */
2235
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002236/*
Ying Xue247f0f32014-02-18 16:06:46 +08002237 * tipc_link_frag_xmit: Entry for buffers needing fragmentation.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002238 * The buffer is complete, inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002239 * Returns user data length.
2240 */
Ying Xue247f0f32014-02-18 16:06:46 +08002241static int tipc_link_frag_xmit(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002242{
Allan Stephens77561552011-04-17 13:06:23 -04002243 struct sk_buff *buf_chain = NULL;
2244 struct sk_buff *buf_chain_tail = (struct sk_buff *)&buf_chain;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002245 struct tipc_msg *inmsg = buf_msg(buf);
2246 struct tipc_msg fragm_hdr;
2247 u32 insize = msg_size(inmsg);
2248 u32 dsz = msg_data_sz(inmsg);
2249 unchar *crs = buf->data;
2250 u32 rest = insize;
Allan Stephens15e979d2010-05-11 14:30:10 +00002251 u32 pack_sz = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002252 u32 fragm_sz = pack_sz - INT_H_SIZE;
Allan Stephens77561552011-04-17 13:06:23 -04002253 u32 fragm_no = 0;
Allan Stephens9c396a72008-06-04 17:36:58 -07002254 u32 destaddr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002255
2256 if (msg_short(inmsg))
2257 destaddr = l_ptr->addr;
Allan Stephens9c396a72008-06-04 17:36:58 -07002258 else
2259 destaddr = msg_destnode(inmsg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002260
Per Lidenb97bf3f2006-01-02 19:04:38 +01002261 /* Prepare reusable fragment header: */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002262 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07002263 INT_H_SIZE, destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002264
2265 /* Chop up message: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002266 while (rest > 0) {
2267 struct sk_buff *fragm;
2268
2269 if (rest <= fragm_sz) {
2270 fragm_sz = rest;
2271 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
2272 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002273 fragm = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002274 if (fragm == NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002275 kfree_skb(buf);
Ying Xued77b3832013-12-10 20:45:38 -08002276 kfree_skb_list(buf_chain);
Allan Stephens77561552011-04-17 13:06:23 -04002277 return -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002278 }
2279 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
Allan Stephens77561552011-04-17 13:06:23 -04002280 fragm_no++;
2281 msg_set_fragm_no(&fragm_hdr, fragm_no);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002282 skb_copy_to_linear_data(fragm, &fragm_hdr, INT_H_SIZE);
2283 skb_copy_to_linear_data_offset(fragm, INT_H_SIZE, crs,
2284 fragm_sz);
Allan Stephens77561552011-04-17 13:06:23 -04002285 buf_chain_tail->next = fragm;
2286 buf_chain_tail = fragm;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002287
Per Lidenb97bf3f2006-01-02 19:04:38 +01002288 rest -= fragm_sz;
2289 crs += fragm_sz;
2290 msg_set_type(&fragm_hdr, FRAGMENT);
2291 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002292 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002293
2294 /* Append chain of fragments to send queue & send them */
Allan Stephens77561552011-04-17 13:06:23 -04002295 l_ptr->long_msg_seq_no++;
2296 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
2297 l_ptr->stats.sent_fragments += fragm_no;
2298 l_ptr->stats.sent_fragmented++;
2299 tipc_link_push_queue(l_ptr);
2300
Per Lidenb97bf3f2006-01-02 19:04:38 +01002301 return dsz;
2302}
2303
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002304static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002305{
Allan Stephens5413b4c2011-01-18 13:24:55 -05002306 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
2307 return;
2308
Per Lidenb97bf3f2006-01-02 19:04:38 +01002309 l_ptr->tolerance = tolerance;
2310 l_ptr->continuity_interval =
2311 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
2312 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
2313}
2314
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002315void tipc_link_set_queue_limits(struct tipc_link *l_ptr, u32 window)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002316{
2317 /* Data messages from this node, inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002318 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
2319 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
2320 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
2321 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002322 /* Transiting data messages,inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002323 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
2324 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
2325 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
2326 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002327 l_ptr->queue_limit[CONN_MANAGER] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002328 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
2329 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
2330 /* FRAGMENT and LAST_FRAGMENT packets */
2331 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
2332}
2333
Jon Paul Maloye099e862014-02-13 17:29:18 -05002334/* tipc_link_find_owner - locate owner node of link by link's name
2335 * @name: pointer to link name string
2336 * @bearer_id: pointer to index in 'node->links' array where the link was found.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002337 *
Jon Paul Maloye099e862014-02-13 17:29:18 -05002338 * Returns pointer to node owning the link, or 0 if no matching link is found.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002339 */
Jon Paul Maloye099e862014-02-13 17:29:18 -05002340static struct tipc_node *tipc_link_find_owner(const char *link_name,
2341 unsigned int *bearer_id)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002342{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002343 struct tipc_link *l_ptr;
Erik Hugnebbfbe472013-10-18 07:23:21 +02002344 struct tipc_node *n_ptr;
Jon Paul Maloye099e862014-02-13 17:29:18 -05002345 struct tipc_node *found_node = 0;
Erik Hugnebbfbe472013-10-18 07:23:21 +02002346 int i;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002347
Jon Paul Maloye099e862014-02-13 17:29:18 -05002348 *bearer_id = 0;
Ying Xue6c7a7622014-03-27 12:54:37 +08002349 rcu_read_lock();
2350 list_for_each_entry_rcu(n_ptr, &tipc_node_list, list) {
Jon Paul Maloya11607f2014-02-14 16:40:44 -05002351 tipc_node_lock(n_ptr);
Erik Hugnebbfbe472013-10-18 07:23:21 +02002352 for (i = 0; i < MAX_BEARERS; i++) {
2353 l_ptr = n_ptr->links[i];
Jon Paul Maloye099e862014-02-13 17:29:18 -05002354 if (l_ptr && !strcmp(l_ptr->name, link_name)) {
2355 *bearer_id = i;
2356 found_node = n_ptr;
2357 break;
2358 }
Erik Hugnebbfbe472013-10-18 07:23:21 +02002359 }
Jon Paul Maloya11607f2014-02-14 16:40:44 -05002360 tipc_node_unlock(n_ptr);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002361 if (found_node)
2362 break;
Erik Hugnebbfbe472013-10-18 07:23:21 +02002363 }
Ying Xue6c7a7622014-03-27 12:54:37 +08002364 rcu_read_unlock();
2365
Jon Paul Maloye099e862014-02-13 17:29:18 -05002366 return found_node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002367}
2368
Allan Stephens5c216e12011-10-18 11:34:29 -04002369/**
2370 * link_value_is_valid -- validate proposed link tolerance/priority/window
2371 *
Ben Hutchings2c530402012-07-10 10:55:09 +00002372 * @cmd: value type (TIPC_CMD_SET_LINK_*)
2373 * @new_value: the new value
Allan Stephens5c216e12011-10-18 11:34:29 -04002374 *
2375 * Returns 1 if value is within range, 0 if not.
2376 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002377static int link_value_is_valid(u16 cmd, u32 new_value)
2378{
2379 switch (cmd) {
2380 case TIPC_CMD_SET_LINK_TOL:
2381 return (new_value >= TIPC_MIN_LINK_TOL) &&
2382 (new_value <= TIPC_MAX_LINK_TOL);
2383 case TIPC_CMD_SET_LINK_PRI:
2384 return (new_value <= TIPC_MAX_LINK_PRI);
2385 case TIPC_CMD_SET_LINK_WINDOW:
2386 return (new_value >= TIPC_MIN_LINK_WIN) &&
2387 (new_value <= TIPC_MAX_LINK_WIN);
2388 }
2389 return 0;
2390}
2391
Allan Stephens5c216e12011-10-18 11:34:29 -04002392/**
2393 * link_cmd_set_value - change priority/tolerance/window for link/bearer/media
Ben Hutchings2c530402012-07-10 10:55:09 +00002394 * @name: ptr to link, bearer, or media name
2395 * @new_value: new value of link, bearer, or media setting
2396 * @cmd: which link, bearer, or media attribute to set (TIPC_CMD_SET_LINK_*)
Allan Stephens5c216e12011-10-18 11:34:29 -04002397 *
Ying Xue7216cd92014-04-21 10:55:48 +08002398 * Caller must hold RTNL lock to ensure link/bearer/media is not deleted.
Allan Stephens5c216e12011-10-18 11:34:29 -04002399 *
2400 * Returns 0 if value updated and negative value on error.
2401 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002402static int link_cmd_set_value(const char *name, u32 new_value, u16 cmd)
2403{
2404 struct tipc_node *node;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002405 struct tipc_link *l_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002406 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -05002407 struct tipc_media *m_ptr;
Jon Paul Maloye099e862014-02-13 17:29:18 -05002408 int bearer_id;
Ying Xue636c0372013-10-18 07:23:20 +02002409 int res = 0;
Allan Stephens5c216e12011-10-18 11:34:29 -04002410
Jon Paul Maloye099e862014-02-13 17:29:18 -05002411 node = tipc_link_find_owner(name, &bearer_id);
2412 if (node) {
Allan Stephens5c216e12011-10-18 11:34:29 -04002413 tipc_node_lock(node);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002414 l_ptr = node->links[bearer_id];
2415
2416 if (l_ptr) {
2417 switch (cmd) {
2418 case TIPC_CMD_SET_LINK_TOL:
2419 link_set_supervision_props(l_ptr, new_value);
Ying Xue247f0f32014-02-18 16:06:46 +08002420 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0,
2421 new_value, 0, 0);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002422 break;
2423 case TIPC_CMD_SET_LINK_PRI:
2424 l_ptr->priority = new_value;
Ying Xue247f0f32014-02-18 16:06:46 +08002425 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0,
2426 0, new_value, 0);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002427 break;
2428 case TIPC_CMD_SET_LINK_WINDOW:
2429 tipc_link_set_queue_limits(l_ptr, new_value);
2430 break;
2431 default:
2432 res = -EINVAL;
2433 break;
2434 }
Allan Stephens5c216e12011-10-18 11:34:29 -04002435 }
2436 tipc_node_unlock(node);
Ying Xue636c0372013-10-18 07:23:20 +02002437 return res;
Allan Stephens5c216e12011-10-18 11:34:29 -04002438 }
2439
2440 b_ptr = tipc_bearer_find(name);
2441 if (b_ptr) {
2442 switch (cmd) {
2443 case TIPC_CMD_SET_LINK_TOL:
2444 b_ptr->tolerance = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002445 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002446 case TIPC_CMD_SET_LINK_PRI:
2447 b_ptr->priority = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002448 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002449 case TIPC_CMD_SET_LINK_WINDOW:
2450 b_ptr->window = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002451 break;
2452 default:
2453 res = -EINVAL;
2454 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002455 }
Ying Xue636c0372013-10-18 07:23:20 +02002456 return res;
Allan Stephens5c216e12011-10-18 11:34:29 -04002457 }
2458
2459 m_ptr = tipc_media_find(name);
2460 if (!m_ptr)
2461 return -ENODEV;
2462 switch (cmd) {
2463 case TIPC_CMD_SET_LINK_TOL:
2464 m_ptr->tolerance = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002465 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002466 case TIPC_CMD_SET_LINK_PRI:
2467 m_ptr->priority = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002468 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002469 case TIPC_CMD_SET_LINK_WINDOW:
2470 m_ptr->window = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002471 break;
2472 default:
2473 res = -EINVAL;
2474 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002475 }
Ying Xue636c0372013-10-18 07:23:20 +02002476 return res;
Allan Stephens5c216e12011-10-18 11:34:29 -04002477}
2478
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002479struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
Per Liden4323add2006-01-18 00:38:21 +01002480 u16 cmd)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002481{
2482 struct tipc_link_config *args;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002483 u32 new_value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002484 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002485
2486 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
Per Liden4323add2006-01-18 00:38:21 +01002487 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002488
2489 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2490 new_value = ntohl(args->value);
2491
Allan Stephens5c216e12011-10-18 11:34:29 -04002492 if (!link_value_is_valid(cmd, new_value))
2493 return tipc_cfg_reply_error_string(
2494 "cannot change, value invalid");
2495
Per Liden4323add2006-01-18 00:38:21 +01002496 if (!strcmp(args->name, tipc_bclink_name)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002497 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
Per Liden4323add2006-01-18 00:38:21 +01002498 (tipc_bclink_set_queue_limits(new_value) == 0))
2499 return tipc_cfg_reply_none();
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002500 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
Per Liden4323add2006-01-18 00:38:21 +01002501 " (cannot change setting on broadcast link)");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002502 }
2503
Allan Stephens5c216e12011-10-18 11:34:29 -04002504 res = link_cmd_set_value(args->name, new_value, cmd);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002505 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002506 return tipc_cfg_reply_error_string("cannot change link setting");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002507
Per Liden4323add2006-01-18 00:38:21 +01002508 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002509}
2510
2511/**
2512 * link_reset_statistics - reset link statistics
2513 * @l_ptr: pointer to link
2514 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002515static void link_reset_statistics(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002516{
2517 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2518 l_ptr->stats.sent_info = l_ptr->next_out_no;
2519 l_ptr->stats.recv_info = l_ptr->next_in_no;
2520}
2521
Per Liden4323add2006-01-18 00:38:21 +01002522struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002523{
2524 char *link_name;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002525 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002526 struct tipc_node *node;
Jon Paul Maloye099e862014-02-13 17:29:18 -05002527 unsigned int bearer_id;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002528
2529 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002530 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002531
2532 link_name = (char *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +01002533 if (!strcmp(link_name, tipc_bclink_name)) {
2534 if (tipc_bclink_reset_stats())
2535 return tipc_cfg_reply_error_string("link not found");
2536 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002537 }
Jon Paul Maloye099e862014-02-13 17:29:18 -05002538 node = tipc_link_find_owner(link_name, &bearer_id);
Ying Xue7216cd92014-04-21 10:55:48 +08002539 if (!node)
Per Liden4323add2006-01-18 00:38:21 +01002540 return tipc_cfg_reply_error_string("link not found");
Ying Xue7216cd92014-04-21 10:55:48 +08002541
Jon Paul Maloya11607f2014-02-14 16:40:44 -05002542 tipc_node_lock(node);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002543 l_ptr = node->links[bearer_id];
2544 if (!l_ptr) {
2545 tipc_node_unlock(node);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002546 return tipc_cfg_reply_error_string("link not found");
2547 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002548 link_reset_statistics(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +01002549 tipc_node_unlock(node);
Per Liden4323add2006-01-18 00:38:21 +01002550 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002551}
2552
2553/**
2554 * percent - convert count to a percentage of total (rounding up or down)
2555 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002556static u32 percent(u32 count, u32 total)
2557{
2558 return (count * 100 + (total / 2)) / total;
2559}
2560
2561/**
Per Liden4323add2006-01-18 00:38:21 +01002562 * tipc_link_stats - print link statistics
Per Lidenb97bf3f2006-01-02 19:04:38 +01002563 * @name: link name
2564 * @buf: print buffer area
2565 * @buf_size: size of print buffer area
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002566 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002567 * Returns length of print buffer data string (or 0 if error)
2568 */
Per Liden4323add2006-01-18 00:38:21 +01002569static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002570{
Erik Hugnedc1aed32012-06-29 00:50:23 -04002571 struct tipc_link *l;
2572 struct tipc_stats *s;
David S. Miller6c000552008-09-02 23:38:32 -07002573 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002574 char *status;
2575 u32 profile_total = 0;
Jon Paul Maloye099e862014-02-13 17:29:18 -05002576 unsigned int bearer_id;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002577 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002578
Per Liden4323add2006-01-18 00:38:21 +01002579 if (!strcmp(name, tipc_bclink_name))
2580 return tipc_bclink_stats(buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002581
Jon Paul Maloye099e862014-02-13 17:29:18 -05002582 node = tipc_link_find_owner(name, &bearer_id);
Ying Xue7216cd92014-04-21 10:55:48 +08002583 if (!node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002584 return 0;
Ying Xue7216cd92014-04-21 10:55:48 +08002585
Per Liden4323add2006-01-18 00:38:21 +01002586 tipc_node_lock(node);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002587
2588 l = node->links[bearer_id];
2589 if (!l) {
2590 tipc_node_unlock(node);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002591 return 0;
2592 }
2593
Erik Hugnedc1aed32012-06-29 00:50:23 -04002594 s = &l->stats;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002595
Erik Hugnedc1aed32012-06-29 00:50:23 -04002596 if (tipc_link_is_active(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002597 status = "ACTIVE";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002598 else if (tipc_link_is_up(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002599 status = "STANDBY";
2600 else
2601 status = "DEFUNCT";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002602
2603 ret = tipc_snprintf(buf, buf_size, "Link <%s>\n"
2604 " %s MTU:%u Priority:%u Tolerance:%u ms"
2605 " Window:%u packets\n",
2606 l->name, status, l->max_pkt, l->priority,
2607 l->tolerance, l->queue_limit[0]);
2608
2609 ret += tipc_snprintf(buf + ret, buf_size - ret,
2610 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
2611 l->next_in_no - s->recv_info, s->recv_fragments,
2612 s->recv_fragmented, s->recv_bundles,
2613 s->recv_bundled);
2614
2615 ret += tipc_snprintf(buf + ret, buf_size - ret,
2616 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
2617 l->next_out_no - s->sent_info, s->sent_fragments,
2618 s->sent_fragmented, s->sent_bundles,
2619 s->sent_bundled);
2620
2621 profile_total = s->msg_length_counts;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002622 if (!profile_total)
2623 profile_total = 1;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002624
2625 ret += tipc_snprintf(buf + ret, buf_size - ret,
2626 " TX profile sample:%u packets average:%u octets\n"
2627 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
2628 "-16384:%u%% -32768:%u%% -66000:%u%%\n",
2629 s->msg_length_counts,
2630 s->msg_lengths_total / profile_total,
2631 percent(s->msg_length_profile[0], profile_total),
2632 percent(s->msg_length_profile[1], profile_total),
2633 percent(s->msg_length_profile[2], profile_total),
2634 percent(s->msg_length_profile[3], profile_total),
2635 percent(s->msg_length_profile[4], profile_total),
2636 percent(s->msg_length_profile[5], profile_total),
2637 percent(s->msg_length_profile[6], profile_total));
2638
2639 ret += tipc_snprintf(buf + ret, buf_size - ret,
2640 " RX states:%u probes:%u naks:%u defs:%u"
2641 " dups:%u\n", s->recv_states, s->recv_probes,
2642 s->recv_nacks, s->deferred_recv, s->duplicates);
2643
2644 ret += tipc_snprintf(buf + ret, buf_size - ret,
2645 " TX states:%u probes:%u naks:%u acks:%u"
2646 " dups:%u\n", s->sent_states, s->sent_probes,
2647 s->sent_nacks, s->sent_acks, s->retransmitted);
2648
2649 ret += tipc_snprintf(buf + ret, buf_size - ret,
Ying Xue3c294cb2012-11-15 11:34:45 +08002650 " Congestion link:%u Send queue"
2651 " max:%u avg:%u\n", s->link_congs,
Erik Hugnedc1aed32012-06-29 00:50:23 -04002652 s->max_queue_sz, s->queue_sz_counts ?
2653 (s->accu_queue_sz / s->queue_sz_counts) : 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002654
Per Liden4323add2006-01-18 00:38:21 +01002655 tipc_node_unlock(node);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002656 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002657}
2658
Per Liden4323add2006-01-18 00:38:21 +01002659struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002660{
2661 struct sk_buff *buf;
2662 struct tlv_desc *rep_tlv;
2663 int str_len;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002664 int pb_len;
2665 char *pb;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002666
2667 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002668 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002669
Erik Hugnedc1aed32012-06-29 00:50:23 -04002670 buf = tipc_cfg_reply_alloc(TLV_SPACE(ULTRA_STRING_MAX_LEN));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002671 if (!buf)
2672 return NULL;
2673
2674 rep_tlv = (struct tlv_desc *)buf->data;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002675 pb = TLV_DATA(rep_tlv);
2676 pb_len = ULTRA_STRING_MAX_LEN;
Per Liden4323add2006-01-18 00:38:21 +01002677 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
Erik Hugnedc1aed32012-06-29 00:50:23 -04002678 pb, pb_len);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002679 if (!str_len) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002680 kfree_skb(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002681 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002682 }
Erik Hugnedc1aed32012-06-29 00:50:23 -04002683 str_len += 1; /* for "\0" */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002684 skb_put(buf, TLV_SPACE(str_len));
2685 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
2686
2687 return buf;
2688}
2689
Per Lidenb97bf3f2006-01-02 19:04:38 +01002690/**
Per Liden4323add2006-01-18 00:38:21 +01002691 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
Per Lidenb97bf3f2006-01-02 19:04:38 +01002692 * @dest: network address of destination node
2693 * @selector: used to select from set of active links
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002694 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002695 * If no active link can be found, uses default maximum packet size.
2696 */
Per Liden4323add2006-01-18 00:38:21 +01002697u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002698{
David S. Miller6c000552008-09-02 23:38:32 -07002699 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002700 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002701 u32 res = MAX_PKT_DEFAULT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002702
Per Lidenb97bf3f2006-01-02 19:04:38 +01002703 if (dest == tipc_own_addr)
2704 return MAX_MSG_SIZE;
2705
Allan Stephens51a8e4d2010-12-31 18:59:18 +00002706 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002707 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002708 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002709 l_ptr = n_ptr->active_links[selector & 1];
2710 if (l_ptr)
Allan Stephens15e979d2010-05-11 14:30:10 +00002711 res = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01002712 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002713 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002714 return res;
2715}
2716
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002717static void link_print(struct tipc_link *l_ptr, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002718{
Ying Xue7a2f7d12014-04-21 10:55:46 +08002719 struct tipc_bearer *b_ptr;
2720
2721 rcu_read_lock();
2722 b_ptr = rcu_dereference_rtnl(bearer_list[l_ptr->bearer_id]);
2723 if (b_ptr)
2724 pr_info("%s Link %x<%s>:", str, l_ptr->addr, b_ptr->name);
2725 rcu_read_unlock();
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002726
Per Lidenb97bf3f2006-01-02 19:04:38 +01002727 if (link_working_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002728 pr_cont(":WU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002729 else if (link_reset_reset(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002730 pr_cont(":RR\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002731 else if (link_reset_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002732 pr_cont(":RU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002733 else if (link_working_working(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002734 pr_cont(":WW\n");
2735 else
2736 pr_cont("\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002737}