blob: 18b1524098c63b939f8f4d66809ddfe70e7407e7 [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"
Jon Paul Maloy9816f062014-05-14 05:39:15 -040040#include "socket.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010041#include "name_distr.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010042#include "discover.h"
43#include "config.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010044
Ying Xue796c75d2013-06-17 10:54:48 -040045#include <linux/pkt_sched.h>
46
Erik Hugne2cf8aa12012-06-29 00:16:37 -040047/*
48 * Error message prefixes
49 */
50static const char *link_co_err = "Link changeover error, ";
51static const char *link_rst_msg = "Resetting link ";
52static const char *link_unk_evt = "Unknown link event ";
Per Lidenb97bf3f2006-01-02 19:04:38 +010053
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090054/*
Allan Stephensa686e682008-06-04 17:29:39 -070055 * Out-of-range value for link session numbers
56 */
Allan Stephensa686e682008-06-04 17:29:39 -070057#define INVALID_SESSION 0x10000
58
59/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090060 * Link state events:
Per Lidenb97bf3f2006-01-02 19:04:38 +010061 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010062#define STARTING_EVT 856384768 /* link processing trigger */
63#define TRAFFIC_MSG_EVT 560815u /* rx'd ??? */
64#define TIMEOUT_EVT 560817u /* link timer expired */
65
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090066/*
67 * The following two 'message types' is really just implementation
68 * data conveniently stored in the message header.
Per Lidenb97bf3f2006-01-02 19:04:38 +010069 * They must not be considered part of the protocol
70 */
71#define OPEN_MSG 0
72#define CLOSED_MSG 1
73
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090074/*
Per Lidenb97bf3f2006-01-02 19:04:38 +010075 * State value stored in 'exp_msg_count'
76 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010077#define START_CHANGEOVER 100000u
78
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050079static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +010080 struct sk_buff *buf);
Ying Xue247f0f32014-02-18 16:06:46 +080081static void tipc_link_proto_rcv(struct tipc_link *l_ptr, struct sk_buff *buf);
Jon Paul Maloy3bb53382014-02-13 17:29:12 -050082static int tipc_link_tunnel_rcv(struct tipc_node *n_ptr,
Jon Paul Maloy170b3922014-01-07 17:02:41 -050083 struct sk_buff **buf);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050084static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050085static void link_state_event(struct tipc_link *l_ptr, u32 event);
86static void link_reset_statistics(struct tipc_link *l_ptr);
87static void link_print(struct tipc_link *l_ptr, const char *str);
Ying Xue247f0f32014-02-18 16:06:46 +080088static int tipc_link_frag_xmit(struct tipc_link *l_ptr, struct sk_buff *buf);
89static void tipc_link_sync_xmit(struct tipc_link *l);
90static void tipc_link_sync_rcv(struct tipc_node *n, struct sk_buff *buf);
Erik Hugne7ae934b2014-07-01 10:22:40 +020091static int tipc_link_input(struct tipc_link *l, struct sk_buff *buf);
92static int tipc_link_prepare_input(struct tipc_link *l, 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;
Jon Paul Maloy60120522014-06-25 20:41:42 -0500337 struct tipc_sock *tsk;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100338
Per Liden4323add2006-01-18 00:38:21 +0100339 spin_lock_bh(&tipc_port_list_lock);
340 p_ptr = tipc_port_lock(origport);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100341 if (p_ptr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100342 if (!list_empty(&p_ptr->wait_list))
343 goto exit;
Jon Paul Maloy60120522014-06-25 20:41:42 -0500344 tsk = tipc_port_to_sock(p_ptr);
345 tsk->link_cong = 1;
Allan Stephens15e979d2010-05-11 14:30:10 +0000346 p_ptr->waiting_pkts = 1 + ((sz - 1) / l_ptr->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100347 list_add_tail(&p_ptr->wait_list, &l_ptr->waiting_ports);
348 l_ptr->stats.link_congs++;
349exit:
Per Liden4323add2006-01-18 00:38:21 +0100350 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100351 }
Per Liden4323add2006-01-18 00:38:21 +0100352 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100353 return -ELINKCONG;
354}
355
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500356void tipc_link_wakeup_ports(struct tipc_link *l_ptr, int all)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100357{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500358 struct tipc_port *p_ptr;
Jon Paul Maloy60120522014-06-25 20:41:42 -0500359 struct tipc_sock *tsk;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500360 struct tipc_port *temp_p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100361 int win = l_ptr->queue_limit[0] - l_ptr->out_queue_size;
362
363 if (all)
364 win = 100000;
365 if (win <= 0)
366 return;
Per Liden4323add2006-01-18 00:38:21 +0100367 if (!spin_trylock_bh(&tipc_port_list_lock))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100368 return;
369 if (link_congested(l_ptr))
370 goto exit;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900371 list_for_each_entry_safe(p_ptr, temp_p_ptr, &l_ptr->waiting_ports,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100372 wait_list) {
373 if (win <= 0)
374 break;
Jon Paul Maloy60120522014-06-25 20:41:42 -0500375 tsk = tipc_port_to_sock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100376 list_del_init(&p_ptr->wait_list);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500377 spin_lock_bh(p_ptr->lock);
Jon Paul Maloy60120522014-06-25 20:41:42 -0500378 tsk->link_cong = 0;
379 tipc_sock_wakeup(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100380 win -= p_ptr->waiting_pkts;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500381 spin_unlock_bh(p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100382 }
383
384exit:
Per Liden4323add2006-01-18 00:38:21 +0100385 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100386}
387
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900388/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100389 * link_release_outqueue - purge link's outbound message queue
390 * @l_ptr: pointer to link
391 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500392static void link_release_outqueue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100393{
Ying Xued77b3832013-12-10 20:45:38 -0800394 kfree_skb_list(l_ptr->first_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100395 l_ptr->first_out = NULL;
396 l_ptr->out_queue_size = 0;
397}
398
399/**
Per Liden4323add2006-01-18 00:38:21 +0100400 * tipc_link_reset_fragments - purge link's inbound message fragments queue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100401 * @l_ptr: pointer to link
402 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500403void tipc_link_reset_fragments(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100404{
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400405 kfree_skb(l_ptr->reasm_buf);
406 l_ptr->reasm_buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100407}
408
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900409/**
Jon Paul Maloy581465f2014-01-07 17:02:44 -0500410 * tipc_link_purge_queues - purge all pkt queues associated with link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100411 * @l_ptr: pointer to link
412 */
Jon Paul Maloy581465f2014-01-07 17:02:44 -0500413void tipc_link_purge_queues(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100414{
Ying Xued77b3832013-12-10 20:45:38 -0800415 kfree_skb_list(l_ptr->oldest_deferred_in);
416 kfree_skb_list(l_ptr->first_out);
Per Liden4323add2006-01-18 00:38:21 +0100417 tipc_link_reset_fragments(l_ptr);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400418 kfree_skb(l_ptr->proto_msg_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100419 l_ptr->proto_msg_queue = NULL;
420}
421
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500422void tipc_link_reset(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100423{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100424 u32 prev_state = l_ptr->state;
425 u32 checkpoint = l_ptr->next_in_no;
Allan Stephens5392d642006-06-25 23:52:50 -0700426 int was_active_link = tipc_link_is_active(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900427
Allan Stephensa686e682008-06-04 17:29:39 -0700428 msg_set_session(l_ptr->pmsg, ((msg_session(l_ptr->pmsg) + 1) & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100429
Allan Stephensa686e682008-06-04 17:29:39 -0700430 /* Link is down, accept any session */
431 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100432
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900433 /* Prepare for max packet size negotiation */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100434 link_init_max_pkt(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900435
Per Lidenb97bf3f2006-01-02 19:04:38 +0100436 l_ptr->state = RESET_UNKNOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100437
438 if ((prev_state == RESET_UNKNOWN) || (prev_state == RESET_RESET))
439 return;
440
Per Liden4323add2006-01-18 00:38:21 +0100441 tipc_node_link_down(l_ptr->owner, l_ptr);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800442 tipc_bearer_remove_dest(l_ptr->bearer_id, l_ptr->addr);
Paul Gortmaker7368ddf2010-10-12 14:25:58 +0000443
Jon Paul Maloyb9d4c332014-01-07 17:02:42 -0500444 if (was_active_link && tipc_node_active_links(l_ptr->owner)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100445 l_ptr->reset_checkpoint = checkpoint;
446 l_ptr->exp_msg_count = START_CHANGEOVER;
447 }
448
449 /* Clean up all queues: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100450 link_release_outqueue(l_ptr);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400451 kfree_skb(l_ptr->proto_msg_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100452 l_ptr->proto_msg_queue = NULL;
Ying Xued77b3832013-12-10 20:45:38 -0800453 kfree_skb_list(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100454 if (!list_empty(&l_ptr->waiting_ports))
Per Liden4323add2006-01-18 00:38:21 +0100455 tipc_link_wakeup_ports(l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100456
457 l_ptr->retransm_queue_head = 0;
458 l_ptr->retransm_queue_size = 0;
459 l_ptr->last_out = NULL;
460 l_ptr->first_out = NULL;
461 l_ptr->next_out = NULL;
462 l_ptr->unacked_window = 0;
463 l_ptr->checkpoint = 1;
464 l_ptr->next_out_no = 1;
465 l_ptr->deferred_inqueue_sz = 0;
466 l_ptr->oldest_deferred_in = NULL;
467 l_ptr->newest_deferred_in = NULL;
468 l_ptr->fsm_msg_cnt = 0;
469 l_ptr->stale_count = 0;
470 link_reset_statistics(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100471}
472
Ying Xuec61dd612014-02-13 17:29:09 -0500473void tipc_link_reset_list(unsigned int bearer_id)
Ying Xuee0ca2c32014-02-13 17:29:06 -0500474{
475 struct tipc_link *l_ptr;
Ying Xuec61dd612014-02-13 17:29:09 -0500476 struct tipc_node *n_ptr;
Ying Xuee0ca2c32014-02-13 17:29:06 -0500477
Ying Xue6c7a7622014-03-27 12:54:37 +0800478 rcu_read_lock();
479 list_for_each_entry_rcu(n_ptr, &tipc_node_list, list) {
Ying Xue5356f3d2014-05-05 08:56:09 +0800480 tipc_node_lock(n_ptr);
Ying Xuec61dd612014-02-13 17:29:09 -0500481 l_ptr = n_ptr->links[bearer_id];
482 if (l_ptr)
483 tipc_link_reset(l_ptr);
Ying Xue5356f3d2014-05-05 08:56:09 +0800484 tipc_node_unlock(n_ptr);
Ying Xuee0ca2c32014-02-13 17:29:06 -0500485 }
Ying Xue6c7a7622014-03-27 12:54:37 +0800486 rcu_read_unlock();
Ying Xuee0ca2c32014-02-13 17:29:06 -0500487}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100488
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500489static void link_activate(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100490{
Allan Stephens5392d642006-06-25 23:52:50 -0700491 l_ptr->next_in_no = l_ptr->stats.recv_info = 1;
Per Liden4323add2006-01-18 00:38:21 +0100492 tipc_node_link_up(l_ptr->owner, l_ptr);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800493 tipc_bearer_add_dest(l_ptr->bearer_id, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100494}
495
496/**
497 * link_state_event - link finite state machine
498 * @l_ptr: pointer to link
499 * @event: state machine event to process
500 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000501static void link_state_event(struct tipc_link *l_ptr, unsigned int event)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100502{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500503 struct tipc_link *other;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100504 u32 cont_intv = l_ptr->continuity_interval;
505
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500506 if (l_ptr->flags & LINK_STOPPED)
507 return;
508
Ying Xue135daee2014-02-13 17:29:08 -0500509 if (!(l_ptr->flags & LINK_STARTED) && (event != STARTING_EVT))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100510 return; /* Not yet. */
511
Ying Xue77a7e072013-12-10 20:45:44 -0800512 /* Check whether changeover is going on */
513 if (l_ptr->exp_msg_count) {
Allan Stephensa0168922010-12-31 18:59:35 +0000514 if (event == TIMEOUT_EVT)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100515 link_set_timer(l_ptr, cont_intv);
Ying Xue77a7e072013-12-10 20:45:44 -0800516 return;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100517 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100518
519 switch (l_ptr->state) {
520 case WORKING_WORKING:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100521 switch (event) {
522 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100523 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100524 break;
525 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100526 if (l_ptr->next_in_no != l_ptr->checkpoint) {
527 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100528 if (tipc_bclink_acks_missing(l_ptr->owner)) {
Ying Xue247f0f32014-02-18 16:06:46 +0800529 tipc_link_proto_xmit(l_ptr, STATE_MSG,
530 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100531 l_ptr->fsm_msg_cnt++;
532 } else if (l_ptr->max_pkt < l_ptr->max_pkt_target) {
Ying Xue247f0f32014-02-18 16:06:46 +0800533 tipc_link_proto_xmit(l_ptr, STATE_MSG,
534 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100535 l_ptr->fsm_msg_cnt++;
536 }
537 link_set_timer(l_ptr, cont_intv);
538 break;
539 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100540 l_ptr->state = WORKING_UNKNOWN;
541 l_ptr->fsm_msg_cnt = 0;
Ying Xue247f0f32014-02-18 16:06:46 +0800542 tipc_link_proto_xmit(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100543 l_ptr->fsm_msg_cnt++;
544 link_set_timer(l_ptr, cont_intv / 4);
545 break;
546 case RESET_MSG:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400547 pr_info("%s<%s>, requested by peer\n", link_rst_msg,
548 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100549 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100550 l_ptr->state = RESET_RESET;
551 l_ptr->fsm_msg_cnt = 0;
Ying Xue247f0f32014-02-18 16:06:46 +0800552 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
553 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100554 l_ptr->fsm_msg_cnt++;
555 link_set_timer(l_ptr, cont_intv);
556 break;
557 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400558 pr_err("%s%u in WW state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100559 }
560 break;
561 case WORKING_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100562 switch (event) {
563 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100564 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100565 l_ptr->state = WORKING_WORKING;
566 l_ptr->fsm_msg_cnt = 0;
567 link_set_timer(l_ptr, cont_intv);
568 break;
569 case RESET_MSG:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400570 pr_info("%s<%s>, requested by peer while probing\n",
571 link_rst_msg, l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100572 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100573 l_ptr->state = RESET_RESET;
574 l_ptr->fsm_msg_cnt = 0;
Ying Xue247f0f32014-02-18 16:06:46 +0800575 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
576 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100577 l_ptr->fsm_msg_cnt++;
578 link_set_timer(l_ptr, cont_intv);
579 break;
580 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100581 if (l_ptr->next_in_no != l_ptr->checkpoint) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100582 l_ptr->state = WORKING_WORKING;
583 l_ptr->fsm_msg_cnt = 0;
584 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100585 if (tipc_bclink_acks_missing(l_ptr->owner)) {
Ying Xue247f0f32014-02-18 16:06:46 +0800586 tipc_link_proto_xmit(l_ptr, STATE_MSG,
587 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100588 l_ptr->fsm_msg_cnt++;
589 }
590 link_set_timer(l_ptr, cont_intv);
591 } else if (l_ptr->fsm_msg_cnt < l_ptr->abort_limit) {
Ying Xue247f0f32014-02-18 16:06:46 +0800592 tipc_link_proto_xmit(l_ptr, STATE_MSG,
593 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100594 l_ptr->fsm_msg_cnt++;
595 link_set_timer(l_ptr, cont_intv / 4);
596 } else { /* Link has failed */
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400597 pr_warn("%s<%s>, peer not responding\n",
598 link_rst_msg, l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100599 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100600 l_ptr->state = RESET_UNKNOWN;
601 l_ptr->fsm_msg_cnt = 0;
Ying Xue247f0f32014-02-18 16:06:46 +0800602 tipc_link_proto_xmit(l_ptr, RESET_MSG,
603 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100604 l_ptr->fsm_msg_cnt++;
605 link_set_timer(l_ptr, cont_intv);
606 }
607 break;
608 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400609 pr_err("%s%u in WU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100610 }
611 break;
612 case RESET_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100613 switch (event) {
614 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100615 break;
616 case ACTIVATE_MSG:
617 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000618 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100619 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100620 l_ptr->state = WORKING_WORKING;
621 l_ptr->fsm_msg_cnt = 0;
622 link_activate(l_ptr);
Ying Xue247f0f32014-02-18 16:06:46 +0800623 tipc_link_proto_xmit(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100624 l_ptr->fsm_msg_cnt++;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800625 if (l_ptr->owner->working_links == 1)
Ying Xue247f0f32014-02-18 16:06:46 +0800626 tipc_link_sync_xmit(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100627 link_set_timer(l_ptr, cont_intv);
628 break;
629 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100630 l_ptr->state = RESET_RESET;
631 l_ptr->fsm_msg_cnt = 0;
Ying Xue247f0f32014-02-18 16:06:46 +0800632 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
633 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100634 l_ptr->fsm_msg_cnt++;
635 link_set_timer(l_ptr, cont_intv);
636 break;
637 case STARTING_EVT:
Ying Xue135daee2014-02-13 17:29:08 -0500638 l_ptr->flags |= LINK_STARTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100639 /* fall through */
640 case TIMEOUT_EVT:
Ying Xue247f0f32014-02-18 16:06:46 +0800641 tipc_link_proto_xmit(l_ptr, RESET_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100642 l_ptr->fsm_msg_cnt++;
643 link_set_timer(l_ptr, cont_intv);
644 break;
645 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400646 pr_err("%s%u in RU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100647 }
648 break;
649 case RESET_RESET:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100650 switch (event) {
651 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100652 case ACTIVATE_MSG:
653 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000654 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100655 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100656 l_ptr->state = WORKING_WORKING;
657 l_ptr->fsm_msg_cnt = 0;
658 link_activate(l_ptr);
Ying Xue247f0f32014-02-18 16:06:46 +0800659 tipc_link_proto_xmit(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100660 l_ptr->fsm_msg_cnt++;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800661 if (l_ptr->owner->working_links == 1)
Ying Xue247f0f32014-02-18 16:06:46 +0800662 tipc_link_sync_xmit(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100663 link_set_timer(l_ptr, cont_intv);
664 break;
665 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100666 break;
667 case TIMEOUT_EVT:
Ying Xue247f0f32014-02-18 16:06:46 +0800668 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
669 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100670 l_ptr->fsm_msg_cnt++;
671 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100672 break;
673 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400674 pr_err("%s%u in RR state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100675 }
676 break;
677 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400678 pr_err("Unknown link state %u/%u\n", l_ptr->state, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100679 }
680}
681
682/*
683 * link_bundle_buf(): Append contents of a buffer to
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900684 * the tail of an existing one.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100685 */
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400686static int link_bundle_buf(struct tipc_link *l_ptr, struct sk_buff *bundler,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100687 struct sk_buff *buf)
688{
689 struct tipc_msg *bundler_msg = buf_msg(bundler);
690 struct tipc_msg *msg = buf_msg(buf);
691 u32 size = msg_size(msg);
Allan Stephense49060c2006-06-29 12:32:46 -0700692 u32 bundle_size = msg_size(bundler_msg);
693 u32 to_pos = align(bundle_size);
694 u32 pad = to_pos - bundle_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100695
696 if (msg_user(bundler_msg) != MSG_BUNDLER)
697 return 0;
698 if (msg_type(bundler_msg) != OPEN_MSG)
699 return 0;
Allan Stephense49060c2006-06-29 12:32:46 -0700700 if (skb_tailroom(bundler) < (pad + size))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100701 return 0;
Allan Stephens15e979d2010-05-11 14:30:10 +0000702 if (l_ptr->max_pkt < (to_pos + size))
Allan Stephens863fae62006-07-03 19:39:36 -0700703 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100704
Allan Stephense49060c2006-06-29 12:32:46 -0700705 skb_put(bundler, pad + size);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300706 skb_copy_to_linear_data_offset(bundler, to_pos, buf->data, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100707 msg_set_size(bundler_msg, to_pos + size);
708 msg_set_msgcnt(bundler_msg, msg_msgcnt(bundler_msg) + 1);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400709 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100710 l_ptr->stats.sent_bundled++;
711 return 1;
712}
713
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500714static void link_add_to_outqueue(struct tipc_link *l_ptr,
Sam Ravnborg05790c62006-03-20 22:37:04 -0800715 struct sk_buff *buf,
716 struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100717{
718 u32 ack = mod(l_ptr->next_in_no - 1);
719 u32 seqno = mod(l_ptr->next_out_no++);
720
721 msg_set_word(msg, 2, ((ack << 16) | seqno));
722 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
723 buf->next = NULL;
724 if (l_ptr->first_out) {
725 l_ptr->last_out->next = buf;
726 l_ptr->last_out = buf;
727 } else
728 l_ptr->first_out = l_ptr->last_out = buf;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500729
Per Lidenb97bf3f2006-01-02 19:04:38 +0100730 l_ptr->out_queue_size++;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500731 if (l_ptr->out_queue_size > l_ptr->stats.max_queue_sz)
732 l_ptr->stats.max_queue_sz = l_ptr->out_queue_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100733}
734
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500735static void link_add_chain_to_outqueue(struct tipc_link *l_ptr,
Allan Stephensdc63d912011-04-21 11:50:42 -0400736 struct sk_buff *buf_chain,
737 u32 long_msgno)
738{
739 struct sk_buff *buf;
740 struct tipc_msg *msg;
741
742 if (!l_ptr->next_out)
743 l_ptr->next_out = buf_chain;
744 while (buf_chain) {
745 buf = buf_chain;
746 buf_chain = buf_chain->next;
747
748 msg = buf_msg(buf);
749 msg_set_long_msgno(msg, long_msgno);
750 link_add_to_outqueue(l_ptr, buf, msg);
751 }
752}
753
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900754/*
Ying Xue247f0f32014-02-18 16:06:46 +0800755 * tipc_link_xmit() is the 'full path' for messages, called from
756 * inside TIPC when the 'fast path' in tipc_send_xmit
Per Lidenb97bf3f2006-01-02 19:04:38 +0100757 * has failed, and from link_send()
758 */
Ying Xue247f0f32014-02-18 16:06:46 +0800759int __tipc_link_xmit(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100760{
761 struct tipc_msg *msg = buf_msg(buf);
762 u32 size = msg_size(msg);
763 u32 dsz = msg_data_sz(msg);
764 u32 queue_size = l_ptr->out_queue_size;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000765 u32 imp = tipc_msg_tot_importance(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100766 u32 queue_limit = l_ptr->queue_limit[imp];
Allan Stephens15e979d2010-05-11 14:30:10 +0000767 u32 max_packet = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100768
Per Lidenb97bf3f2006-01-02 19:04:38 +0100769 /* Match msg importance against queue limits: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100770 if (unlikely(queue_size >= queue_limit)) {
771 if (imp <= TIPC_CRITICAL_IMPORTANCE) {
Allan Stephensbebc55a2011-04-19 10:17:58 -0400772 link_schedule_port(l_ptr, msg_origport(msg), size);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400773 kfree_skb(buf);
Allan Stephensbebc55a2011-04-19 10:17:58 -0400774 return -ELINKCONG;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100775 }
Allan Stephens5f6d9122011-11-04 13:24:29 -0400776 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100777 if (imp > CONN_MANAGER) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400778 pr_warn("%s<%s>, send queue full", link_rst_msg,
779 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100780 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100781 }
782 return dsz;
783 }
784
785 /* Fragmentation needed ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100786 if (size > max_packet)
Ying Xue247f0f32014-02-18 16:06:46 +0800787 return tipc_link_frag_xmit(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100788
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400789 /* Packet can be queued or sent. */
Erik Hugne512137e2013-12-06 10:08:00 -0500790 if (likely(!link_congested(l_ptr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100791 link_add_to_outqueue(l_ptr, buf, msg);
792
Ying Xue7a2f7d12014-04-21 10:55:46 +0800793 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
Ying Xue3c294cb2012-11-15 11:34:45 +0800794 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100795 return dsz;
796 }
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400797 /* Congestion: can message be bundled ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100798 if ((msg_user(msg) != CHANGEOVER_PROTOCOL) &&
799 (msg_user(msg) != MSG_FRAGMENTER)) {
800
801 /* Try adding message to an existing bundle */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900802 if (l_ptr->next_out &&
Ying Xue3c294cb2012-11-15 11:34:45 +0800803 link_bundle_buf(l_ptr, l_ptr->last_out, buf))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100804 return dsz;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100805
806 /* Try creating a new bundle */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100807 if (size <= max_packet * 2 / 3) {
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000808 struct sk_buff *bundler = tipc_buf_acquire(max_packet);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100809 struct tipc_msg bundler_hdr;
810
811 if (bundler) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000812 tipc_msg_init(&bundler_hdr, MSG_BUNDLER, OPEN_MSG,
Allan Stephens75715212008-06-04 17:37:34 -0700813 INT_H_SIZE, l_ptr->addr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300814 skb_copy_to_linear_data(bundler, &bundler_hdr,
815 INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100816 skb_trim(bundler, INT_H_SIZE);
817 link_bundle_buf(l_ptr, bundler, buf);
818 buf = bundler;
819 msg = buf_msg(buf);
820 l_ptr->stats.sent_bundles++;
821 }
822 }
823 }
824 if (!l_ptr->next_out)
825 l_ptr->next_out = buf;
826 link_add_to_outqueue(l_ptr, buf, msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100827 return dsz;
828}
829
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900830/*
Ying Xue247f0f32014-02-18 16:06:46 +0800831 * tipc_link_xmit(): same as __tipc_link_xmit(), but the link to use
832 * has not been selected yet, and the the owner node is not locked
Per Lidenb97bf3f2006-01-02 19:04:38 +0100833 * Called by TIPC internal users, e.g. the name distributor
834 */
Ying Xue247f0f32014-02-18 16:06:46 +0800835int tipc_link_xmit(struct sk_buff *buf, u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100836{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500837 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700838 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100839 int res = -ELINKCONG;
840
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000841 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100842 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +0100843 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100844 l_ptr = n_ptr->active_links[selector & 1];
Allan Stephensa0168922010-12-31 18:59:35 +0000845 if (l_ptr)
Ying Xue247f0f32014-02-18 16:06:46 +0800846 res = __tipc_link_xmit(l_ptr, buf);
Allan Stephensa0168922010-12-31 18:59:35 +0000847 else
Allan Stephens5f6d9122011-11-04 13:24:29 -0400848 kfree_skb(buf);
Per Liden4323add2006-01-18 00:38:21 +0100849 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100850 } else {
Allan Stephens5f6d9122011-11-04 13:24:29 -0400851 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100852 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100853 return res;
854}
855
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500856/* tipc_link_cong: determine return value and how to treat the
857 * sent buffer during link congestion.
858 * - For plain, errorless user data messages we keep the buffer and
859 * return -ELINKONG.
860 * - For all other messages we discard the buffer and return -EHOSTUNREACH
861 * - For TIPC internal messages we also reset the link
862 */
863static int tipc_link_cong(struct tipc_link *link, struct sk_buff *buf)
864{
865 struct tipc_msg *msg = buf_msg(buf);
866 uint psz = msg_size(msg);
867 uint imp = tipc_msg_tot_importance(msg);
868 u32 oport = msg_tot_origport(msg);
869
870 if (likely(imp <= TIPC_CRITICAL_IMPORTANCE)) {
871 if (!msg_errcode(msg) && !msg_reroute_cnt(msg)) {
872 link_schedule_port(link, oport, psz);
873 return -ELINKCONG;
874 }
875 } else {
876 pr_warn("%s<%s>, send queue full", link_rst_msg, link->name);
877 tipc_link_reset(link);
878 }
879 kfree_skb_list(buf);
880 return -EHOSTUNREACH;
881}
882
883/**
884 * __tipc_link_xmit2(): same as tipc_link_xmit2, but destlink is known & locked
885 * @link: link to use
886 * @buf: chain of buffers containing message
887 * Consumes the buffer chain, except when returning -ELINKCONG
888 * Returns 0 if success, otherwise errno: -ELINKCONG, -EMSGSIZE (plain socket
889 * user data messages) or -EHOSTUNREACH (all other messages/senders)
890 * Only the socket functions tipc_send_stream() and tipc_send_packet() need
891 * to act on the return value, since they may need to do more send attempts.
892 */
893int __tipc_link_xmit2(struct tipc_link *link, struct sk_buff *buf)
894{
895 struct tipc_msg *msg = buf_msg(buf);
896 uint psz = msg_size(msg);
897 uint qsz = link->out_queue_size;
898 uint sndlim = link->queue_limit[0];
899 uint imp = tipc_msg_tot_importance(msg);
900 uint mtu = link->max_pkt;
901 uint ack = mod(link->next_in_no - 1);
902 uint seqno = link->next_out_no;
903 uint bc_last_in = link->owner->bclink.last_in;
904 struct tipc_media_addr *addr = &link->media_addr;
905 struct sk_buff *next = buf->next;
906
907 /* Match queue limits against msg importance: */
908 if (unlikely(qsz >= link->queue_limit[imp]))
909 return tipc_link_cong(link, buf);
910
911 /* Has valid packet limit been used ? */
912 if (unlikely(psz > mtu)) {
913 kfree_skb_list(buf);
914 return -EMSGSIZE;
915 }
916
917 /* Prepare each packet for sending, and add to outqueue: */
918 while (buf) {
919 next = buf->next;
920 msg = buf_msg(buf);
921 msg_set_word(msg, 2, ((ack << 16) | mod(seqno)));
922 msg_set_bcast_ack(msg, bc_last_in);
923
924 if (!link->first_out) {
925 link->first_out = buf;
926 } else if (qsz < sndlim) {
927 link->last_out->next = buf;
928 } else if (tipc_msg_bundle(link->last_out, buf, mtu)) {
929 link->stats.sent_bundled++;
930 buf = next;
931 next = buf->next;
932 continue;
933 } else if (tipc_msg_make_bundle(&buf, mtu, link->addr)) {
934 link->stats.sent_bundled++;
935 link->stats.sent_bundles++;
936 link->last_out->next = buf;
937 if (!link->next_out)
938 link->next_out = buf;
939 } else {
940 link->last_out->next = buf;
941 if (!link->next_out)
942 link->next_out = buf;
943 }
944
945 /* Send packet if possible: */
946 if (likely(++qsz <= sndlim)) {
947 tipc_bearer_send(link->bearer_id, buf, addr);
948 link->next_out = next;
949 link->unacked_window = 0;
950 }
951 seqno++;
952 link->last_out = buf;
953 buf = next;
954 }
955 link->next_out_no = seqno;
956 link->out_queue_size = qsz;
957 return 0;
958}
959
960/**
961 * tipc_link_xmit2() is the general link level function for message sending
962 * @buf: chain of buffers containing message
963 * @dsz: amount of user data to be sent
964 * @dnode: address of destination node
965 * @selector: a number used for deterministic link selection
966 * Consumes the buffer chain, except when returning -ELINKCONG
967 * Returns 0 if success, otherwise errno: -ELINKCONG,-EHOSTUNREACH,-EMSGSIZE
968 */
969int tipc_link_xmit2(struct sk_buff *buf, u32 dnode, u32 selector)
970{
971 struct tipc_link *link = NULL;
972 struct tipc_node *node;
973 int rc = -EHOSTUNREACH;
974
975 node = tipc_node_find(dnode);
976 if (node) {
977 tipc_node_lock(node);
978 link = node->active_links[selector & 1];
979 if (link)
980 rc = __tipc_link_xmit2(link, buf);
981 tipc_node_unlock(node);
982 }
983
984 if (link)
985 return rc;
986
987 if (likely(in_own_node(dnode)))
988 return tipc_sk_rcv(buf);
989
990 kfree_skb_list(buf);
991 return rc;
992}
993
Jon Maloyc64f7a62012-11-16 13:51:31 +0800994/*
Ying Xue247f0f32014-02-18 16:06:46 +0800995 * tipc_link_sync_xmit - synchronize broadcast link endpoints.
Jon Maloyc64f7a62012-11-16 13:51:31 +0800996 *
997 * Give a newly added peer node the sequence number where it should
998 * start receiving and acking broadcast packets.
999 *
1000 * Called with node locked
1001 */
Ying Xue247f0f32014-02-18 16:06:46 +08001002static void tipc_link_sync_xmit(struct tipc_link *l)
Jon Maloyc64f7a62012-11-16 13:51:31 +08001003{
1004 struct sk_buff *buf;
1005 struct tipc_msg *msg;
1006
1007 buf = tipc_buf_acquire(INT_H_SIZE);
1008 if (!buf)
1009 return;
1010
1011 msg = buf_msg(buf);
1012 tipc_msg_init(msg, BCAST_PROTOCOL, STATE_MSG, INT_H_SIZE, l->addr);
1013 msg_set_last_bcast(msg, l->owner->bclink.acked);
1014 link_add_chain_to_outqueue(l, buf, 0);
1015 tipc_link_push_queue(l);
1016}
1017
1018/*
Ying Xue247f0f32014-02-18 16:06:46 +08001019 * tipc_link_sync_rcv - synchronize broadcast link endpoints.
Jon Maloyc64f7a62012-11-16 13:51:31 +08001020 * Receive the sequence number where we should start receiving and
1021 * acking broadcast packets from a newly added peer node, and open
1022 * up for reception of such packets.
1023 *
1024 * Called with node locked
1025 */
Ying Xue247f0f32014-02-18 16:06:46 +08001026static void tipc_link_sync_rcv(struct tipc_node *n, struct sk_buff *buf)
Jon Maloyc64f7a62012-11-16 13:51:31 +08001027{
1028 struct tipc_msg *msg = buf_msg(buf);
1029
1030 n->bclink.last_sent = n->bclink.last_in = msg_last_bcast(msg);
1031 n->bclink.recv_permitted = true;
1032 kfree_skb(buf);
1033}
1034
1035/*
Ying Xue247f0f32014-02-18 16:06:46 +08001036 * tipc_link_names_xmit - send name table entries to new neighbor
Allan Stephens9aa88c22011-05-31 13:38:02 -04001037 *
1038 * Send routine for bulk delivery of name table messages when contact
1039 * with a new neighbor occurs. No link congestion checking is performed
1040 * because name table messages *must* be delivered. The messages must be
1041 * small enough not to require fragmentation.
1042 * Called without any locks held.
1043 */
Ying Xue247f0f32014-02-18 16:06:46 +08001044void tipc_link_names_xmit(struct list_head *message_list, u32 dest)
Allan Stephens9aa88c22011-05-31 13:38:02 -04001045{
1046 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001047 struct tipc_link *l_ptr;
Allan Stephens9aa88c22011-05-31 13:38:02 -04001048 struct sk_buff *buf;
1049 struct sk_buff *temp_buf;
1050
1051 if (list_empty(message_list))
1052 return;
1053
Allan Stephens9aa88c22011-05-31 13:38:02 -04001054 n_ptr = tipc_node_find(dest);
1055 if (n_ptr) {
1056 tipc_node_lock(n_ptr);
1057 l_ptr = n_ptr->active_links[0];
1058 if (l_ptr) {
1059 /* convert circular list to linear list */
1060 ((struct sk_buff *)message_list->prev)->next = NULL;
1061 link_add_chain_to_outqueue(l_ptr,
1062 (struct sk_buff *)message_list->next, 0);
1063 tipc_link_push_queue(l_ptr);
1064 INIT_LIST_HEAD(message_list);
1065 }
1066 tipc_node_unlock(n_ptr);
1067 }
Allan Stephens9aa88c22011-05-31 13:38:02 -04001068
1069 /* discard the messages if they couldn't be sent */
Allan Stephens9aa88c22011-05-31 13:38:02 -04001070 list_for_each_safe(buf, temp_buf, ((struct sk_buff *)message_list)) {
1071 list_del((struct list_head *)buf);
Allan Stephens5f6d9122011-11-04 13:24:29 -04001072 kfree_skb(buf);
Allan Stephens9aa88c22011-05-31 13:38:02 -04001073 }
1074}
1075
1076/*
Per Liden4323add2006-01-18 00:38:21 +01001077 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +01001078 */
stephen hemminger98056962014-01-04 13:47:48 -08001079static u32 tipc_link_push_packet(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001080{
1081 struct sk_buff *buf = l_ptr->first_out;
1082 u32 r_q_size = l_ptr->retransm_queue_size;
1083 u32 r_q_head = l_ptr->retransm_queue_head;
1084
1085 /* Step to position where retransmission failed, if any, */
1086 /* consider that buffers may have been released in meantime */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001087 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001088 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +01001089 link_last_sent(l_ptr));
Allan Stephensf9057302011-10-24 16:03:12 -04001090 u32 first = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001091
1092 while (buf && less(first, r_q_head)) {
1093 first = mod(first + 1);
1094 buf = buf->next;
1095 }
1096 l_ptr->retransm_queue_head = r_q_head = first;
1097 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1098 }
1099
1100 /* Continue retransmission now, if there is anything: */
Neil Hormanca509102010-03-15 07:58:45 +00001101 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001102 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001103 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Ying Xue7a2f7d12014-04-21 10:55:46 +08001104 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
Ying Xue3c294cb2012-11-15 11:34:45 +08001105 l_ptr->retransm_queue_head = mod(++r_q_head);
1106 l_ptr->retransm_queue_size = --r_q_size;
1107 l_ptr->stats.retransmitted++;
1108 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001109 }
1110
1111 /* Send deferred protocol message, if any: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001112 buf = l_ptr->proto_msg_queue;
1113 if (buf) {
1114 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +00001115 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Ying Xue7a2f7d12014-04-21 10:55:46 +08001116 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
Ying Xue3c294cb2012-11-15 11:34:45 +08001117 l_ptr->unacked_window = 0;
1118 kfree_skb(buf);
1119 l_ptr->proto_msg_queue = NULL;
1120 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001121 }
1122
1123 /* Send one deferred data message, if send window not full: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001124 buf = l_ptr->next_out;
1125 if (buf) {
1126 struct tipc_msg *msg = buf_msg(buf);
1127 u32 next = msg_seqno(msg);
Allan Stephensf9057302011-10-24 16:03:12 -04001128 u32 first = buf_seqno(l_ptr->first_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001129
1130 if (mod(next - first) < l_ptr->queue_limit[0]) {
1131 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001132 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue7a2f7d12014-04-21 10:55:46 +08001133 tipc_bearer_send(l_ptr->bearer_id, buf,
1134 &l_ptr->media_addr);
Ying Xue3c294cb2012-11-15 11:34:45 +08001135 if (msg_user(msg) == MSG_BUNDLER)
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -05001136 msg_set_type(msg, BUNDLE_CLOSED);
Ying Xue3c294cb2012-11-15 11:34:45 +08001137 l_ptr->next_out = buf->next;
1138 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001139 }
1140 }
Ying Xue3c294cb2012-11-15 11:34:45 +08001141 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001142}
1143
1144/*
1145 * push_queue(): push out the unsent messages of a link where
1146 * congestion has abated. Node is locked
1147 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001148void tipc_link_push_queue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001149{
1150 u32 res;
1151
Per Lidenb97bf3f2006-01-02 19:04:38 +01001152 do {
Per Liden4323add2006-01-18 00:38:21 +01001153 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001154 } while (!res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001155}
1156
Ying Xue3f5a12b2014-05-05 08:56:17 +08001157void tipc_link_reset_all(struct tipc_node *node)
Allan Stephensd356eeb2006-06-25 23:40:01 -07001158{
Allan Stephensd356eeb2006-06-25 23:40:01 -07001159 char addr_string[16];
1160 u32 i;
1161
Ying Xue3f5a12b2014-05-05 08:56:17 +08001162 tipc_node_lock(node);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001163
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001164 pr_warn("Resetting all links to %s\n",
Ying Xue3f5a12b2014-05-05 08:56:17 +08001165 tipc_addr_string_fill(addr_string, node->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -07001166
1167 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue3f5a12b2014-05-05 08:56:17 +08001168 if (node->links[i]) {
1169 link_print(node->links[i], "Resetting link\n");
1170 tipc_link_reset(node->links[i]);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001171 }
1172 }
1173
Ying Xue3f5a12b2014-05-05 08:56:17 +08001174 tipc_node_unlock(node);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001175}
1176
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001177static void link_retransmit_failure(struct tipc_link *l_ptr,
Paul Gortmakerae8509c2013-06-17 10:54:47 -04001178 struct sk_buff *buf)
Allan Stephensd356eeb2006-06-25 23:40:01 -07001179{
1180 struct tipc_msg *msg = buf_msg(buf);
1181
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001182 pr_warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001183
1184 if (l_ptr->addr) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001185 /* Handle failure on standard link */
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001186 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001187 tipc_link_reset(l_ptr);
1188
1189 } else {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001190 /* Handle failure on broadcast link */
David S. Miller6c000552008-09-02 23:38:32 -07001191 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001192 char addr_string[16];
1193
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001194 pr_info("Msg seq number: %u, ", msg_seqno(msg));
1195 pr_cont("Outstanding acks: %lu\n",
1196 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -07001197
Allan Stephens01d83ed2011-01-18 13:53:16 -05001198 n_ptr = tipc_bclink_retransmit_to();
Allan Stephensd356eeb2006-06-25 23:40:01 -07001199 tipc_node_lock(n_ptr);
1200
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001201 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001202 pr_info("Broadcast link info for %s\n", addr_string);
Ying Xue389dd9b2012-11-16 13:51:30 +08001203 pr_info("Reception permitted: %d, Acked: %u\n",
1204 n_ptr->bclink.recv_permitted,
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001205 n_ptr->bclink.acked);
1206 pr_info("Last in: %u, Oos state: %u, Last sent: %u\n",
1207 n_ptr->bclink.last_in,
1208 n_ptr->bclink.oos_state,
1209 n_ptr->bclink.last_sent);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001210
Allan Stephensd356eeb2006-06-25 23:40:01 -07001211 tipc_node_unlock(n_ptr);
1212
Ying Xue3f5a12b2014-05-05 08:56:17 +08001213 tipc_bclink_set_flags(TIPC_BCLINK_RESET);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001214 l_ptr->stale_count = 0;
1215 }
1216}
1217
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001218void tipc_link_retransmit(struct tipc_link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001219 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001220{
1221 struct tipc_msg *msg;
1222
Allan Stephensd356eeb2006-06-25 23:40:01 -07001223 if (!buf)
1224 return;
1225
1226 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001227
Erik Hugne512137e2013-12-06 10:08:00 -05001228 /* Detect repeated retransmit failures */
1229 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1230 if (++l_ptr->stale_count > 100) {
1231 link_retransmit_failure(l_ptr, buf);
1232 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001233 }
1234 } else {
Erik Hugne512137e2013-12-06 10:08:00 -05001235 l_ptr->last_retransmitted = msg_seqno(msg);
1236 l_ptr->stale_count = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001237 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001238
Neil Hormanca509102010-03-15 07:58:45 +00001239 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001240 msg = buf_msg(buf);
1241 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001242 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue7a2f7d12014-04-21 10:55:46 +08001243 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
Ying Xue3c294cb2012-11-15 11:34:45 +08001244 buf = buf->next;
1245 retransmits--;
1246 l_ptr->stats.retransmitted++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001247 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001248
Per Lidenb97bf3f2006-01-02 19:04:38 +01001249 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1250}
1251
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001252/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001253 * link_insert_deferred_queue - insert deferred messages back into receive chain
1254 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001255static struct sk_buff *link_insert_deferred_queue(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001256 struct sk_buff *buf)
1257{
1258 u32 seq_no;
1259
1260 if (l_ptr->oldest_deferred_in == NULL)
1261 return buf;
1262
Allan Stephensf9057302011-10-24 16:03:12 -04001263 seq_no = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001264 if (seq_no == mod(l_ptr->next_in_no)) {
1265 l_ptr->newest_deferred_in->next = buf;
1266 buf = l_ptr->oldest_deferred_in;
1267 l_ptr->oldest_deferred_in = NULL;
1268 l_ptr->deferred_inqueue_sz = 0;
1269 }
1270 return buf;
1271}
1272
Allan Stephens85035562008-04-15 19:04:54 -07001273/**
1274 * link_recv_buf_validate - validate basic format of received message
1275 *
1276 * This routine ensures a TIPC message has an acceptable header, and at least
1277 * as much data as the header indicates it should. The routine also ensures
1278 * that the entire message header is stored in the main fragment of the message
1279 * buffer, to simplify future access to message header fields.
1280 *
1281 * Note: Having extra info present in the message header or data areas is OK.
1282 * TIPC will ignore the excess, under the assumption that it is optional info
1283 * introduced by a later release of the protocol.
1284 */
Allan Stephens85035562008-04-15 19:04:54 -07001285static int link_recv_buf_validate(struct sk_buff *buf)
1286{
1287 static u32 min_data_hdr_size[8] = {
Allan Stephens741d9eb2011-05-31 15:03:18 -04001288 SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,
Allan Stephens85035562008-04-15 19:04:54 -07001289 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1290 };
1291
1292 struct tipc_msg *msg;
1293 u32 tipc_hdr[2];
1294 u32 size;
1295 u32 hdr_size;
1296 u32 min_hdr_size;
1297
Erik Hugne64380a02014-02-11 11:38:26 +01001298 /* If this packet comes from the defer queue, the skb has already
1299 * been validated
1300 */
1301 if (unlikely(TIPC_SKB_CB(buf)->deferred))
1302 return 1;
1303
Allan Stephens85035562008-04-15 19:04:54 -07001304 if (unlikely(buf->len < MIN_H_SIZE))
1305 return 0;
1306
1307 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1308 if (msg == NULL)
1309 return 0;
1310
1311 if (unlikely(msg_version(msg) != TIPC_VERSION))
1312 return 0;
1313
1314 size = msg_size(msg);
1315 hdr_size = msg_hdr_sz(msg);
1316 min_hdr_size = msg_isdata(msg) ?
1317 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1318
1319 if (unlikely((hdr_size < min_hdr_size) ||
1320 (size < hdr_size) ||
1321 (buf->len < size) ||
1322 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1323 return 0;
1324
1325 return pskb_may_pull(buf, hdr_size);
1326}
1327
Allan Stephensb02b69c2010-08-17 11:00:07 +00001328/**
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001329 * tipc_rcv - process TIPC packets/messages arriving from off-node
Allan Stephensb02b69c2010-08-17 11:00:07 +00001330 * @head: pointer to message buffer chain
Ying Xue7a2f7d12014-04-21 10:55:46 +08001331 * @b_ptr: pointer to bearer message arrived on
Allan Stephensb02b69c2010-08-17 11:00:07 +00001332 *
1333 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1334 * structure (i.e. cannot be NULL), but bearer can be inactive.
1335 */
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001336void tipc_rcv(struct sk_buff *head, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001337{
Per Lidenb97bf3f2006-01-02 19:04:38 +01001338 while (head) {
David S. Miller6c000552008-09-02 23:38:32 -07001339 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001340 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001341 struct sk_buff *crs;
1342 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001343 struct tipc_msg *msg;
1344 u32 seq_no;
1345 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001346 u32 released = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001347
Per Lidenb97bf3f2006-01-02 19:04:38 +01001348 head = head->next;
Erik Hugne732256b2014-01-07 15:51:36 -05001349 buf->next = NULL;
Allan Stephens85035562008-04-15 19:04:54 -07001350
1351 /* Ensure message is well-formed */
Allan Stephens85035562008-04-15 19:04:54 -07001352 if (unlikely(!link_recv_buf_validate(buf)))
Ying Xue3af390e2013-10-30 11:26:57 +08001353 goto discard;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001354
Allan Stephensfe13dda2008-04-15 19:03:23 -07001355 /* Ensure message data is a single contiguous unit */
Allan Stephens5f6d9122011-11-04 13:24:29 -04001356 if (unlikely(skb_linearize(buf)))
Ying Xue3af390e2013-10-30 11:26:57 +08001357 goto discard;
Allan Stephensfe13dda2008-04-15 19:03:23 -07001358
Allan Stephens85035562008-04-15 19:04:54 -07001359 /* Handle arrival of a non-unicast link message */
Allan Stephens85035562008-04-15 19:04:54 -07001360 msg = buf_msg(buf);
1361
Per Lidenb97bf3f2006-01-02 19:04:38 +01001362 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001363 if (msg_user(msg) == LINK_CONFIG)
Ying Xue247f0f32014-02-18 16:06:46 +08001364 tipc_disc_rcv(buf, b_ptr);
Allan Stephens1265a022008-06-04 17:32:35 -07001365 else
Ying Xue247f0f32014-02-18 16:06:46 +08001366 tipc_bclink_rcv(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001367 continue;
1368 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001369
Allan Stephensed33a9c2011-04-05 15:15:04 -04001370 /* Discard unicast link messages destined for another node */
Allan Stephens26008242006-06-25 23:39:31 -07001371 if (unlikely(!msg_short(msg) &&
1372 (msg_destnode(msg) != tipc_own_addr)))
Ying Xue3af390e2013-10-30 11:26:57 +08001373 goto discard;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001374
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001375 /* Locate neighboring node that sent message */
Per Liden4323add2006-01-18 00:38:21 +01001376 n_ptr = tipc_node_find(msg_prevnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001377 if (unlikely(!n_ptr))
Ying Xue3af390e2013-10-30 11:26:57 +08001378 goto discard;
Per Liden4323add2006-01-18 00:38:21 +01001379 tipc_node_lock(n_ptr);
Allan Stephens85035562008-04-15 19:04:54 -07001380
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001381 /* Locate unicast link endpoint that should handle message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001382 l_ptr = n_ptr->links[b_ptr->identity];
Ying Xue3af390e2013-10-30 11:26:57 +08001383 if (unlikely(!l_ptr))
1384 goto unlock_discard;
Allan Stephens85035562008-04-15 19:04:54 -07001385
Allan Stephensb4b56102011-05-27 11:00:51 -04001386 /* Verify that communication with node is currently allowed */
Ying Xueaecb9bb2014-05-08 08:54:39 +08001387 if ((n_ptr->action_flags & TIPC_WAIT_PEER_LINKS_DOWN) &&
Ying Xue10f465c2014-05-05 08:56:11 +08001388 msg_user(msg) == LINK_PROTOCOL &&
1389 (msg_type(msg) == RESET_MSG ||
1390 msg_type(msg) == ACTIVATE_MSG) &&
1391 !msg_redundant_link(msg))
Ying Xueaecb9bb2014-05-08 08:54:39 +08001392 n_ptr->action_flags &= ~TIPC_WAIT_PEER_LINKS_DOWN;
Allan Stephensb4b56102011-05-27 11:00:51 -04001393
Ying Xue10f465c2014-05-05 08:56:11 +08001394 if (tipc_node_blocked(n_ptr))
Ying Xue3af390e2013-10-30 11:26:57 +08001395 goto unlock_discard;
Allan Stephensb4b56102011-05-27 11:00:51 -04001396
Allan Stephens85035562008-04-15 19:04:54 -07001397 /* Validate message sequence number info */
Allan Stephens85035562008-04-15 19:04:54 -07001398 seq_no = msg_seqno(msg);
1399 ackd = msg_ack(msg);
1400
1401 /* Release acked messages */
Ying Xue389dd9b2012-11-16 13:51:30 +08001402 if (n_ptr->bclink.recv_permitted)
Allan Stephens365595912011-10-24 15:26:24 -04001403 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001404
1405 crs = l_ptr->first_out;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001406 while ((crs != l_ptr->next_out) &&
Allan Stephensf9057302011-10-24 16:03:12 -04001407 less_eq(buf_seqno(crs), ackd)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001408 struct sk_buff *next = crs->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001409 kfree_skb(crs);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001410 crs = next;
1411 released++;
1412 }
1413 if (released) {
1414 l_ptr->first_out = crs;
1415 l_ptr->out_queue_size -= released;
1416 }
Allan Stephens85035562008-04-15 19:04:54 -07001417
1418 /* Try sending any messages link endpoint has pending */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001419 if (unlikely(l_ptr->next_out))
Per Liden4323add2006-01-18 00:38:21 +01001420 tipc_link_push_queue(l_ptr);
Jon Paul Maloya5377832014-02-13 17:29:15 -05001421
Per Lidenb97bf3f2006-01-02 19:04:38 +01001422 if (unlikely(!list_empty(&l_ptr->waiting_ports)))
Per Liden4323add2006-01-18 00:38:21 +01001423 tipc_link_wakeup_ports(l_ptr, 0);
Jon Paul Maloya5377832014-02-13 17:29:15 -05001424
Per Lidenb97bf3f2006-01-02 19:04:38 +01001425 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1426 l_ptr->stats.sent_acks++;
Ying Xue247f0f32014-02-18 16:06:46 +08001427 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001428 }
1429
Jon Paul Maloya5377832014-02-13 17:29:15 -05001430 /* Process the incoming packet */
Ying Xue3af390e2013-10-30 11:26:57 +08001431 if (unlikely(!link_working_working(l_ptr))) {
1432 if (msg_user(msg) == LINK_PROTOCOL) {
Ying Xue247f0f32014-02-18 16:06:46 +08001433 tipc_link_proto_rcv(l_ptr, buf);
Ying Xue3af390e2013-10-30 11:26:57 +08001434 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001435 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001436 continue;
1437 }
Ying Xue3af390e2013-10-30 11:26:57 +08001438
1439 /* Traffic message. Conditionally activate link */
1440 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1441
1442 if (link_working_working(l_ptr)) {
1443 /* Re-insert buffer in front of queue */
1444 buf->next = head;
1445 head = buf;
1446 tipc_node_unlock(n_ptr);
1447 continue;
1448 }
1449 goto unlock_discard;
1450 }
1451
1452 /* Link is now in state WORKING_WORKING */
1453 if (unlikely(seq_no != mod(l_ptr->next_in_no))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001454 link_handle_out_of_seq_msg(l_ptr, buf);
1455 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001456 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001457 continue;
1458 }
Ying Xue3af390e2013-10-30 11:26:57 +08001459 l_ptr->next_in_no++;
1460 if (unlikely(l_ptr->oldest_deferred_in))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001461 head = link_insert_deferred_queue(l_ptr, head);
Jon Paul Maloya5377832014-02-13 17:29:15 -05001462
Erik Hugne7ae934b2014-07-01 10:22:40 +02001463 if (tipc_link_prepare_input(l_ptr, &buf)) {
Per Liden4323add2006-01-18 00:38:21 +01001464 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001465 continue;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001466 }
Per Liden4323add2006-01-18 00:38:21 +01001467 tipc_node_unlock(n_ptr);
Erik Hugne7ae934b2014-07-01 10:22:40 +02001468 msg = buf_msg(buf);
1469 if (tipc_link_input(l_ptr, buf) != 0)
1470 goto discard;
Ying Xue3af390e2013-10-30 11:26:57 +08001471 continue;
1472unlock_discard:
Ying Xue3af390e2013-10-30 11:26:57 +08001473 tipc_node_unlock(n_ptr);
1474discard:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001475 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001476 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001477}
1478
Ben Hutchings2c530402012-07-10 10:55:09 +00001479/**
Erik Hugne7ae934b2014-07-01 10:22:40 +02001480 * tipc_link_prepare_input - process TIPC link messages
1481 *
1482 * returns nonzero if the message was consumed
1483 *
1484 * Node lock must be held
1485 */
1486static int tipc_link_prepare_input(struct tipc_link *l, struct sk_buff **buf)
1487{
1488 struct tipc_node *n;
1489 struct tipc_msg *msg;
1490 int res = -EINVAL;
1491
1492 n = l->owner;
1493 msg = buf_msg(*buf);
1494 switch (msg_user(msg)) {
1495 case CHANGEOVER_PROTOCOL:
1496 if (tipc_link_tunnel_rcv(n, buf))
1497 res = 0;
1498 break;
1499 case MSG_FRAGMENTER:
1500 l->stats.recv_fragments++;
1501 if (tipc_buf_append(&l->reasm_buf, buf)) {
1502 l->stats.recv_fragmented++;
1503 res = 0;
1504 } else if (!l->reasm_buf) {
1505 tipc_link_reset(l);
1506 }
1507 break;
1508 case MSG_BUNDLER:
1509 l->stats.recv_bundles++;
1510 l->stats.recv_bundled += msg_msgcnt(msg);
1511 res = 0;
1512 break;
1513 case NAME_DISTRIBUTOR:
1514 n->bclink.recv_permitted = true;
1515 res = 0;
1516 break;
1517 case BCAST_PROTOCOL:
1518 tipc_link_sync_rcv(n, *buf);
1519 break;
1520 default:
1521 res = 0;
1522 }
1523 return res;
1524}
1525/**
1526 * tipc_link_input - Deliver message too higher layers
1527 */
1528static int tipc_link_input(struct tipc_link *l, struct sk_buff *buf)
1529{
1530 struct tipc_msg *msg = buf_msg(buf);
1531 int res = 0;
1532
1533 switch (msg_user(msg)) {
1534 case TIPC_LOW_IMPORTANCE:
1535 case TIPC_MEDIUM_IMPORTANCE:
1536 case TIPC_HIGH_IMPORTANCE:
1537 case TIPC_CRITICAL_IMPORTANCE:
1538 case CONN_MANAGER:
1539 tipc_sk_rcv(buf);
1540 break;
1541 case NAME_DISTRIBUTOR:
1542 tipc_named_rcv(buf);
1543 break;
1544 case MSG_BUNDLER:
1545 tipc_link_bundle_rcv(buf);
1546 break;
1547 default:
1548 res = -EINVAL;
1549 }
1550 return res;
1551}
1552
1553/**
Allan Stephens8809b252011-10-25 10:44:35 -04001554 * tipc_link_defer_pkt - Add out-of-sequence message to deferred reception queue
1555 *
1556 * Returns increase in queue length (i.e. 0 or 1)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001557 */
Allan Stephens8809b252011-10-25 10:44:35 -04001558u32 tipc_link_defer_pkt(struct sk_buff **head, struct sk_buff **tail,
Per Liden4323add2006-01-18 00:38:21 +01001559 struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001560{
Allan Stephens8809b252011-10-25 10:44:35 -04001561 struct sk_buff *queue_buf;
1562 struct sk_buff **prev;
Allan Stephensf9057302011-10-24 16:03:12 -04001563 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001564
1565 buf->next = NULL;
1566
1567 /* Empty queue ? */
1568 if (*head == NULL) {
1569 *head = *tail = buf;
1570 return 1;
1571 }
1572
1573 /* Last ? */
Allan Stephensf9057302011-10-24 16:03:12 -04001574 if (less(buf_seqno(*tail), seq_no)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001575 (*tail)->next = buf;
1576 *tail = buf;
1577 return 1;
1578 }
1579
Allan Stephens8809b252011-10-25 10:44:35 -04001580 /* Locate insertion point in queue, then insert; discard if duplicate */
1581 prev = head;
1582 queue_buf = *head;
1583 for (;;) {
1584 u32 curr_seqno = buf_seqno(queue_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001585
Allan Stephens8809b252011-10-25 10:44:35 -04001586 if (seq_no == curr_seqno) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001587 kfree_skb(buf);
Allan Stephens8809b252011-10-25 10:44:35 -04001588 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001589 }
Allan Stephens8809b252011-10-25 10:44:35 -04001590
1591 if (less(seq_no, curr_seqno))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001592 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001593
Allan Stephens8809b252011-10-25 10:44:35 -04001594 prev = &queue_buf->next;
1595 queue_buf = queue_buf->next;
1596 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001597
Allan Stephens8809b252011-10-25 10:44:35 -04001598 buf->next = queue_buf;
1599 *prev = buf;
1600 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001601}
1602
Allan Stephens8809b252011-10-25 10:44:35 -04001603/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001604 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1605 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001606static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001607 struct sk_buff *buf)
1608{
Allan Stephensf9057302011-10-24 16:03:12 -04001609 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001610
1611 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
Ying Xue247f0f32014-02-18 16:06:46 +08001612 tipc_link_proto_rcv(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001613 return;
1614 }
1615
Per Lidenb97bf3f2006-01-02 19:04:38 +01001616 /* Record OOS packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001617 l_ptr->checkpoint--;
1618
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001619 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001620 * Discard packet if a duplicate; otherwise add it to deferred queue
1621 * and notify peer of gap as per protocol specification
1622 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001623 if (less(seq_no, mod(l_ptr->next_in_no))) {
1624 l_ptr->stats.duplicates++;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001625 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001626 return;
1627 }
1628
Per Liden4323add2006-01-18 00:38:21 +01001629 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1630 &l_ptr->newest_deferred_in, buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001631 l_ptr->deferred_inqueue_sz++;
1632 l_ptr->stats.deferred_recv++;
Erik Hugne64380a02014-02-11 11:38:26 +01001633 TIPC_SKB_CB(buf)->deferred = true;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001634 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
Ying Xue247f0f32014-02-18 16:06:46 +08001635 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001636 } else
1637 l_ptr->stats.duplicates++;
1638}
1639
1640/*
1641 * Send protocol message to the other endpoint.
1642 */
Ying Xue247f0f32014-02-18 16:06:46 +08001643void tipc_link_proto_xmit(struct tipc_link *l_ptr, u32 msg_typ, int probe_msg,
1644 u32 gap, u32 tolerance, u32 priority, u32 ack_mtu)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001645{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001646 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001647 struct tipc_msg *msg = l_ptr->pmsg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001648 u32 msg_size = sizeof(l_ptr->proto_msg);
Allan Stephens75f0aa42011-02-28 15:30:20 -05001649 int r_flag;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001650
Allan Stephens92d2c902011-10-25 11:20:26 -04001651 /* Discard any previous message that was deferred due to congestion */
Allan Stephens92d2c902011-10-25 11:20:26 -04001652 if (l_ptr->proto_msg_queue) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001653 kfree_skb(l_ptr->proto_msg_queue);
Allan Stephens92d2c902011-10-25 11:20:26 -04001654 l_ptr->proto_msg_queue = NULL;
1655 }
1656
Ying Xue77a7e072013-12-10 20:45:44 -08001657 /* Don't send protocol message during link changeover */
1658 if (l_ptr->exp_msg_count)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001659 return;
Allan Stephensb4b56102011-05-27 11:00:51 -04001660
1661 /* Abort non-RESET send if communication with node is prohibited */
Ying Xue10f465c2014-05-05 08:56:11 +08001662 if ((tipc_node_blocked(l_ptr->owner)) && (msg_typ != RESET_MSG))
Allan Stephensb4b56102011-05-27 11:00:51 -04001663 return;
1664
Allan Stephens92d2c902011-10-25 11:20:26 -04001665 /* Create protocol message with "out-of-sequence" sequence number */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001666 msg_set_type(msg, msg_typ);
Ying Xue7a2f7d12014-04-21 10:55:46 +08001667 msg_set_net_plane(msg, l_ptr->net_plane);
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001668 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001669 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
Per Lidenb97bf3f2006-01-02 19:04:38 +01001670
1671 if (msg_typ == STATE_MSG) {
1672 u32 next_sent = mod(l_ptr->next_out_no);
1673
Per Liden4323add2006-01-18 00:38:21 +01001674 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001675 return;
1676 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -04001677 next_sent = buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001678 msg_set_next_sent(msg, next_sent);
1679 if (l_ptr->oldest_deferred_in) {
Allan Stephensf9057302011-10-24 16:03:12 -04001680 u32 rec = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001681 gap = mod(rec - mod(l_ptr->next_in_no));
1682 }
1683 msg_set_seq_gap(msg, gap);
1684 if (gap)
1685 l_ptr->stats.sent_nacks++;
1686 msg_set_link_tolerance(msg, tolerance);
1687 msg_set_linkprio(msg, priority);
1688 msg_set_max_pkt(msg, ack_mtu);
1689 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1690 msg_set_probe(msg, probe_msg != 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001691 if (probe_msg) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001692 u32 mtu = l_ptr->max_pkt;
1693
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001694 if ((mtu < l_ptr->max_pkt_target) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001695 link_working_working(l_ptr) &&
1696 l_ptr->fsm_msg_cnt) {
1697 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001698 if (l_ptr->max_pkt_probes == 10) {
1699 l_ptr->max_pkt_target = (msg_size - 4);
1700 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001701 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001702 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001703 l_ptr->max_pkt_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001704 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001705
1706 l_ptr->stats.sent_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001707 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001708 l_ptr->stats.sent_states++;
1709 } else { /* RESET_MSG or ACTIVATE_MSG */
1710 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
1711 msg_set_seq_gap(msg, 0);
1712 msg_set_next_sent(msg, 1);
Allan Stephensf23d9bf2011-01-18 15:15:34 -05001713 msg_set_probe(msg, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001714 msg_set_link_tolerance(msg, l_ptr->tolerance);
1715 msg_set_linkprio(msg, l_ptr->priority);
1716 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
1717 }
1718
Allan Stephens75f0aa42011-02-28 15:30:20 -05001719 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
1720 msg_set_redundant_link(msg, r_flag);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001721 msg_set_linkprio(msg, l_ptr->priority);
Allan Stephens92d2c902011-10-25 11:20:26 -04001722 msg_set_size(msg, msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001723
1724 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
1725
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001726 buf = tipc_buf_acquire(msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001727 if (!buf)
1728 return;
1729
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001730 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
Ying Xue796c75d2013-06-17 10:54:48 -04001731 buf->priority = TC_PRIO_CONTROL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001732
Ying Xue7a2f7d12014-04-21 10:55:46 +08001733 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
Allan Stephens92d2c902011-10-25 11:20:26 -04001734 l_ptr->unacked_window = 0;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001735 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001736}
1737
1738/*
1739 * Receive protocol message :
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001740 * Note that network plane id propagates through the network, and may
1741 * change at any time. The node with lowest address rules
Per Lidenb97bf3f2006-01-02 19:04:38 +01001742 */
Ying Xue247f0f32014-02-18 16:06:46 +08001743static void tipc_link_proto_rcv(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001744{
1745 u32 rec_gap = 0;
1746 u32 max_pkt_info;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001747 u32 max_pkt_ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001748 u32 msg_tol;
1749 struct tipc_msg *msg = buf_msg(buf);
1750
Ying Xue77a7e072013-12-10 20:45:44 -08001751 /* Discard protocol message during link changeover */
1752 if (l_ptr->exp_msg_count)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001753 goto exit;
1754
Ying Xue7a2f7d12014-04-21 10:55:46 +08001755 if (l_ptr->net_plane != msg_net_plane(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001756 if (tipc_own_addr > msg_prevnode(msg))
Ying Xue7a2f7d12014-04-21 10:55:46 +08001757 l_ptr->net_plane = msg_net_plane(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001758
Per Lidenb97bf3f2006-01-02 19:04:38 +01001759 switch (msg_type(msg)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001760
Per Lidenb97bf3f2006-01-02 19:04:38 +01001761 case RESET_MSG:
Allan Stephensa686e682008-06-04 17:29:39 -07001762 if (!link_working_unknown(l_ptr) &&
1763 (l_ptr->peer_session != INVALID_SESSION)) {
Allan Stephens641c2182011-04-07 09:54:43 -04001764 if (less_eq(msg_session(msg), l_ptr->peer_session))
1765 break; /* duplicate or old reset: ignore */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001766 }
Allan Stephensb4b56102011-05-27 11:00:51 -04001767
1768 if (!msg_redundant_link(msg) && (link_working_working(l_ptr) ||
1769 link_working_unknown(l_ptr))) {
1770 /*
1771 * peer has lost contact -- don't allow peer's links
1772 * to reactivate before we recognize loss & clean up
1773 */
Ying Xueca9cf062014-05-08 08:54:40 +08001774 l_ptr->owner->action_flags |= TIPC_WAIT_OWN_LINKS_DOWN;
Allan Stephensb4b56102011-05-27 11:00:51 -04001775 }
1776
Allan Stephens47361c82011-10-26 10:55:16 -04001777 link_state_event(l_ptr, RESET_MSG);
1778
Per Lidenb97bf3f2006-01-02 19:04:38 +01001779 /* fall thru' */
1780 case ACTIVATE_MSG:
1781 /* Update link settings according other endpoint's values */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001782 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
1783
Allan Stephens2db99832010-12-31 18:59:33 +00001784 msg_tol = msg_link_tolerance(msg);
1785 if (msg_tol > l_ptr->tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001786 link_set_supervision_props(l_ptr, msg_tol);
1787
1788 if (msg_linkprio(msg) > l_ptr->priority)
1789 l_ptr->priority = msg_linkprio(msg);
1790
1791 max_pkt_info = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001792 if (max_pkt_info) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001793 if (max_pkt_info < l_ptr->max_pkt_target)
1794 l_ptr->max_pkt_target = max_pkt_info;
1795 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
1796 l_ptr->max_pkt = l_ptr->max_pkt_target;
1797 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001798 l_ptr->max_pkt = l_ptr->max_pkt_target;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001799 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001800
Allan Stephens4d753132011-10-25 12:19:05 -04001801 /* Synchronize broadcast link info, if not done previously */
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001802 if (!tipc_node_is_up(l_ptr->owner)) {
1803 l_ptr->owner->bclink.last_sent =
1804 l_ptr->owner->bclink.last_in =
1805 msg_last_bcast(msg);
1806 l_ptr->owner->bclink.oos_state = 0;
1807 }
Allan Stephens4d753132011-10-25 12:19:05 -04001808
Per Lidenb97bf3f2006-01-02 19:04:38 +01001809 l_ptr->peer_session = msg_session(msg);
1810 l_ptr->peer_bearer_id = msg_bearer_id(msg);
Allan Stephens47361c82011-10-26 10:55:16 -04001811
1812 if (msg_type(msg) == ACTIVATE_MSG)
1813 link_state_event(l_ptr, ACTIVATE_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001814 break;
1815 case STATE_MSG:
1816
Allan Stephens2db99832010-12-31 18:59:33 +00001817 msg_tol = msg_link_tolerance(msg);
1818 if (msg_tol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001819 link_set_supervision_props(l_ptr, msg_tol);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001820
1821 if (msg_linkprio(msg) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001822 (msg_linkprio(msg) != l_ptr->priority)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001823 pr_warn("%s<%s>, priority change %u->%u\n",
1824 link_rst_msg, l_ptr->name, l_ptr->priority,
1825 msg_linkprio(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001826 l_ptr->priority = msg_linkprio(msg);
Per Liden4323add2006-01-18 00:38:21 +01001827 tipc_link_reset(l_ptr); /* Enforce change to take effect */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001828 break;
1829 }
Jon Paul Maloyec37dcd2014-05-14 05:39:10 -04001830
1831 /* Record reception; force mismatch at next timeout: */
1832 l_ptr->checkpoint--;
1833
Per Lidenb97bf3f2006-01-02 19:04:38 +01001834 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1835 l_ptr->stats.recv_states++;
1836 if (link_reset_unknown(l_ptr))
1837 break;
1838
1839 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001840 rec_gap = mod(msg_next_sent(msg) -
Per Lidenb97bf3f2006-01-02 19:04:38 +01001841 mod(l_ptr->next_in_no));
1842 }
1843
1844 max_pkt_ack = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001845 if (max_pkt_ack > l_ptr->max_pkt) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001846 l_ptr->max_pkt = max_pkt_ack;
1847 l_ptr->max_pkt_probes = 0;
1848 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001849
1850 max_pkt_ack = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001851 if (msg_probe(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001852 l_ptr->stats.recv_probes++;
Allan Stephensa0168922010-12-31 18:59:35 +00001853 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001854 max_pkt_ack = msg_size(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001855 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001856
1857 /* Protocol message before retransmits, reduce loss risk */
Ying Xue389dd9b2012-11-16 13:51:30 +08001858 if (l_ptr->owner->bclink.recv_permitted)
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001859 tipc_bclink_update_link_state(l_ptr->owner,
1860 msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001861
1862 if (rec_gap || (msg_probe(msg))) {
Ying Xue247f0f32014-02-18 16:06:46 +08001863 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, rec_gap, 0,
1864 0, max_pkt_ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001865 }
1866 if (msg_seq_gap(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001867 l_ptr->stats.recv_nacks++;
Per Liden4323add2006-01-18 00:38:21 +01001868 tipc_link_retransmit(l_ptr, l_ptr->first_out,
1869 msg_seq_gap(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001870 }
1871 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001872 }
1873exit:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001874 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001875}
1876
1877
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001878/* tipc_link_tunnel_xmit(): Tunnel one packet via a link belonging to
1879 * a different bearer. Owner node is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001880 */
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001881static void tipc_link_tunnel_xmit(struct tipc_link *l_ptr,
1882 struct tipc_msg *tunnel_hdr,
1883 struct tipc_msg *msg,
1884 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001885{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001886 struct tipc_link *tunnel;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001887 struct sk_buff *buf;
1888 u32 length = msg_size(msg);
1889
1890 tunnel = l_ptr->owner->active_links[selector & 1];
Allan Stephens5392d642006-06-25 23:52:50 -07001891 if (!tipc_link_is_up(tunnel)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001892 pr_warn("%stunnel link no longer available\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001893 return;
Allan Stephens5392d642006-06-25 23:52:50 -07001894 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001895 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001896 buf = tipc_buf_acquire(length + INT_H_SIZE);
Allan Stephens5392d642006-06-25 23:52:50 -07001897 if (!buf) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001898 pr_warn("%sunable to send tunnel msg\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001899 return;
Allan Stephens5392d642006-06-25 23:52:50 -07001900 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001901 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
1902 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
Ying Xue247f0f32014-02-18 16:06:46 +08001903 __tipc_link_xmit(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001904}
1905
1906
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001907/* tipc_link_failover_send_queue(): A link has gone down, but a second
1908 * link is still active. We can do failover. Tunnel the failing link's
1909 * whole send queue via the remaining link. This way, we don't lose
1910 * any packets, and sequence order is preserved for subsequent traffic
1911 * sent over the remaining link. Owner node is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001912 */
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001913void tipc_link_failover_send_queue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001914{
1915 u32 msgcount = l_ptr->out_queue_size;
1916 struct sk_buff *crs = l_ptr->first_out;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001917 struct tipc_link *tunnel = l_ptr->owner->active_links[0];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001918 struct tipc_msg tunnel_hdr;
Allan Stephens5392d642006-06-25 23:52:50 -07001919 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001920
1921 if (!tunnel)
1922 return;
1923
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001924 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07001925 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001926 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
1927 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07001928
Per Lidenb97bf3f2006-01-02 19:04:38 +01001929 if (!l_ptr->first_out) {
1930 struct sk_buff *buf;
1931
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001932 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001933 if (buf) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001934 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001935 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Ying Xue247f0f32014-02-18 16:06:46 +08001936 __tipc_link_xmit(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001937 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001938 pr_warn("%sunable to send changeover msg\n",
1939 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001940 }
1941 return;
1942 }
Allan Stephensf1310722006-06-25 23:51:37 -07001943
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001944 split_bundles = (l_ptr->owner->active_links[0] !=
Allan Stephens5392d642006-06-25 23:52:50 -07001945 l_ptr->owner->active_links[1]);
1946
Per Lidenb97bf3f2006-01-02 19:04:38 +01001947 while (crs) {
1948 struct tipc_msg *msg = buf_msg(crs);
1949
1950 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001951 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00001952 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001953
Florian Westphald788d802007-08-02 19:28:06 -07001954 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001955 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00001956 msg_set_seqno(m, msg_seqno(msg));
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001957 tipc_link_tunnel_xmit(l_ptr, &tunnel_hdr, m,
1958 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001959 pos += align(msg_size(m));
1960 m = (struct tipc_msg *)pos;
1961 }
1962 } else {
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001963 tipc_link_tunnel_xmit(l_ptr, &tunnel_hdr, msg,
1964 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001965 }
1966 crs = crs->next;
1967 }
1968}
1969
Ying Xue247f0f32014-02-18 16:06:46 +08001970/* tipc_link_dup_queue_xmit(): A second link has become active. Tunnel a
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001971 * duplicate of the first link's send queue via the new link. This way, we
1972 * are guaranteed that currently queued packets from a socket are delivered
1973 * before future traffic from the same socket, even if this is using the
1974 * new link. The last arriving copy of each duplicate packet is dropped at
1975 * the receiving end by the regular protocol check, so packet cardinality
1976 * and sequence order is preserved per sender/receiver socket pair.
1977 * Owner node is locked.
1978 */
Ying Xue247f0f32014-02-18 16:06:46 +08001979void tipc_link_dup_queue_xmit(struct tipc_link *l_ptr,
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001980 struct tipc_link *tunnel)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001981{
1982 struct sk_buff *iter;
1983 struct tipc_msg tunnel_hdr;
1984
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001985 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07001986 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001987 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
1988 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
1989 iter = l_ptr->first_out;
1990 while (iter) {
1991 struct sk_buff *outbuf;
1992 struct tipc_msg *msg = buf_msg(iter);
1993 u32 length = msg_size(msg);
1994
1995 if (msg_user(msg) == MSG_BUNDLER)
1996 msg_set_type(msg, CLOSED_MSG);
1997 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001998 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001999 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002000 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002001 if (outbuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002002 pr_warn("%sunable to send duplicate msg\n",
2003 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002004 return;
2005 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002006 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
2007 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
2008 length);
Ying Xue247f0f32014-02-18 16:06:46 +08002009 __tipc_link_xmit(tunnel, outbuf);
Per Liden4323add2006-01-18 00:38:21 +01002010 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002011 return;
2012 iter = iter->next;
2013 }
2014}
2015
Per Lidenb97bf3f2006-01-02 19:04:38 +01002016/**
2017 * buf_extract - extracts embedded TIPC message from another message
2018 * @skb: encapsulating message buffer
2019 * @from_pos: offset to extract from
2020 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002021 * Returns a new message buffer containing an embedded message. The
Per Lidenb97bf3f2006-01-02 19:04:38 +01002022 * encapsulating message itself is left unchanged.
2023 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002024static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
2025{
2026 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
2027 u32 size = msg_size(msg);
2028 struct sk_buff *eb;
2029
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002030 eb = tipc_buf_acquire(size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002031 if (eb)
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002032 skb_copy_to_linear_data(eb, msg, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002033 return eb;
2034}
2035
Jon Paul Maloy1dab3d52014-02-13 17:29:10 -05002036
2037
2038/* tipc_link_dup_rcv(): Receive a tunnelled DUPLICATE_MSG packet.
2039 * Owner node is locked.
2040 */
2041static void tipc_link_dup_rcv(struct tipc_link *l_ptr,
2042 struct sk_buff *t_buf)
2043{
2044 struct sk_buff *buf;
2045
2046 if (!tipc_link_is_up(l_ptr))
2047 return;
2048
2049 buf = buf_extract(t_buf, INT_H_SIZE);
2050 if (buf == NULL) {
2051 pr_warn("%sfailed to extract inner dup pkt\n", link_co_err);
2052 return;
2053 }
2054
2055 /* Add buffer to deferred queue, if applicable: */
2056 link_handle_out_of_seq_msg(l_ptr, buf);
2057}
2058
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05002059/* tipc_link_failover_rcv(): Receive a tunnelled ORIGINAL_MSG packet
2060 * Owner node is locked.
2061 */
2062static struct sk_buff *tipc_link_failover_rcv(struct tipc_link *l_ptr,
2063 struct sk_buff *t_buf)
2064{
2065 struct tipc_msg *t_msg = buf_msg(t_buf);
2066 struct sk_buff *buf = NULL;
2067 struct tipc_msg *msg;
2068
2069 if (tipc_link_is_up(l_ptr))
2070 tipc_link_reset(l_ptr);
2071
2072 /* First failover packet? */
2073 if (l_ptr->exp_msg_count == START_CHANGEOVER)
2074 l_ptr->exp_msg_count = msg_msgcnt(t_msg);
2075
2076 /* Should there be an inner packet? */
2077 if (l_ptr->exp_msg_count) {
2078 l_ptr->exp_msg_count--;
2079 buf = buf_extract(t_buf, INT_H_SIZE);
2080 if (buf == NULL) {
2081 pr_warn("%sno inner failover pkt\n", link_co_err);
2082 goto exit;
2083 }
2084 msg = buf_msg(buf);
2085
2086 if (less(msg_seqno(msg), l_ptr->reset_checkpoint)) {
2087 kfree_skb(buf);
2088 buf = NULL;
2089 goto exit;
2090 }
2091 if (msg_user(msg) == MSG_FRAGMENTER) {
2092 l_ptr->stats.recv_fragments++;
Jon Paul Maloy37e22162014-05-14 05:39:12 -04002093 tipc_buf_append(&l_ptr->reasm_buf, &buf);
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05002094 }
2095 }
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05002096exit:
Jon Paul Maloy7d339392014-02-13 17:29:16 -05002097 if ((l_ptr->exp_msg_count == 0) && (l_ptr->flags & LINK_STOPPED)) {
2098 tipc_node_detach_link(l_ptr->owner, l_ptr);
2099 kfree(l_ptr);
2100 }
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05002101 return buf;
2102}
2103
Jon Paul Maloy1dab3d52014-02-13 17:29:10 -05002104/* tipc_link_tunnel_rcv(): Receive a tunnelled packet, sent
Jon Paul Maloy170b3922014-01-07 17:02:41 -05002105 * via other link as result of a failover (ORIGINAL_MSG) or
2106 * a new active link (DUPLICATE_MSG). Failover packets are
2107 * returned to the active link for delivery upwards.
2108 * Owner node is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002109 */
Jon Paul Maloy3bb53382014-02-13 17:29:12 -05002110static int tipc_link_tunnel_rcv(struct tipc_node *n_ptr,
Jon Paul Maloy170b3922014-01-07 17:02:41 -05002111 struct sk_buff **buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002112{
Jon Paul Maloy02842f72014-02-13 17:29:14 -05002113 struct sk_buff *t_buf = *buf;
2114 struct tipc_link *l_ptr;
2115 struct tipc_msg *t_msg = buf_msg(t_buf);
2116 u32 bearer_id = msg_bearer_id(t_msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002117
Jon Paul Maloy1e9d47a2014-02-13 17:29:13 -05002118 *buf = NULL;
2119
Dan Carpentercb4b102f2013-05-06 08:28:41 +00002120 if (bearer_id >= MAX_BEARERS)
2121 goto exit;
Jon Paul Maloy1dab3d52014-02-13 17:29:10 -05002122
Jon Paul Maloy02842f72014-02-13 17:29:14 -05002123 l_ptr = n_ptr->links[bearer_id];
2124 if (!l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002125 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002126
Jon Paul Maloy02842f72014-02-13 17:29:14 -05002127 if (msg_type(t_msg) == DUPLICATE_MSG)
2128 tipc_link_dup_rcv(l_ptr, t_buf);
2129 else if (msg_type(t_msg) == ORIGINAL_MSG)
2130 *buf = tipc_link_failover_rcv(l_ptr, t_buf);
Jon Paul Maloy1e9d47a2014-02-13 17:29:13 -05002131 else
2132 pr_warn("%sunknown tunnel pkt received\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002133exit:
Jon Paul Maloy02842f72014-02-13 17:29:14 -05002134 kfree_skb(t_buf);
Jon Paul Maloy1e9d47a2014-02-13 17:29:13 -05002135 return *buf != NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002136}
2137
2138/*
2139 * Bundler functionality:
2140 */
Ying Xue247f0f32014-02-18 16:06:46 +08002141void tipc_link_bundle_rcv(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002142{
2143 u32 msgcount = msg_msgcnt(buf_msg(buf));
2144 u32 pos = INT_H_SIZE;
2145 struct sk_buff *obuf;
Jon Paul Maloyec8a2e52014-06-25 20:41:40 -05002146 struct tipc_msg *omsg;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002147
Per Lidenb97bf3f2006-01-02 19:04:38 +01002148 while (msgcount--) {
2149 obuf = buf_extract(buf, pos);
2150 if (obuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002151 pr_warn("Link unable to unbundle message(s)\n");
Allan Stephensa10bd922006-06-25 23:52:17 -07002152 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002153 }
Jon Paul Maloyec8a2e52014-06-25 20:41:40 -05002154 omsg = buf_msg(obuf);
2155 pos += align(msg_size(omsg));
2156 if (msg_isdata(omsg) || (msg_user(omsg) == CONN_MANAGER)) {
2157 tipc_sk_rcv(obuf);
2158 } else if (msg_user(omsg) == NAME_DISTRIBUTOR) {
2159 tipc_named_rcv(obuf);
2160 } else {
2161 pr_warn("Illegal bundled msg: %u\n", msg_user(omsg));
2162 kfree_skb(obuf);
2163 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002164 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002165 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002166}
2167
2168/*
2169 * Fragmentation/defragmentation:
2170 */
2171
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002172/*
Ying Xue247f0f32014-02-18 16:06:46 +08002173 * tipc_link_frag_xmit: Entry for buffers needing fragmentation.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002174 * The buffer is complete, inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002175 * Returns user data length.
2176 */
Ying Xue247f0f32014-02-18 16:06:46 +08002177static int tipc_link_frag_xmit(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002178{
Allan Stephens77561552011-04-17 13:06:23 -04002179 struct sk_buff *buf_chain = NULL;
2180 struct sk_buff *buf_chain_tail = (struct sk_buff *)&buf_chain;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002181 struct tipc_msg *inmsg = buf_msg(buf);
2182 struct tipc_msg fragm_hdr;
2183 u32 insize = msg_size(inmsg);
2184 u32 dsz = msg_data_sz(inmsg);
2185 unchar *crs = buf->data;
2186 u32 rest = insize;
Allan Stephens15e979d2010-05-11 14:30:10 +00002187 u32 pack_sz = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002188 u32 fragm_sz = pack_sz - INT_H_SIZE;
Allan Stephens77561552011-04-17 13:06:23 -04002189 u32 fragm_no = 0;
Allan Stephens9c396a72008-06-04 17:36:58 -07002190 u32 destaddr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002191
2192 if (msg_short(inmsg))
2193 destaddr = l_ptr->addr;
Allan Stephens9c396a72008-06-04 17:36:58 -07002194 else
2195 destaddr = msg_destnode(inmsg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002196
Per Lidenb97bf3f2006-01-02 19:04:38 +01002197 /* Prepare reusable fragment header: */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002198 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07002199 INT_H_SIZE, destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002200
2201 /* Chop up message: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002202 while (rest > 0) {
2203 struct sk_buff *fragm;
2204
2205 if (rest <= fragm_sz) {
2206 fragm_sz = rest;
2207 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
2208 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002209 fragm = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002210 if (fragm == NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002211 kfree_skb(buf);
Ying Xued77b3832013-12-10 20:45:38 -08002212 kfree_skb_list(buf_chain);
Allan Stephens77561552011-04-17 13:06:23 -04002213 return -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002214 }
2215 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
Allan Stephens77561552011-04-17 13:06:23 -04002216 fragm_no++;
2217 msg_set_fragm_no(&fragm_hdr, fragm_no);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002218 skb_copy_to_linear_data(fragm, &fragm_hdr, INT_H_SIZE);
2219 skb_copy_to_linear_data_offset(fragm, INT_H_SIZE, crs,
2220 fragm_sz);
Allan Stephens77561552011-04-17 13:06:23 -04002221 buf_chain_tail->next = fragm;
2222 buf_chain_tail = fragm;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002223
Per Lidenb97bf3f2006-01-02 19:04:38 +01002224 rest -= fragm_sz;
2225 crs += fragm_sz;
2226 msg_set_type(&fragm_hdr, FRAGMENT);
2227 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002228 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002229
2230 /* Append chain of fragments to send queue & send them */
Allan Stephens77561552011-04-17 13:06:23 -04002231 l_ptr->long_msg_seq_no++;
2232 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
2233 l_ptr->stats.sent_fragments += fragm_no;
2234 l_ptr->stats.sent_fragmented++;
2235 tipc_link_push_queue(l_ptr);
2236
Per Lidenb97bf3f2006-01-02 19:04:38 +01002237 return dsz;
2238}
2239
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002240static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002241{
Allan Stephens5413b4c2011-01-18 13:24:55 -05002242 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
2243 return;
2244
Per Lidenb97bf3f2006-01-02 19:04:38 +01002245 l_ptr->tolerance = tolerance;
2246 l_ptr->continuity_interval =
2247 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
2248 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
2249}
2250
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002251void tipc_link_set_queue_limits(struct tipc_link *l_ptr, u32 window)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002252{
2253 /* Data messages from this node, inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002254 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
2255 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
2256 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
2257 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002258 /* Transiting data messages,inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002259 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
2260 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
2261 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
2262 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002263 l_ptr->queue_limit[CONN_MANAGER] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002264 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
2265 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
2266 /* FRAGMENT and LAST_FRAGMENT packets */
2267 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
2268}
2269
Jon Paul Maloye099e862014-02-13 17:29:18 -05002270/* tipc_link_find_owner - locate owner node of link by link's name
2271 * @name: pointer to link name string
2272 * @bearer_id: pointer to index in 'node->links' array where the link was found.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002273 *
Jon Paul Maloye099e862014-02-13 17:29:18 -05002274 * Returns pointer to node owning the link, or 0 if no matching link is found.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002275 */
Jon Paul Maloye099e862014-02-13 17:29:18 -05002276static struct tipc_node *tipc_link_find_owner(const char *link_name,
2277 unsigned int *bearer_id)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002278{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002279 struct tipc_link *l_ptr;
Erik Hugnebbfbe472013-10-18 07:23:21 +02002280 struct tipc_node *n_ptr;
Jon Paul Maloye099e862014-02-13 17:29:18 -05002281 struct tipc_node *found_node = 0;
Erik Hugnebbfbe472013-10-18 07:23:21 +02002282 int i;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002283
Jon Paul Maloye099e862014-02-13 17:29:18 -05002284 *bearer_id = 0;
Ying Xue6c7a7622014-03-27 12:54:37 +08002285 rcu_read_lock();
2286 list_for_each_entry_rcu(n_ptr, &tipc_node_list, list) {
Jon Paul Maloya11607f2014-02-14 16:40:44 -05002287 tipc_node_lock(n_ptr);
Erik Hugnebbfbe472013-10-18 07:23:21 +02002288 for (i = 0; i < MAX_BEARERS; i++) {
2289 l_ptr = n_ptr->links[i];
Jon Paul Maloye099e862014-02-13 17:29:18 -05002290 if (l_ptr && !strcmp(l_ptr->name, link_name)) {
2291 *bearer_id = i;
2292 found_node = n_ptr;
2293 break;
2294 }
Erik Hugnebbfbe472013-10-18 07:23:21 +02002295 }
Jon Paul Maloya11607f2014-02-14 16:40:44 -05002296 tipc_node_unlock(n_ptr);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002297 if (found_node)
2298 break;
Erik Hugnebbfbe472013-10-18 07:23:21 +02002299 }
Ying Xue6c7a7622014-03-27 12:54:37 +08002300 rcu_read_unlock();
2301
Jon Paul Maloye099e862014-02-13 17:29:18 -05002302 return found_node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002303}
2304
Allan Stephens5c216e12011-10-18 11:34:29 -04002305/**
2306 * link_value_is_valid -- validate proposed link tolerance/priority/window
2307 *
Ben Hutchings2c530402012-07-10 10:55:09 +00002308 * @cmd: value type (TIPC_CMD_SET_LINK_*)
2309 * @new_value: the new value
Allan Stephens5c216e12011-10-18 11:34:29 -04002310 *
2311 * Returns 1 if value is within range, 0 if not.
2312 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002313static int link_value_is_valid(u16 cmd, u32 new_value)
2314{
2315 switch (cmd) {
2316 case TIPC_CMD_SET_LINK_TOL:
2317 return (new_value >= TIPC_MIN_LINK_TOL) &&
2318 (new_value <= TIPC_MAX_LINK_TOL);
2319 case TIPC_CMD_SET_LINK_PRI:
2320 return (new_value <= TIPC_MAX_LINK_PRI);
2321 case TIPC_CMD_SET_LINK_WINDOW:
2322 return (new_value >= TIPC_MIN_LINK_WIN) &&
2323 (new_value <= TIPC_MAX_LINK_WIN);
2324 }
2325 return 0;
2326}
2327
Allan Stephens5c216e12011-10-18 11:34:29 -04002328/**
2329 * link_cmd_set_value - change priority/tolerance/window for link/bearer/media
Ben Hutchings2c530402012-07-10 10:55:09 +00002330 * @name: ptr to link, bearer, or media name
2331 * @new_value: new value of link, bearer, or media setting
2332 * @cmd: which link, bearer, or media attribute to set (TIPC_CMD_SET_LINK_*)
Allan Stephens5c216e12011-10-18 11:34:29 -04002333 *
Ying Xue7216cd92014-04-21 10:55:48 +08002334 * Caller must hold RTNL lock to ensure link/bearer/media is not deleted.
Allan Stephens5c216e12011-10-18 11:34:29 -04002335 *
2336 * Returns 0 if value updated and negative value on error.
2337 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002338static int link_cmd_set_value(const char *name, u32 new_value, u16 cmd)
2339{
2340 struct tipc_node *node;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002341 struct tipc_link *l_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002342 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -05002343 struct tipc_media *m_ptr;
Jon Paul Maloye099e862014-02-13 17:29:18 -05002344 int bearer_id;
Ying Xue636c0372013-10-18 07:23:20 +02002345 int res = 0;
Allan Stephens5c216e12011-10-18 11:34:29 -04002346
Jon Paul Maloye099e862014-02-13 17:29:18 -05002347 node = tipc_link_find_owner(name, &bearer_id);
2348 if (node) {
Allan Stephens5c216e12011-10-18 11:34:29 -04002349 tipc_node_lock(node);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002350 l_ptr = node->links[bearer_id];
2351
2352 if (l_ptr) {
2353 switch (cmd) {
2354 case TIPC_CMD_SET_LINK_TOL:
2355 link_set_supervision_props(l_ptr, new_value);
Ying Xue247f0f32014-02-18 16:06:46 +08002356 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0,
2357 new_value, 0, 0);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002358 break;
2359 case TIPC_CMD_SET_LINK_PRI:
2360 l_ptr->priority = new_value;
Ying Xue247f0f32014-02-18 16:06:46 +08002361 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0,
2362 0, new_value, 0);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002363 break;
2364 case TIPC_CMD_SET_LINK_WINDOW:
2365 tipc_link_set_queue_limits(l_ptr, new_value);
2366 break;
2367 default:
2368 res = -EINVAL;
2369 break;
2370 }
Allan Stephens5c216e12011-10-18 11:34:29 -04002371 }
2372 tipc_node_unlock(node);
Ying Xue636c0372013-10-18 07:23:20 +02002373 return res;
Allan Stephens5c216e12011-10-18 11:34:29 -04002374 }
2375
2376 b_ptr = tipc_bearer_find(name);
2377 if (b_ptr) {
2378 switch (cmd) {
2379 case TIPC_CMD_SET_LINK_TOL:
2380 b_ptr->tolerance = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002381 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002382 case TIPC_CMD_SET_LINK_PRI:
2383 b_ptr->priority = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002384 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002385 case TIPC_CMD_SET_LINK_WINDOW:
2386 b_ptr->window = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002387 break;
2388 default:
2389 res = -EINVAL;
2390 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002391 }
Ying Xue636c0372013-10-18 07:23:20 +02002392 return res;
Allan Stephens5c216e12011-10-18 11:34:29 -04002393 }
2394
2395 m_ptr = tipc_media_find(name);
2396 if (!m_ptr)
2397 return -ENODEV;
2398 switch (cmd) {
2399 case TIPC_CMD_SET_LINK_TOL:
2400 m_ptr->tolerance = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002401 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002402 case TIPC_CMD_SET_LINK_PRI:
2403 m_ptr->priority = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002404 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002405 case TIPC_CMD_SET_LINK_WINDOW:
2406 m_ptr->window = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002407 break;
2408 default:
2409 res = -EINVAL;
2410 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002411 }
Ying Xue636c0372013-10-18 07:23:20 +02002412 return res;
Allan Stephens5c216e12011-10-18 11:34:29 -04002413}
2414
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002415struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
Per Liden4323add2006-01-18 00:38:21 +01002416 u16 cmd)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002417{
2418 struct tipc_link_config *args;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002419 u32 new_value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002420 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002421
2422 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
Per Liden4323add2006-01-18 00:38:21 +01002423 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002424
2425 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2426 new_value = ntohl(args->value);
2427
Allan Stephens5c216e12011-10-18 11:34:29 -04002428 if (!link_value_is_valid(cmd, new_value))
2429 return tipc_cfg_reply_error_string(
2430 "cannot change, value invalid");
2431
Per Liden4323add2006-01-18 00:38:21 +01002432 if (!strcmp(args->name, tipc_bclink_name)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002433 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
Per Liden4323add2006-01-18 00:38:21 +01002434 (tipc_bclink_set_queue_limits(new_value) == 0))
2435 return tipc_cfg_reply_none();
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002436 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
Per Liden4323add2006-01-18 00:38:21 +01002437 " (cannot change setting on broadcast link)");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002438 }
2439
Allan Stephens5c216e12011-10-18 11:34:29 -04002440 res = link_cmd_set_value(args->name, new_value, cmd);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002441 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002442 return tipc_cfg_reply_error_string("cannot change link setting");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002443
Per Liden4323add2006-01-18 00:38:21 +01002444 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002445}
2446
2447/**
2448 * link_reset_statistics - reset link statistics
2449 * @l_ptr: pointer to link
2450 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002451static void link_reset_statistics(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002452{
2453 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2454 l_ptr->stats.sent_info = l_ptr->next_out_no;
2455 l_ptr->stats.recv_info = l_ptr->next_in_no;
2456}
2457
Per Liden4323add2006-01-18 00:38:21 +01002458struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002459{
2460 char *link_name;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002461 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002462 struct tipc_node *node;
Jon Paul Maloye099e862014-02-13 17:29:18 -05002463 unsigned int bearer_id;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002464
2465 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002466 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002467
2468 link_name = (char *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +01002469 if (!strcmp(link_name, tipc_bclink_name)) {
2470 if (tipc_bclink_reset_stats())
2471 return tipc_cfg_reply_error_string("link not found");
2472 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002473 }
Jon Paul Maloye099e862014-02-13 17:29:18 -05002474 node = tipc_link_find_owner(link_name, &bearer_id);
Ying Xue7216cd92014-04-21 10:55:48 +08002475 if (!node)
Per Liden4323add2006-01-18 00:38:21 +01002476 return tipc_cfg_reply_error_string("link not found");
Ying Xue7216cd92014-04-21 10:55:48 +08002477
Jon Paul Maloya11607f2014-02-14 16:40:44 -05002478 tipc_node_lock(node);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002479 l_ptr = node->links[bearer_id];
2480 if (!l_ptr) {
2481 tipc_node_unlock(node);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002482 return tipc_cfg_reply_error_string("link not found");
2483 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002484 link_reset_statistics(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +01002485 tipc_node_unlock(node);
Per Liden4323add2006-01-18 00:38:21 +01002486 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002487}
2488
2489/**
2490 * percent - convert count to a percentage of total (rounding up or down)
2491 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002492static u32 percent(u32 count, u32 total)
2493{
2494 return (count * 100 + (total / 2)) / total;
2495}
2496
2497/**
Per Liden4323add2006-01-18 00:38:21 +01002498 * tipc_link_stats - print link statistics
Per Lidenb97bf3f2006-01-02 19:04:38 +01002499 * @name: link name
2500 * @buf: print buffer area
2501 * @buf_size: size of print buffer area
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002502 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002503 * Returns length of print buffer data string (or 0 if error)
2504 */
Per Liden4323add2006-01-18 00:38:21 +01002505static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002506{
Erik Hugnedc1aed32012-06-29 00:50:23 -04002507 struct tipc_link *l;
2508 struct tipc_stats *s;
David S. Miller6c000552008-09-02 23:38:32 -07002509 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002510 char *status;
2511 u32 profile_total = 0;
Jon Paul Maloye099e862014-02-13 17:29:18 -05002512 unsigned int bearer_id;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002513 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002514
Per Liden4323add2006-01-18 00:38:21 +01002515 if (!strcmp(name, tipc_bclink_name))
2516 return tipc_bclink_stats(buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002517
Jon Paul Maloye099e862014-02-13 17:29:18 -05002518 node = tipc_link_find_owner(name, &bearer_id);
Ying Xue7216cd92014-04-21 10:55:48 +08002519 if (!node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002520 return 0;
Ying Xue7216cd92014-04-21 10:55:48 +08002521
Per Liden4323add2006-01-18 00:38:21 +01002522 tipc_node_lock(node);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002523
2524 l = node->links[bearer_id];
2525 if (!l) {
2526 tipc_node_unlock(node);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002527 return 0;
2528 }
2529
Erik Hugnedc1aed32012-06-29 00:50:23 -04002530 s = &l->stats;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002531
Erik Hugnedc1aed32012-06-29 00:50:23 -04002532 if (tipc_link_is_active(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002533 status = "ACTIVE";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002534 else if (tipc_link_is_up(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002535 status = "STANDBY";
2536 else
2537 status = "DEFUNCT";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002538
2539 ret = tipc_snprintf(buf, buf_size, "Link <%s>\n"
2540 " %s MTU:%u Priority:%u Tolerance:%u ms"
2541 " Window:%u packets\n",
2542 l->name, status, l->max_pkt, l->priority,
2543 l->tolerance, l->queue_limit[0]);
2544
2545 ret += tipc_snprintf(buf + ret, buf_size - ret,
2546 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
2547 l->next_in_no - s->recv_info, s->recv_fragments,
2548 s->recv_fragmented, s->recv_bundles,
2549 s->recv_bundled);
2550
2551 ret += tipc_snprintf(buf + ret, buf_size - ret,
2552 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
2553 l->next_out_no - s->sent_info, s->sent_fragments,
2554 s->sent_fragmented, s->sent_bundles,
2555 s->sent_bundled);
2556
2557 profile_total = s->msg_length_counts;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002558 if (!profile_total)
2559 profile_total = 1;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002560
2561 ret += tipc_snprintf(buf + ret, buf_size - ret,
2562 " TX profile sample:%u packets average:%u octets\n"
2563 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
2564 "-16384:%u%% -32768:%u%% -66000:%u%%\n",
2565 s->msg_length_counts,
2566 s->msg_lengths_total / profile_total,
2567 percent(s->msg_length_profile[0], profile_total),
2568 percent(s->msg_length_profile[1], profile_total),
2569 percent(s->msg_length_profile[2], profile_total),
2570 percent(s->msg_length_profile[3], profile_total),
2571 percent(s->msg_length_profile[4], profile_total),
2572 percent(s->msg_length_profile[5], profile_total),
2573 percent(s->msg_length_profile[6], profile_total));
2574
2575 ret += tipc_snprintf(buf + ret, buf_size - ret,
2576 " RX states:%u probes:%u naks:%u defs:%u"
2577 " dups:%u\n", s->recv_states, s->recv_probes,
2578 s->recv_nacks, s->deferred_recv, s->duplicates);
2579
2580 ret += tipc_snprintf(buf + ret, buf_size - ret,
2581 " TX states:%u probes:%u naks:%u acks:%u"
2582 " dups:%u\n", s->sent_states, s->sent_probes,
2583 s->sent_nacks, s->sent_acks, s->retransmitted);
2584
2585 ret += tipc_snprintf(buf + ret, buf_size - ret,
Ying Xue3c294cb2012-11-15 11:34:45 +08002586 " Congestion link:%u Send queue"
2587 " max:%u avg:%u\n", s->link_congs,
Erik Hugnedc1aed32012-06-29 00:50:23 -04002588 s->max_queue_sz, s->queue_sz_counts ?
2589 (s->accu_queue_sz / s->queue_sz_counts) : 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002590
Per Liden4323add2006-01-18 00:38:21 +01002591 tipc_node_unlock(node);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002592 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002593}
2594
Per Liden4323add2006-01-18 00:38:21 +01002595struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002596{
2597 struct sk_buff *buf;
2598 struct tlv_desc *rep_tlv;
2599 int str_len;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002600 int pb_len;
2601 char *pb;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002602
2603 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002604 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002605
Erik Hugnedc1aed32012-06-29 00:50:23 -04002606 buf = tipc_cfg_reply_alloc(TLV_SPACE(ULTRA_STRING_MAX_LEN));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002607 if (!buf)
2608 return NULL;
2609
2610 rep_tlv = (struct tlv_desc *)buf->data;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002611 pb = TLV_DATA(rep_tlv);
2612 pb_len = ULTRA_STRING_MAX_LEN;
Per Liden4323add2006-01-18 00:38:21 +01002613 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
Erik Hugnedc1aed32012-06-29 00:50:23 -04002614 pb, pb_len);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002615 if (!str_len) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002616 kfree_skb(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002617 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002618 }
Erik Hugnedc1aed32012-06-29 00:50:23 -04002619 str_len += 1; /* for "\0" */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002620 skb_put(buf, TLV_SPACE(str_len));
2621 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
2622
2623 return buf;
2624}
2625
Per Lidenb97bf3f2006-01-02 19:04:38 +01002626/**
Per Liden4323add2006-01-18 00:38:21 +01002627 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
Per Lidenb97bf3f2006-01-02 19:04:38 +01002628 * @dest: network address of destination node
2629 * @selector: used to select from set of active links
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002630 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002631 * If no active link can be found, uses default maximum packet size.
2632 */
Per Liden4323add2006-01-18 00:38:21 +01002633u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002634{
David S. Miller6c000552008-09-02 23:38:32 -07002635 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002636 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002637 u32 res = MAX_PKT_DEFAULT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002638
Per Lidenb97bf3f2006-01-02 19:04:38 +01002639 if (dest == tipc_own_addr)
2640 return MAX_MSG_SIZE;
2641
Allan Stephens51a8e4d2010-12-31 18:59:18 +00002642 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002643 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002644 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002645 l_ptr = n_ptr->active_links[selector & 1];
2646 if (l_ptr)
Allan Stephens15e979d2010-05-11 14:30:10 +00002647 res = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01002648 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002649 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002650 return res;
2651}
2652
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002653static void link_print(struct tipc_link *l_ptr, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002654{
Ying Xue7a2f7d12014-04-21 10:55:46 +08002655 struct tipc_bearer *b_ptr;
2656
2657 rcu_read_lock();
2658 b_ptr = rcu_dereference_rtnl(bearer_list[l_ptr->bearer_id]);
2659 if (b_ptr)
2660 pr_info("%s Link %x<%s>:", str, l_ptr->addr, b_ptr->name);
2661 rcu_read_unlock();
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002662
Per Lidenb97bf3f2006-01-02 19:04:38 +01002663 if (link_working_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002664 pr_cont(":WU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002665 else if (link_reset_reset(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002666 pr_cont(":RR\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002667 else if (link_reset_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002668 pr_cont(":RU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002669 else if (link_working_working(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002670 pr_cont(":WW\n");
2671 else
2672 pr_cont("\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002673}