blob: a63646e6c2cf05eb620e914577ae299fa59cd436 [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/link.c: TIPC link code
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Jon Maloyc64f7a62012-11-16 13:51:31 +08004 * Copyright (c) 1996-2007, 2012, Ericsson AB
Ying Xue198d73b2013-06-17 10:54:42 -04005 * Copyright (c) 2004-2007, 2010-2013, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010038#include "link.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039#include "port.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "name_distr.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010041#include "discover.h"
42#include "config.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010043
Ying Xue796c75d2013-06-17 10:54:48 -040044#include <linux/pkt_sched.h>
45
Erik Hugne2cf8aa12012-06-29 00:16:37 -040046/*
47 * Error message prefixes
48 */
49static const char *link_co_err = "Link changeover error, ";
50static const char *link_rst_msg = "Resetting link ";
51static const char *link_unk_evt = "Unknown link event ";
Per Lidenb97bf3f2006-01-02 19:04:38 +010052
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090053/*
Allan Stephensa686e682008-06-04 17:29:39 -070054 * Out-of-range value for link session numbers
55 */
Allan Stephensa686e682008-06-04 17:29:39 -070056#define INVALID_SESSION 0x10000
57
58/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090059 * Link state events:
Per Lidenb97bf3f2006-01-02 19:04:38 +010060 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010061#define STARTING_EVT 856384768 /* link processing trigger */
62#define TRAFFIC_MSG_EVT 560815u /* rx'd ??? */
63#define TIMEOUT_EVT 560817u /* link timer expired */
64
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090065/*
66 * The following two 'message types' is really just implementation
67 * data conveniently stored in the message header.
Per Lidenb97bf3f2006-01-02 19:04:38 +010068 * They must not be considered part of the protocol
69 */
70#define OPEN_MSG 0
71#define CLOSED_MSG 1
72
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090073/*
Per Lidenb97bf3f2006-01-02 19:04:38 +010074 * State value stored in 'exp_msg_count'
75 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010076#define START_CHANGEOVER 100000u
77
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050078static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +010079 struct sk_buff *buf);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050080static void link_recv_proto_msg(struct tipc_link *l_ptr, struct sk_buff *buf);
81static int link_recv_changeover_msg(struct tipc_link **l_ptr,
82 struct sk_buff **buf);
83static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance);
Allan Stephens23dd4cc2011-01-07 11:43:40 -050084static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +010085 struct iovec const *msg_sect,
Ying Xue9446b872013-10-18 07:23:15 +020086 unsigned int len, u32 destnode);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050087static void link_state_event(struct tipc_link *l_ptr, u32 event);
88static void link_reset_statistics(struct tipc_link *l_ptr);
89static void link_print(struct tipc_link *l_ptr, const char *str);
90static void link_start(struct tipc_link *l_ptr);
91static int link_send_long_buf(struct tipc_link *l_ptr, struct sk_buff *buf);
Jon Maloyc64f7a62012-11-16 13:51:31 +080092static void tipc_link_send_sync(struct tipc_link *l);
93static void tipc_link_recv_sync(struct tipc_node *n, struct sk_buff *buf);
stephen hemminger31e3c3f2010-10-13 13:20:35 +000094
Per Lidenb97bf3f2006-01-02 19:04:38 +010095/*
Sam Ravnborg05790c62006-03-20 22:37:04 -080096 * Simple link routines
Per Lidenb97bf3f2006-01-02 19:04:38 +010097 */
Sam Ravnborg05790c62006-03-20 22:37:04 -080098static unsigned int align(unsigned int i)
Per Lidenb97bf3f2006-01-02 19:04:38 +010099{
100 return (i + 3) & ~3u;
101}
102
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500103static void link_init_max_pkt(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100104{
105 u32 max_pkt;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900106
Allan Stephens2d627b92011-01-07 13:00:11 -0500107 max_pkt = (l_ptr->b_ptr->mtu & ~3);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100108 if (max_pkt > MAX_MSG_SIZE)
109 max_pkt = MAX_MSG_SIZE;
110
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900111 l_ptr->max_pkt_target = max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100112 if (l_ptr->max_pkt_target < MAX_PKT_DEFAULT)
113 l_ptr->max_pkt = l_ptr->max_pkt_target;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900114 else
Per Lidenb97bf3f2006-01-02 19:04:38 +0100115 l_ptr->max_pkt = MAX_PKT_DEFAULT;
116
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900117 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100118}
119
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500120static u32 link_next_sent(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100121{
122 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -0400123 return buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100124 return mod(l_ptr->next_out_no);
125}
126
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500127static u32 link_last_sent(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100128{
129 return mod(link_next_sent(l_ptr) - 1);
130}
131
132/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800133 * Simple non-static link routines (i.e. referenced outside this file)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100134 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500135int tipc_link_is_up(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100136{
137 if (!l_ptr)
138 return 0;
Eric Dumazeta02cec22010-09-22 20:43:57 +0000139 return link_working_working(l_ptr) || link_working_unknown(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100140}
141
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500142int tipc_link_is_active(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100143{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000144 return (l_ptr->owner->active_links[0] == l_ptr) ||
145 (l_ptr->owner->active_links[1] == l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100146}
147
148/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100149 * link_timeout - handle expiration of link timer
150 * @l_ptr: pointer to link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900151 *
Per Liden4323add2006-01-18 00:38:21 +0100152 * This routine must not grab "tipc_net_lock" to avoid a potential deadlock conflict
153 * with tipc_link_delete(). (There is no risk that the node will be deleted by
154 * another thread because tipc_link_delete() always cancels the link timer before
155 * tipc_node_delete() is called.)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100156 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500157static void link_timeout(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100158{
Per Liden4323add2006-01-18 00:38:21 +0100159 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100160
161 /* update counters used in statistical profiling of send traffic */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100162 l_ptr->stats.accu_queue_sz += l_ptr->out_queue_size;
163 l_ptr->stats.queue_sz_counts++;
164
Per Lidenb97bf3f2006-01-02 19:04:38 +0100165 if (l_ptr->first_out) {
166 struct tipc_msg *msg = buf_msg(l_ptr->first_out);
167 u32 length = msg_size(msg);
168
Joe Perchesf64f9e72009-11-29 16:55:45 -0800169 if ((msg_user(msg) == MSG_FRAGMENTER) &&
170 (msg_type(msg) == FIRST_FRAGMENT)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100171 length = msg_size(msg_get_wrapped(msg));
172 }
173 if (length) {
174 l_ptr->stats.msg_lengths_total += length;
175 l_ptr->stats.msg_length_counts++;
176 if (length <= 64)
177 l_ptr->stats.msg_length_profile[0]++;
178 else if (length <= 256)
179 l_ptr->stats.msg_length_profile[1]++;
180 else if (length <= 1024)
181 l_ptr->stats.msg_length_profile[2]++;
182 else if (length <= 4096)
183 l_ptr->stats.msg_length_profile[3]++;
184 else if (length <= 16384)
185 l_ptr->stats.msg_length_profile[4]++;
186 else if (length <= 32768)
187 l_ptr->stats.msg_length_profile[5]++;
188 else
189 l_ptr->stats.msg_length_profile[6]++;
190 }
191 }
192
193 /* do all other link processing performed on a periodic basis */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100194
195 link_state_event(l_ptr, TIMEOUT_EVT);
196
197 if (l_ptr->next_out)
Per Liden4323add2006-01-18 00:38:21 +0100198 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100199
Per Liden4323add2006-01-18 00:38:21 +0100200 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100201}
202
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500203static void link_set_timer(struct tipc_link *l_ptr, u32 time)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100204{
205 k_start_timer(&l_ptr->timer, time);
206}
207
208/**
Per Liden4323add2006-01-18 00:38:21 +0100209 * tipc_link_create - create a new link
Allan Stephens37b9c082011-02-28 11:32:27 -0500210 * @n_ptr: pointer to associated node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100211 * @b_ptr: pointer to associated bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100212 * @media_addr: media address to use when sending messages over link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900213 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100214 * Returns pointer to link.
215 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500216struct tipc_link *tipc_link_create(struct tipc_node *n_ptr,
Allan Stephens37b9c082011-02-28 11:32:27 -0500217 struct tipc_bearer *b_ptr,
Per Liden4323add2006-01-18 00:38:21 +0100218 const struct tipc_media_addr *media_addr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100219{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500220 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100221 struct tipc_msg *msg;
222 char *if_name;
Allan Stephens37b9c082011-02-28 11:32:27 -0500223 char addr_string[16];
224 u32 peer = n_ptr->addr;
225
226 if (n_ptr->link_cnt >= 2) {
227 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400228 pr_err("Attempt to establish third link to %s\n", addr_string);
Allan Stephens37b9c082011-02-28 11:32:27 -0500229 return NULL;
230 }
231
232 if (n_ptr->links[b_ptr->identity]) {
233 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400234 pr_err("Attempt to establish second link on <%s> to %s\n",
235 b_ptr->name, addr_string);
Allan Stephens37b9c082011-02-28 11:32:27 -0500236 return NULL;
237 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100238
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700239 l_ptr = kzalloc(sizeof(*l_ptr), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100240 if (!l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400241 pr_warn("Link creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100242 return NULL;
243 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100244
245 l_ptr->addr = peer;
Allan Stephens2d627b92011-01-07 13:00:11 -0500246 if_name = strchr(b_ptr->name, ':') + 1;
Allan Stephens062b4c92011-04-07 09:28:47 -0400247 sprintf(l_ptr->name, "%u.%u.%u:%s-%u.%u.%u:unknown",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100248 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900249 tipc_node(tipc_own_addr),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100250 if_name,
251 tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
Allan Stephens062b4c92011-04-07 09:28:47 -0400252 /* note: peer i/f name is updated by reset/activate message */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100253 memcpy(&l_ptr->media_addr, media_addr, sizeof(*media_addr));
Allan Stephens37b9c082011-02-28 11:32:27 -0500254 l_ptr->owner = n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100255 l_ptr->checkpoint = 1;
Allan Stephensf882cb72011-04-07 09:43:27 -0400256 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100257 l_ptr->b_ptr = b_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -0400258 link_set_supervision_props(l_ptr, b_ptr->tolerance);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100259 l_ptr->state = RESET_UNKNOWN;
260
261 l_ptr->pmsg = (struct tipc_msg *)&l_ptr->proto_msg;
262 msg = l_ptr->pmsg;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000263 tipc_msg_init(msg, LINK_PROTOCOL, RESET_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100264 msg_set_size(msg, sizeof(l_ptr->proto_msg));
Allan Stephensa686e682008-06-04 17:29:39 -0700265 msg_set_session(msg, (tipc_random & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100266 msg_set_bearer_id(msg, b_ptr->identity);
267 strcpy((char *)msg_data(msg), if_name);
268
269 l_ptr->priority = b_ptr->priority;
Allan Stephens5c216e12011-10-18 11:34:29 -0400270 tipc_link_set_queue_limits(l_ptr, b_ptr->window);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100271
272 link_init_max_pkt(l_ptr);
273
274 l_ptr->next_out_no = 1;
275 INIT_LIST_HEAD(&l_ptr->waiting_ports);
276
277 link_reset_statistics(l_ptr);
278
Allan Stephens37b9c082011-02-28 11:32:27 -0500279 tipc_node_attach_link(n_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100280
Florian Westphal945710652007-07-26 00:05:07 -0700281 k_init_timer(&l_ptr->timer, (Handler)link_timeout, (unsigned long)l_ptr);
282 list_add_tail(&l_ptr->link_list, &b_ptr->links);
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000283 tipc_k_signal((Handler)link_start, (unsigned long)l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100284
Per Lidenb97bf3f2006-01-02 19:04:38 +0100285 return l_ptr;
286}
287
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900288/**
Per Liden4323add2006-01-18 00:38:21 +0100289 * tipc_link_delete - delete a link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100290 * @l_ptr: pointer to link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900291 *
Per Liden4323add2006-01-18 00:38:21 +0100292 * Note: 'tipc_net_lock' is write_locked, bearer is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100293 * This routine must not grab the node lock until after link timer cancellation
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900294 * to avoid a potential deadlock situation.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100295 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500296void tipc_link_delete(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100297{
298 if (!l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400299 pr_err("Attempt to delete non-existent link\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100300 return;
301 }
302
Per Lidenb97bf3f2006-01-02 19:04:38 +0100303 k_cancel_timer(&l_ptr->timer);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900304
Per Liden4323add2006-01-18 00:38:21 +0100305 tipc_node_lock(l_ptr->owner);
306 tipc_link_reset(l_ptr);
307 tipc_node_detach_link(l_ptr->owner, l_ptr);
308 tipc_link_stop(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100309 list_del_init(&l_ptr->link_list);
Per Liden4323add2006-01-18 00:38:21 +0100310 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100311 k_term_timer(&l_ptr->timer);
312 kfree(l_ptr);
313}
314
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500315static void link_start(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100316{
Allan Stephens214dda42011-01-24 16:22:43 -0500317 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100318 link_state_event(l_ptr, STARTING_EVT);
Allan Stephens214dda42011-01-24 16:22:43 -0500319 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100320}
321
322/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900323 * link_schedule_port - schedule port for deferred sending
Per Lidenb97bf3f2006-01-02 19:04:38 +0100324 * @l_ptr: pointer to link
325 * @origport: reference to sending port
326 * @sz: amount of data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900327 *
328 * Schedules port for renewed sending of messages after link congestion
Per Lidenb97bf3f2006-01-02 19:04:38 +0100329 * has abated.
330 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500331static int link_schedule_port(struct tipc_link *l_ptr, u32 origport, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100332{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500333 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100334
Per Liden4323add2006-01-18 00:38:21 +0100335 spin_lock_bh(&tipc_port_list_lock);
336 p_ptr = tipc_port_lock(origport);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100337 if (p_ptr) {
338 if (!p_ptr->wakeup)
339 goto exit;
340 if (!list_empty(&p_ptr->wait_list))
341 goto exit;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500342 p_ptr->congested = 1;
Allan Stephens15e979d2010-05-11 14:30:10 +0000343 p_ptr->waiting_pkts = 1 + ((sz - 1) / l_ptr->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100344 list_add_tail(&p_ptr->wait_list, &l_ptr->waiting_ports);
345 l_ptr->stats.link_congs++;
346exit:
Per Liden4323add2006-01-18 00:38:21 +0100347 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100348 }
Per Liden4323add2006-01-18 00:38:21 +0100349 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100350 return -ELINKCONG;
351}
352
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500353void tipc_link_wakeup_ports(struct tipc_link *l_ptr, int all)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100354{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500355 struct tipc_port *p_ptr;
356 struct tipc_port *temp_p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100357 int win = l_ptr->queue_limit[0] - l_ptr->out_queue_size;
358
359 if (all)
360 win = 100000;
361 if (win <= 0)
362 return;
Per Liden4323add2006-01-18 00:38:21 +0100363 if (!spin_trylock_bh(&tipc_port_list_lock))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100364 return;
365 if (link_congested(l_ptr))
366 goto exit;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900367 list_for_each_entry_safe(p_ptr, temp_p_ptr, &l_ptr->waiting_ports,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100368 wait_list) {
369 if (win <= 0)
370 break;
371 list_del_init(&p_ptr->wait_list);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500372 spin_lock_bh(p_ptr->lock);
373 p_ptr->congested = 0;
374 p_ptr->wakeup(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100375 win -= p_ptr->waiting_pkts;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500376 spin_unlock_bh(p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100377 }
378
379exit:
Per Liden4323add2006-01-18 00:38:21 +0100380 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100381}
382
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900383/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100384 * link_release_outqueue - purge link's outbound message queue
385 * @l_ptr: pointer to link
386 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500387static void link_release_outqueue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100388{
389 struct sk_buff *buf = l_ptr->first_out;
390 struct sk_buff *next;
391
392 while (buf) {
393 next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400394 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100395 buf = next;
396 }
397 l_ptr->first_out = NULL;
398 l_ptr->out_queue_size = 0;
399}
400
401/**
Per Liden4323add2006-01-18 00:38:21 +0100402 * tipc_link_reset_fragments - purge link's inbound message fragments queue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100403 * @l_ptr: pointer to link
404 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500405void tipc_link_reset_fragments(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100406{
Erik Hugne40ba3cd2013-11-06 09:28:06 +0100407 kfree_skb(l_ptr->reasm_head);
408 l_ptr->reasm_head = NULL;
409 l_ptr->reasm_tail = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100410}
411
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900412/**
Per Liden4323add2006-01-18 00:38:21 +0100413 * tipc_link_stop - purge all inbound and outbound messages associated with link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100414 * @l_ptr: pointer to link
415 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500416void tipc_link_stop(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100417{
418 struct sk_buff *buf;
419 struct sk_buff *next;
420
421 buf = l_ptr->oldest_deferred_in;
422 while (buf) {
423 next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400424 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100425 buf = next;
426 }
427
428 buf = l_ptr->first_out;
429 while (buf) {
430 next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400431 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100432 buf = next;
433 }
434
Per Liden4323add2006-01-18 00:38:21 +0100435 tipc_link_reset_fragments(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100436
Allan Stephens5f6d9122011-11-04 13:24:29 -0400437 kfree_skb(l_ptr->proto_msg_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100438 l_ptr->proto_msg_queue = NULL;
439}
440
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500441void tipc_link_reset(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100442{
443 struct sk_buff *buf;
444 u32 prev_state = l_ptr->state;
445 u32 checkpoint = l_ptr->next_in_no;
Allan Stephens5392d642006-06-25 23:52:50 -0700446 int was_active_link = tipc_link_is_active(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900447
Allan Stephensa686e682008-06-04 17:29:39 -0700448 msg_set_session(l_ptr->pmsg, ((msg_session(l_ptr->pmsg) + 1) & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100449
Allan Stephensa686e682008-06-04 17:29:39 -0700450 /* Link is down, accept any session */
451 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100452
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900453 /* Prepare for max packet size negotiation */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100454 link_init_max_pkt(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900455
Per Lidenb97bf3f2006-01-02 19:04:38 +0100456 l_ptr->state = RESET_UNKNOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100457
458 if ((prev_state == RESET_UNKNOWN) || (prev_state == RESET_RESET))
459 return;
460
Per Liden4323add2006-01-18 00:38:21 +0100461 tipc_node_link_down(l_ptr->owner, l_ptr);
462 tipc_bearer_remove_dest(l_ptr->b_ptr, l_ptr->addr);
Paul Gortmaker7368ddf2010-10-12 14:25:58 +0000463
Paul Gortmaker8f19afb2011-02-28 11:36:21 -0400464 if (was_active_link && tipc_node_active_links(l_ptr->owner) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100465 l_ptr->owner->permit_changeover) {
466 l_ptr->reset_checkpoint = checkpoint;
467 l_ptr->exp_msg_count = START_CHANGEOVER;
468 }
469
470 /* Clean up all queues: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100471 link_release_outqueue(l_ptr);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400472 kfree_skb(l_ptr->proto_msg_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100473 l_ptr->proto_msg_queue = NULL;
474 buf = l_ptr->oldest_deferred_in;
475 while (buf) {
476 struct sk_buff *next = buf->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -0400477 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100478 buf = next;
479 }
480 if (!list_empty(&l_ptr->waiting_ports))
Per Liden4323add2006-01-18 00:38:21 +0100481 tipc_link_wakeup_ports(l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100482
483 l_ptr->retransm_queue_head = 0;
484 l_ptr->retransm_queue_size = 0;
485 l_ptr->last_out = NULL;
486 l_ptr->first_out = NULL;
487 l_ptr->next_out = NULL;
488 l_ptr->unacked_window = 0;
489 l_ptr->checkpoint = 1;
490 l_ptr->next_out_no = 1;
491 l_ptr->deferred_inqueue_sz = 0;
492 l_ptr->oldest_deferred_in = NULL;
493 l_ptr->newest_deferred_in = NULL;
494 l_ptr->fsm_msg_cnt = 0;
495 l_ptr->stale_count = 0;
496 link_reset_statistics(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100497}
498
499
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500500static void link_activate(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100501{
Allan Stephens5392d642006-06-25 23:52:50 -0700502 l_ptr->next_in_no = l_ptr->stats.recv_info = 1;
Per Liden4323add2006-01-18 00:38:21 +0100503 tipc_node_link_up(l_ptr->owner, l_ptr);
504 tipc_bearer_add_dest(l_ptr->b_ptr, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100505}
506
507/**
508 * link_state_event - link finite state machine
509 * @l_ptr: pointer to link
510 * @event: state machine event to process
511 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000512static void link_state_event(struct tipc_link *l_ptr, unsigned int event)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100513{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500514 struct tipc_link *other;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100515 u32 cont_intv = l_ptr->continuity_interval;
516
517 if (!l_ptr->started && (event != STARTING_EVT))
518 return; /* Not yet. */
519
520 if (link_blocked(l_ptr)) {
Allan Stephensa0168922010-12-31 18:59:35 +0000521 if (event == TIMEOUT_EVT)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100522 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100523 return; /* Changeover going on */
524 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100525
526 switch (l_ptr->state) {
527 case WORKING_WORKING:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100528 switch (event) {
529 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100530 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100531 break;
532 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100533 if (l_ptr->next_in_no != l_ptr->checkpoint) {
534 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100535 if (tipc_bclink_acks_missing(l_ptr->owner)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900536 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100537 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100538 l_ptr->fsm_msg_cnt++;
539 } else if (l_ptr->max_pkt < l_ptr->max_pkt_target) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900540 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100541 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100542 l_ptr->fsm_msg_cnt++;
543 }
544 link_set_timer(l_ptr, cont_intv);
545 break;
546 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100547 l_ptr->state = WORKING_UNKNOWN;
548 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100549 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100550 l_ptr->fsm_msg_cnt++;
551 link_set_timer(l_ptr, cont_intv / 4);
552 break;
553 case RESET_MSG:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400554 pr_info("%s<%s>, requested by peer\n", link_rst_msg,
555 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100556 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100557 l_ptr->state = RESET_RESET;
558 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100559 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100560 l_ptr->fsm_msg_cnt++;
561 link_set_timer(l_ptr, cont_intv);
562 break;
563 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400564 pr_err("%s%u in WW state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100565 }
566 break;
567 case WORKING_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100568 switch (event) {
569 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100570 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100571 l_ptr->state = WORKING_WORKING;
572 l_ptr->fsm_msg_cnt = 0;
573 link_set_timer(l_ptr, cont_intv);
574 break;
575 case RESET_MSG:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400576 pr_info("%s<%s>, requested by peer while probing\n",
577 link_rst_msg, l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100578 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100579 l_ptr->state = RESET_RESET;
580 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100581 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100582 l_ptr->fsm_msg_cnt++;
583 link_set_timer(l_ptr, cont_intv);
584 break;
585 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100586 if (l_ptr->next_in_no != l_ptr->checkpoint) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100587 l_ptr->state = WORKING_WORKING;
588 l_ptr->fsm_msg_cnt = 0;
589 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100590 if (tipc_bclink_acks_missing(l_ptr->owner)) {
591 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
592 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100593 l_ptr->fsm_msg_cnt++;
594 }
595 link_set_timer(l_ptr, cont_intv);
596 } else if (l_ptr->fsm_msg_cnt < l_ptr->abort_limit) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900597 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100598 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100599 l_ptr->fsm_msg_cnt++;
600 link_set_timer(l_ptr, cont_intv / 4);
601 } else { /* Link has failed */
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400602 pr_warn("%s<%s>, peer not responding\n",
603 link_rst_msg, l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100604 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100605 l_ptr->state = RESET_UNKNOWN;
606 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100607 tipc_link_send_proto_msg(l_ptr, RESET_MSG,
608 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100609 l_ptr->fsm_msg_cnt++;
610 link_set_timer(l_ptr, cont_intv);
611 }
612 break;
613 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400614 pr_err("%s%u in WU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100615 }
616 break;
617 case RESET_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100618 switch (event) {
619 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100620 break;
621 case ACTIVATE_MSG:
622 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000623 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100624 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100625 l_ptr->state = WORKING_WORKING;
626 l_ptr->fsm_msg_cnt = 0;
627 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100628 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100629 l_ptr->fsm_msg_cnt++;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800630 if (l_ptr->owner->working_links == 1)
631 tipc_link_send_sync(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100632 link_set_timer(l_ptr, cont_intv);
633 break;
634 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100635 l_ptr->state = RESET_RESET;
636 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100637 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100638 l_ptr->fsm_msg_cnt++;
639 link_set_timer(l_ptr, cont_intv);
640 break;
641 case STARTING_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100642 l_ptr->started = 1;
643 /* fall through */
644 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100645 tipc_link_send_proto_msg(l_ptr, RESET_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100646 l_ptr->fsm_msg_cnt++;
647 link_set_timer(l_ptr, cont_intv);
648 break;
649 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400650 pr_err("%s%u in RU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100651 }
652 break;
653 case RESET_RESET:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100654 switch (event) {
655 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100656 case ACTIVATE_MSG:
657 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000658 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100659 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100660 l_ptr->state = WORKING_WORKING;
661 l_ptr->fsm_msg_cnt = 0;
662 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100663 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100664 l_ptr->fsm_msg_cnt++;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800665 if (l_ptr->owner->working_links == 1)
666 tipc_link_send_sync(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100667 link_set_timer(l_ptr, cont_intv);
668 break;
669 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100670 break;
671 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100672 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100673 l_ptr->fsm_msg_cnt++;
674 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100675 break;
676 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400677 pr_err("%s%u in RR state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100678 }
679 break;
680 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400681 pr_err("Unknown link state %u/%u\n", l_ptr->state, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100682 }
683}
684
685/*
686 * link_bundle_buf(): Append contents of a buffer to
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900687 * the tail of an existing one.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100688 */
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400689static int link_bundle_buf(struct tipc_link *l_ptr, struct sk_buff *bundler,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100690 struct sk_buff *buf)
691{
692 struct tipc_msg *bundler_msg = buf_msg(bundler);
693 struct tipc_msg *msg = buf_msg(buf);
694 u32 size = msg_size(msg);
Allan Stephense49060c2006-06-29 12:32:46 -0700695 u32 bundle_size = msg_size(bundler_msg);
696 u32 to_pos = align(bundle_size);
697 u32 pad = to_pos - bundle_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100698
699 if (msg_user(bundler_msg) != MSG_BUNDLER)
700 return 0;
701 if (msg_type(bundler_msg) != OPEN_MSG)
702 return 0;
Allan Stephense49060c2006-06-29 12:32:46 -0700703 if (skb_tailroom(bundler) < (pad + size))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100704 return 0;
Allan Stephens15e979d2010-05-11 14:30:10 +0000705 if (l_ptr->max_pkt < (to_pos + size))
Allan Stephens863fae62006-07-03 19:39:36 -0700706 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100707
Allan Stephense49060c2006-06-29 12:32:46 -0700708 skb_put(bundler, pad + size);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300709 skb_copy_to_linear_data_offset(bundler, to_pos, buf->data, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100710 msg_set_size(bundler_msg, to_pos + size);
711 msg_set_msgcnt(bundler_msg, msg_msgcnt(bundler_msg) + 1);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400712 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100713 l_ptr->stats.sent_bundled++;
714 return 1;
715}
716
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500717static void link_add_to_outqueue(struct tipc_link *l_ptr,
Sam Ravnborg05790c62006-03-20 22:37:04 -0800718 struct sk_buff *buf,
719 struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100720{
721 u32 ack = mod(l_ptr->next_in_no - 1);
722 u32 seqno = mod(l_ptr->next_out_no++);
723
724 msg_set_word(msg, 2, ((ack << 16) | seqno));
725 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
726 buf->next = NULL;
727 if (l_ptr->first_out) {
728 l_ptr->last_out->next = buf;
729 l_ptr->last_out = buf;
730 } else
731 l_ptr->first_out = l_ptr->last_out = buf;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500732
Per Lidenb97bf3f2006-01-02 19:04:38 +0100733 l_ptr->out_queue_size++;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500734 if (l_ptr->out_queue_size > l_ptr->stats.max_queue_sz)
735 l_ptr->stats.max_queue_sz = l_ptr->out_queue_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100736}
737
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500738static void link_add_chain_to_outqueue(struct tipc_link *l_ptr,
Allan Stephensdc63d912011-04-21 11:50:42 -0400739 struct sk_buff *buf_chain,
740 u32 long_msgno)
741{
742 struct sk_buff *buf;
743 struct tipc_msg *msg;
744
745 if (!l_ptr->next_out)
746 l_ptr->next_out = buf_chain;
747 while (buf_chain) {
748 buf = buf_chain;
749 buf_chain = buf_chain->next;
750
751 msg = buf_msg(buf);
752 msg_set_long_msgno(msg, long_msgno);
753 link_add_to_outqueue(l_ptr, buf, msg);
754 }
755}
756
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900757/*
758 * tipc_link_send_buf() is the 'full path' for messages, called from
Per Lidenb97bf3f2006-01-02 19:04:38 +0100759 * inside TIPC when the 'fast path' in tipc_send_buf
760 * has failed, and from link_send()
761 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500762int tipc_link_send_buf(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100763{
764 struct tipc_msg *msg = buf_msg(buf);
765 u32 size = msg_size(msg);
766 u32 dsz = msg_data_sz(msg);
767 u32 queue_size = l_ptr->out_queue_size;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000768 u32 imp = tipc_msg_tot_importance(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100769 u32 queue_limit = l_ptr->queue_limit[imp];
Allan Stephens15e979d2010-05-11 14:30:10 +0000770 u32 max_packet = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100771
Per Lidenb97bf3f2006-01-02 19:04:38 +0100772 /* Match msg importance against queue limits: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100773 if (unlikely(queue_size >= queue_limit)) {
774 if (imp <= TIPC_CRITICAL_IMPORTANCE) {
Allan Stephensbebc55a2011-04-19 10:17:58 -0400775 link_schedule_port(l_ptr, msg_origport(msg), size);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400776 kfree_skb(buf);
Allan Stephensbebc55a2011-04-19 10:17:58 -0400777 return -ELINKCONG;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100778 }
Allan Stephens5f6d9122011-11-04 13:24:29 -0400779 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100780 if (imp > CONN_MANAGER) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400781 pr_warn("%s<%s>, send queue full", link_rst_msg,
782 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100783 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100784 }
785 return dsz;
786 }
787
788 /* Fragmentation needed ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100789 if (size > max_packet)
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000790 return link_send_long_buf(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100791
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400792 /* Packet can be queued or sent. */
Ying Xue3c294cb2012-11-15 11:34:45 +0800793 if (likely(!tipc_bearer_blocked(l_ptr->b_ptr) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100794 !link_congested(l_ptr))) {
795 link_add_to_outqueue(l_ptr, buf, msg);
796
Ying Xue3c294cb2012-11-15 11:34:45 +0800797 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
798 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100799 return dsz;
800 }
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400801 /* Congestion: can message be bundled ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100802 if ((msg_user(msg) != CHANGEOVER_PROTOCOL) &&
803 (msg_user(msg) != MSG_FRAGMENTER)) {
804
805 /* Try adding message to an existing bundle */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900806 if (l_ptr->next_out &&
Ying Xue3c294cb2012-11-15 11:34:45 +0800807 link_bundle_buf(l_ptr, l_ptr->last_out, buf))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100808 return dsz;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100809
810 /* Try creating a new bundle */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100811 if (size <= max_packet * 2 / 3) {
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000812 struct sk_buff *bundler = tipc_buf_acquire(max_packet);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100813 struct tipc_msg bundler_hdr;
814
815 if (bundler) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000816 tipc_msg_init(&bundler_hdr, MSG_BUNDLER, OPEN_MSG,
Allan Stephens75715212008-06-04 17:37:34 -0700817 INT_H_SIZE, l_ptr->addr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300818 skb_copy_to_linear_data(bundler, &bundler_hdr,
819 INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100820 skb_trim(bundler, INT_H_SIZE);
821 link_bundle_buf(l_ptr, bundler, buf);
822 buf = bundler;
823 msg = buf_msg(buf);
824 l_ptr->stats.sent_bundles++;
825 }
826 }
827 }
828 if (!l_ptr->next_out)
829 l_ptr->next_out = buf;
830 link_add_to_outqueue(l_ptr, buf, msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100831 return dsz;
832}
833
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900834/*
835 * tipc_link_send(): same as tipc_link_send_buf(), but the link to use has
Per Lidenb97bf3f2006-01-02 19:04:38 +0100836 * not been selected yet, and the the owner node is not locked
837 * Called by TIPC internal users, e.g. the name distributor
838 */
Per Liden4323add2006-01-18 00:38:21 +0100839int tipc_link_send(struct sk_buff *buf, u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100840{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500841 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700842 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100843 int res = -ELINKCONG;
844
Per Liden4323add2006-01-18 00:38:21 +0100845 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000846 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100847 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +0100848 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100849 l_ptr = n_ptr->active_links[selector & 1];
Allan Stephensa0168922010-12-31 18:59:35 +0000850 if (l_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100851 res = tipc_link_send_buf(l_ptr, buf);
Allan Stephensa0168922010-12-31 18:59:35 +0000852 else
Allan Stephens5f6d9122011-11-04 13:24:29 -0400853 kfree_skb(buf);
Per Liden4323add2006-01-18 00:38:21 +0100854 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100855 } else {
Allan Stephens5f6d9122011-11-04 13:24:29 -0400856 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100857 }
Per Liden4323add2006-01-18 00:38:21 +0100858 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100859 return res;
860}
861
Jon Maloyc64f7a62012-11-16 13:51:31 +0800862/*
863 * tipc_link_send_sync - synchronize broadcast link endpoints.
864 *
865 * Give a newly added peer node the sequence number where it should
866 * start receiving and acking broadcast packets.
867 *
868 * Called with node locked
869 */
870static void tipc_link_send_sync(struct tipc_link *l)
871{
872 struct sk_buff *buf;
873 struct tipc_msg *msg;
874
875 buf = tipc_buf_acquire(INT_H_SIZE);
876 if (!buf)
877 return;
878
879 msg = buf_msg(buf);
880 tipc_msg_init(msg, BCAST_PROTOCOL, STATE_MSG, INT_H_SIZE, l->addr);
881 msg_set_last_bcast(msg, l->owner->bclink.acked);
882 link_add_chain_to_outqueue(l, buf, 0);
883 tipc_link_push_queue(l);
884}
885
886/*
887 * tipc_link_recv_sync - synchronize broadcast link endpoints.
888 * Receive the sequence number where we should start receiving and
889 * acking broadcast packets from a newly added peer node, and open
890 * up for reception of such packets.
891 *
892 * Called with node locked
893 */
894static void tipc_link_recv_sync(struct tipc_node *n, struct sk_buff *buf)
895{
896 struct tipc_msg *msg = buf_msg(buf);
897
898 n->bclink.last_sent = n->bclink.last_in = msg_last_bcast(msg);
899 n->bclink.recv_permitted = true;
900 kfree_skb(buf);
901}
902
903/*
Allan Stephens9aa88c22011-05-31 13:38:02 -0400904 * tipc_link_send_names - send name table entries to new neighbor
905 *
906 * Send routine for bulk delivery of name table messages when contact
907 * with a new neighbor occurs. No link congestion checking is performed
908 * because name table messages *must* be delivered. The messages must be
909 * small enough not to require fragmentation.
910 * Called without any locks held.
911 */
Allan Stephens9aa88c22011-05-31 13:38:02 -0400912void tipc_link_send_names(struct list_head *message_list, u32 dest)
913{
914 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500915 struct tipc_link *l_ptr;
Allan Stephens9aa88c22011-05-31 13:38:02 -0400916 struct sk_buff *buf;
917 struct sk_buff *temp_buf;
918
919 if (list_empty(message_list))
920 return;
921
922 read_lock_bh(&tipc_net_lock);
923 n_ptr = tipc_node_find(dest);
924 if (n_ptr) {
925 tipc_node_lock(n_ptr);
926 l_ptr = n_ptr->active_links[0];
927 if (l_ptr) {
928 /* convert circular list to linear list */
929 ((struct sk_buff *)message_list->prev)->next = NULL;
930 link_add_chain_to_outqueue(l_ptr,
931 (struct sk_buff *)message_list->next, 0);
932 tipc_link_push_queue(l_ptr);
933 INIT_LIST_HEAD(message_list);
934 }
935 tipc_node_unlock(n_ptr);
936 }
937 read_unlock_bh(&tipc_net_lock);
938
939 /* discard the messages if they couldn't be sent */
Allan Stephens9aa88c22011-05-31 13:38:02 -0400940 list_for_each_safe(buf, temp_buf, ((struct sk_buff *)message_list)) {
941 list_del((struct list_head *)buf);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400942 kfree_skb(buf);
Allan Stephens9aa88c22011-05-31 13:38:02 -0400943 }
944}
945
946/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900947 * link_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +0100948 * destination link is known and the header is complete,
949 * inclusive total message length. Very time critical.
950 * Link is locked. Returns user data length.
951 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500952static int link_send_buf_fast(struct tipc_link *l_ptr, struct sk_buff *buf,
Sam Ravnborg05790c62006-03-20 22:37:04 -0800953 u32 *used_max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100954{
955 struct tipc_msg *msg = buf_msg(buf);
956 int res = msg_data_sz(msg);
957
958 if (likely(!link_congested(l_ptr))) {
Allan Stephens15e979d2010-05-11 14:30:10 +0000959 if (likely(msg_size(msg) <= l_ptr->max_pkt)) {
Ying Xue3c294cb2012-11-15 11:34:45 +0800960 if (likely(!tipc_bearer_blocked(l_ptr->b_ptr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100961 link_add_to_outqueue(l_ptr, buf, msg);
Ying Xue3c294cb2012-11-15 11:34:45 +0800962 tipc_bearer_send(l_ptr->b_ptr, buf,
963 &l_ptr->media_addr);
964 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100965 return res;
966 }
Allan Stephens0e659672010-12-31 18:59:32 +0000967 } else
Allan Stephens15e979d2010-05-11 14:30:10 +0000968 *used_max_pkt = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100969 }
Per Liden4323add2006-01-18 00:38:21 +0100970 return tipc_link_send_buf(l_ptr, buf); /* All other cases */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100971}
972
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900973/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900974 * tipc_link_send_sections_fast: Entry for messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +0100975 * destination processor is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900976 * except for total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100977 * Returns user data length or errno.
978 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500979int tipc_link_send_sections_fast(struct tipc_port *sender,
Per Liden4323add2006-01-18 00:38:21 +0100980 struct iovec const *msg_sect,
Ying Xue9446b872013-10-18 07:23:15 +0200981 unsigned int len, u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100982{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500983 struct tipc_msg *hdr = &sender->phdr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500984 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100985 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -0700986 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100987 int res;
988 u32 selector = msg_origport(hdr) & 1;
989
Per Lidenb97bf3f2006-01-02 19:04:38 +0100990again:
991 /*
992 * Try building message using port's max_pkt hint.
993 * (Must not hold any locks while building message.)
994 */
Ying Xue9446b872013-10-18 07:23:15 +0200995 res = tipc_msg_build(hdr, msg_sect, len, sender->max_pkt, &buf);
Ying Xue7410f962013-06-17 10:54:49 -0400996 /* Exit if build request was invalid */
997 if (unlikely(res < 0))
998 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100999
Per Liden4323add2006-01-18 00:38:21 +01001000 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001001 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001002 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001003 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001004 l_ptr = node->active_links[selector];
1005 if (likely(l_ptr)) {
1006 if (likely(buf)) {
1007 res = link_send_buf_fast(l_ptr, buf,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001008 &sender->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001009exit:
Per Liden4323add2006-01-18 00:38:21 +01001010 tipc_node_unlock(node);
1011 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001012 return res;
1013 }
1014
Per Lidenb97bf3f2006-01-02 19:04:38 +01001015 /* Exit if link (or bearer) is congested */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001016 if (link_congested(l_ptr) ||
Ying Xue3c294cb2012-11-15 11:34:45 +08001017 tipc_bearer_blocked(l_ptr->b_ptr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001018 res = link_schedule_port(l_ptr,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001019 sender->ref, res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001020 goto exit;
1021 }
1022
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001023 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001024 * Message size exceeds max_pkt hint; update hint,
1025 * then re-try fast path or fragment the message
1026 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001027 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001028 tipc_node_unlock(node);
1029 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001030
1031
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001032 if ((msg_hdr_sz(hdr) + res) <= sender->max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001033 goto again;
1034
Ying Xue9446b872013-10-18 07:23:15 +02001035 return link_send_sections_long(sender, msg_sect, len,
Allan Stephens26896902011-04-21 10:42:07 -05001036 destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001037 }
Per Liden4323add2006-01-18 00:38:21 +01001038 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001039 }
Per Liden4323add2006-01-18 00:38:21 +01001040 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001041
1042 /* Couldn't find a link to the destination node */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001043 if (buf)
1044 return tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1045 if (res >= 0)
Ying Xue9446b872013-10-18 07:23:15 +02001046 return tipc_port_reject_sections(sender, hdr, msg_sect,
1047 len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001048 return res;
1049}
1050
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001051/*
1052 * link_send_sections_long(): Entry for long messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001053 * destination node is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001054 * inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001055 * Link and bearer congestion status have been checked to be ok,
1056 * and are ignored if they change.
1057 *
1058 * Note that fragments do not use the full link MTU so that they won't have
1059 * to undergo refragmentation if link changeover causes them to be sent
1060 * over another link with an additional tunnel header added as prefix.
1061 * (Refragmentation will still occur if the other link has a smaller MTU.)
1062 *
1063 * Returns user data length or errno.
1064 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001065static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001066 struct iovec const *msg_sect,
Ying Xue9446b872013-10-18 07:23:15 +02001067 unsigned int len, u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001068{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001069 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001070 struct tipc_node *node;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001071 struct tipc_msg *hdr = &sender->phdr;
Ying Xue9446b872013-10-18 07:23:15 +02001072 u32 dsz = len;
Allan Stephens0e659672010-12-31 18:59:32 +00001073 u32 max_pkt, fragm_sz, rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001074 struct tipc_msg fragm_hdr;
Allan Stephens0e659672010-12-31 18:59:32 +00001075 struct sk_buff *buf, *buf_chain, *prev;
1076 u32 fragm_crs, fragm_rest, hsz, sect_rest;
Ying Xue40682432013-10-18 07:23:16 +02001077 const unchar __user *sect_crs;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001078 int curr_sect;
1079 u32 fragm_no;
Ying Xue126c0522013-06-17 10:54:50 -04001080 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001081
1082again:
1083 fragm_no = 1;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001084 max_pkt = sender->max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001085 /* leave room for tunnel header in case of link changeover */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001086 fragm_sz = max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001087 /* leave room for fragmentation header in each fragment */
1088 rest = dsz;
1089 fragm_crs = 0;
1090 fragm_rest = 0;
1091 sect_rest = 0;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001092 sect_crs = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001093 curr_sect = -1;
1094
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001095 /* Prepare reusable fragment header */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001096 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07001097 INT_H_SIZE, msg_destnode(hdr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001098 msg_set_size(&fragm_hdr, max_pkt);
1099 msg_set_fragm_no(&fragm_hdr, 1);
1100
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001101 /* Prepare header of first fragment */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001102 buf_chain = buf = tipc_buf_acquire(max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001103 if (!buf)
1104 return -ENOMEM;
1105 buf->next = NULL;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001106 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001107 hsz = msg_hdr_sz(hdr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001108 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, hdr, hsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001109
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001110 /* Chop up message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001111 fragm_crs = INT_H_SIZE + hsz;
1112 fragm_rest = fragm_sz - hsz;
1113
1114 do { /* For all sections */
1115 u32 sz;
1116
1117 if (!sect_rest) {
1118 sect_rest = msg_sect[++curr_sect].iov_len;
Ying Xue40682432013-10-18 07:23:16 +02001119 sect_crs = msg_sect[curr_sect].iov_base;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001120 }
1121
1122 if (sect_rest < fragm_rest)
1123 sz = sect_rest;
1124 else
1125 sz = fragm_rest;
1126
Ying Xuef1733d72013-06-17 10:54:43 -04001127 if (copy_from_user(buf->data + fragm_crs, sect_crs, sz)) {
Ying Xue126c0522013-06-17 10:54:50 -04001128 res = -EFAULT;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001129error:
Ying Xuef1733d72013-06-17 10:54:43 -04001130 for (; buf_chain; buf_chain = buf) {
1131 buf = buf_chain->next;
1132 kfree_skb(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001133 }
Ying Xue126c0522013-06-17 10:54:50 -04001134 return res;
Ying Xuef1733d72013-06-17 10:54:43 -04001135 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001136 sect_crs += sz;
1137 sect_rest -= sz;
1138 fragm_crs += sz;
1139 fragm_rest -= sz;
1140 rest -= sz;
1141
1142 if (!fragm_rest && rest) {
1143
1144 /* Initiate new fragment: */
1145 if (rest <= fragm_sz) {
1146 fragm_sz = rest;
Allan Stephens0e659672010-12-31 18:59:32 +00001147 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001148 } else {
1149 msg_set_type(&fragm_hdr, FRAGMENT);
1150 }
1151 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
1152 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
1153 prev = buf;
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001154 buf = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Ying Xue126c0522013-06-17 10:54:50 -04001155 if (!buf) {
1156 res = -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001157 goto error;
Ying Xue126c0522013-06-17 10:54:50 -04001158 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001159
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001160 buf->next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001161 prev->next = buf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001162 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001163 fragm_crs = INT_H_SIZE;
1164 fragm_rest = fragm_sz;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001165 }
Allan Stephens0e659672010-12-31 18:59:32 +00001166 } while (rest > 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001167
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001168 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001169 * Now we have a buffer chain. Select a link and check
1170 * that packet size is still OK
1171 */
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001172 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001173 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001174 tipc_node_lock(node);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001175 l_ptr = node->active_links[sender->ref & 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001176 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01001177 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001178 goto reject;
1179 }
Allan Stephens15e979d2010-05-11 14:30:10 +00001180 if (l_ptr->max_pkt < max_pkt) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001181 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001182 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001183 for (; buf_chain; buf_chain = buf) {
1184 buf = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001185 kfree_skb(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001186 }
1187 goto again;
1188 }
1189 } else {
1190reject:
1191 for (; buf_chain; buf_chain = buf) {
1192 buf = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001193 kfree_skb(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001194 }
Ying Xue9446b872013-10-18 07:23:15 +02001195 return tipc_port_reject_sections(sender, hdr, msg_sect,
1196 len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001197 }
1198
Allan Stephensdc63d912011-04-21 11:50:42 -04001199 /* Append chain of fragments to send queue & send them */
Allan Stephense0f08592011-04-17 11:44:24 -04001200 l_ptr->long_msg_seq_no++;
Allan Stephensdc63d912011-04-21 11:50:42 -04001201 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
1202 l_ptr->stats.sent_fragments += fragm_no;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001203 l_ptr->stats.sent_fragmented++;
Per Liden4323add2006-01-18 00:38:21 +01001204 tipc_link_push_queue(l_ptr);
1205 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001206 return dsz;
1207}
1208
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001209/*
Per Liden4323add2006-01-18 00:38:21 +01001210 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +01001211 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001212u32 tipc_link_push_packet(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001213{
1214 struct sk_buff *buf = l_ptr->first_out;
1215 u32 r_q_size = l_ptr->retransm_queue_size;
1216 u32 r_q_head = l_ptr->retransm_queue_head;
1217
1218 /* Step to position where retransmission failed, if any, */
1219 /* consider that buffers may have been released in meantime */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001220 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001221 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +01001222 link_last_sent(l_ptr));
Allan Stephensf9057302011-10-24 16:03:12 -04001223 u32 first = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001224
1225 while (buf && less(first, r_q_head)) {
1226 first = mod(first + 1);
1227 buf = buf->next;
1228 }
1229 l_ptr->retransm_queue_head = r_q_head = first;
1230 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1231 }
1232
1233 /* Continue retransmission now, if there is anything: */
Neil Hormanca509102010-03-15 07:58:45 +00001234 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001235 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001236 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001237 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1238 l_ptr->retransm_queue_head = mod(++r_q_head);
1239 l_ptr->retransm_queue_size = --r_q_size;
1240 l_ptr->stats.retransmitted++;
1241 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001242 }
1243
1244 /* Send deferred protocol message, if any: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001245 buf = l_ptr->proto_msg_queue;
1246 if (buf) {
1247 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +00001248 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001249 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1250 l_ptr->unacked_window = 0;
1251 kfree_skb(buf);
1252 l_ptr->proto_msg_queue = NULL;
1253 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001254 }
1255
1256 /* Send one deferred data message, if send window not full: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001257 buf = l_ptr->next_out;
1258 if (buf) {
1259 struct tipc_msg *msg = buf_msg(buf);
1260 u32 next = msg_seqno(msg);
Allan Stephensf9057302011-10-24 16:03:12 -04001261 u32 first = buf_seqno(l_ptr->first_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001262
1263 if (mod(next - first) < l_ptr->queue_limit[0]) {
1264 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001265 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001266 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1267 if (msg_user(msg) == MSG_BUNDLER)
1268 msg_set_type(msg, CLOSED_MSG);
1269 l_ptr->next_out = buf->next;
1270 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001271 }
1272 }
Ying Xue3c294cb2012-11-15 11:34:45 +08001273 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001274}
1275
1276/*
1277 * push_queue(): push out the unsent messages of a link where
1278 * congestion has abated. Node is locked
1279 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001280void tipc_link_push_queue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001281{
1282 u32 res;
1283
Ying Xue3c294cb2012-11-15 11:34:45 +08001284 if (tipc_bearer_blocked(l_ptr->b_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001285 return;
1286
1287 do {
Per Liden4323add2006-01-18 00:38:21 +01001288 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001289 } while (!res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001290}
1291
Allan Stephensd356eeb2006-06-25 23:40:01 -07001292static void link_reset_all(unsigned long addr)
1293{
David S. Miller6c000552008-09-02 23:38:32 -07001294 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001295 char addr_string[16];
1296 u32 i;
1297
1298 read_lock_bh(&tipc_net_lock);
1299 n_ptr = tipc_node_find((u32)addr);
1300 if (!n_ptr) {
1301 read_unlock_bh(&tipc_net_lock);
1302 return; /* node no longer exists */
1303 }
1304
1305 tipc_node_lock(n_ptr);
1306
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001307 pr_warn("Resetting all links to %s\n",
1308 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -07001309
1310 for (i = 0; i < MAX_BEARERS; i++) {
1311 if (n_ptr->links[i]) {
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001312 link_print(n_ptr->links[i], "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001313 tipc_link_reset(n_ptr->links[i]);
1314 }
1315 }
1316
1317 tipc_node_unlock(n_ptr);
1318 read_unlock_bh(&tipc_net_lock);
1319}
1320
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001321static void link_retransmit_failure(struct tipc_link *l_ptr,
Paul Gortmakerae8509c2013-06-17 10:54:47 -04001322 struct sk_buff *buf)
Allan Stephensd356eeb2006-06-25 23:40:01 -07001323{
1324 struct tipc_msg *msg = buf_msg(buf);
1325
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001326 pr_warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001327
1328 if (l_ptr->addr) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001329 /* Handle failure on standard link */
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001330 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001331 tipc_link_reset(l_ptr);
1332
1333 } else {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001334 /* Handle failure on broadcast link */
David S. Miller6c000552008-09-02 23:38:32 -07001335 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001336 char addr_string[16];
1337
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001338 pr_info("Msg seq number: %u, ", msg_seqno(msg));
1339 pr_cont("Outstanding acks: %lu\n",
1340 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -07001341
Allan Stephens01d83ed2011-01-18 13:53:16 -05001342 n_ptr = tipc_bclink_retransmit_to();
Allan Stephensd356eeb2006-06-25 23:40:01 -07001343 tipc_node_lock(n_ptr);
1344
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001345 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001346 pr_info("Broadcast link info for %s\n", addr_string);
Ying Xue389dd9b2012-11-16 13:51:30 +08001347 pr_info("Reception permitted: %d, Acked: %u\n",
1348 n_ptr->bclink.recv_permitted,
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001349 n_ptr->bclink.acked);
1350 pr_info("Last in: %u, Oos state: %u, Last sent: %u\n",
1351 n_ptr->bclink.last_in,
1352 n_ptr->bclink.oos_state,
1353 n_ptr->bclink.last_sent);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001354
1355 tipc_k_signal((Handler)link_reset_all, (unsigned long)n_ptr->addr);
1356
1357 tipc_node_unlock(n_ptr);
1358
1359 l_ptr->stale_count = 0;
1360 }
1361}
1362
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001363void tipc_link_retransmit(struct tipc_link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001364 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001365{
1366 struct tipc_msg *msg;
1367
Allan Stephensd356eeb2006-06-25 23:40:01 -07001368 if (!buf)
1369 return;
1370
1371 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001372
Ying Xue3c294cb2012-11-15 11:34:45 +08001373 if (tipc_bearer_blocked(l_ptr->b_ptr)) {
Neil Hormanca509102010-03-15 07:58:45 +00001374 if (l_ptr->retransm_queue_size == 0) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001375 l_ptr->retransm_queue_head = msg_seqno(msg);
1376 l_ptr->retransm_queue_size = retransmits;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001377 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001378 pr_err("Unexpected retransmit on link %s (qsize=%d)\n",
1379 l_ptr->name, l_ptr->retransm_queue_size);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001380 }
Neil Hormanca509102010-03-15 07:58:45 +00001381 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001382 } else {
Ying Xue3c294cb2012-11-15 11:34:45 +08001383 /* Detect repeated retransmit failures on unblocked bearer */
Allan Stephensd356eeb2006-06-25 23:40:01 -07001384 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1385 if (++l_ptr->stale_count > 100) {
1386 link_retransmit_failure(l_ptr, buf);
1387 return;
1388 }
1389 } else {
1390 l_ptr->last_retransmitted = msg_seqno(msg);
1391 l_ptr->stale_count = 1;
1392 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001393 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001394
Neil Hormanca509102010-03-15 07:58:45 +00001395 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001396 msg = buf_msg(buf);
1397 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001398 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001399 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1400 buf = buf->next;
1401 retransmits--;
1402 l_ptr->stats.retransmitted++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001403 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001404
Per Lidenb97bf3f2006-01-02 19:04:38 +01001405 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1406}
1407
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001408/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001409 * link_insert_deferred_queue - insert deferred messages back into receive chain
1410 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001411static struct sk_buff *link_insert_deferred_queue(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001412 struct sk_buff *buf)
1413{
1414 u32 seq_no;
1415
1416 if (l_ptr->oldest_deferred_in == NULL)
1417 return buf;
1418
Allan Stephensf9057302011-10-24 16:03:12 -04001419 seq_no = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001420 if (seq_no == mod(l_ptr->next_in_no)) {
1421 l_ptr->newest_deferred_in->next = buf;
1422 buf = l_ptr->oldest_deferred_in;
1423 l_ptr->oldest_deferred_in = NULL;
1424 l_ptr->deferred_inqueue_sz = 0;
1425 }
1426 return buf;
1427}
1428
Allan Stephens85035562008-04-15 19:04:54 -07001429/**
1430 * link_recv_buf_validate - validate basic format of received message
1431 *
1432 * This routine ensures a TIPC message has an acceptable header, and at least
1433 * as much data as the header indicates it should. The routine also ensures
1434 * that the entire message header is stored in the main fragment of the message
1435 * buffer, to simplify future access to message header fields.
1436 *
1437 * Note: Having extra info present in the message header or data areas is OK.
1438 * TIPC will ignore the excess, under the assumption that it is optional info
1439 * introduced by a later release of the protocol.
1440 */
Allan Stephens85035562008-04-15 19:04:54 -07001441static int link_recv_buf_validate(struct sk_buff *buf)
1442{
1443 static u32 min_data_hdr_size[8] = {
Allan Stephens741d9eb2011-05-31 15:03:18 -04001444 SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,
Allan Stephens85035562008-04-15 19:04:54 -07001445 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1446 };
1447
1448 struct tipc_msg *msg;
1449 u32 tipc_hdr[2];
1450 u32 size;
1451 u32 hdr_size;
1452 u32 min_hdr_size;
1453
1454 if (unlikely(buf->len < MIN_H_SIZE))
1455 return 0;
1456
1457 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1458 if (msg == NULL)
1459 return 0;
1460
1461 if (unlikely(msg_version(msg) != TIPC_VERSION))
1462 return 0;
1463
1464 size = msg_size(msg);
1465 hdr_size = msg_hdr_sz(msg);
1466 min_hdr_size = msg_isdata(msg) ?
1467 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1468
1469 if (unlikely((hdr_size < min_hdr_size) ||
1470 (size < hdr_size) ||
1471 (buf->len < size) ||
1472 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1473 return 0;
1474
1475 return pskb_may_pull(buf, hdr_size);
1476}
1477
Allan Stephensb02b69c2010-08-17 11:00:07 +00001478/**
1479 * tipc_recv_msg - process TIPC messages arriving from off-node
1480 * @head: pointer to message buffer chain
1481 * @tb_ptr: pointer to bearer message arrived on
1482 *
1483 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1484 * structure (i.e. cannot be NULL), but bearer can be inactive.
1485 */
Allan Stephens2d627b92011-01-07 13:00:11 -05001486void tipc_recv_msg(struct sk_buff *head, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001487{
Per Liden4323add2006-01-18 00:38:21 +01001488 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001489 while (head) {
David S. Miller6c000552008-09-02 23:38:32 -07001490 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001491 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001492 struct sk_buff *crs;
1493 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001494 struct tipc_msg *msg;
1495 u32 seq_no;
1496 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001497 u32 released = 0;
1498 int type;
1499
Per Lidenb97bf3f2006-01-02 19:04:38 +01001500 head = head->next;
Allan Stephens85035562008-04-15 19:04:54 -07001501
Allan Stephensb02b69c2010-08-17 11:00:07 +00001502 /* Ensure bearer is still enabled */
Allan Stephensb02b69c2010-08-17 11:00:07 +00001503 if (unlikely(!b_ptr->active))
Ying Xue3af390e2013-10-30 11:26:57 +08001504 goto discard;
Allan Stephensb02b69c2010-08-17 11:00:07 +00001505
Allan Stephens85035562008-04-15 19:04:54 -07001506 /* Ensure message is well-formed */
Allan Stephens85035562008-04-15 19:04:54 -07001507 if (unlikely(!link_recv_buf_validate(buf)))
Ying Xue3af390e2013-10-30 11:26:57 +08001508 goto discard;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001509
Allan Stephensfe13dda2008-04-15 19:03:23 -07001510 /* Ensure message data is a single contiguous unit */
Allan Stephens5f6d9122011-11-04 13:24:29 -04001511 if (unlikely(skb_linearize(buf)))
Ying Xue3af390e2013-10-30 11:26:57 +08001512 goto discard;
Allan Stephensfe13dda2008-04-15 19:03:23 -07001513
Allan Stephens85035562008-04-15 19:04:54 -07001514 /* Handle arrival of a non-unicast link message */
Allan Stephens85035562008-04-15 19:04:54 -07001515 msg = buf_msg(buf);
1516
Per Lidenb97bf3f2006-01-02 19:04:38 +01001517 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001518 if (msg_user(msg) == LINK_CONFIG)
1519 tipc_disc_recv_msg(buf, b_ptr);
1520 else
1521 tipc_bclink_recv_pkt(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001522 continue;
1523 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001524
Allan Stephensed33a9c2011-04-05 15:15:04 -04001525 /* Discard unicast link messages destined for another node */
Allan Stephens26008242006-06-25 23:39:31 -07001526 if (unlikely(!msg_short(msg) &&
1527 (msg_destnode(msg) != tipc_own_addr)))
Ying Xue3af390e2013-10-30 11:26:57 +08001528 goto discard;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001529
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001530 /* Locate neighboring node that sent message */
Per Liden4323add2006-01-18 00:38:21 +01001531 n_ptr = tipc_node_find(msg_prevnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001532 if (unlikely(!n_ptr))
Ying Xue3af390e2013-10-30 11:26:57 +08001533 goto discard;
Per Liden4323add2006-01-18 00:38:21 +01001534 tipc_node_lock(n_ptr);
Allan Stephens85035562008-04-15 19:04:54 -07001535
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001536 /* Locate unicast link endpoint that should handle message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001537 l_ptr = n_ptr->links[b_ptr->identity];
Ying Xue3af390e2013-10-30 11:26:57 +08001538 if (unlikely(!l_ptr))
1539 goto unlock_discard;
Allan Stephens85035562008-04-15 19:04:54 -07001540
Allan Stephensb4b56102011-05-27 11:00:51 -04001541 /* Verify that communication with node is currently allowed */
Allan Stephensb4b56102011-05-27 11:00:51 -04001542 if ((n_ptr->block_setup & WAIT_PEER_DOWN) &&
1543 msg_user(msg) == LINK_PROTOCOL &&
1544 (msg_type(msg) == RESET_MSG ||
1545 msg_type(msg) == ACTIVATE_MSG) &&
1546 !msg_redundant_link(msg))
1547 n_ptr->block_setup &= ~WAIT_PEER_DOWN;
1548
Ying Xue3af390e2013-10-30 11:26:57 +08001549 if (n_ptr->block_setup)
1550 goto unlock_discard;
Allan Stephensb4b56102011-05-27 11:00:51 -04001551
Allan Stephens85035562008-04-15 19:04:54 -07001552 /* Validate message sequence number info */
Allan Stephens85035562008-04-15 19:04:54 -07001553 seq_no = msg_seqno(msg);
1554 ackd = msg_ack(msg);
1555
1556 /* Release acked messages */
Ying Xue389dd9b2012-11-16 13:51:30 +08001557 if (n_ptr->bclink.recv_permitted)
Allan Stephens365595912011-10-24 15:26:24 -04001558 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001559
1560 crs = l_ptr->first_out;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001561 while ((crs != l_ptr->next_out) &&
Allan Stephensf9057302011-10-24 16:03:12 -04001562 less_eq(buf_seqno(crs), ackd)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001563 struct sk_buff *next = crs->next;
1564
Allan Stephens5f6d9122011-11-04 13:24:29 -04001565 kfree_skb(crs);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001566 crs = next;
1567 released++;
1568 }
1569 if (released) {
1570 l_ptr->first_out = crs;
1571 l_ptr->out_queue_size -= released;
1572 }
Allan Stephens85035562008-04-15 19:04:54 -07001573
1574 /* Try sending any messages link endpoint has pending */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001575 if (unlikely(l_ptr->next_out))
Per Liden4323add2006-01-18 00:38:21 +01001576 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001577 if (unlikely(!list_empty(&l_ptr->waiting_ports)))
Per Liden4323add2006-01-18 00:38:21 +01001578 tipc_link_wakeup_ports(l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001579 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1580 l_ptr->stats.sent_acks++;
Per Liden4323add2006-01-18 00:38:21 +01001581 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001582 }
1583
Allan Stephens85035562008-04-15 19:04:54 -07001584 /* Now (finally!) process the incoming message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001585protocol_check:
Ying Xue3af390e2013-10-30 11:26:57 +08001586 if (unlikely(!link_working_working(l_ptr))) {
1587 if (msg_user(msg) == LINK_PROTOCOL) {
1588 link_recv_proto_msg(l_ptr, buf);
1589 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001590 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001591 continue;
1592 }
Ying Xue3af390e2013-10-30 11:26:57 +08001593
1594 /* Traffic message. Conditionally activate link */
1595 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1596
1597 if (link_working_working(l_ptr)) {
1598 /* Re-insert buffer in front of queue */
1599 buf->next = head;
1600 head = buf;
1601 tipc_node_unlock(n_ptr);
1602 continue;
1603 }
1604 goto unlock_discard;
1605 }
1606
1607 /* Link is now in state WORKING_WORKING */
1608 if (unlikely(seq_no != mod(l_ptr->next_in_no))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001609 link_handle_out_of_seq_msg(l_ptr, buf);
1610 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001611 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001612 continue;
1613 }
Ying Xue3af390e2013-10-30 11:26:57 +08001614 l_ptr->next_in_no++;
1615 if (unlikely(l_ptr->oldest_deferred_in))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001616 head = link_insert_deferred_queue(l_ptr, head);
Ying Xue3af390e2013-10-30 11:26:57 +08001617deliver:
1618 if (likely(msg_isdata(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01001619 tipc_node_unlock(n_ptr);
Ying Xue3af390e2013-10-30 11:26:57 +08001620 tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001621 continue;
1622 }
Ying Xue3af390e2013-10-30 11:26:57 +08001623 switch (msg_user(msg)) {
1624 int ret;
1625 case MSG_BUNDLER:
1626 l_ptr->stats.recv_bundles++;
1627 l_ptr->stats.recv_bundled += msg_msgcnt(msg);
1628 tipc_node_unlock(n_ptr);
1629 tipc_link_recv_bundle(buf);
1630 continue;
1631 case NAME_DISTRIBUTOR:
1632 n_ptr->bclink.recv_permitted = true;
1633 tipc_node_unlock(n_ptr);
1634 tipc_named_recv(buf);
1635 continue;
1636 case BCAST_PROTOCOL:
1637 tipc_link_recv_sync(n_ptr, buf);
Per Liden4323add2006-01-18 00:38:21 +01001638 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001639 continue;
Ying Xue3af390e2013-10-30 11:26:57 +08001640 case CONN_MANAGER:
1641 tipc_node_unlock(n_ptr);
1642 tipc_port_recv_proto_msg(buf);
1643 continue;
1644 case MSG_FRAGMENTER:
1645 l_ptr->stats.recv_fragments++;
Erik Hugne40ba3cd2013-11-06 09:28:06 +01001646 ret = tipc_link_recv_fragment(&l_ptr->reasm_head,
1647 &l_ptr->reasm_tail,
1648 &buf);
1649 if (ret == LINK_REASM_COMPLETE) {
Ying Xue3af390e2013-10-30 11:26:57 +08001650 l_ptr->stats.recv_fragmented++;
Erik Hugne40ba3cd2013-11-06 09:28:06 +01001651 msg = buf_msg(buf);
Ying Xue3af390e2013-10-30 11:26:57 +08001652 goto deliver;
1653 }
Erik Hugne40ba3cd2013-11-06 09:28:06 +01001654 if (ret == LINK_REASM_ERROR)
Ying Xue3af390e2013-10-30 11:26:57 +08001655 l_ptr->next_in_no--;
Erik Hugne528f6f42013-11-06 09:28:05 +01001656 tipc_node_unlock(n_ptr);
1657 continue;
Ying Xue3af390e2013-10-30 11:26:57 +08001658 case CHANGEOVER_PROTOCOL:
1659 type = msg_type(msg);
1660 if (link_recv_changeover_msg(&l_ptr, &buf)) {
1661 msg = buf_msg(buf);
1662 seq_no = msg_seqno(msg);
1663 if (type == ORIGINAL_MSG)
1664 goto deliver;
1665 goto protocol_check;
1666 }
1667 break;
1668 default:
1669 kfree_skb(buf);
1670 buf = NULL;
1671 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001672 }
Per Liden4323add2006-01-18 00:38:21 +01001673 tipc_node_unlock(n_ptr);
Ying Xue3af390e2013-10-30 11:26:57 +08001674 tipc_net_route_msg(buf);
1675 continue;
1676unlock_discard:
1677
1678 tipc_node_unlock(n_ptr);
1679discard:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001680 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001681 }
Per Liden4323add2006-01-18 00:38:21 +01001682 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001683}
1684
Ben Hutchings2c530402012-07-10 10:55:09 +00001685/**
Allan Stephens8809b252011-10-25 10:44:35 -04001686 * tipc_link_defer_pkt - Add out-of-sequence message to deferred reception queue
1687 *
1688 * Returns increase in queue length (i.e. 0 or 1)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001689 */
Allan Stephens8809b252011-10-25 10:44:35 -04001690u32 tipc_link_defer_pkt(struct sk_buff **head, struct sk_buff **tail,
Per Liden4323add2006-01-18 00:38:21 +01001691 struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001692{
Allan Stephens8809b252011-10-25 10:44:35 -04001693 struct sk_buff *queue_buf;
1694 struct sk_buff **prev;
Allan Stephensf9057302011-10-24 16:03:12 -04001695 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001696
1697 buf->next = NULL;
1698
1699 /* Empty queue ? */
1700 if (*head == NULL) {
1701 *head = *tail = buf;
1702 return 1;
1703 }
1704
1705 /* Last ? */
Allan Stephensf9057302011-10-24 16:03:12 -04001706 if (less(buf_seqno(*tail), seq_no)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001707 (*tail)->next = buf;
1708 *tail = buf;
1709 return 1;
1710 }
1711
Allan Stephens8809b252011-10-25 10:44:35 -04001712 /* Locate insertion point in queue, then insert; discard if duplicate */
1713 prev = head;
1714 queue_buf = *head;
1715 for (;;) {
1716 u32 curr_seqno = buf_seqno(queue_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001717
Allan Stephens8809b252011-10-25 10:44:35 -04001718 if (seq_no == curr_seqno) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001719 kfree_skb(buf);
Allan Stephens8809b252011-10-25 10:44:35 -04001720 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001721 }
Allan Stephens8809b252011-10-25 10:44:35 -04001722
1723 if (less(seq_no, curr_seqno))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001724 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001725
Allan Stephens8809b252011-10-25 10:44:35 -04001726 prev = &queue_buf->next;
1727 queue_buf = queue_buf->next;
1728 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001729
Allan Stephens8809b252011-10-25 10:44:35 -04001730 buf->next = queue_buf;
1731 *prev = buf;
1732 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001733}
1734
Allan Stephens8809b252011-10-25 10:44:35 -04001735/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001736 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1737 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001738static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001739 struct sk_buff *buf)
1740{
Allan Stephensf9057302011-10-24 16:03:12 -04001741 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001742
1743 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
1744 link_recv_proto_msg(l_ptr, buf);
1745 return;
1746 }
1747
Per Lidenb97bf3f2006-01-02 19:04:38 +01001748 /* Record OOS packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001749 l_ptr->checkpoint--;
1750
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001751 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001752 * Discard packet if a duplicate; otherwise add it to deferred queue
1753 * and notify peer of gap as per protocol specification
1754 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001755 if (less(seq_no, mod(l_ptr->next_in_no))) {
1756 l_ptr->stats.duplicates++;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001757 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001758 return;
1759 }
1760
Per Liden4323add2006-01-18 00:38:21 +01001761 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1762 &l_ptr->newest_deferred_in, buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001763 l_ptr->deferred_inqueue_sz++;
1764 l_ptr->stats.deferred_recv++;
1765 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
Per Liden4323add2006-01-18 00:38:21 +01001766 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001767 } else
1768 l_ptr->stats.duplicates++;
1769}
1770
1771/*
1772 * Send protocol message to the other endpoint.
1773 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001774void tipc_link_send_proto_msg(struct tipc_link *l_ptr, u32 msg_typ,
Paul Gortmakerae8509c2013-06-17 10:54:47 -04001775 int probe_msg, u32 gap, u32 tolerance,
1776 u32 priority, u32 ack_mtu)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001777{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001778 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001779 struct tipc_msg *msg = l_ptr->pmsg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001780 u32 msg_size = sizeof(l_ptr->proto_msg);
Allan Stephens75f0aa42011-02-28 15:30:20 -05001781 int r_flag;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001782
Allan Stephens92d2c902011-10-25 11:20:26 -04001783 /* Discard any previous message that was deferred due to congestion */
Allan Stephens92d2c902011-10-25 11:20:26 -04001784 if (l_ptr->proto_msg_queue) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001785 kfree_skb(l_ptr->proto_msg_queue);
Allan Stephens92d2c902011-10-25 11:20:26 -04001786 l_ptr->proto_msg_queue = NULL;
1787 }
1788
Per Lidenb97bf3f2006-01-02 19:04:38 +01001789 if (link_blocked(l_ptr))
1790 return;
Allan Stephensb4b56102011-05-27 11:00:51 -04001791
1792 /* Abort non-RESET send if communication with node is prohibited */
Allan Stephensb4b56102011-05-27 11:00:51 -04001793 if ((l_ptr->owner->block_setup) && (msg_typ != RESET_MSG))
1794 return;
1795
Allan Stephens92d2c902011-10-25 11:20:26 -04001796 /* Create protocol message with "out-of-sequence" sequence number */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001797 msg_set_type(msg, msg_typ);
1798 msg_set_net_plane(msg, l_ptr->b_ptr->net_plane);
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001799 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001800 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
Per Lidenb97bf3f2006-01-02 19:04:38 +01001801
1802 if (msg_typ == STATE_MSG) {
1803 u32 next_sent = mod(l_ptr->next_out_no);
1804
Per Liden4323add2006-01-18 00:38:21 +01001805 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001806 return;
1807 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -04001808 next_sent = buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001809 msg_set_next_sent(msg, next_sent);
1810 if (l_ptr->oldest_deferred_in) {
Allan Stephensf9057302011-10-24 16:03:12 -04001811 u32 rec = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001812 gap = mod(rec - mod(l_ptr->next_in_no));
1813 }
1814 msg_set_seq_gap(msg, gap);
1815 if (gap)
1816 l_ptr->stats.sent_nacks++;
1817 msg_set_link_tolerance(msg, tolerance);
1818 msg_set_linkprio(msg, priority);
1819 msg_set_max_pkt(msg, ack_mtu);
1820 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1821 msg_set_probe(msg, probe_msg != 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001822 if (probe_msg) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001823 u32 mtu = l_ptr->max_pkt;
1824
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001825 if ((mtu < l_ptr->max_pkt_target) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001826 link_working_working(l_ptr) &&
1827 l_ptr->fsm_msg_cnt) {
1828 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001829 if (l_ptr->max_pkt_probes == 10) {
1830 l_ptr->max_pkt_target = (msg_size - 4);
1831 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001832 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001833 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001834 l_ptr->max_pkt_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001835 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001836
1837 l_ptr->stats.sent_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001838 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001839 l_ptr->stats.sent_states++;
1840 } else { /* RESET_MSG or ACTIVATE_MSG */
1841 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
1842 msg_set_seq_gap(msg, 0);
1843 msg_set_next_sent(msg, 1);
Allan Stephensf23d9bf2011-01-18 15:15:34 -05001844 msg_set_probe(msg, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001845 msg_set_link_tolerance(msg, l_ptr->tolerance);
1846 msg_set_linkprio(msg, l_ptr->priority);
1847 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
1848 }
1849
Allan Stephens75f0aa42011-02-28 15:30:20 -05001850 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
1851 msg_set_redundant_link(msg, r_flag);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001852 msg_set_linkprio(msg, l_ptr->priority);
Allan Stephens92d2c902011-10-25 11:20:26 -04001853 msg_set_size(msg, msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001854
1855 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
1856
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001857 buf = tipc_buf_acquire(msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001858 if (!buf)
1859 return;
1860
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001861 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
Ying Xue796c75d2013-06-17 10:54:48 -04001862 buf->priority = TC_PRIO_CONTROL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001863
Ying Xue3c294cb2012-11-15 11:34:45 +08001864 /* Defer message if bearer is already blocked */
1865 if (tipc_bearer_blocked(l_ptr->b_ptr)) {
Allan Stephens92d2c902011-10-25 11:20:26 -04001866 l_ptr->proto_msg_queue = buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001867 return;
1868 }
1869
Ying Xue3c294cb2012-11-15 11:34:45 +08001870 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
Allan Stephens92d2c902011-10-25 11:20:26 -04001871 l_ptr->unacked_window = 0;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001872 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001873}
1874
1875/*
1876 * Receive protocol message :
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001877 * Note that network plane id propagates through the network, and may
1878 * change at any time. The node with lowest address rules
Per Lidenb97bf3f2006-01-02 19:04:38 +01001879 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001880static void link_recv_proto_msg(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001881{
1882 u32 rec_gap = 0;
1883 u32 max_pkt_info;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001884 u32 max_pkt_ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001885 u32 msg_tol;
1886 struct tipc_msg *msg = buf_msg(buf);
1887
Per Lidenb97bf3f2006-01-02 19:04:38 +01001888 if (link_blocked(l_ptr))
1889 goto exit;
1890
1891 /* record unnumbered packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001892 l_ptr->checkpoint--;
1893
1894 if (l_ptr->b_ptr->net_plane != msg_net_plane(msg))
1895 if (tipc_own_addr > msg_prevnode(msg))
1896 l_ptr->b_ptr->net_plane = msg_net_plane(msg);
1897
1898 l_ptr->owner->permit_changeover = msg_redundant_link(msg);
1899
1900 switch (msg_type(msg)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001901
Per Lidenb97bf3f2006-01-02 19:04:38 +01001902 case RESET_MSG:
Allan Stephensa686e682008-06-04 17:29:39 -07001903 if (!link_working_unknown(l_ptr) &&
1904 (l_ptr->peer_session != INVALID_SESSION)) {
Allan Stephens641c2182011-04-07 09:54:43 -04001905 if (less_eq(msg_session(msg), l_ptr->peer_session))
1906 break; /* duplicate or old reset: ignore */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001907 }
Allan Stephensb4b56102011-05-27 11:00:51 -04001908
1909 if (!msg_redundant_link(msg) && (link_working_working(l_ptr) ||
1910 link_working_unknown(l_ptr))) {
1911 /*
1912 * peer has lost contact -- don't allow peer's links
1913 * to reactivate before we recognize loss & clean up
1914 */
1915 l_ptr->owner->block_setup = WAIT_NODE_DOWN;
1916 }
1917
Allan Stephens47361c82011-10-26 10:55:16 -04001918 link_state_event(l_ptr, RESET_MSG);
1919
Per Lidenb97bf3f2006-01-02 19:04:38 +01001920 /* fall thru' */
1921 case ACTIVATE_MSG:
1922 /* Update link settings according other endpoint's values */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001923 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
1924
Allan Stephens2db99832010-12-31 18:59:33 +00001925 msg_tol = msg_link_tolerance(msg);
1926 if (msg_tol > l_ptr->tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001927 link_set_supervision_props(l_ptr, msg_tol);
1928
1929 if (msg_linkprio(msg) > l_ptr->priority)
1930 l_ptr->priority = msg_linkprio(msg);
1931
1932 max_pkt_info = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001933 if (max_pkt_info) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001934 if (max_pkt_info < l_ptr->max_pkt_target)
1935 l_ptr->max_pkt_target = max_pkt_info;
1936 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
1937 l_ptr->max_pkt = l_ptr->max_pkt_target;
1938 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001939 l_ptr->max_pkt = l_ptr->max_pkt_target;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001940 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001941
Allan Stephens4d753132011-10-25 12:19:05 -04001942 /* Synchronize broadcast link info, if not done previously */
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001943 if (!tipc_node_is_up(l_ptr->owner)) {
1944 l_ptr->owner->bclink.last_sent =
1945 l_ptr->owner->bclink.last_in =
1946 msg_last_bcast(msg);
1947 l_ptr->owner->bclink.oos_state = 0;
1948 }
Allan Stephens4d753132011-10-25 12:19:05 -04001949
Per Lidenb97bf3f2006-01-02 19:04:38 +01001950 l_ptr->peer_session = msg_session(msg);
1951 l_ptr->peer_bearer_id = msg_bearer_id(msg);
Allan Stephens47361c82011-10-26 10:55:16 -04001952
1953 if (msg_type(msg) == ACTIVATE_MSG)
1954 link_state_event(l_ptr, ACTIVATE_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001955 break;
1956 case STATE_MSG:
1957
Allan Stephens2db99832010-12-31 18:59:33 +00001958 msg_tol = msg_link_tolerance(msg);
1959 if (msg_tol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001960 link_set_supervision_props(l_ptr, msg_tol);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001961
1962 if (msg_linkprio(msg) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001963 (msg_linkprio(msg) != l_ptr->priority)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001964 pr_warn("%s<%s>, priority change %u->%u\n",
1965 link_rst_msg, l_ptr->name, l_ptr->priority,
1966 msg_linkprio(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001967 l_ptr->priority = msg_linkprio(msg);
Per Liden4323add2006-01-18 00:38:21 +01001968 tipc_link_reset(l_ptr); /* Enforce change to take effect */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001969 break;
1970 }
1971 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1972 l_ptr->stats.recv_states++;
1973 if (link_reset_unknown(l_ptr))
1974 break;
1975
1976 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001977 rec_gap = mod(msg_next_sent(msg) -
Per Lidenb97bf3f2006-01-02 19:04:38 +01001978 mod(l_ptr->next_in_no));
1979 }
1980
1981 max_pkt_ack = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001982 if (max_pkt_ack > l_ptr->max_pkt) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001983 l_ptr->max_pkt = max_pkt_ack;
1984 l_ptr->max_pkt_probes = 0;
1985 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001986
1987 max_pkt_ack = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001988 if (msg_probe(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001989 l_ptr->stats.recv_probes++;
Allan Stephensa0168922010-12-31 18:59:35 +00001990 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001991 max_pkt_ack = msg_size(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001992 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001993
1994 /* Protocol message before retransmits, reduce loss risk */
Ying Xue389dd9b2012-11-16 13:51:30 +08001995 if (l_ptr->owner->bclink.recv_permitted)
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001996 tipc_bclink_update_link_state(l_ptr->owner,
1997 msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001998
1999 if (rec_gap || (msg_probe(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01002000 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
2001 0, rec_gap, 0, 0, max_pkt_ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002002 }
2003 if (msg_seq_gap(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002004 l_ptr->stats.recv_nacks++;
Per Liden4323add2006-01-18 00:38:21 +01002005 tipc_link_retransmit(l_ptr, l_ptr->first_out,
2006 msg_seq_gap(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002007 }
2008 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002009 }
2010exit:
Allan Stephens5f6d9122011-11-04 13:24:29 -04002011 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002012}
2013
2014
2015/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002016 * tipc_link_tunnel(): Send one message via a link belonging to
Per Lidenb97bf3f2006-01-02 19:04:38 +01002017 * another bearer. Owner node is locked.
2018 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002019static void tipc_link_tunnel(struct tipc_link *l_ptr,
Paul Gortmakerae8509c2013-06-17 10:54:47 -04002020 struct tipc_msg *tunnel_hdr, struct tipc_msg *msg,
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002021 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002022{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002023 struct tipc_link *tunnel;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002024 struct sk_buff *buf;
2025 u32 length = msg_size(msg);
2026
2027 tunnel = l_ptr->owner->active_links[selector & 1];
Allan Stephens5392d642006-06-25 23:52:50 -07002028 if (!tipc_link_is_up(tunnel)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002029 pr_warn("%stunnel link no longer available\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002030 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002031 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002032 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002033 buf = tipc_buf_acquire(length + INT_H_SIZE);
Allan Stephens5392d642006-06-25 23:52:50 -07002034 if (!buf) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002035 pr_warn("%sunable to send tunnel msg\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002036 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002037 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002038 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
2039 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
Per Liden4323add2006-01-18 00:38:21 +01002040 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002041}
2042
2043
2044
2045/*
2046 * changeover(): Send whole message queue via the remaining link
2047 * Owner node is locked.
2048 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002049void tipc_link_changeover(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002050{
2051 u32 msgcount = l_ptr->out_queue_size;
2052 struct sk_buff *crs = l_ptr->first_out;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002053 struct tipc_link *tunnel = l_ptr->owner->active_links[0];
Per Lidenb97bf3f2006-01-02 19:04:38 +01002054 struct tipc_msg tunnel_hdr;
Allan Stephens5392d642006-06-25 23:52:50 -07002055 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002056
2057 if (!tunnel)
2058 return;
2059
Allan Stephens5392d642006-06-25 23:52:50 -07002060 if (!l_ptr->owner->permit_changeover) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002061 pr_warn("%speer did not permit changeover\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002062 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002063 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002064
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002065 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002066 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002067 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2068 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07002069
Per Lidenb97bf3f2006-01-02 19:04:38 +01002070 if (!l_ptr->first_out) {
2071 struct sk_buff *buf;
2072
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002073 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002074 if (buf) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002075 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002076 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Per Liden4323add2006-01-18 00:38:21 +01002077 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002078 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002079 pr_warn("%sunable to send changeover msg\n",
2080 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002081 }
2082 return;
2083 }
Allan Stephensf1310722006-06-25 23:51:37 -07002084
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002085 split_bundles = (l_ptr->owner->active_links[0] !=
Allan Stephens5392d642006-06-25 23:52:50 -07002086 l_ptr->owner->active_links[1]);
2087
Per Lidenb97bf3f2006-01-02 19:04:38 +01002088 while (crs) {
2089 struct tipc_msg *msg = buf_msg(crs);
2090
2091 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002092 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00002093 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002094
Florian Westphald788d802007-08-02 19:28:06 -07002095 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002096 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00002097 msg_set_seqno(m, msg_seqno(msg));
Per Liden4323add2006-01-18 00:38:21 +01002098 tipc_link_tunnel(l_ptr, &tunnel_hdr, m,
2099 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002100 pos += align(msg_size(m));
2101 m = (struct tipc_msg *)pos;
2102 }
2103 } else {
Per Liden4323add2006-01-18 00:38:21 +01002104 tipc_link_tunnel(l_ptr, &tunnel_hdr, msg,
2105 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002106 }
2107 crs = crs->next;
2108 }
2109}
2110
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002111void tipc_link_send_duplicate(struct tipc_link *l_ptr, struct tipc_link *tunnel)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002112{
2113 struct sk_buff *iter;
2114 struct tipc_msg tunnel_hdr;
2115
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002116 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002117 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002118 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
2119 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2120 iter = l_ptr->first_out;
2121 while (iter) {
2122 struct sk_buff *outbuf;
2123 struct tipc_msg *msg = buf_msg(iter);
2124 u32 length = msg_size(msg);
2125
2126 if (msg_user(msg) == MSG_BUNDLER)
2127 msg_set_type(msg, CLOSED_MSG);
2128 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002129 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002130 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002131 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002132 if (outbuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002133 pr_warn("%sunable to send duplicate msg\n",
2134 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002135 return;
2136 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002137 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
2138 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
2139 length);
Per Liden4323add2006-01-18 00:38:21 +01002140 tipc_link_send_buf(tunnel, outbuf);
2141 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002142 return;
2143 iter = iter->next;
2144 }
2145}
2146
Per Lidenb97bf3f2006-01-02 19:04:38 +01002147/**
2148 * buf_extract - extracts embedded TIPC message from another message
2149 * @skb: encapsulating message buffer
2150 * @from_pos: offset to extract from
2151 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002152 * Returns a new message buffer containing an embedded message. The
Per Lidenb97bf3f2006-01-02 19:04:38 +01002153 * encapsulating message itself is left unchanged.
2154 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002155static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
2156{
2157 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
2158 u32 size = msg_size(msg);
2159 struct sk_buff *eb;
2160
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002161 eb = tipc_buf_acquire(size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002162 if (eb)
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002163 skb_copy_to_linear_data(eb, msg, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002164 return eb;
2165}
2166
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002167/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01002168 * link_recv_changeover_msg(): Receive tunneled packet sent
2169 * via other link. Node is locked. Return extracted buffer.
2170 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002171static int link_recv_changeover_msg(struct tipc_link **l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002172 struct sk_buff **buf)
2173{
2174 struct sk_buff *tunnel_buf = *buf;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002175 struct tipc_link *dest_link;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002176 struct tipc_msg *msg;
2177 struct tipc_msg *tunnel_msg = buf_msg(tunnel_buf);
2178 u32 msg_typ = msg_type(tunnel_msg);
2179 u32 msg_count = msg_msgcnt(tunnel_msg);
Dan Carpentercb4b102f2013-05-06 08:28:41 +00002180 u32 bearer_id = msg_bearer_id(tunnel_msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002181
Dan Carpentercb4b102f2013-05-06 08:28:41 +00002182 if (bearer_id >= MAX_BEARERS)
2183 goto exit;
2184 dest_link = (*l_ptr)->owner->links[bearer_id];
Allan Stephensb29f1422010-12-31 18:59:25 +00002185 if (!dest_link)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002186 goto exit;
Allan Stephensf1310722006-06-25 23:51:37 -07002187 if (dest_link == *l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002188 pr_err("Unexpected changeover message on link <%s>\n",
2189 (*l_ptr)->name);
Allan Stephensf1310722006-06-25 23:51:37 -07002190 goto exit;
2191 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002192 *l_ptr = dest_link;
2193 msg = msg_get_wrapped(tunnel_msg);
2194
2195 if (msg_typ == DUPLICATE_MSG) {
Allan Stephensb29f1422010-12-31 18:59:25 +00002196 if (less(msg_seqno(msg), mod(dest_link->next_in_no)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002197 goto exit;
Allan Stephens0e659672010-12-31 18:59:32 +00002198 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002199 if (*buf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002200 pr_warn("%sduplicate msg dropped\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002201 goto exit;
2202 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002203 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002204 return 1;
2205 }
2206
2207 /* First original message ?: */
Per Liden4323add2006-01-18 00:38:21 +01002208 if (tipc_link_is_up(dest_link)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002209 pr_info("%s<%s>, changeover initiated by peer\n", link_rst_msg,
2210 dest_link->name);
Per Liden4323add2006-01-18 00:38:21 +01002211 tipc_link_reset(dest_link);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002212 dest_link->exp_msg_count = msg_count;
2213 if (!msg_count)
2214 goto exit;
2215 } else if (dest_link->exp_msg_count == START_CHANGEOVER) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002216 dest_link->exp_msg_count = msg_count;
2217 if (!msg_count)
2218 goto exit;
2219 }
2220
2221 /* Receive original message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002222 if (dest_link->exp_msg_count == 0) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002223 pr_warn("%sgot too many tunnelled messages\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002224 goto exit;
2225 }
2226 dest_link->exp_msg_count--;
2227 if (less(msg_seqno(msg), dest_link->reset_checkpoint)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002228 goto exit;
2229 } else {
2230 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
2231 if (*buf != NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002232 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002233 return 1;
2234 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002235 pr_warn("%soriginal msg dropped\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002236 }
2237 }
2238exit:
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002239 *buf = NULL;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002240 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002241 return 0;
2242}
2243
2244/*
2245 * Bundler functionality:
2246 */
Per Liden4323add2006-01-18 00:38:21 +01002247void tipc_link_recv_bundle(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002248{
2249 u32 msgcount = msg_msgcnt(buf_msg(buf));
2250 u32 pos = INT_H_SIZE;
2251 struct sk_buff *obuf;
2252
Per Lidenb97bf3f2006-01-02 19:04:38 +01002253 while (msgcount--) {
2254 obuf = buf_extract(buf, pos);
2255 if (obuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002256 pr_warn("Link unable to unbundle message(s)\n");
Allan Stephensa10bd922006-06-25 23:52:17 -07002257 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002258 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002259 pos += align(msg_size(buf_msg(obuf)));
Per Liden4323add2006-01-18 00:38:21 +01002260 tipc_net_route_msg(obuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002261 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002262 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002263}
2264
2265/*
2266 * Fragmentation/defragmentation:
2267 */
2268
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002269/*
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002270 * link_send_long_buf: Entry for buffers needing fragmentation.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002271 * The buffer is complete, inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002272 * Returns user data length.
2273 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002274static int link_send_long_buf(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002275{
Allan Stephens77561552011-04-17 13:06:23 -04002276 struct sk_buff *buf_chain = NULL;
2277 struct sk_buff *buf_chain_tail = (struct sk_buff *)&buf_chain;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002278 struct tipc_msg *inmsg = buf_msg(buf);
2279 struct tipc_msg fragm_hdr;
2280 u32 insize = msg_size(inmsg);
2281 u32 dsz = msg_data_sz(inmsg);
2282 unchar *crs = buf->data;
2283 u32 rest = insize;
Allan Stephens15e979d2010-05-11 14:30:10 +00002284 u32 pack_sz = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002285 u32 fragm_sz = pack_sz - INT_H_SIZE;
Allan Stephens77561552011-04-17 13:06:23 -04002286 u32 fragm_no = 0;
Allan Stephens9c396a72008-06-04 17:36:58 -07002287 u32 destaddr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002288
2289 if (msg_short(inmsg))
2290 destaddr = l_ptr->addr;
Allan Stephens9c396a72008-06-04 17:36:58 -07002291 else
2292 destaddr = msg_destnode(inmsg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002293
Per Lidenb97bf3f2006-01-02 19:04:38 +01002294 /* Prepare reusable fragment header: */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002295 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07002296 INT_H_SIZE, destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002297
2298 /* Chop up message: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002299 while (rest > 0) {
2300 struct sk_buff *fragm;
2301
2302 if (rest <= fragm_sz) {
2303 fragm_sz = rest;
2304 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
2305 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002306 fragm = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002307 if (fragm == NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002308 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002309 while (buf_chain) {
2310 buf = buf_chain;
2311 buf_chain = buf_chain->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002312 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002313 }
2314 return -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002315 }
2316 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
Allan Stephens77561552011-04-17 13:06:23 -04002317 fragm_no++;
2318 msg_set_fragm_no(&fragm_hdr, fragm_no);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002319 skb_copy_to_linear_data(fragm, &fragm_hdr, INT_H_SIZE);
2320 skb_copy_to_linear_data_offset(fragm, INT_H_SIZE, crs,
2321 fragm_sz);
Allan Stephens77561552011-04-17 13:06:23 -04002322 buf_chain_tail->next = fragm;
2323 buf_chain_tail = fragm;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002324
Per Lidenb97bf3f2006-01-02 19:04:38 +01002325 rest -= fragm_sz;
2326 crs += fragm_sz;
2327 msg_set_type(&fragm_hdr, FRAGMENT);
2328 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002329 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002330
2331 /* Append chain of fragments to send queue & send them */
Allan Stephens77561552011-04-17 13:06:23 -04002332 l_ptr->long_msg_seq_no++;
2333 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
2334 l_ptr->stats.sent_fragments += fragm_no;
2335 l_ptr->stats.sent_fragmented++;
2336 tipc_link_push_queue(l_ptr);
2337
Per Lidenb97bf3f2006-01-02 19:04:38 +01002338 return dsz;
2339}
2340
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002341/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002342 * tipc_link_recv_fragment(): Called with node lock on. Returns
Per Lidenb97bf3f2006-01-02 19:04:38 +01002343 * the reassembled buffer if message is complete.
2344 */
Erik Hugne40ba3cd2013-11-06 09:28:06 +01002345int tipc_link_recv_fragment(struct sk_buff **head, struct sk_buff **tail,
2346 struct sk_buff **fbuf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002347{
Erik Hugne40ba3cd2013-11-06 09:28:06 +01002348 struct sk_buff *frag = *fbuf;
2349 struct tipc_msg *msg = buf_msg(frag);
2350 u32 fragid = msg_type(msg);
2351 bool headstolen;
2352 int delta;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002353
Erik Hugne40ba3cd2013-11-06 09:28:06 +01002354 skb_pull(frag, msg_hdr_sz(msg));
2355 if (fragid == FIRST_FRAGMENT) {
2356 if (*head || skb_unclone(frag, GFP_ATOMIC))
2357 goto out_free;
2358 *head = frag;
2359 skb_frag_list_init(*head);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002360 return 0;
Erik Hugne40ba3cd2013-11-06 09:28:06 +01002361 } else if (skb_try_coalesce(*head, frag, &headstolen, &delta)) {
2362 kfree_skb_partial(frag, headstolen);
2363 } else {
2364 if (!*head)
2365 goto out_free;
2366 if (!skb_has_frag_list(*head))
2367 skb_shinfo(*head)->frag_list = frag;
2368 else
2369 (*tail)->next = frag;
2370 *tail = frag;
2371 (*head)->truesize += frag->truesize;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002372 }
Erik Hugne40ba3cd2013-11-06 09:28:06 +01002373 if (fragid == LAST_FRAGMENT) {
2374 *fbuf = *head;
2375 *tail = *head = NULL;
2376 return LINK_REASM_COMPLETE;
2377 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002378 return 0;
Erik Hugne40ba3cd2013-11-06 09:28:06 +01002379out_free:
2380 pr_warn_ratelimited("Link unable to reassemble fragmented message\n");
2381 kfree_skb(*fbuf);
2382 return LINK_REASM_ERROR;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002383}
2384
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002385static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002386{
Allan Stephens5413b4c2011-01-18 13:24:55 -05002387 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
2388 return;
2389
Per Lidenb97bf3f2006-01-02 19:04:38 +01002390 l_ptr->tolerance = tolerance;
2391 l_ptr->continuity_interval =
2392 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
2393 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
2394}
2395
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002396void tipc_link_set_queue_limits(struct tipc_link *l_ptr, u32 window)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002397{
2398 /* Data messages from this node, inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002399 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
2400 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
2401 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
2402 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002403 /* Transiting data messages,inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002404 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
2405 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
2406 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
2407 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002408 l_ptr->queue_limit[CONN_MANAGER] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002409 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
2410 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
2411 /* FRAGMENT and LAST_FRAGMENT packets */
2412 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
2413}
2414
2415/**
2416 * link_find_link - locate link by name
Ben Hutchings2c530402012-07-10 10:55:09 +00002417 * @name: ptr to link name string
2418 * @node: ptr to area to be filled with ptr to associated node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002419 *
Per Liden4323add2006-01-18 00:38:21 +01002420 * Caller must hold 'tipc_net_lock' to ensure node and bearer are not deleted;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002421 * this also prevents link deletion.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002422 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002423 * Returns pointer to link (or 0 if invalid link name).
2424 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002425static struct tipc_link *link_find_link(const char *name,
2426 struct tipc_node **node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002427{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002428 struct tipc_link *l_ptr;
Erik Hugnebbfbe472013-10-18 07:23:21 +02002429 struct tipc_node *n_ptr;
2430 int i;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002431
Erik Hugnebbfbe472013-10-18 07:23:21 +02002432 list_for_each_entry(n_ptr, &tipc_node_list, list) {
2433 for (i = 0; i < MAX_BEARERS; i++) {
2434 l_ptr = n_ptr->links[i];
2435 if (l_ptr && !strcmp(l_ptr->name, name))
2436 goto found;
2437 }
2438 }
2439 l_ptr = NULL;
2440 n_ptr = NULL;
2441found:
2442 *node = n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002443 return l_ptr;
2444}
2445
Allan Stephens5c216e12011-10-18 11:34:29 -04002446/**
2447 * link_value_is_valid -- validate proposed link tolerance/priority/window
2448 *
Ben Hutchings2c530402012-07-10 10:55:09 +00002449 * @cmd: value type (TIPC_CMD_SET_LINK_*)
2450 * @new_value: the new value
Allan Stephens5c216e12011-10-18 11:34:29 -04002451 *
2452 * Returns 1 if value is within range, 0 if not.
2453 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002454static int link_value_is_valid(u16 cmd, u32 new_value)
2455{
2456 switch (cmd) {
2457 case TIPC_CMD_SET_LINK_TOL:
2458 return (new_value >= TIPC_MIN_LINK_TOL) &&
2459 (new_value <= TIPC_MAX_LINK_TOL);
2460 case TIPC_CMD_SET_LINK_PRI:
2461 return (new_value <= TIPC_MAX_LINK_PRI);
2462 case TIPC_CMD_SET_LINK_WINDOW:
2463 return (new_value >= TIPC_MIN_LINK_WIN) &&
2464 (new_value <= TIPC_MAX_LINK_WIN);
2465 }
2466 return 0;
2467}
2468
Allan Stephens5c216e12011-10-18 11:34:29 -04002469/**
2470 * link_cmd_set_value - change priority/tolerance/window for link/bearer/media
Ben Hutchings2c530402012-07-10 10:55:09 +00002471 * @name: ptr to link, bearer, or media name
2472 * @new_value: new value of link, bearer, or media setting
2473 * @cmd: which link, bearer, or media attribute to set (TIPC_CMD_SET_LINK_*)
Allan Stephens5c216e12011-10-18 11:34:29 -04002474 *
2475 * Caller must hold 'tipc_net_lock' to ensure link/bearer/media is not deleted.
2476 *
2477 * Returns 0 if value updated and negative value on error.
2478 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002479static int link_cmd_set_value(const char *name, u32 new_value, u16 cmd)
2480{
2481 struct tipc_node *node;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002482 struct tipc_link *l_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002483 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -05002484 struct tipc_media *m_ptr;
Ying Xue636c0372013-10-18 07:23:20 +02002485 int res = 0;
Allan Stephens5c216e12011-10-18 11:34:29 -04002486
2487 l_ptr = link_find_link(name, &node);
2488 if (l_ptr) {
2489 /*
2490 * acquire node lock for tipc_link_send_proto_msg().
2491 * see "TIPC locking policy" in net.c.
2492 */
2493 tipc_node_lock(node);
2494 switch (cmd) {
2495 case TIPC_CMD_SET_LINK_TOL:
2496 link_set_supervision_props(l_ptr, new_value);
2497 tipc_link_send_proto_msg(l_ptr,
2498 STATE_MSG, 0, 0, new_value, 0, 0);
2499 break;
2500 case TIPC_CMD_SET_LINK_PRI:
2501 l_ptr->priority = new_value;
2502 tipc_link_send_proto_msg(l_ptr,
2503 STATE_MSG, 0, 0, 0, new_value, 0);
2504 break;
2505 case TIPC_CMD_SET_LINK_WINDOW:
2506 tipc_link_set_queue_limits(l_ptr, new_value);
2507 break;
Ying Xue636c0372013-10-18 07:23:20 +02002508 default:
2509 res = -EINVAL;
2510 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002511 }
2512 tipc_node_unlock(node);
Ying Xue636c0372013-10-18 07:23:20 +02002513 return res;
Allan Stephens5c216e12011-10-18 11:34:29 -04002514 }
2515
2516 b_ptr = tipc_bearer_find(name);
2517 if (b_ptr) {
2518 switch (cmd) {
2519 case TIPC_CMD_SET_LINK_TOL:
2520 b_ptr->tolerance = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002521 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002522 case TIPC_CMD_SET_LINK_PRI:
2523 b_ptr->priority = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002524 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002525 case TIPC_CMD_SET_LINK_WINDOW:
2526 b_ptr->window = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002527 break;
2528 default:
2529 res = -EINVAL;
2530 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002531 }
Ying Xue636c0372013-10-18 07:23:20 +02002532 return res;
Allan Stephens5c216e12011-10-18 11:34:29 -04002533 }
2534
2535 m_ptr = tipc_media_find(name);
2536 if (!m_ptr)
2537 return -ENODEV;
2538 switch (cmd) {
2539 case TIPC_CMD_SET_LINK_TOL:
2540 m_ptr->tolerance = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002541 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002542 case TIPC_CMD_SET_LINK_PRI:
2543 m_ptr->priority = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002544 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002545 case TIPC_CMD_SET_LINK_WINDOW:
2546 m_ptr->window = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002547 break;
2548 default:
2549 res = -EINVAL;
2550 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002551 }
Ying Xue636c0372013-10-18 07:23:20 +02002552 return res;
Allan Stephens5c216e12011-10-18 11:34:29 -04002553}
2554
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002555struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
Per Liden4323add2006-01-18 00:38:21 +01002556 u16 cmd)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002557{
2558 struct tipc_link_config *args;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002559 u32 new_value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002560 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002561
2562 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
Per Liden4323add2006-01-18 00:38:21 +01002563 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002564
2565 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2566 new_value = ntohl(args->value);
2567
Allan Stephens5c216e12011-10-18 11:34:29 -04002568 if (!link_value_is_valid(cmd, new_value))
2569 return tipc_cfg_reply_error_string(
2570 "cannot change, value invalid");
2571
Per Liden4323add2006-01-18 00:38:21 +01002572 if (!strcmp(args->name, tipc_bclink_name)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002573 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
Per Liden4323add2006-01-18 00:38:21 +01002574 (tipc_bclink_set_queue_limits(new_value) == 0))
2575 return tipc_cfg_reply_none();
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002576 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
Per Liden4323add2006-01-18 00:38:21 +01002577 " (cannot change setting on broadcast link)");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002578 }
2579
Per Liden4323add2006-01-18 00:38:21 +01002580 read_lock_bh(&tipc_net_lock);
Allan Stephens5c216e12011-10-18 11:34:29 -04002581 res = link_cmd_set_value(args->name, new_value, cmd);
Per Liden4323add2006-01-18 00:38:21 +01002582 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002583 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002584 return tipc_cfg_reply_error_string("cannot change link setting");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002585
Per Liden4323add2006-01-18 00:38:21 +01002586 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002587}
2588
2589/**
2590 * link_reset_statistics - reset link statistics
2591 * @l_ptr: pointer to link
2592 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002593static void link_reset_statistics(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002594{
2595 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2596 l_ptr->stats.sent_info = l_ptr->next_out_no;
2597 l_ptr->stats.recv_info = l_ptr->next_in_no;
2598}
2599
Per Liden4323add2006-01-18 00:38:21 +01002600struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002601{
2602 char *link_name;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002603 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002604 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002605
2606 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002607 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002608
2609 link_name = (char *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +01002610 if (!strcmp(link_name, tipc_bclink_name)) {
2611 if (tipc_bclink_reset_stats())
2612 return tipc_cfg_reply_error_string("link not found");
2613 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002614 }
2615
Per Liden4323add2006-01-18 00:38:21 +01002616 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002617 l_ptr = link_find_link(link_name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002618 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002619 read_unlock_bh(&tipc_net_lock);
2620 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002621 }
2622
Per Liden4323add2006-01-18 00:38:21 +01002623 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002624 link_reset_statistics(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +01002625 tipc_node_unlock(node);
2626 read_unlock_bh(&tipc_net_lock);
2627 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002628}
2629
2630/**
2631 * percent - convert count to a percentage of total (rounding up or down)
2632 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002633static u32 percent(u32 count, u32 total)
2634{
2635 return (count * 100 + (total / 2)) / total;
2636}
2637
2638/**
Per Liden4323add2006-01-18 00:38:21 +01002639 * tipc_link_stats - print link statistics
Per Lidenb97bf3f2006-01-02 19:04:38 +01002640 * @name: link name
2641 * @buf: print buffer area
2642 * @buf_size: size of print buffer area
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002643 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002644 * Returns length of print buffer data string (or 0 if error)
2645 */
Per Liden4323add2006-01-18 00:38:21 +01002646static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002647{
Erik Hugnedc1aed32012-06-29 00:50:23 -04002648 struct tipc_link *l;
2649 struct tipc_stats *s;
David S. Miller6c000552008-09-02 23:38:32 -07002650 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002651 char *status;
2652 u32 profile_total = 0;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002653 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002654
Per Liden4323add2006-01-18 00:38:21 +01002655 if (!strcmp(name, tipc_bclink_name))
2656 return tipc_bclink_stats(buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002657
Per Liden4323add2006-01-18 00:38:21 +01002658 read_lock_bh(&tipc_net_lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002659 l = link_find_link(name, &node);
2660 if (!l) {
Per Liden4323add2006-01-18 00:38:21 +01002661 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002662 return 0;
2663 }
Per Liden4323add2006-01-18 00:38:21 +01002664 tipc_node_lock(node);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002665 s = &l->stats;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002666
Erik Hugnedc1aed32012-06-29 00:50:23 -04002667 if (tipc_link_is_active(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002668 status = "ACTIVE";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002669 else if (tipc_link_is_up(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002670 status = "STANDBY";
2671 else
2672 status = "DEFUNCT";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002673
2674 ret = tipc_snprintf(buf, buf_size, "Link <%s>\n"
2675 " %s MTU:%u Priority:%u Tolerance:%u ms"
2676 " Window:%u packets\n",
2677 l->name, status, l->max_pkt, l->priority,
2678 l->tolerance, l->queue_limit[0]);
2679
2680 ret += tipc_snprintf(buf + ret, buf_size - ret,
2681 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
2682 l->next_in_no - s->recv_info, s->recv_fragments,
2683 s->recv_fragmented, s->recv_bundles,
2684 s->recv_bundled);
2685
2686 ret += tipc_snprintf(buf + ret, buf_size - ret,
2687 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
2688 l->next_out_no - s->sent_info, s->sent_fragments,
2689 s->sent_fragmented, s->sent_bundles,
2690 s->sent_bundled);
2691
2692 profile_total = s->msg_length_counts;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002693 if (!profile_total)
2694 profile_total = 1;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002695
2696 ret += tipc_snprintf(buf + ret, buf_size - ret,
2697 " TX profile sample:%u packets average:%u octets\n"
2698 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
2699 "-16384:%u%% -32768:%u%% -66000:%u%%\n",
2700 s->msg_length_counts,
2701 s->msg_lengths_total / profile_total,
2702 percent(s->msg_length_profile[0], profile_total),
2703 percent(s->msg_length_profile[1], profile_total),
2704 percent(s->msg_length_profile[2], profile_total),
2705 percent(s->msg_length_profile[3], profile_total),
2706 percent(s->msg_length_profile[4], profile_total),
2707 percent(s->msg_length_profile[5], profile_total),
2708 percent(s->msg_length_profile[6], profile_total));
2709
2710 ret += tipc_snprintf(buf + ret, buf_size - ret,
2711 " RX states:%u probes:%u naks:%u defs:%u"
2712 " dups:%u\n", s->recv_states, s->recv_probes,
2713 s->recv_nacks, s->deferred_recv, s->duplicates);
2714
2715 ret += tipc_snprintf(buf + ret, buf_size - ret,
2716 " TX states:%u probes:%u naks:%u acks:%u"
2717 " dups:%u\n", s->sent_states, s->sent_probes,
2718 s->sent_nacks, s->sent_acks, s->retransmitted);
2719
2720 ret += tipc_snprintf(buf + ret, buf_size - ret,
Ying Xue3c294cb2012-11-15 11:34:45 +08002721 " Congestion link:%u Send queue"
2722 " max:%u avg:%u\n", s->link_congs,
Erik Hugnedc1aed32012-06-29 00:50:23 -04002723 s->max_queue_sz, s->queue_sz_counts ?
2724 (s->accu_queue_sz / s->queue_sz_counts) : 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002725
Per Liden4323add2006-01-18 00:38:21 +01002726 tipc_node_unlock(node);
2727 read_unlock_bh(&tipc_net_lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002728 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002729}
2730
Per Liden4323add2006-01-18 00:38:21 +01002731struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002732{
2733 struct sk_buff *buf;
2734 struct tlv_desc *rep_tlv;
2735 int str_len;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002736 int pb_len;
2737 char *pb;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002738
2739 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002740 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002741
Erik Hugnedc1aed32012-06-29 00:50:23 -04002742 buf = tipc_cfg_reply_alloc(TLV_SPACE(ULTRA_STRING_MAX_LEN));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002743 if (!buf)
2744 return NULL;
2745
2746 rep_tlv = (struct tlv_desc *)buf->data;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002747 pb = TLV_DATA(rep_tlv);
2748 pb_len = ULTRA_STRING_MAX_LEN;
Per Liden4323add2006-01-18 00:38:21 +01002749 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
Erik Hugnedc1aed32012-06-29 00:50:23 -04002750 pb, pb_len);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002751 if (!str_len) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002752 kfree_skb(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002753 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002754 }
Erik Hugnedc1aed32012-06-29 00:50:23 -04002755 str_len += 1; /* for "\0" */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002756 skb_put(buf, TLV_SPACE(str_len));
2757 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
2758
2759 return buf;
2760}
2761
Per Lidenb97bf3f2006-01-02 19:04:38 +01002762/**
Per Liden4323add2006-01-18 00:38:21 +01002763 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
Per Lidenb97bf3f2006-01-02 19:04:38 +01002764 * @dest: network address of destination node
2765 * @selector: used to select from set of active links
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002766 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002767 * If no active link can be found, uses default maximum packet size.
2768 */
Per Liden4323add2006-01-18 00:38:21 +01002769u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002770{
David S. Miller6c000552008-09-02 23:38:32 -07002771 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002772 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002773 u32 res = MAX_PKT_DEFAULT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002774
Per Lidenb97bf3f2006-01-02 19:04:38 +01002775 if (dest == tipc_own_addr)
2776 return MAX_MSG_SIZE;
2777
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002778 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00002779 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002780 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002781 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002782 l_ptr = n_ptr->active_links[selector & 1];
2783 if (l_ptr)
Allan Stephens15e979d2010-05-11 14:30:10 +00002784 res = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01002785 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002786 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002787 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002788 return res;
2789}
2790
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002791static void link_print(struct tipc_link *l_ptr, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002792{
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002793 pr_info("%s Link %x<%s>:", str, l_ptr->addr, l_ptr->b_ptr->name);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002794
Per Lidenb97bf3f2006-01-02 19:04:38 +01002795 if (link_working_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002796 pr_cont(":WU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002797 else if (link_reset_reset(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002798 pr_cont(":RR\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002799 else if (link_reset_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002800 pr_cont(":RU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002801 else if (link_working_working(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002802 pr_cont(":WW\n");
2803 else
2804 pr_cont("\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002805}