blob: ac26f8a657d9e88dd83cb5a28e89101710c10589 [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 Stephensf882cb762011-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{
Ying Xued77b3832013-12-10 20:45:38 -0800389 kfree_skb_list(l_ptr->first_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100390 l_ptr->first_out = NULL;
391 l_ptr->out_queue_size = 0;
392}
393
394/**
Per Liden4323add2006-01-18 00:38:21 +0100395 * tipc_link_reset_fragments - purge link's inbound message fragments queue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100396 * @l_ptr: pointer to link
397 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500398void tipc_link_reset_fragments(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100399{
Erik Hugne40ba3cd2013-11-06 09:28:06 +0100400 kfree_skb(l_ptr->reasm_head);
401 l_ptr->reasm_head = NULL;
402 l_ptr->reasm_tail = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100403}
404
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900405/**
Per Liden4323add2006-01-18 00:38:21 +0100406 * tipc_link_stop - purge all inbound and outbound messages associated with link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100407 * @l_ptr: pointer to link
408 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500409void tipc_link_stop(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100410{
Ying Xued77b3832013-12-10 20:45:38 -0800411 kfree_skb_list(l_ptr->oldest_deferred_in);
412 kfree_skb_list(l_ptr->first_out);
Per Liden4323add2006-01-18 00:38:21 +0100413 tipc_link_reset_fragments(l_ptr);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400414 kfree_skb(l_ptr->proto_msg_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100415 l_ptr->proto_msg_queue = NULL;
416}
417
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500418void tipc_link_reset(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100419{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100420 u32 prev_state = l_ptr->state;
421 u32 checkpoint = l_ptr->next_in_no;
Allan Stephens5392d642006-06-25 23:52:50 -0700422 int was_active_link = tipc_link_is_active(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900423
Allan Stephensa686e682008-06-04 17:29:39 -0700424 msg_set_session(l_ptr->pmsg, ((msg_session(l_ptr->pmsg) + 1) & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100425
Allan Stephensa686e682008-06-04 17:29:39 -0700426 /* Link is down, accept any session */
427 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100428
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900429 /* Prepare for max packet size negotiation */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100430 link_init_max_pkt(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900431
Per Lidenb97bf3f2006-01-02 19:04:38 +0100432 l_ptr->state = RESET_UNKNOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100433
434 if ((prev_state == RESET_UNKNOWN) || (prev_state == RESET_RESET))
435 return;
436
Per Liden4323add2006-01-18 00:38:21 +0100437 tipc_node_link_down(l_ptr->owner, l_ptr);
438 tipc_bearer_remove_dest(l_ptr->b_ptr, l_ptr->addr);
Paul Gortmaker7368ddf2010-10-12 14:25:58 +0000439
Paul Gortmaker8f19afb2011-02-28 11:36:21 -0400440 if (was_active_link && tipc_node_active_links(l_ptr->owner) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100441 l_ptr->owner->permit_changeover) {
442 l_ptr->reset_checkpoint = checkpoint;
443 l_ptr->exp_msg_count = START_CHANGEOVER;
444 }
445
446 /* Clean up all queues: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100447 link_release_outqueue(l_ptr);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400448 kfree_skb(l_ptr->proto_msg_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100449 l_ptr->proto_msg_queue = NULL;
Ying Xued77b3832013-12-10 20:45:38 -0800450 kfree_skb_list(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100451 if (!list_empty(&l_ptr->waiting_ports))
Per Liden4323add2006-01-18 00:38:21 +0100452 tipc_link_wakeup_ports(l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100453
454 l_ptr->retransm_queue_head = 0;
455 l_ptr->retransm_queue_size = 0;
456 l_ptr->last_out = NULL;
457 l_ptr->first_out = NULL;
458 l_ptr->next_out = NULL;
459 l_ptr->unacked_window = 0;
460 l_ptr->checkpoint = 1;
461 l_ptr->next_out_no = 1;
462 l_ptr->deferred_inqueue_sz = 0;
463 l_ptr->oldest_deferred_in = NULL;
464 l_ptr->newest_deferred_in = NULL;
465 l_ptr->fsm_msg_cnt = 0;
466 l_ptr->stale_count = 0;
467 link_reset_statistics(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100468}
469
470
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500471static void link_activate(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100472{
Allan Stephens5392d642006-06-25 23:52:50 -0700473 l_ptr->next_in_no = l_ptr->stats.recv_info = 1;
Per Liden4323add2006-01-18 00:38:21 +0100474 tipc_node_link_up(l_ptr->owner, l_ptr);
475 tipc_bearer_add_dest(l_ptr->b_ptr, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100476}
477
478/**
479 * link_state_event - link finite state machine
480 * @l_ptr: pointer to link
481 * @event: state machine event to process
482 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000483static void link_state_event(struct tipc_link *l_ptr, unsigned int event)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100484{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500485 struct tipc_link *other;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100486 u32 cont_intv = l_ptr->continuity_interval;
487
488 if (!l_ptr->started && (event != STARTING_EVT))
489 return; /* Not yet. */
490
491 if (link_blocked(l_ptr)) {
Allan Stephensa0168922010-12-31 18:59:35 +0000492 if (event == TIMEOUT_EVT)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100493 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100494 return; /* Changeover going on */
495 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100496
497 switch (l_ptr->state) {
498 case WORKING_WORKING:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100499 switch (event) {
500 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100501 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100502 break;
503 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100504 if (l_ptr->next_in_no != l_ptr->checkpoint) {
505 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100506 if (tipc_bclink_acks_missing(l_ptr->owner)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900507 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100508 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100509 l_ptr->fsm_msg_cnt++;
510 } else if (l_ptr->max_pkt < l_ptr->max_pkt_target) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900511 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100512 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100513 l_ptr->fsm_msg_cnt++;
514 }
515 link_set_timer(l_ptr, cont_intv);
516 break;
517 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100518 l_ptr->state = WORKING_UNKNOWN;
519 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100520 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100521 l_ptr->fsm_msg_cnt++;
522 link_set_timer(l_ptr, cont_intv / 4);
523 break;
524 case RESET_MSG:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400525 pr_info("%s<%s>, requested by peer\n", link_rst_msg,
526 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100527 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100528 l_ptr->state = RESET_RESET;
529 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100530 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100531 l_ptr->fsm_msg_cnt++;
532 link_set_timer(l_ptr, cont_intv);
533 break;
534 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400535 pr_err("%s%u in WW state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100536 }
537 break;
538 case WORKING_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100539 switch (event) {
540 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100541 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100542 l_ptr->state = WORKING_WORKING;
543 l_ptr->fsm_msg_cnt = 0;
544 link_set_timer(l_ptr, cont_intv);
545 break;
546 case RESET_MSG:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400547 pr_info("%s<%s>, requested by peer while probing\n",
548 link_rst_msg, l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100549 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100550 l_ptr->state = RESET_RESET;
551 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100552 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100553 l_ptr->fsm_msg_cnt++;
554 link_set_timer(l_ptr, cont_intv);
555 break;
556 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100557 if (l_ptr->next_in_no != l_ptr->checkpoint) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100558 l_ptr->state = WORKING_WORKING;
559 l_ptr->fsm_msg_cnt = 0;
560 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100561 if (tipc_bclink_acks_missing(l_ptr->owner)) {
562 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
563 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100564 l_ptr->fsm_msg_cnt++;
565 }
566 link_set_timer(l_ptr, cont_intv);
567 } else if (l_ptr->fsm_msg_cnt < l_ptr->abort_limit) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900568 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100569 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100570 l_ptr->fsm_msg_cnt++;
571 link_set_timer(l_ptr, cont_intv / 4);
572 } else { /* Link has failed */
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400573 pr_warn("%s<%s>, peer not responding\n",
574 link_rst_msg, l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100575 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100576 l_ptr->state = RESET_UNKNOWN;
577 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100578 tipc_link_send_proto_msg(l_ptr, RESET_MSG,
579 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100580 l_ptr->fsm_msg_cnt++;
581 link_set_timer(l_ptr, cont_intv);
582 }
583 break;
584 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400585 pr_err("%s%u in WU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100586 }
587 break;
588 case RESET_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100589 switch (event) {
590 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100591 break;
592 case ACTIVATE_MSG:
593 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000594 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100595 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100596 l_ptr->state = WORKING_WORKING;
597 l_ptr->fsm_msg_cnt = 0;
598 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100599 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100600 l_ptr->fsm_msg_cnt++;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800601 if (l_ptr->owner->working_links == 1)
602 tipc_link_send_sync(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100603 link_set_timer(l_ptr, cont_intv);
604 break;
605 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100606 l_ptr->state = RESET_RESET;
607 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100608 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 1, 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 break;
612 case STARTING_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100613 l_ptr->started = 1;
614 /* fall through */
615 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100616 tipc_link_send_proto_msg(l_ptr, RESET_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100617 l_ptr->fsm_msg_cnt++;
618 link_set_timer(l_ptr, cont_intv);
619 break;
620 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400621 pr_err("%s%u in RU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100622 }
623 break;
624 case RESET_RESET:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100625 switch (event) {
626 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100627 case ACTIVATE_MSG:
628 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000629 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100630 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100631 l_ptr->state = WORKING_WORKING;
632 l_ptr->fsm_msg_cnt = 0;
633 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100634 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100635 l_ptr->fsm_msg_cnt++;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800636 if (l_ptr->owner->working_links == 1)
637 tipc_link_send_sync(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100638 link_set_timer(l_ptr, cont_intv);
639 break;
640 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100641 break;
642 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100643 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100644 l_ptr->fsm_msg_cnt++;
645 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100646 break;
647 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400648 pr_err("%s%u in RR state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100649 }
650 break;
651 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400652 pr_err("Unknown link state %u/%u\n", l_ptr->state, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100653 }
654}
655
656/*
657 * link_bundle_buf(): Append contents of a buffer to
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900658 * the tail of an existing one.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100659 */
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400660static int link_bundle_buf(struct tipc_link *l_ptr, struct sk_buff *bundler,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100661 struct sk_buff *buf)
662{
663 struct tipc_msg *bundler_msg = buf_msg(bundler);
664 struct tipc_msg *msg = buf_msg(buf);
665 u32 size = msg_size(msg);
Allan Stephense49060c2006-06-29 12:32:46 -0700666 u32 bundle_size = msg_size(bundler_msg);
667 u32 to_pos = align(bundle_size);
668 u32 pad = to_pos - bundle_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100669
670 if (msg_user(bundler_msg) != MSG_BUNDLER)
671 return 0;
672 if (msg_type(bundler_msg) != OPEN_MSG)
673 return 0;
Allan Stephense49060c2006-06-29 12:32:46 -0700674 if (skb_tailroom(bundler) < (pad + size))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100675 return 0;
Allan Stephens15e979d2010-05-11 14:30:10 +0000676 if (l_ptr->max_pkt < (to_pos + size))
Allan Stephens863fae62006-07-03 19:39:36 -0700677 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100678
Allan Stephense49060c2006-06-29 12:32:46 -0700679 skb_put(bundler, pad + size);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300680 skb_copy_to_linear_data_offset(bundler, to_pos, buf->data, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100681 msg_set_size(bundler_msg, to_pos + size);
682 msg_set_msgcnt(bundler_msg, msg_msgcnt(bundler_msg) + 1);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400683 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100684 l_ptr->stats.sent_bundled++;
685 return 1;
686}
687
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500688static void link_add_to_outqueue(struct tipc_link *l_ptr,
Sam Ravnborg05790c62006-03-20 22:37:04 -0800689 struct sk_buff *buf,
690 struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100691{
692 u32 ack = mod(l_ptr->next_in_no - 1);
693 u32 seqno = mod(l_ptr->next_out_no++);
694
695 msg_set_word(msg, 2, ((ack << 16) | seqno));
696 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
697 buf->next = NULL;
698 if (l_ptr->first_out) {
699 l_ptr->last_out->next = buf;
700 l_ptr->last_out = buf;
701 } else
702 l_ptr->first_out = l_ptr->last_out = buf;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500703
Per Lidenb97bf3f2006-01-02 19:04:38 +0100704 l_ptr->out_queue_size++;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500705 if (l_ptr->out_queue_size > l_ptr->stats.max_queue_sz)
706 l_ptr->stats.max_queue_sz = l_ptr->out_queue_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100707}
708
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500709static void link_add_chain_to_outqueue(struct tipc_link *l_ptr,
Allan Stephensdc63d912011-04-21 11:50:42 -0400710 struct sk_buff *buf_chain,
711 u32 long_msgno)
712{
713 struct sk_buff *buf;
714 struct tipc_msg *msg;
715
716 if (!l_ptr->next_out)
717 l_ptr->next_out = buf_chain;
718 while (buf_chain) {
719 buf = buf_chain;
720 buf_chain = buf_chain->next;
721
722 msg = buf_msg(buf);
723 msg_set_long_msgno(msg, long_msgno);
724 link_add_to_outqueue(l_ptr, buf, msg);
725 }
726}
727
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900728/*
729 * tipc_link_send_buf() is the 'full path' for messages, called from
Per Lidenb97bf3f2006-01-02 19:04:38 +0100730 * inside TIPC when the 'fast path' in tipc_send_buf
731 * has failed, and from link_send()
732 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500733int tipc_link_send_buf(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100734{
735 struct tipc_msg *msg = buf_msg(buf);
736 u32 size = msg_size(msg);
737 u32 dsz = msg_data_sz(msg);
738 u32 queue_size = l_ptr->out_queue_size;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000739 u32 imp = tipc_msg_tot_importance(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100740 u32 queue_limit = l_ptr->queue_limit[imp];
Allan Stephens15e979d2010-05-11 14:30:10 +0000741 u32 max_packet = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100742
Per Lidenb97bf3f2006-01-02 19:04:38 +0100743 /* Match msg importance against queue limits: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100744 if (unlikely(queue_size >= queue_limit)) {
745 if (imp <= TIPC_CRITICAL_IMPORTANCE) {
Allan Stephensbebc55a2011-04-19 10:17:58 -0400746 link_schedule_port(l_ptr, msg_origport(msg), size);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400747 kfree_skb(buf);
Allan Stephensbebc55a2011-04-19 10:17:58 -0400748 return -ELINKCONG;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100749 }
Allan Stephens5f6d9122011-11-04 13:24:29 -0400750 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100751 if (imp > CONN_MANAGER) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400752 pr_warn("%s<%s>, send queue full", link_rst_msg,
753 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100754 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100755 }
756 return dsz;
757 }
758
759 /* Fragmentation needed ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100760 if (size > max_packet)
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000761 return link_send_long_buf(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100762
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400763 /* Packet can be queued or sent. */
Erik Hugne512137e2013-12-06 10:08:00 -0500764 if (likely(!link_congested(l_ptr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100765 link_add_to_outqueue(l_ptr, buf, msg);
766
Ying Xue3c294cb2012-11-15 11:34:45 +0800767 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
768 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100769 return dsz;
770 }
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400771 /* Congestion: can message be bundled ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100772 if ((msg_user(msg) != CHANGEOVER_PROTOCOL) &&
773 (msg_user(msg) != MSG_FRAGMENTER)) {
774
775 /* Try adding message to an existing bundle */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900776 if (l_ptr->next_out &&
Ying Xue3c294cb2012-11-15 11:34:45 +0800777 link_bundle_buf(l_ptr, l_ptr->last_out, buf))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100778 return dsz;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100779
780 /* Try creating a new bundle */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100781 if (size <= max_packet * 2 / 3) {
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000782 struct sk_buff *bundler = tipc_buf_acquire(max_packet);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100783 struct tipc_msg bundler_hdr;
784
785 if (bundler) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000786 tipc_msg_init(&bundler_hdr, MSG_BUNDLER, OPEN_MSG,
Allan Stephens75715212008-06-04 17:37:34 -0700787 INT_H_SIZE, l_ptr->addr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300788 skb_copy_to_linear_data(bundler, &bundler_hdr,
789 INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100790 skb_trim(bundler, INT_H_SIZE);
791 link_bundle_buf(l_ptr, bundler, buf);
792 buf = bundler;
793 msg = buf_msg(buf);
794 l_ptr->stats.sent_bundles++;
795 }
796 }
797 }
798 if (!l_ptr->next_out)
799 l_ptr->next_out = buf;
800 link_add_to_outqueue(l_ptr, buf, msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100801 return dsz;
802}
803
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900804/*
805 * tipc_link_send(): same as tipc_link_send_buf(), but the link to use has
Per Lidenb97bf3f2006-01-02 19:04:38 +0100806 * not been selected yet, and the the owner node is not locked
807 * Called by TIPC internal users, e.g. the name distributor
808 */
Per Liden4323add2006-01-18 00:38:21 +0100809int tipc_link_send(struct sk_buff *buf, u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100810{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500811 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700812 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100813 int res = -ELINKCONG;
814
Per Liden4323add2006-01-18 00:38:21 +0100815 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000816 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100817 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +0100818 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100819 l_ptr = n_ptr->active_links[selector & 1];
Allan Stephensa0168922010-12-31 18:59:35 +0000820 if (l_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100821 res = tipc_link_send_buf(l_ptr, buf);
Allan Stephensa0168922010-12-31 18:59:35 +0000822 else
Allan Stephens5f6d9122011-11-04 13:24:29 -0400823 kfree_skb(buf);
Per Liden4323add2006-01-18 00:38:21 +0100824 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100825 } else {
Allan Stephens5f6d9122011-11-04 13:24:29 -0400826 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100827 }
Per Liden4323add2006-01-18 00:38:21 +0100828 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100829 return res;
830}
831
Jon Maloyc64f7a62012-11-16 13:51:31 +0800832/*
833 * tipc_link_send_sync - synchronize broadcast link endpoints.
834 *
835 * Give a newly added peer node the sequence number where it should
836 * start receiving and acking broadcast packets.
837 *
838 * Called with node locked
839 */
840static void tipc_link_send_sync(struct tipc_link *l)
841{
842 struct sk_buff *buf;
843 struct tipc_msg *msg;
844
845 buf = tipc_buf_acquire(INT_H_SIZE);
846 if (!buf)
847 return;
848
849 msg = buf_msg(buf);
850 tipc_msg_init(msg, BCAST_PROTOCOL, STATE_MSG, INT_H_SIZE, l->addr);
851 msg_set_last_bcast(msg, l->owner->bclink.acked);
852 link_add_chain_to_outqueue(l, buf, 0);
853 tipc_link_push_queue(l);
854}
855
856/*
857 * tipc_link_recv_sync - synchronize broadcast link endpoints.
858 * Receive the sequence number where we should start receiving and
859 * acking broadcast packets from a newly added peer node, and open
860 * up for reception of such packets.
861 *
862 * Called with node locked
863 */
864static void tipc_link_recv_sync(struct tipc_node *n, struct sk_buff *buf)
865{
866 struct tipc_msg *msg = buf_msg(buf);
867
868 n->bclink.last_sent = n->bclink.last_in = msg_last_bcast(msg);
869 n->bclink.recv_permitted = true;
870 kfree_skb(buf);
871}
872
873/*
Allan Stephens9aa88c22011-05-31 13:38:02 -0400874 * tipc_link_send_names - send name table entries to new neighbor
875 *
876 * Send routine for bulk delivery of name table messages when contact
877 * with a new neighbor occurs. No link congestion checking is performed
878 * because name table messages *must* be delivered. The messages must be
879 * small enough not to require fragmentation.
880 * Called without any locks held.
881 */
Allan Stephens9aa88c22011-05-31 13:38:02 -0400882void tipc_link_send_names(struct list_head *message_list, u32 dest)
883{
884 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500885 struct tipc_link *l_ptr;
Allan Stephens9aa88c22011-05-31 13:38:02 -0400886 struct sk_buff *buf;
887 struct sk_buff *temp_buf;
888
889 if (list_empty(message_list))
890 return;
891
892 read_lock_bh(&tipc_net_lock);
893 n_ptr = tipc_node_find(dest);
894 if (n_ptr) {
895 tipc_node_lock(n_ptr);
896 l_ptr = n_ptr->active_links[0];
897 if (l_ptr) {
898 /* convert circular list to linear list */
899 ((struct sk_buff *)message_list->prev)->next = NULL;
900 link_add_chain_to_outqueue(l_ptr,
901 (struct sk_buff *)message_list->next, 0);
902 tipc_link_push_queue(l_ptr);
903 INIT_LIST_HEAD(message_list);
904 }
905 tipc_node_unlock(n_ptr);
906 }
907 read_unlock_bh(&tipc_net_lock);
908
909 /* discard the messages if they couldn't be sent */
Allan Stephens9aa88c22011-05-31 13:38:02 -0400910 list_for_each_safe(buf, temp_buf, ((struct sk_buff *)message_list)) {
911 list_del((struct list_head *)buf);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400912 kfree_skb(buf);
Allan Stephens9aa88c22011-05-31 13:38:02 -0400913 }
914}
915
916/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900917 * link_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +0100918 * destination link is known and the header is complete,
919 * inclusive total message length. Very time critical.
920 * Link is locked. Returns user data length.
921 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500922static int link_send_buf_fast(struct tipc_link *l_ptr, struct sk_buff *buf,
Sam Ravnborg05790c62006-03-20 22:37:04 -0800923 u32 *used_max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100924{
925 struct tipc_msg *msg = buf_msg(buf);
926 int res = msg_data_sz(msg);
927
928 if (likely(!link_congested(l_ptr))) {
Allan Stephens15e979d2010-05-11 14:30:10 +0000929 if (likely(msg_size(msg) <= l_ptr->max_pkt)) {
Erik Hugne512137e2013-12-06 10:08:00 -0500930 link_add_to_outqueue(l_ptr, buf, msg);
931 tipc_bearer_send(l_ptr->b_ptr, buf,
932 &l_ptr->media_addr);
933 l_ptr->unacked_window = 0;
934 return res;
935 }
936 else
Allan Stephens15e979d2010-05-11 14:30:10 +0000937 *used_max_pkt = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100938 }
Per Liden4323add2006-01-18 00:38:21 +0100939 return tipc_link_send_buf(l_ptr, buf); /* All other cases */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100940}
941
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900942/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900943 * tipc_link_send_sections_fast: Entry for messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +0100944 * destination processor is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900945 * except for total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100946 * Returns user data length or errno.
947 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500948int tipc_link_send_sections_fast(struct tipc_port *sender,
Per Liden4323add2006-01-18 00:38:21 +0100949 struct iovec const *msg_sect,
Ying Xue9446b872013-10-18 07:23:15 +0200950 unsigned int len, u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100951{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500952 struct tipc_msg *hdr = &sender->phdr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500953 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100954 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -0700955 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100956 int res;
957 u32 selector = msg_origport(hdr) & 1;
958
Per Lidenb97bf3f2006-01-02 19:04:38 +0100959again:
960 /*
961 * Try building message using port's max_pkt hint.
962 * (Must not hold any locks while building message.)
963 */
Ying Xue9446b872013-10-18 07:23:15 +0200964 res = tipc_msg_build(hdr, msg_sect, len, sender->max_pkt, &buf);
Ying Xue7410f962013-06-17 10:54:49 -0400965 /* Exit if build request was invalid */
966 if (unlikely(res < 0))
967 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100968
Per Liden4323add2006-01-18 00:38:21 +0100969 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000970 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100971 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +0100972 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100973 l_ptr = node->active_links[selector];
974 if (likely(l_ptr)) {
975 if (likely(buf)) {
976 res = link_send_buf_fast(l_ptr, buf,
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500977 &sender->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100978exit:
Per Liden4323add2006-01-18 00:38:21 +0100979 tipc_node_unlock(node);
980 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100981 return res;
982 }
983
Per Lidenb97bf3f2006-01-02 19:04:38 +0100984 /* Exit if link (or bearer) is congested */
Erik Hugne512137e2013-12-06 10:08:00 -0500985 if (link_congested(l_ptr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100986 res = link_schedule_port(l_ptr,
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500987 sender->ref, res);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100988 goto exit;
989 }
990
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900991 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100992 * Message size exceeds max_pkt hint; update hint,
993 * then re-try fast path or fragment the message
994 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500995 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +0100996 tipc_node_unlock(node);
997 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100998
999
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001000 if ((msg_hdr_sz(hdr) + res) <= sender->max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001001 goto again;
1002
Ying Xue9446b872013-10-18 07:23:15 +02001003 return link_send_sections_long(sender, msg_sect, len,
Allan Stephens26896902011-04-21 10:42:07 -05001004 destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001005 }
Per Liden4323add2006-01-18 00:38:21 +01001006 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001007 }
Per Liden4323add2006-01-18 00:38:21 +01001008 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001009
1010 /* Couldn't find a link to the destination node */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001011 if (buf)
1012 return tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1013 if (res >= 0)
Ying Xue9446b872013-10-18 07:23:15 +02001014 return tipc_port_reject_sections(sender, hdr, msg_sect,
1015 len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001016 return res;
1017}
1018
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001019/*
1020 * link_send_sections_long(): Entry for long messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001021 * destination node is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001022 * inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001023 * Link and bearer congestion status have been checked to be ok,
1024 * and are ignored if they change.
1025 *
1026 * Note that fragments do not use the full link MTU so that they won't have
1027 * to undergo refragmentation if link changeover causes them to be sent
1028 * over another link with an additional tunnel header added as prefix.
1029 * (Refragmentation will still occur if the other link has a smaller MTU.)
1030 *
1031 * Returns user data length or errno.
1032 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001033static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001034 struct iovec const *msg_sect,
Ying Xue9446b872013-10-18 07:23:15 +02001035 unsigned int len, u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001036{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001037 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001038 struct tipc_node *node;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001039 struct tipc_msg *hdr = &sender->phdr;
Ying Xue9446b872013-10-18 07:23:15 +02001040 u32 dsz = len;
Allan Stephens0e659672010-12-31 18:59:32 +00001041 u32 max_pkt, fragm_sz, rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001042 struct tipc_msg fragm_hdr;
Allan Stephens0e659672010-12-31 18:59:32 +00001043 struct sk_buff *buf, *buf_chain, *prev;
1044 u32 fragm_crs, fragm_rest, hsz, sect_rest;
Ying Xue40682432013-10-18 07:23:16 +02001045 const unchar __user *sect_crs;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001046 int curr_sect;
1047 u32 fragm_no;
Ying Xue126c0522013-06-17 10:54:50 -04001048 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001049
1050again:
1051 fragm_no = 1;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001052 max_pkt = sender->max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001053 /* leave room for tunnel header in case of link changeover */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001054 fragm_sz = max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001055 /* leave room for fragmentation header in each fragment */
1056 rest = dsz;
1057 fragm_crs = 0;
1058 fragm_rest = 0;
1059 sect_rest = 0;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001060 sect_crs = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001061 curr_sect = -1;
1062
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001063 /* Prepare reusable fragment header */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001064 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07001065 INT_H_SIZE, msg_destnode(hdr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001066 msg_set_size(&fragm_hdr, max_pkt);
1067 msg_set_fragm_no(&fragm_hdr, 1);
1068
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001069 /* Prepare header of first fragment */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001070 buf_chain = buf = tipc_buf_acquire(max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001071 if (!buf)
1072 return -ENOMEM;
1073 buf->next = NULL;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001074 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001075 hsz = msg_hdr_sz(hdr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001076 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, hdr, hsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001077
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001078 /* Chop up message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001079 fragm_crs = INT_H_SIZE + hsz;
1080 fragm_rest = fragm_sz - hsz;
1081
1082 do { /* For all sections */
1083 u32 sz;
1084
1085 if (!sect_rest) {
1086 sect_rest = msg_sect[++curr_sect].iov_len;
Ying Xue40682432013-10-18 07:23:16 +02001087 sect_crs = msg_sect[curr_sect].iov_base;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001088 }
1089
1090 if (sect_rest < fragm_rest)
1091 sz = sect_rest;
1092 else
1093 sz = fragm_rest;
1094
Ying Xuef1733d72013-06-17 10:54:43 -04001095 if (copy_from_user(buf->data + fragm_crs, sect_crs, sz)) {
Ying Xue126c0522013-06-17 10:54:50 -04001096 res = -EFAULT;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001097error:
Ying Xued77b3832013-12-10 20:45:38 -08001098 kfree_skb_list(buf_chain);
Ying Xue126c0522013-06-17 10:54:50 -04001099 return res;
Ying Xuef1733d72013-06-17 10:54:43 -04001100 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001101 sect_crs += sz;
1102 sect_rest -= sz;
1103 fragm_crs += sz;
1104 fragm_rest -= sz;
1105 rest -= sz;
1106
1107 if (!fragm_rest && rest) {
1108
1109 /* Initiate new fragment: */
1110 if (rest <= fragm_sz) {
1111 fragm_sz = rest;
Allan Stephens0e659672010-12-31 18:59:32 +00001112 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001113 } else {
1114 msg_set_type(&fragm_hdr, FRAGMENT);
1115 }
1116 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
1117 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
1118 prev = buf;
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001119 buf = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Ying Xue126c0522013-06-17 10:54:50 -04001120 if (!buf) {
1121 res = -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001122 goto error;
Ying Xue126c0522013-06-17 10:54:50 -04001123 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001124
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001125 buf->next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001126 prev->next = buf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001127 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001128 fragm_crs = INT_H_SIZE;
1129 fragm_rest = fragm_sz;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001130 }
Allan Stephens0e659672010-12-31 18:59:32 +00001131 } while (rest > 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001132
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001133 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001134 * Now we have a buffer chain. Select a link and check
1135 * that packet size is still OK
1136 */
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001137 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001138 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001139 tipc_node_lock(node);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001140 l_ptr = node->active_links[sender->ref & 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001141 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01001142 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001143 goto reject;
1144 }
Allan Stephens15e979d2010-05-11 14:30:10 +00001145 if (l_ptr->max_pkt < max_pkt) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001146 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001147 tipc_node_unlock(node);
Ying Xued77b3832013-12-10 20:45:38 -08001148 kfree_skb_list(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001149 goto again;
1150 }
1151 } else {
1152reject:
Ying Xued77b3832013-12-10 20:45:38 -08001153 kfree_skb_list(buf_chain);
Ying Xue9446b872013-10-18 07:23:15 +02001154 return tipc_port_reject_sections(sender, hdr, msg_sect,
1155 len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001156 }
1157
Allan Stephensdc63d912011-04-21 11:50:42 -04001158 /* Append chain of fragments to send queue & send them */
Allan Stephense0f08592011-04-17 11:44:24 -04001159 l_ptr->long_msg_seq_no++;
Allan Stephensdc63d912011-04-21 11:50:42 -04001160 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
1161 l_ptr->stats.sent_fragments += fragm_no;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001162 l_ptr->stats.sent_fragmented++;
Per Liden4323add2006-01-18 00:38:21 +01001163 tipc_link_push_queue(l_ptr);
1164 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001165 return dsz;
1166}
1167
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001168/*
Per Liden4323add2006-01-18 00:38:21 +01001169 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +01001170 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001171u32 tipc_link_push_packet(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001172{
1173 struct sk_buff *buf = l_ptr->first_out;
1174 u32 r_q_size = l_ptr->retransm_queue_size;
1175 u32 r_q_head = l_ptr->retransm_queue_head;
1176
1177 /* Step to position where retransmission failed, if any, */
1178 /* consider that buffers may have been released in meantime */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001179 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001180 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +01001181 link_last_sent(l_ptr));
Allan Stephensf9057302011-10-24 16:03:12 -04001182 u32 first = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001183
1184 while (buf && less(first, r_q_head)) {
1185 first = mod(first + 1);
1186 buf = buf->next;
1187 }
1188 l_ptr->retransm_queue_head = r_q_head = first;
1189 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1190 }
1191
1192 /* Continue retransmission now, if there is anything: */
Neil Hormanca509102010-03-15 07:58:45 +00001193 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001194 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001195 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001196 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1197 l_ptr->retransm_queue_head = mod(++r_q_head);
1198 l_ptr->retransm_queue_size = --r_q_size;
1199 l_ptr->stats.retransmitted++;
1200 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001201 }
1202
1203 /* Send deferred protocol message, if any: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001204 buf = l_ptr->proto_msg_queue;
1205 if (buf) {
1206 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +00001207 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001208 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1209 l_ptr->unacked_window = 0;
1210 kfree_skb(buf);
1211 l_ptr->proto_msg_queue = NULL;
1212 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001213 }
1214
1215 /* Send one deferred data message, if send window not full: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001216 buf = l_ptr->next_out;
1217 if (buf) {
1218 struct tipc_msg *msg = buf_msg(buf);
1219 u32 next = msg_seqno(msg);
Allan Stephensf9057302011-10-24 16:03:12 -04001220 u32 first = buf_seqno(l_ptr->first_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001221
1222 if (mod(next - first) < l_ptr->queue_limit[0]) {
1223 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001224 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001225 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1226 if (msg_user(msg) == MSG_BUNDLER)
1227 msg_set_type(msg, CLOSED_MSG);
1228 l_ptr->next_out = buf->next;
1229 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001230 }
1231 }
Ying Xue3c294cb2012-11-15 11:34:45 +08001232 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001233}
1234
1235/*
1236 * push_queue(): push out the unsent messages of a link where
1237 * congestion has abated. Node is locked
1238 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001239void tipc_link_push_queue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001240{
1241 u32 res;
1242
Per Lidenb97bf3f2006-01-02 19:04:38 +01001243 do {
Per Liden4323add2006-01-18 00:38:21 +01001244 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001245 } while (!res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001246}
1247
Allan Stephensd356eeb2006-06-25 23:40:01 -07001248static void link_reset_all(unsigned long addr)
1249{
David S. Miller6c000552008-09-02 23:38:32 -07001250 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001251 char addr_string[16];
1252 u32 i;
1253
1254 read_lock_bh(&tipc_net_lock);
1255 n_ptr = tipc_node_find((u32)addr);
1256 if (!n_ptr) {
1257 read_unlock_bh(&tipc_net_lock);
1258 return; /* node no longer exists */
1259 }
1260
1261 tipc_node_lock(n_ptr);
1262
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001263 pr_warn("Resetting all links to %s\n",
1264 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -07001265
1266 for (i = 0; i < MAX_BEARERS; i++) {
1267 if (n_ptr->links[i]) {
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001268 link_print(n_ptr->links[i], "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001269 tipc_link_reset(n_ptr->links[i]);
1270 }
1271 }
1272
1273 tipc_node_unlock(n_ptr);
1274 read_unlock_bh(&tipc_net_lock);
1275}
1276
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001277static void link_retransmit_failure(struct tipc_link *l_ptr,
Paul Gortmakerae8509c2013-06-17 10:54:47 -04001278 struct sk_buff *buf)
Allan Stephensd356eeb2006-06-25 23:40:01 -07001279{
1280 struct tipc_msg *msg = buf_msg(buf);
1281
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001282 pr_warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001283
1284 if (l_ptr->addr) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001285 /* Handle failure on standard link */
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001286 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001287 tipc_link_reset(l_ptr);
1288
1289 } else {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001290 /* Handle failure on broadcast link */
David S. Miller6c000552008-09-02 23:38:32 -07001291 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001292 char addr_string[16];
1293
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001294 pr_info("Msg seq number: %u, ", msg_seqno(msg));
1295 pr_cont("Outstanding acks: %lu\n",
1296 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -07001297
Allan Stephens01d83ed2011-01-18 13:53:16 -05001298 n_ptr = tipc_bclink_retransmit_to();
Allan Stephensd356eeb2006-06-25 23:40:01 -07001299 tipc_node_lock(n_ptr);
1300
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001301 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001302 pr_info("Broadcast link info for %s\n", addr_string);
Ying Xue389dd9b2012-11-16 13:51:30 +08001303 pr_info("Reception permitted: %d, Acked: %u\n",
1304 n_ptr->bclink.recv_permitted,
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001305 n_ptr->bclink.acked);
1306 pr_info("Last in: %u, Oos state: %u, Last sent: %u\n",
1307 n_ptr->bclink.last_in,
1308 n_ptr->bclink.oos_state,
1309 n_ptr->bclink.last_sent);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001310
1311 tipc_k_signal((Handler)link_reset_all, (unsigned long)n_ptr->addr);
1312
1313 tipc_node_unlock(n_ptr);
1314
1315 l_ptr->stale_count = 0;
1316 }
1317}
1318
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001319void tipc_link_retransmit(struct tipc_link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001320 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001321{
1322 struct tipc_msg *msg;
1323
Allan Stephensd356eeb2006-06-25 23:40:01 -07001324 if (!buf)
1325 return;
1326
1327 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001328
Erik Hugne512137e2013-12-06 10:08:00 -05001329 /* Detect repeated retransmit failures */
1330 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1331 if (++l_ptr->stale_count > 100) {
1332 link_retransmit_failure(l_ptr, buf);
1333 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001334 }
1335 } else {
Erik Hugne512137e2013-12-06 10:08:00 -05001336 l_ptr->last_retransmitted = msg_seqno(msg);
1337 l_ptr->stale_count = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001338 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001339
Neil Hormanca509102010-03-15 07:58:45 +00001340 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001341 msg = buf_msg(buf);
1342 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001343 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001344 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1345 buf = buf->next;
1346 retransmits--;
1347 l_ptr->stats.retransmitted++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001348 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001349
Per Lidenb97bf3f2006-01-02 19:04:38 +01001350 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1351}
1352
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001353/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001354 * link_insert_deferred_queue - insert deferred messages back into receive chain
1355 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001356static struct sk_buff *link_insert_deferred_queue(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001357 struct sk_buff *buf)
1358{
1359 u32 seq_no;
1360
1361 if (l_ptr->oldest_deferred_in == NULL)
1362 return buf;
1363
Allan Stephensf9057302011-10-24 16:03:12 -04001364 seq_no = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001365 if (seq_no == mod(l_ptr->next_in_no)) {
1366 l_ptr->newest_deferred_in->next = buf;
1367 buf = l_ptr->oldest_deferred_in;
1368 l_ptr->oldest_deferred_in = NULL;
1369 l_ptr->deferred_inqueue_sz = 0;
1370 }
1371 return buf;
1372}
1373
Allan Stephens85035562008-04-15 19:04:54 -07001374/**
1375 * link_recv_buf_validate - validate basic format of received message
1376 *
1377 * This routine ensures a TIPC message has an acceptable header, and at least
1378 * as much data as the header indicates it should. The routine also ensures
1379 * that the entire message header is stored in the main fragment of the message
1380 * buffer, to simplify future access to message header fields.
1381 *
1382 * Note: Having extra info present in the message header or data areas is OK.
1383 * TIPC will ignore the excess, under the assumption that it is optional info
1384 * introduced by a later release of the protocol.
1385 */
Allan Stephens85035562008-04-15 19:04:54 -07001386static int link_recv_buf_validate(struct sk_buff *buf)
1387{
1388 static u32 min_data_hdr_size[8] = {
Allan Stephens741d9eb2011-05-31 15:03:18 -04001389 SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,
Allan Stephens85035562008-04-15 19:04:54 -07001390 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1391 };
1392
1393 struct tipc_msg *msg;
1394 u32 tipc_hdr[2];
1395 u32 size;
1396 u32 hdr_size;
1397 u32 min_hdr_size;
1398
1399 if (unlikely(buf->len < MIN_H_SIZE))
1400 return 0;
1401
1402 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1403 if (msg == NULL)
1404 return 0;
1405
1406 if (unlikely(msg_version(msg) != TIPC_VERSION))
1407 return 0;
1408
1409 size = msg_size(msg);
1410 hdr_size = msg_hdr_sz(msg);
1411 min_hdr_size = msg_isdata(msg) ?
1412 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1413
1414 if (unlikely((hdr_size < min_hdr_size) ||
1415 (size < hdr_size) ||
1416 (buf->len < size) ||
1417 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1418 return 0;
1419
1420 return pskb_may_pull(buf, hdr_size);
1421}
1422
Allan Stephensb02b69c2010-08-17 11:00:07 +00001423/**
1424 * tipc_recv_msg - process TIPC messages arriving from off-node
1425 * @head: pointer to message buffer chain
1426 * @tb_ptr: pointer to bearer message arrived on
1427 *
1428 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1429 * structure (i.e. cannot be NULL), but bearer can be inactive.
1430 */
Allan Stephens2d627b92011-01-07 13:00:11 -05001431void tipc_recv_msg(struct sk_buff *head, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001432{
Per Liden4323add2006-01-18 00:38:21 +01001433 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001434 while (head) {
David S. Miller6c000552008-09-02 23:38:32 -07001435 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001436 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001437 struct sk_buff *crs;
1438 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001439 struct tipc_msg *msg;
1440 u32 seq_no;
1441 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001442 u32 released = 0;
1443 int type;
1444
Per Lidenb97bf3f2006-01-02 19:04:38 +01001445 head = head->next;
Allan Stephens85035562008-04-15 19:04:54 -07001446
Allan Stephensb02b69c2010-08-17 11:00:07 +00001447 /* Ensure bearer is still enabled */
Allan Stephensb02b69c2010-08-17 11:00:07 +00001448 if (unlikely(!b_ptr->active))
Ying Xue3af390e2013-10-30 11:26:57 +08001449 goto discard;
Allan Stephensb02b69c2010-08-17 11:00:07 +00001450
Allan Stephens85035562008-04-15 19:04:54 -07001451 /* Ensure message is well-formed */
Allan Stephens85035562008-04-15 19:04:54 -07001452 if (unlikely(!link_recv_buf_validate(buf)))
Ying Xue3af390e2013-10-30 11:26:57 +08001453 goto discard;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001454
Allan Stephensfe13dda2008-04-15 19:03:23 -07001455 /* Ensure message data is a single contiguous unit */
Allan Stephens5f6d9122011-11-04 13:24:29 -04001456 if (unlikely(skb_linearize(buf)))
Ying Xue3af390e2013-10-30 11:26:57 +08001457 goto discard;
Allan Stephensfe13dda2008-04-15 19:03:23 -07001458
Allan Stephens85035562008-04-15 19:04:54 -07001459 /* Handle arrival of a non-unicast link message */
Allan Stephens85035562008-04-15 19:04:54 -07001460 msg = buf_msg(buf);
1461
Per Lidenb97bf3f2006-01-02 19:04:38 +01001462 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001463 if (msg_user(msg) == LINK_CONFIG)
1464 tipc_disc_recv_msg(buf, b_ptr);
1465 else
1466 tipc_bclink_recv_pkt(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001467 continue;
1468 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001469
Allan Stephensed33a9c2011-04-05 15:15:04 -04001470 /* Discard unicast link messages destined for another node */
Allan Stephens26008242006-06-25 23:39:31 -07001471 if (unlikely(!msg_short(msg) &&
1472 (msg_destnode(msg) != tipc_own_addr)))
Ying Xue3af390e2013-10-30 11:26:57 +08001473 goto discard;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001474
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001475 /* Locate neighboring node that sent message */
Per Liden4323add2006-01-18 00:38:21 +01001476 n_ptr = tipc_node_find(msg_prevnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001477 if (unlikely(!n_ptr))
Ying Xue3af390e2013-10-30 11:26:57 +08001478 goto discard;
Per Liden4323add2006-01-18 00:38:21 +01001479 tipc_node_lock(n_ptr);
Allan Stephens85035562008-04-15 19:04:54 -07001480
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001481 /* Locate unicast link endpoint that should handle message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001482 l_ptr = n_ptr->links[b_ptr->identity];
Ying Xue3af390e2013-10-30 11:26:57 +08001483 if (unlikely(!l_ptr))
1484 goto unlock_discard;
Allan Stephens85035562008-04-15 19:04:54 -07001485
Allan Stephensb4b56102011-05-27 11:00:51 -04001486 /* Verify that communication with node is currently allowed */
Allan Stephensb4b56102011-05-27 11:00:51 -04001487 if ((n_ptr->block_setup & WAIT_PEER_DOWN) &&
1488 msg_user(msg) == LINK_PROTOCOL &&
1489 (msg_type(msg) == RESET_MSG ||
1490 msg_type(msg) == ACTIVATE_MSG) &&
1491 !msg_redundant_link(msg))
1492 n_ptr->block_setup &= ~WAIT_PEER_DOWN;
1493
Ying Xue3af390e2013-10-30 11:26:57 +08001494 if (n_ptr->block_setup)
1495 goto unlock_discard;
Allan Stephensb4b56102011-05-27 11:00:51 -04001496
Allan Stephens85035562008-04-15 19:04:54 -07001497 /* Validate message sequence number info */
Allan Stephens85035562008-04-15 19:04:54 -07001498 seq_no = msg_seqno(msg);
1499 ackd = msg_ack(msg);
1500
1501 /* Release acked messages */
Ying Xue389dd9b2012-11-16 13:51:30 +08001502 if (n_ptr->bclink.recv_permitted)
Allan Stephens365595912011-10-24 15:26:24 -04001503 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001504
1505 crs = l_ptr->first_out;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001506 while ((crs != l_ptr->next_out) &&
Allan Stephensf9057302011-10-24 16:03:12 -04001507 less_eq(buf_seqno(crs), ackd)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001508 struct sk_buff *next = crs->next;
1509
Allan Stephens5f6d9122011-11-04 13:24:29 -04001510 kfree_skb(crs);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001511 crs = next;
1512 released++;
1513 }
1514 if (released) {
1515 l_ptr->first_out = crs;
1516 l_ptr->out_queue_size -= released;
1517 }
Allan Stephens85035562008-04-15 19:04:54 -07001518
1519 /* Try sending any messages link endpoint has pending */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001520 if (unlikely(l_ptr->next_out))
Per Liden4323add2006-01-18 00:38:21 +01001521 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001522 if (unlikely(!list_empty(&l_ptr->waiting_ports)))
Per Liden4323add2006-01-18 00:38:21 +01001523 tipc_link_wakeup_ports(l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001524 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1525 l_ptr->stats.sent_acks++;
Per Liden4323add2006-01-18 00:38:21 +01001526 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001527 }
1528
Allan Stephens85035562008-04-15 19:04:54 -07001529 /* Now (finally!) process the incoming message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001530protocol_check:
Ying Xue3af390e2013-10-30 11:26:57 +08001531 if (unlikely(!link_working_working(l_ptr))) {
1532 if (msg_user(msg) == LINK_PROTOCOL) {
1533 link_recv_proto_msg(l_ptr, buf);
1534 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001535 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001536 continue;
1537 }
Ying Xue3af390e2013-10-30 11:26:57 +08001538
1539 /* Traffic message. Conditionally activate link */
1540 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1541
1542 if (link_working_working(l_ptr)) {
1543 /* Re-insert buffer in front of queue */
1544 buf->next = head;
1545 head = buf;
1546 tipc_node_unlock(n_ptr);
1547 continue;
1548 }
1549 goto unlock_discard;
1550 }
1551
1552 /* Link is now in state WORKING_WORKING */
1553 if (unlikely(seq_no != mod(l_ptr->next_in_no))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001554 link_handle_out_of_seq_msg(l_ptr, buf);
1555 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001556 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001557 continue;
1558 }
Ying Xue3af390e2013-10-30 11:26:57 +08001559 l_ptr->next_in_no++;
1560 if (unlikely(l_ptr->oldest_deferred_in))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001561 head = link_insert_deferred_queue(l_ptr, head);
Ying Xue3af390e2013-10-30 11:26:57 +08001562deliver:
1563 if (likely(msg_isdata(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01001564 tipc_node_unlock(n_ptr);
Ying Xue3af390e2013-10-30 11:26:57 +08001565 tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001566 continue;
1567 }
Ying Xue3af390e2013-10-30 11:26:57 +08001568 switch (msg_user(msg)) {
1569 int ret;
1570 case MSG_BUNDLER:
1571 l_ptr->stats.recv_bundles++;
1572 l_ptr->stats.recv_bundled += msg_msgcnt(msg);
1573 tipc_node_unlock(n_ptr);
1574 tipc_link_recv_bundle(buf);
1575 continue;
1576 case NAME_DISTRIBUTOR:
1577 n_ptr->bclink.recv_permitted = true;
1578 tipc_node_unlock(n_ptr);
1579 tipc_named_recv(buf);
1580 continue;
1581 case BCAST_PROTOCOL:
1582 tipc_link_recv_sync(n_ptr, buf);
Per Liden4323add2006-01-18 00:38:21 +01001583 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001584 continue;
Ying Xue3af390e2013-10-30 11:26:57 +08001585 case CONN_MANAGER:
1586 tipc_node_unlock(n_ptr);
1587 tipc_port_recv_proto_msg(buf);
1588 continue;
1589 case MSG_FRAGMENTER:
1590 l_ptr->stats.recv_fragments++;
Erik Hugne40ba3cd2013-11-06 09:28:06 +01001591 ret = tipc_link_recv_fragment(&l_ptr->reasm_head,
1592 &l_ptr->reasm_tail,
1593 &buf);
1594 if (ret == LINK_REASM_COMPLETE) {
Ying Xue3af390e2013-10-30 11:26:57 +08001595 l_ptr->stats.recv_fragmented++;
Erik Hugne40ba3cd2013-11-06 09:28:06 +01001596 msg = buf_msg(buf);
Ying Xue3af390e2013-10-30 11:26:57 +08001597 goto deliver;
1598 }
Erik Hugne40ba3cd2013-11-06 09:28:06 +01001599 if (ret == LINK_REASM_ERROR)
Erik Hugnea715b492013-11-06 09:28:07 +01001600 tipc_link_reset(l_ptr);
Erik Hugne528f6f42013-11-06 09:28:05 +01001601 tipc_node_unlock(n_ptr);
1602 continue;
Ying Xue3af390e2013-10-30 11:26:57 +08001603 case CHANGEOVER_PROTOCOL:
1604 type = msg_type(msg);
1605 if (link_recv_changeover_msg(&l_ptr, &buf)) {
1606 msg = buf_msg(buf);
1607 seq_no = msg_seqno(msg);
1608 if (type == ORIGINAL_MSG)
1609 goto deliver;
1610 goto protocol_check;
1611 }
1612 break;
1613 default:
1614 kfree_skb(buf);
1615 buf = NULL;
1616 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001617 }
Per Liden4323add2006-01-18 00:38:21 +01001618 tipc_node_unlock(n_ptr);
Ying Xue3af390e2013-10-30 11:26:57 +08001619 tipc_net_route_msg(buf);
1620 continue;
1621unlock_discard:
1622
1623 tipc_node_unlock(n_ptr);
1624discard:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001625 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001626 }
Per Liden4323add2006-01-18 00:38:21 +01001627 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001628}
1629
Ben Hutchings2c530402012-07-10 10:55:09 +00001630/**
Allan Stephens8809b252011-10-25 10:44:35 -04001631 * tipc_link_defer_pkt - Add out-of-sequence message to deferred reception queue
1632 *
1633 * Returns increase in queue length (i.e. 0 or 1)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001634 */
Allan Stephens8809b252011-10-25 10:44:35 -04001635u32 tipc_link_defer_pkt(struct sk_buff **head, struct sk_buff **tail,
Per Liden4323add2006-01-18 00:38:21 +01001636 struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001637{
Allan Stephens8809b252011-10-25 10:44:35 -04001638 struct sk_buff *queue_buf;
1639 struct sk_buff **prev;
Allan Stephensf9057302011-10-24 16:03:12 -04001640 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001641
1642 buf->next = NULL;
1643
1644 /* Empty queue ? */
1645 if (*head == NULL) {
1646 *head = *tail = buf;
1647 return 1;
1648 }
1649
1650 /* Last ? */
Allan Stephensf9057302011-10-24 16:03:12 -04001651 if (less(buf_seqno(*tail), seq_no)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001652 (*tail)->next = buf;
1653 *tail = buf;
1654 return 1;
1655 }
1656
Allan Stephens8809b252011-10-25 10:44:35 -04001657 /* Locate insertion point in queue, then insert; discard if duplicate */
1658 prev = head;
1659 queue_buf = *head;
1660 for (;;) {
1661 u32 curr_seqno = buf_seqno(queue_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001662
Allan Stephens8809b252011-10-25 10:44:35 -04001663 if (seq_no == curr_seqno) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001664 kfree_skb(buf);
Allan Stephens8809b252011-10-25 10:44:35 -04001665 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001666 }
Allan Stephens8809b252011-10-25 10:44:35 -04001667
1668 if (less(seq_no, curr_seqno))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001669 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001670
Allan Stephens8809b252011-10-25 10:44:35 -04001671 prev = &queue_buf->next;
1672 queue_buf = queue_buf->next;
1673 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001674
Allan Stephens8809b252011-10-25 10:44:35 -04001675 buf->next = queue_buf;
1676 *prev = buf;
1677 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001678}
1679
Allan Stephens8809b252011-10-25 10:44:35 -04001680/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001681 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1682 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001683static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001684 struct sk_buff *buf)
1685{
Allan Stephensf9057302011-10-24 16:03:12 -04001686 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001687
1688 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
1689 link_recv_proto_msg(l_ptr, buf);
1690 return;
1691 }
1692
Per Lidenb97bf3f2006-01-02 19:04:38 +01001693 /* Record OOS packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001694 l_ptr->checkpoint--;
1695
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001696 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001697 * Discard packet if a duplicate; otherwise add it to deferred queue
1698 * and notify peer of gap as per protocol specification
1699 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001700 if (less(seq_no, mod(l_ptr->next_in_no))) {
1701 l_ptr->stats.duplicates++;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001702 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001703 return;
1704 }
1705
Per Liden4323add2006-01-18 00:38:21 +01001706 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1707 &l_ptr->newest_deferred_in, buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001708 l_ptr->deferred_inqueue_sz++;
1709 l_ptr->stats.deferred_recv++;
1710 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
Per Liden4323add2006-01-18 00:38:21 +01001711 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001712 } else
1713 l_ptr->stats.duplicates++;
1714}
1715
1716/*
1717 * Send protocol message to the other endpoint.
1718 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001719void tipc_link_send_proto_msg(struct tipc_link *l_ptr, u32 msg_typ,
Paul Gortmakerae8509c2013-06-17 10:54:47 -04001720 int probe_msg, u32 gap, u32 tolerance,
1721 u32 priority, u32 ack_mtu)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001722{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001723 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001724 struct tipc_msg *msg = l_ptr->pmsg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001725 u32 msg_size = sizeof(l_ptr->proto_msg);
Allan Stephens75f0aa42011-02-28 15:30:20 -05001726 int r_flag;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001727
Allan Stephens92d2c902011-10-25 11:20:26 -04001728 /* Discard any previous message that was deferred due to congestion */
Allan Stephens92d2c902011-10-25 11:20:26 -04001729 if (l_ptr->proto_msg_queue) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001730 kfree_skb(l_ptr->proto_msg_queue);
Allan Stephens92d2c902011-10-25 11:20:26 -04001731 l_ptr->proto_msg_queue = NULL;
1732 }
1733
Per Lidenb97bf3f2006-01-02 19:04:38 +01001734 if (link_blocked(l_ptr))
1735 return;
Allan Stephensb4b56102011-05-27 11:00:51 -04001736
1737 /* Abort non-RESET send if communication with node is prohibited */
Allan Stephensb4b56102011-05-27 11:00:51 -04001738 if ((l_ptr->owner->block_setup) && (msg_typ != RESET_MSG))
1739 return;
1740
Allan Stephens92d2c902011-10-25 11:20:26 -04001741 /* Create protocol message with "out-of-sequence" sequence number */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001742 msg_set_type(msg, msg_typ);
1743 msg_set_net_plane(msg, l_ptr->b_ptr->net_plane);
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001744 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001745 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
Per Lidenb97bf3f2006-01-02 19:04:38 +01001746
1747 if (msg_typ == STATE_MSG) {
1748 u32 next_sent = mod(l_ptr->next_out_no);
1749
Per Liden4323add2006-01-18 00:38:21 +01001750 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001751 return;
1752 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -04001753 next_sent = buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001754 msg_set_next_sent(msg, next_sent);
1755 if (l_ptr->oldest_deferred_in) {
Allan Stephensf9057302011-10-24 16:03:12 -04001756 u32 rec = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001757 gap = mod(rec - mod(l_ptr->next_in_no));
1758 }
1759 msg_set_seq_gap(msg, gap);
1760 if (gap)
1761 l_ptr->stats.sent_nacks++;
1762 msg_set_link_tolerance(msg, tolerance);
1763 msg_set_linkprio(msg, priority);
1764 msg_set_max_pkt(msg, ack_mtu);
1765 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1766 msg_set_probe(msg, probe_msg != 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001767 if (probe_msg) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001768 u32 mtu = l_ptr->max_pkt;
1769
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001770 if ((mtu < l_ptr->max_pkt_target) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001771 link_working_working(l_ptr) &&
1772 l_ptr->fsm_msg_cnt) {
1773 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001774 if (l_ptr->max_pkt_probes == 10) {
1775 l_ptr->max_pkt_target = (msg_size - 4);
1776 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001777 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001778 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001779 l_ptr->max_pkt_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001780 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001781
1782 l_ptr->stats.sent_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001783 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001784 l_ptr->stats.sent_states++;
1785 } else { /* RESET_MSG or ACTIVATE_MSG */
1786 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
1787 msg_set_seq_gap(msg, 0);
1788 msg_set_next_sent(msg, 1);
Allan Stephensf23d9bf2011-01-18 15:15:34 -05001789 msg_set_probe(msg, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001790 msg_set_link_tolerance(msg, l_ptr->tolerance);
1791 msg_set_linkprio(msg, l_ptr->priority);
1792 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
1793 }
1794
Allan Stephens75f0aa42011-02-28 15:30:20 -05001795 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
1796 msg_set_redundant_link(msg, r_flag);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001797 msg_set_linkprio(msg, l_ptr->priority);
Allan Stephens92d2c902011-10-25 11:20:26 -04001798 msg_set_size(msg, msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001799
1800 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
1801
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001802 buf = tipc_buf_acquire(msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001803 if (!buf)
1804 return;
1805
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001806 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
Ying Xue796c75d2013-06-17 10:54:48 -04001807 buf->priority = TC_PRIO_CONTROL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001808
Ying Xue3c294cb2012-11-15 11:34:45 +08001809 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
Allan Stephens92d2c902011-10-25 11:20:26 -04001810 l_ptr->unacked_window = 0;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001811 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001812}
1813
1814/*
1815 * Receive protocol message :
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001816 * Note that network plane id propagates through the network, and may
1817 * change at any time. The node with lowest address rules
Per Lidenb97bf3f2006-01-02 19:04:38 +01001818 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001819static void link_recv_proto_msg(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001820{
1821 u32 rec_gap = 0;
1822 u32 max_pkt_info;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001823 u32 max_pkt_ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001824 u32 msg_tol;
1825 struct tipc_msg *msg = buf_msg(buf);
1826
Per Lidenb97bf3f2006-01-02 19:04:38 +01001827 if (link_blocked(l_ptr))
1828 goto exit;
1829
1830 /* record unnumbered packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001831 l_ptr->checkpoint--;
1832
1833 if (l_ptr->b_ptr->net_plane != msg_net_plane(msg))
1834 if (tipc_own_addr > msg_prevnode(msg))
1835 l_ptr->b_ptr->net_plane = msg_net_plane(msg);
1836
1837 l_ptr->owner->permit_changeover = msg_redundant_link(msg);
1838
1839 switch (msg_type(msg)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001840
Per Lidenb97bf3f2006-01-02 19:04:38 +01001841 case RESET_MSG:
Allan Stephensa686e682008-06-04 17:29:39 -07001842 if (!link_working_unknown(l_ptr) &&
1843 (l_ptr->peer_session != INVALID_SESSION)) {
Allan Stephens641c2182011-04-07 09:54:43 -04001844 if (less_eq(msg_session(msg), l_ptr->peer_session))
1845 break; /* duplicate or old reset: ignore */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001846 }
Allan Stephensb4b56102011-05-27 11:00:51 -04001847
1848 if (!msg_redundant_link(msg) && (link_working_working(l_ptr) ||
1849 link_working_unknown(l_ptr))) {
1850 /*
1851 * peer has lost contact -- don't allow peer's links
1852 * to reactivate before we recognize loss & clean up
1853 */
1854 l_ptr->owner->block_setup = WAIT_NODE_DOWN;
1855 }
1856
Allan Stephens47361c82011-10-26 10:55:16 -04001857 link_state_event(l_ptr, RESET_MSG);
1858
Per Lidenb97bf3f2006-01-02 19:04:38 +01001859 /* fall thru' */
1860 case ACTIVATE_MSG:
1861 /* Update link settings according other endpoint's values */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001862 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
1863
Allan Stephens2db99832010-12-31 18:59:33 +00001864 msg_tol = msg_link_tolerance(msg);
1865 if (msg_tol > l_ptr->tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001866 link_set_supervision_props(l_ptr, msg_tol);
1867
1868 if (msg_linkprio(msg) > l_ptr->priority)
1869 l_ptr->priority = msg_linkprio(msg);
1870
1871 max_pkt_info = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001872 if (max_pkt_info) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001873 if (max_pkt_info < l_ptr->max_pkt_target)
1874 l_ptr->max_pkt_target = max_pkt_info;
1875 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
1876 l_ptr->max_pkt = l_ptr->max_pkt_target;
1877 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001878 l_ptr->max_pkt = l_ptr->max_pkt_target;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001879 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001880
Allan Stephens4d753132011-10-25 12:19:05 -04001881 /* Synchronize broadcast link info, if not done previously */
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001882 if (!tipc_node_is_up(l_ptr->owner)) {
1883 l_ptr->owner->bclink.last_sent =
1884 l_ptr->owner->bclink.last_in =
1885 msg_last_bcast(msg);
1886 l_ptr->owner->bclink.oos_state = 0;
1887 }
Allan Stephens4d753132011-10-25 12:19:05 -04001888
Per Lidenb97bf3f2006-01-02 19:04:38 +01001889 l_ptr->peer_session = msg_session(msg);
1890 l_ptr->peer_bearer_id = msg_bearer_id(msg);
Allan Stephens47361c82011-10-26 10:55:16 -04001891
1892 if (msg_type(msg) == ACTIVATE_MSG)
1893 link_state_event(l_ptr, ACTIVATE_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001894 break;
1895 case STATE_MSG:
1896
Allan Stephens2db99832010-12-31 18:59:33 +00001897 msg_tol = msg_link_tolerance(msg);
1898 if (msg_tol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001899 link_set_supervision_props(l_ptr, msg_tol);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001900
1901 if (msg_linkprio(msg) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001902 (msg_linkprio(msg) != l_ptr->priority)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001903 pr_warn("%s<%s>, priority change %u->%u\n",
1904 link_rst_msg, l_ptr->name, l_ptr->priority,
1905 msg_linkprio(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001906 l_ptr->priority = msg_linkprio(msg);
Per Liden4323add2006-01-18 00:38:21 +01001907 tipc_link_reset(l_ptr); /* Enforce change to take effect */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001908 break;
1909 }
1910 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1911 l_ptr->stats.recv_states++;
1912 if (link_reset_unknown(l_ptr))
1913 break;
1914
1915 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001916 rec_gap = mod(msg_next_sent(msg) -
Per Lidenb97bf3f2006-01-02 19:04:38 +01001917 mod(l_ptr->next_in_no));
1918 }
1919
1920 max_pkt_ack = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001921 if (max_pkt_ack > l_ptr->max_pkt) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001922 l_ptr->max_pkt = max_pkt_ack;
1923 l_ptr->max_pkt_probes = 0;
1924 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001925
1926 max_pkt_ack = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001927 if (msg_probe(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001928 l_ptr->stats.recv_probes++;
Allan Stephensa0168922010-12-31 18:59:35 +00001929 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001930 max_pkt_ack = msg_size(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001931 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001932
1933 /* Protocol message before retransmits, reduce loss risk */
Ying Xue389dd9b2012-11-16 13:51:30 +08001934 if (l_ptr->owner->bclink.recv_permitted)
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001935 tipc_bclink_update_link_state(l_ptr->owner,
1936 msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001937
1938 if (rec_gap || (msg_probe(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01001939 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
1940 0, rec_gap, 0, 0, max_pkt_ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001941 }
1942 if (msg_seq_gap(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001943 l_ptr->stats.recv_nacks++;
Per Liden4323add2006-01-18 00:38:21 +01001944 tipc_link_retransmit(l_ptr, l_ptr->first_out,
1945 msg_seq_gap(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001946 }
1947 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001948 }
1949exit:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001950 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001951}
1952
1953
1954/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001955 * tipc_link_tunnel(): Send one message via a link belonging to
Per Lidenb97bf3f2006-01-02 19:04:38 +01001956 * another bearer. Owner node is locked.
1957 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001958static void tipc_link_tunnel(struct tipc_link *l_ptr,
Paul Gortmakerae8509c2013-06-17 10:54:47 -04001959 struct tipc_msg *tunnel_hdr, struct tipc_msg *msg,
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001960 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001961{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001962 struct tipc_link *tunnel;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001963 struct sk_buff *buf;
1964 u32 length = msg_size(msg);
1965
1966 tunnel = l_ptr->owner->active_links[selector & 1];
Allan Stephens5392d642006-06-25 23:52:50 -07001967 if (!tipc_link_is_up(tunnel)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001968 pr_warn("%stunnel link no longer available\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001969 return;
Allan Stephens5392d642006-06-25 23:52:50 -07001970 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001971 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001972 buf = tipc_buf_acquire(length + INT_H_SIZE);
Allan Stephens5392d642006-06-25 23:52:50 -07001973 if (!buf) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001974 pr_warn("%sunable to send tunnel msg\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001975 return;
Allan Stephens5392d642006-06-25 23:52:50 -07001976 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001977 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
1978 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
Per Liden4323add2006-01-18 00:38:21 +01001979 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001980}
1981
1982
1983
1984/*
1985 * changeover(): Send whole message queue via the remaining link
1986 * Owner node is locked.
1987 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001988void tipc_link_changeover(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001989{
1990 u32 msgcount = l_ptr->out_queue_size;
1991 struct sk_buff *crs = l_ptr->first_out;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001992 struct tipc_link *tunnel = l_ptr->owner->active_links[0];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001993 struct tipc_msg tunnel_hdr;
Allan Stephens5392d642006-06-25 23:52:50 -07001994 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001995
1996 if (!tunnel)
1997 return;
1998
Allan Stephens5392d642006-06-25 23:52:50 -07001999 if (!l_ptr->owner->permit_changeover) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002000 pr_warn("%speer did not permit changeover\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002001 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002002 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002003
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002004 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002005 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002006 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2007 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07002008
Per Lidenb97bf3f2006-01-02 19:04:38 +01002009 if (!l_ptr->first_out) {
2010 struct sk_buff *buf;
2011
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002012 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002013 if (buf) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002014 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002015 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Per Liden4323add2006-01-18 00:38:21 +01002016 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002017 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002018 pr_warn("%sunable to send changeover msg\n",
2019 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002020 }
2021 return;
2022 }
Allan Stephensf1310722006-06-25 23:51:37 -07002023
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002024 split_bundles = (l_ptr->owner->active_links[0] !=
Allan Stephens5392d642006-06-25 23:52:50 -07002025 l_ptr->owner->active_links[1]);
2026
Per Lidenb97bf3f2006-01-02 19:04:38 +01002027 while (crs) {
2028 struct tipc_msg *msg = buf_msg(crs);
2029
2030 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002031 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00002032 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002033
Florian Westphald788d802007-08-02 19:28:06 -07002034 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002035 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00002036 msg_set_seqno(m, msg_seqno(msg));
Per Liden4323add2006-01-18 00:38:21 +01002037 tipc_link_tunnel(l_ptr, &tunnel_hdr, m,
2038 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002039 pos += align(msg_size(m));
2040 m = (struct tipc_msg *)pos;
2041 }
2042 } else {
Per Liden4323add2006-01-18 00:38:21 +01002043 tipc_link_tunnel(l_ptr, &tunnel_hdr, msg,
2044 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002045 }
2046 crs = crs->next;
2047 }
2048}
2049
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002050void tipc_link_send_duplicate(struct tipc_link *l_ptr, struct tipc_link *tunnel)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002051{
2052 struct sk_buff *iter;
2053 struct tipc_msg tunnel_hdr;
2054
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002055 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002056 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002057 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
2058 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2059 iter = l_ptr->first_out;
2060 while (iter) {
2061 struct sk_buff *outbuf;
2062 struct tipc_msg *msg = buf_msg(iter);
2063 u32 length = msg_size(msg);
2064
2065 if (msg_user(msg) == MSG_BUNDLER)
2066 msg_set_type(msg, CLOSED_MSG);
2067 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002068 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002069 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002070 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002071 if (outbuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002072 pr_warn("%sunable to send duplicate msg\n",
2073 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002074 return;
2075 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002076 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
2077 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
2078 length);
Per Liden4323add2006-01-18 00:38:21 +01002079 tipc_link_send_buf(tunnel, outbuf);
2080 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002081 return;
2082 iter = iter->next;
2083 }
2084}
2085
Per Lidenb97bf3f2006-01-02 19:04:38 +01002086/**
2087 * buf_extract - extracts embedded TIPC message from another message
2088 * @skb: encapsulating message buffer
2089 * @from_pos: offset to extract from
2090 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002091 * Returns a new message buffer containing an embedded message. The
Per Lidenb97bf3f2006-01-02 19:04:38 +01002092 * encapsulating message itself is left unchanged.
2093 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002094static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
2095{
2096 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
2097 u32 size = msg_size(msg);
2098 struct sk_buff *eb;
2099
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002100 eb = tipc_buf_acquire(size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002101 if (eb)
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002102 skb_copy_to_linear_data(eb, msg, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002103 return eb;
2104}
2105
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002106/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01002107 * link_recv_changeover_msg(): Receive tunneled packet sent
2108 * via other link. Node is locked. Return extracted buffer.
2109 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002110static int link_recv_changeover_msg(struct tipc_link **l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002111 struct sk_buff **buf)
2112{
2113 struct sk_buff *tunnel_buf = *buf;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002114 struct tipc_link *dest_link;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002115 struct tipc_msg *msg;
2116 struct tipc_msg *tunnel_msg = buf_msg(tunnel_buf);
2117 u32 msg_typ = msg_type(tunnel_msg);
2118 u32 msg_count = msg_msgcnt(tunnel_msg);
Dan Carpentercb4b102f2013-05-06 08:28:41 +00002119 u32 bearer_id = msg_bearer_id(tunnel_msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002120
Dan Carpentercb4b102f2013-05-06 08:28:41 +00002121 if (bearer_id >= MAX_BEARERS)
2122 goto exit;
2123 dest_link = (*l_ptr)->owner->links[bearer_id];
Allan Stephensb29f1422010-12-31 18:59:25 +00002124 if (!dest_link)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002125 goto exit;
Allan Stephensf1310722006-06-25 23:51:37 -07002126 if (dest_link == *l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002127 pr_err("Unexpected changeover message on link <%s>\n",
2128 (*l_ptr)->name);
Allan Stephensf1310722006-06-25 23:51:37 -07002129 goto exit;
2130 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002131 *l_ptr = dest_link;
2132 msg = msg_get_wrapped(tunnel_msg);
2133
2134 if (msg_typ == DUPLICATE_MSG) {
Allan Stephensb29f1422010-12-31 18:59:25 +00002135 if (less(msg_seqno(msg), mod(dest_link->next_in_no)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002136 goto exit;
Allan Stephens0e659672010-12-31 18:59:32 +00002137 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002138 if (*buf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002139 pr_warn("%sduplicate msg dropped\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002140 goto exit;
2141 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002142 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002143 return 1;
2144 }
2145
2146 /* First original message ?: */
Per Liden4323add2006-01-18 00:38:21 +01002147 if (tipc_link_is_up(dest_link)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002148 pr_info("%s<%s>, changeover initiated by peer\n", link_rst_msg,
2149 dest_link->name);
Per Liden4323add2006-01-18 00:38:21 +01002150 tipc_link_reset(dest_link);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002151 dest_link->exp_msg_count = msg_count;
2152 if (!msg_count)
2153 goto exit;
2154 } else if (dest_link->exp_msg_count == START_CHANGEOVER) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002155 dest_link->exp_msg_count = msg_count;
2156 if (!msg_count)
2157 goto exit;
2158 }
2159
2160 /* Receive original message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002161 if (dest_link->exp_msg_count == 0) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002162 pr_warn("%sgot too many tunnelled messages\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002163 goto exit;
2164 }
2165 dest_link->exp_msg_count--;
2166 if (less(msg_seqno(msg), dest_link->reset_checkpoint)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002167 goto exit;
2168 } else {
2169 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
2170 if (*buf != NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002171 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002172 return 1;
2173 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002174 pr_warn("%soriginal msg dropped\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002175 }
2176 }
2177exit:
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002178 *buf = NULL;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002179 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002180 return 0;
2181}
2182
2183/*
2184 * Bundler functionality:
2185 */
Per Liden4323add2006-01-18 00:38:21 +01002186void tipc_link_recv_bundle(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002187{
2188 u32 msgcount = msg_msgcnt(buf_msg(buf));
2189 u32 pos = INT_H_SIZE;
2190 struct sk_buff *obuf;
2191
Per Lidenb97bf3f2006-01-02 19:04:38 +01002192 while (msgcount--) {
2193 obuf = buf_extract(buf, pos);
2194 if (obuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002195 pr_warn("Link unable to unbundle message(s)\n");
Allan Stephensa10bd922006-06-25 23:52:17 -07002196 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002197 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002198 pos += align(msg_size(buf_msg(obuf)));
Per Liden4323add2006-01-18 00:38:21 +01002199 tipc_net_route_msg(obuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002200 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002201 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002202}
2203
2204/*
2205 * Fragmentation/defragmentation:
2206 */
2207
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002208/*
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002209 * link_send_long_buf: Entry for buffers needing fragmentation.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002210 * The buffer is complete, inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002211 * Returns user data length.
2212 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002213static int link_send_long_buf(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002214{
Allan Stephens77561552011-04-17 13:06:23 -04002215 struct sk_buff *buf_chain = NULL;
2216 struct sk_buff *buf_chain_tail = (struct sk_buff *)&buf_chain;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002217 struct tipc_msg *inmsg = buf_msg(buf);
2218 struct tipc_msg fragm_hdr;
2219 u32 insize = msg_size(inmsg);
2220 u32 dsz = msg_data_sz(inmsg);
2221 unchar *crs = buf->data;
2222 u32 rest = insize;
Allan Stephens15e979d2010-05-11 14:30:10 +00002223 u32 pack_sz = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002224 u32 fragm_sz = pack_sz - INT_H_SIZE;
Allan Stephens77561552011-04-17 13:06:23 -04002225 u32 fragm_no = 0;
Allan Stephens9c396a72008-06-04 17:36:58 -07002226 u32 destaddr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002227
2228 if (msg_short(inmsg))
2229 destaddr = l_ptr->addr;
Allan Stephens9c396a72008-06-04 17:36:58 -07002230 else
2231 destaddr = msg_destnode(inmsg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002232
Per Lidenb97bf3f2006-01-02 19:04:38 +01002233 /* Prepare reusable fragment header: */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002234 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07002235 INT_H_SIZE, destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002236
2237 /* Chop up message: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002238 while (rest > 0) {
2239 struct sk_buff *fragm;
2240
2241 if (rest <= fragm_sz) {
2242 fragm_sz = rest;
2243 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
2244 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002245 fragm = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002246 if (fragm == NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002247 kfree_skb(buf);
Ying Xued77b3832013-12-10 20:45:38 -08002248 kfree_skb_list(buf_chain);
Allan Stephens77561552011-04-17 13:06:23 -04002249 return -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002250 }
2251 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
Allan Stephens77561552011-04-17 13:06:23 -04002252 fragm_no++;
2253 msg_set_fragm_no(&fragm_hdr, fragm_no);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002254 skb_copy_to_linear_data(fragm, &fragm_hdr, INT_H_SIZE);
2255 skb_copy_to_linear_data_offset(fragm, INT_H_SIZE, crs,
2256 fragm_sz);
Allan Stephens77561552011-04-17 13:06:23 -04002257 buf_chain_tail->next = fragm;
2258 buf_chain_tail = fragm;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002259
Per Lidenb97bf3f2006-01-02 19:04:38 +01002260 rest -= fragm_sz;
2261 crs += fragm_sz;
2262 msg_set_type(&fragm_hdr, FRAGMENT);
2263 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002264 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002265
2266 /* Append chain of fragments to send queue & send them */
Allan Stephens77561552011-04-17 13:06:23 -04002267 l_ptr->long_msg_seq_no++;
2268 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
2269 l_ptr->stats.sent_fragments += fragm_no;
2270 l_ptr->stats.sent_fragmented++;
2271 tipc_link_push_queue(l_ptr);
2272
Per Lidenb97bf3f2006-01-02 19:04:38 +01002273 return dsz;
2274}
2275
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002276/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002277 * tipc_link_recv_fragment(): Called with node lock on. Returns
Per Lidenb97bf3f2006-01-02 19:04:38 +01002278 * the reassembled buffer if message is complete.
2279 */
Erik Hugne40ba3cd2013-11-06 09:28:06 +01002280int tipc_link_recv_fragment(struct sk_buff **head, struct sk_buff **tail,
2281 struct sk_buff **fbuf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002282{
Erik Hugne40ba3cd2013-11-06 09:28:06 +01002283 struct sk_buff *frag = *fbuf;
2284 struct tipc_msg *msg = buf_msg(frag);
2285 u32 fragid = msg_type(msg);
2286 bool headstolen;
2287 int delta;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002288
Erik Hugne40ba3cd2013-11-06 09:28:06 +01002289 skb_pull(frag, msg_hdr_sz(msg));
2290 if (fragid == FIRST_FRAGMENT) {
2291 if (*head || skb_unclone(frag, GFP_ATOMIC))
2292 goto out_free;
2293 *head = frag;
2294 skb_frag_list_init(*head);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002295 return 0;
Erik Hugne3db0a192013-11-13 09:35:11 +01002296 } else if (*head &&
2297 skb_try_coalesce(*head, frag, &headstolen, &delta)) {
Erik Hugne40ba3cd2013-11-06 09:28:06 +01002298 kfree_skb_partial(frag, headstolen);
2299 } else {
2300 if (!*head)
2301 goto out_free;
2302 if (!skb_has_frag_list(*head))
2303 skb_shinfo(*head)->frag_list = frag;
2304 else
2305 (*tail)->next = frag;
2306 *tail = frag;
2307 (*head)->truesize += frag->truesize;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002308 }
Erik Hugne40ba3cd2013-11-06 09:28:06 +01002309 if (fragid == LAST_FRAGMENT) {
2310 *fbuf = *head;
2311 *tail = *head = NULL;
2312 return LINK_REASM_COMPLETE;
2313 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002314 return 0;
Erik Hugne40ba3cd2013-11-06 09:28:06 +01002315out_free:
2316 pr_warn_ratelimited("Link unable to reassemble fragmented message\n");
2317 kfree_skb(*fbuf);
2318 return LINK_REASM_ERROR;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002319}
2320
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002321static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002322{
Allan Stephens5413b4c2011-01-18 13:24:55 -05002323 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
2324 return;
2325
Per Lidenb97bf3f2006-01-02 19:04:38 +01002326 l_ptr->tolerance = tolerance;
2327 l_ptr->continuity_interval =
2328 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
2329 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
2330}
2331
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002332void tipc_link_set_queue_limits(struct tipc_link *l_ptr, u32 window)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002333{
2334 /* Data messages from this node, inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002335 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
2336 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
2337 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
2338 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002339 /* Transiting data messages,inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002340 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
2341 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
2342 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
2343 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002344 l_ptr->queue_limit[CONN_MANAGER] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002345 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
2346 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
2347 /* FRAGMENT and LAST_FRAGMENT packets */
2348 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
2349}
2350
2351/**
2352 * link_find_link - locate link by name
Ben Hutchings2c530402012-07-10 10:55:09 +00002353 * @name: ptr to link name string
2354 * @node: ptr to area to be filled with ptr to associated node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002355 *
Per Liden4323add2006-01-18 00:38:21 +01002356 * Caller must hold 'tipc_net_lock' to ensure node and bearer are not deleted;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002357 * this also prevents link deletion.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002358 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002359 * Returns pointer to link (or 0 if invalid link name).
2360 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002361static struct tipc_link *link_find_link(const char *name,
2362 struct tipc_node **node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002363{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002364 struct tipc_link *l_ptr;
Erik Hugnebbfbe472013-10-18 07:23:21 +02002365 struct tipc_node *n_ptr;
2366 int i;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002367
Erik Hugnebbfbe472013-10-18 07:23:21 +02002368 list_for_each_entry(n_ptr, &tipc_node_list, list) {
2369 for (i = 0; i < MAX_BEARERS; i++) {
2370 l_ptr = n_ptr->links[i];
2371 if (l_ptr && !strcmp(l_ptr->name, name))
2372 goto found;
2373 }
2374 }
2375 l_ptr = NULL;
2376 n_ptr = NULL;
2377found:
2378 *node = n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002379 return l_ptr;
2380}
2381
Allan Stephens5c216e12011-10-18 11:34:29 -04002382/**
2383 * link_value_is_valid -- validate proposed link tolerance/priority/window
2384 *
Ben Hutchings2c530402012-07-10 10:55:09 +00002385 * @cmd: value type (TIPC_CMD_SET_LINK_*)
2386 * @new_value: the new value
Allan Stephens5c216e12011-10-18 11:34:29 -04002387 *
2388 * Returns 1 if value is within range, 0 if not.
2389 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002390static int link_value_is_valid(u16 cmd, u32 new_value)
2391{
2392 switch (cmd) {
2393 case TIPC_CMD_SET_LINK_TOL:
2394 return (new_value >= TIPC_MIN_LINK_TOL) &&
2395 (new_value <= TIPC_MAX_LINK_TOL);
2396 case TIPC_CMD_SET_LINK_PRI:
2397 return (new_value <= TIPC_MAX_LINK_PRI);
2398 case TIPC_CMD_SET_LINK_WINDOW:
2399 return (new_value >= TIPC_MIN_LINK_WIN) &&
2400 (new_value <= TIPC_MAX_LINK_WIN);
2401 }
2402 return 0;
2403}
2404
Allan Stephens5c216e12011-10-18 11:34:29 -04002405/**
2406 * link_cmd_set_value - change priority/tolerance/window for link/bearer/media
Ben Hutchings2c530402012-07-10 10:55:09 +00002407 * @name: ptr to link, bearer, or media name
2408 * @new_value: new value of link, bearer, or media setting
2409 * @cmd: which link, bearer, or media attribute to set (TIPC_CMD_SET_LINK_*)
Allan Stephens5c216e12011-10-18 11:34:29 -04002410 *
2411 * Caller must hold 'tipc_net_lock' to ensure link/bearer/media is not deleted.
2412 *
2413 * Returns 0 if value updated and negative value on error.
2414 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002415static int link_cmd_set_value(const char *name, u32 new_value, u16 cmd)
2416{
2417 struct tipc_node *node;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002418 struct tipc_link *l_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002419 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -05002420 struct tipc_media *m_ptr;
Ying Xue636c0372013-10-18 07:23:20 +02002421 int res = 0;
Allan Stephens5c216e12011-10-18 11:34:29 -04002422
2423 l_ptr = link_find_link(name, &node);
2424 if (l_ptr) {
2425 /*
2426 * acquire node lock for tipc_link_send_proto_msg().
2427 * see "TIPC locking policy" in net.c.
2428 */
2429 tipc_node_lock(node);
2430 switch (cmd) {
2431 case TIPC_CMD_SET_LINK_TOL:
2432 link_set_supervision_props(l_ptr, new_value);
2433 tipc_link_send_proto_msg(l_ptr,
2434 STATE_MSG, 0, 0, new_value, 0, 0);
2435 break;
2436 case TIPC_CMD_SET_LINK_PRI:
2437 l_ptr->priority = new_value;
2438 tipc_link_send_proto_msg(l_ptr,
2439 STATE_MSG, 0, 0, 0, new_value, 0);
2440 break;
2441 case TIPC_CMD_SET_LINK_WINDOW:
2442 tipc_link_set_queue_limits(l_ptr, new_value);
2443 break;
Ying Xue636c0372013-10-18 07:23:20 +02002444 default:
2445 res = -EINVAL;
2446 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002447 }
2448 tipc_node_unlock(node);
Ying Xue636c0372013-10-18 07:23:20 +02002449 return res;
Allan Stephens5c216e12011-10-18 11:34:29 -04002450 }
2451
2452 b_ptr = tipc_bearer_find(name);
2453 if (b_ptr) {
2454 switch (cmd) {
2455 case TIPC_CMD_SET_LINK_TOL:
2456 b_ptr->tolerance = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002457 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002458 case TIPC_CMD_SET_LINK_PRI:
2459 b_ptr->priority = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002460 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002461 case TIPC_CMD_SET_LINK_WINDOW:
2462 b_ptr->window = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002463 break;
2464 default:
2465 res = -EINVAL;
2466 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002467 }
Ying Xue636c0372013-10-18 07:23:20 +02002468 return res;
Allan Stephens5c216e12011-10-18 11:34:29 -04002469 }
2470
2471 m_ptr = tipc_media_find(name);
2472 if (!m_ptr)
2473 return -ENODEV;
2474 switch (cmd) {
2475 case TIPC_CMD_SET_LINK_TOL:
2476 m_ptr->tolerance = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002477 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002478 case TIPC_CMD_SET_LINK_PRI:
2479 m_ptr->priority = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002480 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002481 case TIPC_CMD_SET_LINK_WINDOW:
2482 m_ptr->window = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002483 break;
2484 default:
2485 res = -EINVAL;
2486 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002487 }
Ying Xue636c0372013-10-18 07:23:20 +02002488 return res;
Allan Stephens5c216e12011-10-18 11:34:29 -04002489}
2490
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002491struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
Per Liden4323add2006-01-18 00:38:21 +01002492 u16 cmd)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002493{
2494 struct tipc_link_config *args;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002495 u32 new_value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002496 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002497
2498 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
Per Liden4323add2006-01-18 00:38:21 +01002499 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002500
2501 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2502 new_value = ntohl(args->value);
2503
Allan Stephens5c216e12011-10-18 11:34:29 -04002504 if (!link_value_is_valid(cmd, new_value))
2505 return tipc_cfg_reply_error_string(
2506 "cannot change, value invalid");
2507
Per Liden4323add2006-01-18 00:38:21 +01002508 if (!strcmp(args->name, tipc_bclink_name)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002509 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
Per Liden4323add2006-01-18 00:38:21 +01002510 (tipc_bclink_set_queue_limits(new_value) == 0))
2511 return tipc_cfg_reply_none();
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002512 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
Per Liden4323add2006-01-18 00:38:21 +01002513 " (cannot change setting on broadcast link)");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002514 }
2515
Per Liden4323add2006-01-18 00:38:21 +01002516 read_lock_bh(&tipc_net_lock);
Allan Stephens5c216e12011-10-18 11:34:29 -04002517 res = link_cmd_set_value(args->name, new_value, cmd);
Per Liden4323add2006-01-18 00:38:21 +01002518 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002519 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002520 return tipc_cfg_reply_error_string("cannot change link setting");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002521
Per Liden4323add2006-01-18 00:38:21 +01002522 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002523}
2524
2525/**
2526 * link_reset_statistics - reset link statistics
2527 * @l_ptr: pointer to link
2528 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002529static void link_reset_statistics(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002530{
2531 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2532 l_ptr->stats.sent_info = l_ptr->next_out_no;
2533 l_ptr->stats.recv_info = l_ptr->next_in_no;
2534}
2535
Per Liden4323add2006-01-18 00:38:21 +01002536struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002537{
2538 char *link_name;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002539 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002540 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002541
2542 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002543 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002544
2545 link_name = (char *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +01002546 if (!strcmp(link_name, tipc_bclink_name)) {
2547 if (tipc_bclink_reset_stats())
2548 return tipc_cfg_reply_error_string("link not found");
2549 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002550 }
2551
Per Liden4323add2006-01-18 00:38:21 +01002552 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002553 l_ptr = link_find_link(link_name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002554 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002555 read_unlock_bh(&tipc_net_lock);
2556 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002557 }
2558
Per Liden4323add2006-01-18 00:38:21 +01002559 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002560 link_reset_statistics(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +01002561 tipc_node_unlock(node);
2562 read_unlock_bh(&tipc_net_lock);
2563 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002564}
2565
2566/**
2567 * percent - convert count to a percentage of total (rounding up or down)
2568 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002569static u32 percent(u32 count, u32 total)
2570{
2571 return (count * 100 + (total / 2)) / total;
2572}
2573
2574/**
Per Liden4323add2006-01-18 00:38:21 +01002575 * tipc_link_stats - print link statistics
Per Lidenb97bf3f2006-01-02 19:04:38 +01002576 * @name: link name
2577 * @buf: print buffer area
2578 * @buf_size: size of print buffer area
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002579 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002580 * Returns length of print buffer data string (or 0 if error)
2581 */
Per Liden4323add2006-01-18 00:38:21 +01002582static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002583{
Erik Hugnedc1aed32012-06-29 00:50:23 -04002584 struct tipc_link *l;
2585 struct tipc_stats *s;
David S. Miller6c000552008-09-02 23:38:32 -07002586 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002587 char *status;
2588 u32 profile_total = 0;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002589 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002590
Per Liden4323add2006-01-18 00:38:21 +01002591 if (!strcmp(name, tipc_bclink_name))
2592 return tipc_bclink_stats(buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002593
Per Liden4323add2006-01-18 00:38:21 +01002594 read_lock_bh(&tipc_net_lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002595 l = link_find_link(name, &node);
2596 if (!l) {
Per Liden4323add2006-01-18 00:38:21 +01002597 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002598 return 0;
2599 }
Per Liden4323add2006-01-18 00:38:21 +01002600 tipc_node_lock(node);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002601 s = &l->stats;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002602
Erik Hugnedc1aed32012-06-29 00:50:23 -04002603 if (tipc_link_is_active(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002604 status = "ACTIVE";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002605 else if (tipc_link_is_up(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002606 status = "STANDBY";
2607 else
2608 status = "DEFUNCT";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002609
2610 ret = tipc_snprintf(buf, buf_size, "Link <%s>\n"
2611 " %s MTU:%u Priority:%u Tolerance:%u ms"
2612 " Window:%u packets\n",
2613 l->name, status, l->max_pkt, l->priority,
2614 l->tolerance, l->queue_limit[0]);
2615
2616 ret += tipc_snprintf(buf + ret, buf_size - ret,
2617 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
2618 l->next_in_no - s->recv_info, s->recv_fragments,
2619 s->recv_fragmented, s->recv_bundles,
2620 s->recv_bundled);
2621
2622 ret += tipc_snprintf(buf + ret, buf_size - ret,
2623 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
2624 l->next_out_no - s->sent_info, s->sent_fragments,
2625 s->sent_fragmented, s->sent_bundles,
2626 s->sent_bundled);
2627
2628 profile_total = s->msg_length_counts;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002629 if (!profile_total)
2630 profile_total = 1;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002631
2632 ret += tipc_snprintf(buf + ret, buf_size - ret,
2633 " TX profile sample:%u packets average:%u octets\n"
2634 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
2635 "-16384:%u%% -32768:%u%% -66000:%u%%\n",
2636 s->msg_length_counts,
2637 s->msg_lengths_total / profile_total,
2638 percent(s->msg_length_profile[0], profile_total),
2639 percent(s->msg_length_profile[1], profile_total),
2640 percent(s->msg_length_profile[2], profile_total),
2641 percent(s->msg_length_profile[3], profile_total),
2642 percent(s->msg_length_profile[4], profile_total),
2643 percent(s->msg_length_profile[5], profile_total),
2644 percent(s->msg_length_profile[6], profile_total));
2645
2646 ret += tipc_snprintf(buf + ret, buf_size - ret,
2647 " RX states:%u probes:%u naks:%u defs:%u"
2648 " dups:%u\n", s->recv_states, s->recv_probes,
2649 s->recv_nacks, s->deferred_recv, s->duplicates);
2650
2651 ret += tipc_snprintf(buf + ret, buf_size - ret,
2652 " TX states:%u probes:%u naks:%u acks:%u"
2653 " dups:%u\n", s->sent_states, s->sent_probes,
2654 s->sent_nacks, s->sent_acks, s->retransmitted);
2655
2656 ret += tipc_snprintf(buf + ret, buf_size - ret,
Ying Xue3c294cb2012-11-15 11:34:45 +08002657 " Congestion link:%u Send queue"
2658 " max:%u avg:%u\n", s->link_congs,
Erik Hugnedc1aed32012-06-29 00:50:23 -04002659 s->max_queue_sz, s->queue_sz_counts ?
2660 (s->accu_queue_sz / s->queue_sz_counts) : 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002661
Per Liden4323add2006-01-18 00:38:21 +01002662 tipc_node_unlock(node);
2663 read_unlock_bh(&tipc_net_lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002664 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002665}
2666
Per Liden4323add2006-01-18 00:38:21 +01002667struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002668{
2669 struct sk_buff *buf;
2670 struct tlv_desc *rep_tlv;
2671 int str_len;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002672 int pb_len;
2673 char *pb;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002674
2675 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002676 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002677
Erik Hugnedc1aed32012-06-29 00:50:23 -04002678 buf = tipc_cfg_reply_alloc(TLV_SPACE(ULTRA_STRING_MAX_LEN));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002679 if (!buf)
2680 return NULL;
2681
2682 rep_tlv = (struct tlv_desc *)buf->data;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002683 pb = TLV_DATA(rep_tlv);
2684 pb_len = ULTRA_STRING_MAX_LEN;
Per Liden4323add2006-01-18 00:38:21 +01002685 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
Erik Hugnedc1aed32012-06-29 00:50:23 -04002686 pb, pb_len);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002687 if (!str_len) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002688 kfree_skb(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002689 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002690 }
Erik Hugnedc1aed32012-06-29 00:50:23 -04002691 str_len += 1; /* for "\0" */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002692 skb_put(buf, TLV_SPACE(str_len));
2693 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
2694
2695 return buf;
2696}
2697
Per Lidenb97bf3f2006-01-02 19:04:38 +01002698/**
Per Liden4323add2006-01-18 00:38:21 +01002699 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
Per Lidenb97bf3f2006-01-02 19:04:38 +01002700 * @dest: network address of destination node
2701 * @selector: used to select from set of active links
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002702 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002703 * If no active link can be found, uses default maximum packet size.
2704 */
Per Liden4323add2006-01-18 00:38:21 +01002705u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002706{
David S. Miller6c000552008-09-02 23:38:32 -07002707 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002708 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002709 u32 res = MAX_PKT_DEFAULT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002710
Per Lidenb97bf3f2006-01-02 19:04:38 +01002711 if (dest == tipc_own_addr)
2712 return MAX_MSG_SIZE;
2713
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002714 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00002715 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002716 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002717 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002718 l_ptr = n_ptr->active_links[selector & 1];
2719 if (l_ptr)
Allan Stephens15e979d2010-05-11 14:30:10 +00002720 res = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01002721 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002722 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002723 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002724 return res;
2725}
2726
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002727static void link_print(struct tipc_link *l_ptr, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002728{
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002729 pr_info("%s Link %x<%s>:", str, l_ptr->addr, l_ptr->b_ptr->name);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002730
Per Lidenb97bf3f2006-01-02 19:04:38 +01002731 if (link_working_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002732 pr_cont(":WU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002733 else if (link_reset_reset(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002734 pr_cont(":RR\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002735 else if (link_reset_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002736 pr_cont(":RU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002737 else if (link_working_working(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002738 pr_cont(":WW\n");
2739 else
2740 pr_cont("\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002741}