blob: 26a54f4f3c6318352931bcac431dbaf12f2b546e [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/link.c: TIPC link code
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Jon Paul Maloy170b3922014-01-07 17:02:41 -05004 * Copyright (c) 1996-2007, 2012-2014, Ericsson AB
Ying Xue198d73b2013-06-17 10:54:42 -04005 * Copyright (c) 2004-2007, 2010-2013, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010038#include "link.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039#include "port.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "name_distr.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010041#include "discover.h"
42#include "config.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010043
Ying Xue796c75d2013-06-17 10:54:48 -040044#include <linux/pkt_sched.h>
45
Erik Hugne2cf8aa12012-06-29 00:16:37 -040046/*
47 * Error message prefixes
48 */
49static const char *link_co_err = "Link changeover error, ";
50static const char *link_rst_msg = "Resetting link ";
51static const char *link_unk_evt = "Unknown link event ";
Per Lidenb97bf3f2006-01-02 19:04:38 +010052
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090053/*
Allan Stephensa686e682008-06-04 17:29:39 -070054 * Out-of-range value for link session numbers
55 */
Allan Stephensa686e682008-06-04 17:29:39 -070056#define INVALID_SESSION 0x10000
57
58/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090059 * Link state events:
Per Lidenb97bf3f2006-01-02 19:04:38 +010060 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010061#define STARTING_EVT 856384768 /* link processing trigger */
62#define TRAFFIC_MSG_EVT 560815u /* rx'd ??? */
63#define TIMEOUT_EVT 560817u /* link timer expired */
64
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090065/*
66 * The following two 'message types' is really just implementation
67 * data conveniently stored in the message header.
Per Lidenb97bf3f2006-01-02 19:04:38 +010068 * They must not be considered part of the protocol
69 */
70#define OPEN_MSG 0
71#define CLOSED_MSG 1
72
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090073/*
Per Lidenb97bf3f2006-01-02 19:04:38 +010074 * State value stored in 'exp_msg_count'
75 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010076#define START_CHANGEOVER 100000u
77
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050078static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +010079 struct sk_buff *buf);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050080static void link_recv_proto_msg(struct tipc_link *l_ptr, struct sk_buff *buf);
Jon Paul Maloy170b3922014-01-07 17:02:41 -050081static int tipc_link_tunnel_rcv(struct tipc_link **l_ptr,
82 struct sk_buff **buf);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050083static 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);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -050090static int link_send_long_buf(struct tipc_link *l_ptr, struct sk_buff *buf);
Jon Maloyc64f7a62012-11-16 13:51:31 +080091static void tipc_link_send_sync(struct tipc_link *l);
92static void tipc_link_recv_sync(struct tipc_node *n, struct sk_buff *buf);
stephen hemminger31e3c3f2010-10-13 13:20:35 +000093
Per Lidenb97bf3f2006-01-02 19:04:38 +010094/*
Sam Ravnborg05790c62006-03-20 22:37:04 -080095 * Simple link routines
Per Lidenb97bf3f2006-01-02 19:04:38 +010096 */
Sam Ravnborg05790c62006-03-20 22:37:04 -080097static unsigned int align(unsigned int i)
Per Lidenb97bf3f2006-01-02 19:04:38 +010098{
99 return (i + 3) & ~3u;
100}
101
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500102static void link_init_max_pkt(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100103{
104 u32 max_pkt;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900105
Allan Stephens2d627b92011-01-07 13:00:11 -0500106 max_pkt = (l_ptr->b_ptr->mtu & ~3);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100107 if (max_pkt > MAX_MSG_SIZE)
108 max_pkt = MAX_MSG_SIZE;
109
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900110 l_ptr->max_pkt_target = max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100111 if (l_ptr->max_pkt_target < MAX_PKT_DEFAULT)
112 l_ptr->max_pkt = l_ptr->max_pkt_target;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900113 else
Per Lidenb97bf3f2006-01-02 19:04:38 +0100114 l_ptr->max_pkt = MAX_PKT_DEFAULT;
115
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900116 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100117}
118
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500119static u32 link_next_sent(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100120{
121 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -0400122 return buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100123 return mod(l_ptr->next_out_no);
124}
125
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500126static u32 link_last_sent(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127{
128 return mod(link_next_sent(l_ptr) - 1);
129}
130
131/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800132 * Simple non-static link routines (i.e. referenced outside this file)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100133 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500134int tipc_link_is_up(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100135{
136 if (!l_ptr)
137 return 0;
Eric Dumazeta02cec22010-09-22 20:43:57 +0000138 return link_working_working(l_ptr) || link_working_unknown(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100139}
140
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500141int tipc_link_is_active(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100142{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000143 return (l_ptr->owner->active_links[0] == l_ptr) ||
144 (l_ptr->owner->active_links[1] == l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100145}
146
147/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100148 * link_timeout - handle expiration of link timer
149 * @l_ptr: pointer to link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100150 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500151static void link_timeout(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100152{
Per Liden4323add2006-01-18 00:38:21 +0100153 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100154
155 /* update counters used in statistical profiling of send traffic */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100156 l_ptr->stats.accu_queue_sz += l_ptr->out_queue_size;
157 l_ptr->stats.queue_sz_counts++;
158
Per Lidenb97bf3f2006-01-02 19:04:38 +0100159 if (l_ptr->first_out) {
160 struct tipc_msg *msg = buf_msg(l_ptr->first_out);
161 u32 length = msg_size(msg);
162
Joe Perchesf64f9e72009-11-29 16:55:45 -0800163 if ((msg_user(msg) == MSG_FRAGMENTER) &&
164 (msg_type(msg) == FIRST_FRAGMENT)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100165 length = msg_size(msg_get_wrapped(msg));
166 }
167 if (length) {
168 l_ptr->stats.msg_lengths_total += length;
169 l_ptr->stats.msg_length_counts++;
170 if (length <= 64)
171 l_ptr->stats.msg_length_profile[0]++;
172 else if (length <= 256)
173 l_ptr->stats.msg_length_profile[1]++;
174 else if (length <= 1024)
175 l_ptr->stats.msg_length_profile[2]++;
176 else if (length <= 4096)
177 l_ptr->stats.msg_length_profile[3]++;
178 else if (length <= 16384)
179 l_ptr->stats.msg_length_profile[4]++;
180 else if (length <= 32768)
181 l_ptr->stats.msg_length_profile[5]++;
182 else
183 l_ptr->stats.msg_length_profile[6]++;
184 }
185 }
186
187 /* do all other link processing performed on a periodic basis */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100188
189 link_state_event(l_ptr, TIMEOUT_EVT);
190
191 if (l_ptr->next_out)
Per Liden4323add2006-01-18 00:38:21 +0100192 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100193
Per Liden4323add2006-01-18 00:38:21 +0100194 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100195}
196
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500197static void link_set_timer(struct tipc_link *l_ptr, u32 time)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100198{
199 k_start_timer(&l_ptr->timer, time);
200}
201
202/**
Per Liden4323add2006-01-18 00:38:21 +0100203 * tipc_link_create - create a new link
Allan Stephens37b9c082011-02-28 11:32:27 -0500204 * @n_ptr: pointer to associated node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100205 * @b_ptr: pointer to associated bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100206 * @media_addr: media address to use when sending messages over link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900207 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100208 * Returns pointer to link.
209 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500210struct tipc_link *tipc_link_create(struct tipc_node *n_ptr,
Ying Xuec61dd612014-02-13 17:29:09 -0500211 struct tipc_bearer *b_ptr,
212 const struct tipc_media_addr *media_addr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100213{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500214 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100215 struct tipc_msg *msg;
216 char *if_name;
Allan Stephens37b9c082011-02-28 11:32:27 -0500217 char addr_string[16];
218 u32 peer = n_ptr->addr;
219
220 if (n_ptr->link_cnt >= 2) {
221 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400222 pr_err("Attempt to establish third link to %s\n", addr_string);
Allan Stephens37b9c082011-02-28 11:32:27 -0500223 return NULL;
224 }
225
226 if (n_ptr->links[b_ptr->identity]) {
227 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400228 pr_err("Attempt to establish second link on <%s> to %s\n",
229 b_ptr->name, addr_string);
Allan Stephens37b9c082011-02-28 11:32:27 -0500230 return NULL;
231 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100232
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700233 l_ptr = kzalloc(sizeof(*l_ptr), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100234 if (!l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400235 pr_warn("Link creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100236 return NULL;
237 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100238
239 l_ptr->addr = peer;
Allan Stephens2d627b92011-01-07 13:00:11 -0500240 if_name = strchr(b_ptr->name, ':') + 1;
Allan Stephens062b4c92011-04-07 09:28:47 -0400241 sprintf(l_ptr->name, "%u.%u.%u:%s-%u.%u.%u:unknown",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100242 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900243 tipc_node(tipc_own_addr),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100244 if_name,
245 tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
Allan Stephens062b4c92011-04-07 09:28:47 -0400246 /* note: peer i/f name is updated by reset/activate message */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100247 memcpy(&l_ptr->media_addr, media_addr, sizeof(*media_addr));
Allan Stephens37b9c082011-02-28 11:32:27 -0500248 l_ptr->owner = n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100249 l_ptr->checkpoint = 1;
Allan Stephensf882cb72011-04-07 09:43:27 -0400250 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100251 l_ptr->b_ptr = b_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -0400252 link_set_supervision_props(l_ptr, b_ptr->tolerance);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100253 l_ptr->state = RESET_UNKNOWN;
254
255 l_ptr->pmsg = (struct tipc_msg *)&l_ptr->proto_msg;
256 msg = l_ptr->pmsg;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000257 tipc_msg_init(msg, LINK_PROTOCOL, RESET_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100258 msg_set_size(msg, sizeof(l_ptr->proto_msg));
Allan Stephensa686e682008-06-04 17:29:39 -0700259 msg_set_session(msg, (tipc_random & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100260 msg_set_bearer_id(msg, b_ptr->identity);
261 strcpy((char *)msg_data(msg), if_name);
262
263 l_ptr->priority = b_ptr->priority;
Allan Stephens5c216e12011-10-18 11:34:29 -0400264 tipc_link_set_queue_limits(l_ptr, b_ptr->window);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100265
266 link_init_max_pkt(l_ptr);
267
268 l_ptr->next_out_no = 1;
269 INIT_LIST_HEAD(&l_ptr->waiting_ports);
270
271 link_reset_statistics(l_ptr);
272
Allan Stephens37b9c082011-02-28 11:32:27 -0500273 tipc_node_attach_link(n_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100274
Jon Paul Maloy170b3922014-01-07 17:02:41 -0500275 k_init_timer(&l_ptr->timer, (Handler)link_timeout,
276 (unsigned long)l_ptr);
Jon Paul Maloy581465f2014-01-07 17:02:44 -0500277
278 link_state_event(l_ptr, STARTING_EVT);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100279
Per Lidenb97bf3f2006-01-02 19:04:38 +0100280 return l_ptr;
281}
282
Per Lidenb97bf3f2006-01-02 19:04:38 +0100283
Ying Xuec61dd612014-02-13 17:29:09 -0500284void tipc_link_delete_list(unsigned int bearer_id)
Ying Xue8d8439b2014-02-13 17:29:07 -0500285{
286 struct tipc_link *l_ptr;
Ying Xuec61dd612014-02-13 17:29:09 -0500287 struct tipc_node *n_ptr;
Ying Xue8d8439b2014-02-13 17:29:07 -0500288
Ying Xuec61dd612014-02-13 17:29:09 -0500289 list_for_each_entry(n_ptr, &tipc_node_list, list) {
290 spin_lock_bh(&n_ptr->lock);
291 l_ptr = n_ptr->links[bearer_id];
292 if (l_ptr) {
293 tipc_link_reset(l_ptr);
294 tipc_node_detach_link(n_ptr, l_ptr);
295 spin_unlock_bh(&n_ptr->lock);
296
297 /* Nobody else can access this link now: */
298 del_timer_sync(&l_ptr->timer);
299 kfree(l_ptr);
300 continue;
301 }
302 spin_unlock_bh(&n_ptr->lock);
Ying Xue8d8439b2014-02-13 17:29:07 -0500303 }
304}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100305
306/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900307 * link_schedule_port - schedule port for deferred sending
Per Lidenb97bf3f2006-01-02 19:04:38 +0100308 * @l_ptr: pointer to link
309 * @origport: reference to sending port
310 * @sz: amount of data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900311 *
312 * Schedules port for renewed sending of messages after link congestion
Per Lidenb97bf3f2006-01-02 19:04:38 +0100313 * has abated.
314 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500315static int link_schedule_port(struct tipc_link *l_ptr, u32 origport, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100316{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500317 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100318
Per Liden4323add2006-01-18 00:38:21 +0100319 spin_lock_bh(&tipc_port_list_lock);
320 p_ptr = tipc_port_lock(origport);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100321 if (p_ptr) {
322 if (!p_ptr->wakeup)
323 goto exit;
324 if (!list_empty(&p_ptr->wait_list))
325 goto exit;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500326 p_ptr->congested = 1;
Allan Stephens15e979d2010-05-11 14:30:10 +0000327 p_ptr->waiting_pkts = 1 + ((sz - 1) / l_ptr->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100328 list_add_tail(&p_ptr->wait_list, &l_ptr->waiting_ports);
329 l_ptr->stats.link_congs++;
330exit:
Per Liden4323add2006-01-18 00:38:21 +0100331 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100332 }
Per Liden4323add2006-01-18 00:38:21 +0100333 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100334 return -ELINKCONG;
335}
336
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500337void tipc_link_wakeup_ports(struct tipc_link *l_ptr, int all)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100338{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500339 struct tipc_port *p_ptr;
340 struct tipc_port *temp_p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100341 int win = l_ptr->queue_limit[0] - l_ptr->out_queue_size;
342
343 if (all)
344 win = 100000;
345 if (win <= 0)
346 return;
Per Liden4323add2006-01-18 00:38:21 +0100347 if (!spin_trylock_bh(&tipc_port_list_lock))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100348 return;
349 if (link_congested(l_ptr))
350 goto exit;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900351 list_for_each_entry_safe(p_ptr, temp_p_ptr, &l_ptr->waiting_ports,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100352 wait_list) {
353 if (win <= 0)
354 break;
355 list_del_init(&p_ptr->wait_list);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500356 spin_lock_bh(p_ptr->lock);
357 p_ptr->congested = 0;
358 p_ptr->wakeup(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100359 win -= p_ptr->waiting_pkts;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500360 spin_unlock_bh(p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100361 }
362
363exit:
Per Liden4323add2006-01-18 00:38:21 +0100364 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100365}
366
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900367/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100368 * link_release_outqueue - purge link's outbound message queue
369 * @l_ptr: pointer to link
370 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500371static void link_release_outqueue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100372{
Ying Xued77b3832013-12-10 20:45:38 -0800373 kfree_skb_list(l_ptr->first_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100374 l_ptr->first_out = NULL;
375 l_ptr->out_queue_size = 0;
376}
377
378/**
Per Liden4323add2006-01-18 00:38:21 +0100379 * tipc_link_reset_fragments - purge link's inbound message fragments queue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100380 * @l_ptr: pointer to link
381 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500382void tipc_link_reset_fragments(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100383{
Erik Hugne40ba3cd2013-11-06 09:28:06 +0100384 kfree_skb(l_ptr->reasm_head);
385 l_ptr->reasm_head = NULL;
386 l_ptr->reasm_tail = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100387}
388
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900389/**
Jon Paul Maloy581465f2014-01-07 17:02:44 -0500390 * tipc_link_purge_queues - purge all pkt queues associated with link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100391 * @l_ptr: pointer to link
392 */
Jon Paul Maloy581465f2014-01-07 17:02:44 -0500393void tipc_link_purge_queues(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100394{
Ying Xued77b3832013-12-10 20:45:38 -0800395 kfree_skb_list(l_ptr->oldest_deferred_in);
396 kfree_skb_list(l_ptr->first_out);
Per Liden4323add2006-01-18 00:38:21 +0100397 tipc_link_reset_fragments(l_ptr);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400398 kfree_skb(l_ptr->proto_msg_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100399 l_ptr->proto_msg_queue = NULL;
400}
401
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500402void tipc_link_reset(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100403{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100404 u32 prev_state = l_ptr->state;
405 u32 checkpoint = l_ptr->next_in_no;
Allan Stephens5392d642006-06-25 23:52:50 -0700406 int was_active_link = tipc_link_is_active(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900407
Allan Stephensa686e682008-06-04 17:29:39 -0700408 msg_set_session(l_ptr->pmsg, ((msg_session(l_ptr->pmsg) + 1) & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100409
Allan Stephensa686e682008-06-04 17:29:39 -0700410 /* Link is down, accept any session */
411 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100412
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900413 /* Prepare for max packet size negotiation */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100414 link_init_max_pkt(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900415
Per Lidenb97bf3f2006-01-02 19:04:38 +0100416 l_ptr->state = RESET_UNKNOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100417
418 if ((prev_state == RESET_UNKNOWN) || (prev_state == RESET_RESET))
419 return;
420
Per Liden4323add2006-01-18 00:38:21 +0100421 tipc_node_link_down(l_ptr->owner, l_ptr);
422 tipc_bearer_remove_dest(l_ptr->b_ptr, l_ptr->addr);
Paul Gortmaker7368ddf2010-10-12 14:25:58 +0000423
Jon Paul Maloyb9d4c332014-01-07 17:02:42 -0500424 if (was_active_link && tipc_node_active_links(l_ptr->owner)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100425 l_ptr->reset_checkpoint = checkpoint;
426 l_ptr->exp_msg_count = START_CHANGEOVER;
427 }
428
429 /* Clean up all queues: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100430 link_release_outqueue(l_ptr);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400431 kfree_skb(l_ptr->proto_msg_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100432 l_ptr->proto_msg_queue = NULL;
Ying Xued77b3832013-12-10 20:45:38 -0800433 kfree_skb_list(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100434 if (!list_empty(&l_ptr->waiting_ports))
Per Liden4323add2006-01-18 00:38:21 +0100435 tipc_link_wakeup_ports(l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100436
437 l_ptr->retransm_queue_head = 0;
438 l_ptr->retransm_queue_size = 0;
439 l_ptr->last_out = NULL;
440 l_ptr->first_out = NULL;
441 l_ptr->next_out = NULL;
442 l_ptr->unacked_window = 0;
443 l_ptr->checkpoint = 1;
444 l_ptr->next_out_no = 1;
445 l_ptr->deferred_inqueue_sz = 0;
446 l_ptr->oldest_deferred_in = NULL;
447 l_ptr->newest_deferred_in = NULL;
448 l_ptr->fsm_msg_cnt = 0;
449 l_ptr->stale_count = 0;
450 link_reset_statistics(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100451}
452
Ying Xuec61dd612014-02-13 17:29:09 -0500453void tipc_link_reset_list(unsigned int bearer_id)
Ying Xuee0ca2c32014-02-13 17:29:06 -0500454{
455 struct tipc_link *l_ptr;
Ying Xuec61dd612014-02-13 17:29:09 -0500456 struct tipc_node *n_ptr;
Ying Xuee0ca2c32014-02-13 17:29:06 -0500457
Ying Xuec61dd612014-02-13 17:29:09 -0500458 list_for_each_entry(n_ptr, &tipc_node_list, list) {
Ying Xuee0ca2c32014-02-13 17:29:06 -0500459 spin_lock_bh(&n_ptr->lock);
Ying Xuec61dd612014-02-13 17:29:09 -0500460 l_ptr = n_ptr->links[bearer_id];
461 if (l_ptr)
462 tipc_link_reset(l_ptr);
Ying Xuee0ca2c32014-02-13 17:29:06 -0500463 spin_unlock_bh(&n_ptr->lock);
464 }
465}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100466
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500467static void link_activate(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100468{
Allan Stephens5392d642006-06-25 23:52:50 -0700469 l_ptr->next_in_no = l_ptr->stats.recv_info = 1;
Per Liden4323add2006-01-18 00:38:21 +0100470 tipc_node_link_up(l_ptr->owner, l_ptr);
471 tipc_bearer_add_dest(l_ptr->b_ptr, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100472}
473
474/**
475 * link_state_event - link finite state machine
476 * @l_ptr: pointer to link
477 * @event: state machine event to process
478 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000479static void link_state_event(struct tipc_link *l_ptr, unsigned int event)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100480{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500481 struct tipc_link *other;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100482 u32 cont_intv = l_ptr->continuity_interval;
483
Ying Xue135daee2014-02-13 17:29:08 -0500484 if (!(l_ptr->flags & LINK_STARTED) && (event != STARTING_EVT))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100485 return; /* Not yet. */
486
Ying Xue77a7e072013-12-10 20:45:44 -0800487 /* Check whether changeover is going on */
488 if (l_ptr->exp_msg_count) {
Allan Stephensa0168922010-12-31 18:59:35 +0000489 if (event == TIMEOUT_EVT)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100490 link_set_timer(l_ptr, cont_intv);
Ying Xue77a7e072013-12-10 20:45:44 -0800491 return;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100492 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100493
494 switch (l_ptr->state) {
495 case WORKING_WORKING:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100496 switch (event) {
497 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100498 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100499 break;
500 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100501 if (l_ptr->next_in_no != l_ptr->checkpoint) {
502 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100503 if (tipc_bclink_acks_missing(l_ptr->owner)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900504 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100505 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100506 l_ptr->fsm_msg_cnt++;
507 } else if (l_ptr->max_pkt < l_ptr->max_pkt_target) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900508 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100509 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100510 l_ptr->fsm_msg_cnt++;
511 }
512 link_set_timer(l_ptr, cont_intv);
513 break;
514 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100515 l_ptr->state = WORKING_UNKNOWN;
516 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100517 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100518 l_ptr->fsm_msg_cnt++;
519 link_set_timer(l_ptr, cont_intv / 4);
520 break;
521 case RESET_MSG:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400522 pr_info("%s<%s>, requested by peer\n", link_rst_msg,
523 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100524 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100525 l_ptr->state = RESET_RESET;
526 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100527 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100528 l_ptr->fsm_msg_cnt++;
529 link_set_timer(l_ptr, cont_intv);
530 break;
531 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400532 pr_err("%s%u in WW state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100533 }
534 break;
535 case WORKING_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100536 switch (event) {
537 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100538 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100539 l_ptr->state = WORKING_WORKING;
540 l_ptr->fsm_msg_cnt = 0;
541 link_set_timer(l_ptr, cont_intv);
542 break;
543 case RESET_MSG:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400544 pr_info("%s<%s>, requested by peer while probing\n",
545 link_rst_msg, l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100546 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100547 l_ptr->state = RESET_RESET;
548 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100549 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100550 l_ptr->fsm_msg_cnt++;
551 link_set_timer(l_ptr, cont_intv);
552 break;
553 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100554 if (l_ptr->next_in_no != l_ptr->checkpoint) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100555 l_ptr->state = WORKING_WORKING;
556 l_ptr->fsm_msg_cnt = 0;
557 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100558 if (tipc_bclink_acks_missing(l_ptr->owner)) {
559 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
560 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100561 l_ptr->fsm_msg_cnt++;
562 }
563 link_set_timer(l_ptr, cont_intv);
564 } else if (l_ptr->fsm_msg_cnt < l_ptr->abort_limit) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900565 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100566 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100567 l_ptr->fsm_msg_cnt++;
568 link_set_timer(l_ptr, cont_intv / 4);
569 } else { /* Link has failed */
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400570 pr_warn("%s<%s>, peer not responding\n",
571 link_rst_msg, l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100572 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100573 l_ptr->state = RESET_UNKNOWN;
574 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100575 tipc_link_send_proto_msg(l_ptr, RESET_MSG,
576 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100577 l_ptr->fsm_msg_cnt++;
578 link_set_timer(l_ptr, cont_intv);
579 }
580 break;
581 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400582 pr_err("%s%u in WU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100583 }
584 break;
585 case RESET_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100586 switch (event) {
587 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100588 break;
589 case ACTIVATE_MSG:
590 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000591 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100592 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100593 l_ptr->state = WORKING_WORKING;
594 l_ptr->fsm_msg_cnt = 0;
595 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100596 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100597 l_ptr->fsm_msg_cnt++;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800598 if (l_ptr->owner->working_links == 1)
599 tipc_link_send_sync(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100600 link_set_timer(l_ptr, cont_intv);
601 break;
602 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100603 l_ptr->state = RESET_RESET;
604 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100605 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100606 l_ptr->fsm_msg_cnt++;
607 link_set_timer(l_ptr, cont_intv);
608 break;
609 case STARTING_EVT:
Ying Xue135daee2014-02-13 17:29:08 -0500610 l_ptr->flags |= LINK_STARTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100611 /* fall through */
612 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100613 tipc_link_send_proto_msg(l_ptr, RESET_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100614 l_ptr->fsm_msg_cnt++;
615 link_set_timer(l_ptr, cont_intv);
616 break;
617 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400618 pr_err("%s%u in RU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100619 }
620 break;
621 case RESET_RESET:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100622 switch (event) {
623 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100624 case ACTIVATE_MSG:
625 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000626 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100627 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100628 l_ptr->state = WORKING_WORKING;
629 l_ptr->fsm_msg_cnt = 0;
630 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100631 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100632 l_ptr->fsm_msg_cnt++;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800633 if (l_ptr->owner->working_links == 1)
634 tipc_link_send_sync(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100635 link_set_timer(l_ptr, cont_intv);
636 break;
637 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100638 break;
639 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100640 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100641 l_ptr->fsm_msg_cnt++;
642 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100643 break;
644 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400645 pr_err("%s%u in RR state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100646 }
647 break;
648 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400649 pr_err("Unknown link state %u/%u\n", l_ptr->state, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100650 }
651}
652
653/*
654 * link_bundle_buf(): Append contents of a buffer to
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900655 * the tail of an existing one.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100656 */
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400657static int link_bundle_buf(struct tipc_link *l_ptr, struct sk_buff *bundler,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100658 struct sk_buff *buf)
659{
660 struct tipc_msg *bundler_msg = buf_msg(bundler);
661 struct tipc_msg *msg = buf_msg(buf);
662 u32 size = msg_size(msg);
Allan Stephense49060c2006-06-29 12:32:46 -0700663 u32 bundle_size = msg_size(bundler_msg);
664 u32 to_pos = align(bundle_size);
665 u32 pad = to_pos - bundle_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100666
667 if (msg_user(bundler_msg) != MSG_BUNDLER)
668 return 0;
669 if (msg_type(bundler_msg) != OPEN_MSG)
670 return 0;
Allan Stephense49060c2006-06-29 12:32:46 -0700671 if (skb_tailroom(bundler) < (pad + size))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100672 return 0;
Allan Stephens15e979d2010-05-11 14:30:10 +0000673 if (l_ptr->max_pkt < (to_pos + size))
Allan Stephens863fae62006-07-03 19:39:36 -0700674 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100675
Allan Stephense49060c2006-06-29 12:32:46 -0700676 skb_put(bundler, pad + size);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300677 skb_copy_to_linear_data_offset(bundler, to_pos, buf->data, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100678 msg_set_size(bundler_msg, to_pos + size);
679 msg_set_msgcnt(bundler_msg, msg_msgcnt(bundler_msg) + 1);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400680 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100681 l_ptr->stats.sent_bundled++;
682 return 1;
683}
684
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500685static void link_add_to_outqueue(struct tipc_link *l_ptr,
Sam Ravnborg05790c62006-03-20 22:37:04 -0800686 struct sk_buff *buf,
687 struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100688{
689 u32 ack = mod(l_ptr->next_in_no - 1);
690 u32 seqno = mod(l_ptr->next_out_no++);
691
692 msg_set_word(msg, 2, ((ack << 16) | seqno));
693 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
694 buf->next = NULL;
695 if (l_ptr->first_out) {
696 l_ptr->last_out->next = buf;
697 l_ptr->last_out = buf;
698 } else
699 l_ptr->first_out = l_ptr->last_out = buf;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500700
Per Lidenb97bf3f2006-01-02 19:04:38 +0100701 l_ptr->out_queue_size++;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500702 if (l_ptr->out_queue_size > l_ptr->stats.max_queue_sz)
703 l_ptr->stats.max_queue_sz = l_ptr->out_queue_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100704}
705
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500706static void link_add_chain_to_outqueue(struct tipc_link *l_ptr,
Allan Stephensdc63d912011-04-21 11:50:42 -0400707 struct sk_buff *buf_chain,
708 u32 long_msgno)
709{
710 struct sk_buff *buf;
711 struct tipc_msg *msg;
712
713 if (!l_ptr->next_out)
714 l_ptr->next_out = buf_chain;
715 while (buf_chain) {
716 buf = buf_chain;
717 buf_chain = buf_chain->next;
718
719 msg = buf_msg(buf);
720 msg_set_long_msgno(msg, long_msgno);
721 link_add_to_outqueue(l_ptr, buf, msg);
722 }
723}
724
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900725/*
726 * tipc_link_send_buf() is the 'full path' for messages, called from
Per Lidenb97bf3f2006-01-02 19:04:38 +0100727 * inside TIPC when the 'fast path' in tipc_send_buf
728 * has failed, and from link_send()
729 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500730int tipc_link_send_buf(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100731{
732 struct tipc_msg *msg = buf_msg(buf);
733 u32 size = msg_size(msg);
734 u32 dsz = msg_data_sz(msg);
735 u32 queue_size = l_ptr->out_queue_size;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000736 u32 imp = tipc_msg_tot_importance(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100737 u32 queue_limit = l_ptr->queue_limit[imp];
Allan Stephens15e979d2010-05-11 14:30:10 +0000738 u32 max_packet = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100739
Per Lidenb97bf3f2006-01-02 19:04:38 +0100740 /* Match msg importance against queue limits: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100741 if (unlikely(queue_size >= queue_limit)) {
742 if (imp <= TIPC_CRITICAL_IMPORTANCE) {
Allan Stephensbebc55a2011-04-19 10:17:58 -0400743 link_schedule_port(l_ptr, msg_origport(msg), size);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400744 kfree_skb(buf);
Allan Stephensbebc55a2011-04-19 10:17:58 -0400745 return -ELINKCONG;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100746 }
Allan Stephens5f6d9122011-11-04 13:24:29 -0400747 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100748 if (imp > CONN_MANAGER) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400749 pr_warn("%s<%s>, send queue full", link_rst_msg,
750 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100751 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100752 }
753 return dsz;
754 }
755
756 /* Fragmentation needed ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100757 if (size > max_packet)
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000758 return link_send_long_buf(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100759
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400760 /* Packet can be queued or sent. */
Erik Hugne512137e2013-12-06 10:08:00 -0500761 if (likely(!link_congested(l_ptr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100762 link_add_to_outqueue(l_ptr, buf, msg);
763
Ying Xue3c294cb2012-11-15 11:34:45 +0800764 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
765 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100766 return dsz;
767 }
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400768 /* Congestion: can message be bundled ? */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100769 if ((msg_user(msg) != CHANGEOVER_PROTOCOL) &&
770 (msg_user(msg) != MSG_FRAGMENTER)) {
771
772 /* Try adding message to an existing bundle */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900773 if (l_ptr->next_out &&
Ying Xue3c294cb2012-11-15 11:34:45 +0800774 link_bundle_buf(l_ptr, l_ptr->last_out, buf))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100775 return dsz;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100776
777 /* Try creating a new bundle */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100778 if (size <= max_packet * 2 / 3) {
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000779 struct sk_buff *bundler = tipc_buf_acquire(max_packet);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100780 struct tipc_msg bundler_hdr;
781
782 if (bundler) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000783 tipc_msg_init(&bundler_hdr, MSG_BUNDLER, OPEN_MSG,
Allan Stephens75715212008-06-04 17:37:34 -0700784 INT_H_SIZE, l_ptr->addr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300785 skb_copy_to_linear_data(bundler, &bundler_hdr,
786 INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100787 skb_trim(bundler, INT_H_SIZE);
788 link_bundle_buf(l_ptr, bundler, buf);
789 buf = bundler;
790 msg = buf_msg(buf);
791 l_ptr->stats.sent_bundles++;
792 }
793 }
794 }
795 if (!l_ptr->next_out)
796 l_ptr->next_out = buf;
797 link_add_to_outqueue(l_ptr, buf, msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100798 return dsz;
799}
800
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900801/*
802 * tipc_link_send(): same as tipc_link_send_buf(), but the link to use has
Per Lidenb97bf3f2006-01-02 19:04:38 +0100803 * not been selected yet, and the the owner node is not locked
804 * Called by TIPC internal users, e.g. the name distributor
805 */
Per Liden4323add2006-01-18 00:38:21 +0100806int tipc_link_send(struct sk_buff *buf, u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100807{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500808 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700809 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100810 int res = -ELINKCONG;
811
Per Liden4323add2006-01-18 00:38:21 +0100812 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000813 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100814 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +0100815 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100816 l_ptr = n_ptr->active_links[selector & 1];
Allan Stephensa0168922010-12-31 18:59:35 +0000817 if (l_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100818 res = tipc_link_send_buf(l_ptr, buf);
Allan Stephensa0168922010-12-31 18:59:35 +0000819 else
Allan Stephens5f6d9122011-11-04 13:24:29 -0400820 kfree_skb(buf);
Per Liden4323add2006-01-18 00:38:21 +0100821 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100822 } else {
Allan Stephens5f6d9122011-11-04 13:24:29 -0400823 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100824 }
Per Liden4323add2006-01-18 00:38:21 +0100825 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100826 return res;
827}
828
Jon Maloyc64f7a62012-11-16 13:51:31 +0800829/*
830 * tipc_link_send_sync - synchronize broadcast link endpoints.
831 *
832 * Give a newly added peer node the sequence number where it should
833 * start receiving and acking broadcast packets.
834 *
835 * Called with node locked
836 */
837static void tipc_link_send_sync(struct tipc_link *l)
838{
839 struct sk_buff *buf;
840 struct tipc_msg *msg;
841
842 buf = tipc_buf_acquire(INT_H_SIZE);
843 if (!buf)
844 return;
845
846 msg = buf_msg(buf);
847 tipc_msg_init(msg, BCAST_PROTOCOL, STATE_MSG, INT_H_SIZE, l->addr);
848 msg_set_last_bcast(msg, l->owner->bclink.acked);
849 link_add_chain_to_outqueue(l, buf, 0);
850 tipc_link_push_queue(l);
851}
852
853/*
854 * tipc_link_recv_sync - synchronize broadcast link endpoints.
855 * Receive the sequence number where we should start receiving and
856 * acking broadcast packets from a newly added peer node, and open
857 * up for reception of such packets.
858 *
859 * Called with node locked
860 */
861static void tipc_link_recv_sync(struct tipc_node *n, struct sk_buff *buf)
862{
863 struct tipc_msg *msg = buf_msg(buf);
864
865 n->bclink.last_sent = n->bclink.last_in = msg_last_bcast(msg);
866 n->bclink.recv_permitted = true;
867 kfree_skb(buf);
868}
869
870/*
Allan Stephens9aa88c22011-05-31 13:38:02 -0400871 * tipc_link_send_names - send name table entries to new neighbor
872 *
873 * Send routine for bulk delivery of name table messages when contact
874 * with a new neighbor occurs. No link congestion checking is performed
875 * because name table messages *must* be delivered. The messages must be
876 * small enough not to require fragmentation.
877 * Called without any locks held.
878 */
Allan Stephens9aa88c22011-05-31 13:38:02 -0400879void tipc_link_send_names(struct list_head *message_list, u32 dest)
880{
881 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500882 struct tipc_link *l_ptr;
Allan Stephens9aa88c22011-05-31 13:38:02 -0400883 struct sk_buff *buf;
884 struct sk_buff *temp_buf;
885
886 if (list_empty(message_list))
887 return;
888
889 read_lock_bh(&tipc_net_lock);
890 n_ptr = tipc_node_find(dest);
891 if (n_ptr) {
892 tipc_node_lock(n_ptr);
893 l_ptr = n_ptr->active_links[0];
894 if (l_ptr) {
895 /* convert circular list to linear list */
896 ((struct sk_buff *)message_list->prev)->next = NULL;
897 link_add_chain_to_outqueue(l_ptr,
898 (struct sk_buff *)message_list->next, 0);
899 tipc_link_push_queue(l_ptr);
900 INIT_LIST_HEAD(message_list);
901 }
902 tipc_node_unlock(n_ptr);
903 }
904 read_unlock_bh(&tipc_net_lock);
905
906 /* discard the messages if they couldn't be sent */
Allan Stephens9aa88c22011-05-31 13:38:02 -0400907 list_for_each_safe(buf, temp_buf, ((struct sk_buff *)message_list)) {
908 list_del((struct list_head *)buf);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400909 kfree_skb(buf);
Allan Stephens9aa88c22011-05-31 13:38:02 -0400910 }
911}
912
913/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900914 * link_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +0100915 * destination link is known and the header is complete,
916 * inclusive total message length. Very time critical.
917 * Link is locked. Returns user data length.
918 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500919static int link_send_buf_fast(struct tipc_link *l_ptr, struct sk_buff *buf,
Sam Ravnborg05790c62006-03-20 22:37:04 -0800920 u32 *used_max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100921{
922 struct tipc_msg *msg = buf_msg(buf);
923 int res = msg_data_sz(msg);
924
925 if (likely(!link_congested(l_ptr))) {
Allan Stephens15e979d2010-05-11 14:30:10 +0000926 if (likely(msg_size(msg) <= l_ptr->max_pkt)) {
Erik Hugne512137e2013-12-06 10:08:00 -0500927 link_add_to_outqueue(l_ptr, buf, msg);
928 tipc_bearer_send(l_ptr->b_ptr, buf,
929 &l_ptr->media_addr);
930 l_ptr->unacked_window = 0;
931 return res;
932 }
933 else
Allan Stephens15e979d2010-05-11 14:30:10 +0000934 *used_max_pkt = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100935 }
Per Liden4323add2006-01-18 00:38:21 +0100936 return tipc_link_send_buf(l_ptr, buf); /* All other cases */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100937}
938
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900939/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900940 * tipc_link_send_sections_fast: Entry for messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +0100941 * destination processor is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900942 * except for total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100943 * Returns user data length or errno.
944 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500945int tipc_link_send_sections_fast(struct tipc_port *sender,
Per Liden4323add2006-01-18 00:38:21 +0100946 struct iovec const *msg_sect,
Ying Xue9446b872013-10-18 07:23:15 +0200947 unsigned int len, u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100948{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500949 struct tipc_msg *hdr = &sender->phdr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500950 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100951 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -0700952 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100953 int res;
954 u32 selector = msg_origport(hdr) & 1;
955
Per Lidenb97bf3f2006-01-02 19:04:38 +0100956again:
957 /*
958 * Try building message using port's max_pkt hint.
959 * (Must not hold any locks while building message.)
960 */
Ying Xue9446b872013-10-18 07:23:15 +0200961 res = tipc_msg_build(hdr, msg_sect, len, sender->max_pkt, &buf);
Ying Xue7410f962013-06-17 10:54:49 -0400962 /* Exit if build request was invalid */
963 if (unlikely(res < 0))
964 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100965
Per Liden4323add2006-01-18 00:38:21 +0100966 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000967 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100968 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +0100969 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100970 l_ptr = node->active_links[selector];
971 if (likely(l_ptr)) {
972 if (likely(buf)) {
973 res = link_send_buf_fast(l_ptr, buf,
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500974 &sender->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100975exit:
Per Liden4323add2006-01-18 00:38:21 +0100976 tipc_node_unlock(node);
977 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100978 return res;
979 }
980
Per Lidenb97bf3f2006-01-02 19:04:38 +0100981 /* Exit if link (or bearer) is congested */
Erik Hugne512137e2013-12-06 10:08:00 -0500982 if (link_congested(l_ptr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100983 res = link_schedule_port(l_ptr,
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500984 sender->ref, res);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100985 goto exit;
986 }
987
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900988 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100989 * Message size exceeds max_pkt hint; update hint,
990 * then re-try fast path or fragment the message
991 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500992 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +0100993 tipc_node_unlock(node);
994 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100995
996
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500997 if ((msg_hdr_sz(hdr) + res) <= sender->max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100998 goto again;
999
Ying Xue9446b872013-10-18 07:23:15 +02001000 return link_send_sections_long(sender, msg_sect, len,
Allan Stephens26896902011-04-21 10:42:07 -05001001 destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001002 }
Per Liden4323add2006-01-18 00:38:21 +01001003 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001004 }
Per Liden4323add2006-01-18 00:38:21 +01001005 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001006
1007 /* Couldn't find a link to the destination node */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001008 if (buf)
1009 return tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1010 if (res >= 0)
Ying Xue9446b872013-10-18 07:23:15 +02001011 return tipc_port_reject_sections(sender, hdr, msg_sect,
1012 len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001013 return res;
1014}
1015
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001016/*
1017 * link_send_sections_long(): Entry for long messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001018 * destination node is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001019 * inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001020 * Link and bearer congestion status have been checked to be ok,
1021 * and are ignored if they change.
1022 *
1023 * Note that fragments do not use the full link MTU so that they won't have
1024 * to undergo refragmentation if link changeover causes them to be sent
1025 * over another link with an additional tunnel header added as prefix.
1026 * (Refragmentation will still occur if the other link has a smaller MTU.)
1027 *
1028 * Returns user data length or errno.
1029 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001030static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001031 struct iovec const *msg_sect,
Ying Xue9446b872013-10-18 07:23:15 +02001032 unsigned int len, u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001033{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001034 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001035 struct tipc_node *node;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001036 struct tipc_msg *hdr = &sender->phdr;
Ying Xue9446b872013-10-18 07:23:15 +02001037 u32 dsz = len;
Allan Stephens0e659672010-12-31 18:59:32 +00001038 u32 max_pkt, fragm_sz, rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001039 struct tipc_msg fragm_hdr;
Allan Stephens0e659672010-12-31 18:59:32 +00001040 struct sk_buff *buf, *buf_chain, *prev;
1041 u32 fragm_crs, fragm_rest, hsz, sect_rest;
Ying Xue40682432013-10-18 07:23:16 +02001042 const unchar __user *sect_crs;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001043 int curr_sect;
1044 u32 fragm_no;
Ying Xue126c0522013-06-17 10:54:50 -04001045 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001046
1047again:
1048 fragm_no = 1;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001049 max_pkt = sender->max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001050 /* leave room for tunnel header in case of link changeover */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001051 fragm_sz = max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001052 /* leave room for fragmentation header in each fragment */
1053 rest = dsz;
1054 fragm_crs = 0;
1055 fragm_rest = 0;
1056 sect_rest = 0;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001057 sect_crs = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001058 curr_sect = -1;
1059
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001060 /* Prepare reusable fragment header */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001061 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07001062 INT_H_SIZE, msg_destnode(hdr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001063 msg_set_size(&fragm_hdr, max_pkt);
1064 msg_set_fragm_no(&fragm_hdr, 1);
1065
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001066 /* Prepare header of first fragment */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001067 buf_chain = buf = tipc_buf_acquire(max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001068 if (!buf)
1069 return -ENOMEM;
1070 buf->next = NULL;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001071 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001072 hsz = msg_hdr_sz(hdr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001073 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, hdr, hsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001074
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001075 /* Chop up message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001076 fragm_crs = INT_H_SIZE + hsz;
1077 fragm_rest = fragm_sz - hsz;
1078
1079 do { /* For all sections */
1080 u32 sz;
1081
1082 if (!sect_rest) {
1083 sect_rest = msg_sect[++curr_sect].iov_len;
Ying Xue40682432013-10-18 07:23:16 +02001084 sect_crs = msg_sect[curr_sect].iov_base;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001085 }
1086
1087 if (sect_rest < fragm_rest)
1088 sz = sect_rest;
1089 else
1090 sz = fragm_rest;
1091
Ying Xuef1733d72013-06-17 10:54:43 -04001092 if (copy_from_user(buf->data + fragm_crs, sect_crs, sz)) {
Ying Xue126c0522013-06-17 10:54:50 -04001093 res = -EFAULT;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001094error:
Ying Xued77b3832013-12-10 20:45:38 -08001095 kfree_skb_list(buf_chain);
Ying Xue126c0522013-06-17 10:54:50 -04001096 return res;
Ying Xuef1733d72013-06-17 10:54:43 -04001097 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001098 sect_crs += sz;
1099 sect_rest -= sz;
1100 fragm_crs += sz;
1101 fragm_rest -= sz;
1102 rest -= sz;
1103
1104 if (!fragm_rest && rest) {
1105
1106 /* Initiate new fragment: */
1107 if (rest <= fragm_sz) {
1108 fragm_sz = rest;
Allan Stephens0e659672010-12-31 18:59:32 +00001109 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001110 } else {
1111 msg_set_type(&fragm_hdr, FRAGMENT);
1112 }
1113 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
1114 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
1115 prev = buf;
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001116 buf = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Ying Xue126c0522013-06-17 10:54:50 -04001117 if (!buf) {
1118 res = -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001119 goto error;
Ying Xue126c0522013-06-17 10:54:50 -04001120 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001121
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001122 buf->next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001123 prev->next = buf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001124 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001125 fragm_crs = INT_H_SIZE;
1126 fragm_rest = fragm_sz;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001127 }
Allan Stephens0e659672010-12-31 18:59:32 +00001128 } while (rest > 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001129
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001130 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001131 * Now we have a buffer chain. Select a link and check
1132 * that packet size is still OK
1133 */
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001134 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001135 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001136 tipc_node_lock(node);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001137 l_ptr = node->active_links[sender->ref & 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001138 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01001139 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001140 goto reject;
1141 }
Allan Stephens15e979d2010-05-11 14:30:10 +00001142 if (l_ptr->max_pkt < max_pkt) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001143 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001144 tipc_node_unlock(node);
Ying Xued77b3832013-12-10 20:45:38 -08001145 kfree_skb_list(buf_chain);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001146 goto again;
1147 }
1148 } else {
1149reject:
Ying Xued77b3832013-12-10 20:45:38 -08001150 kfree_skb_list(buf_chain);
Ying Xue9446b872013-10-18 07:23:15 +02001151 return tipc_port_reject_sections(sender, hdr, msg_sect,
1152 len, TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001153 }
1154
Allan Stephensdc63d912011-04-21 11:50:42 -04001155 /* Append chain of fragments to send queue & send them */
Allan Stephense0f08592011-04-17 11:44:24 -04001156 l_ptr->long_msg_seq_no++;
Allan Stephensdc63d912011-04-21 11:50:42 -04001157 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
1158 l_ptr->stats.sent_fragments += fragm_no;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001159 l_ptr->stats.sent_fragmented++;
Per Liden4323add2006-01-18 00:38:21 +01001160 tipc_link_push_queue(l_ptr);
1161 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001162 return dsz;
1163}
1164
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001165/*
Per Liden4323add2006-01-18 00:38:21 +01001166 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +01001167 */
stephen hemminger98056962014-01-04 13:47:48 -08001168static u32 tipc_link_push_packet(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001169{
1170 struct sk_buff *buf = l_ptr->first_out;
1171 u32 r_q_size = l_ptr->retransm_queue_size;
1172 u32 r_q_head = l_ptr->retransm_queue_head;
1173
1174 /* Step to position where retransmission failed, if any, */
1175 /* consider that buffers may have been released in meantime */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001176 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001177 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +01001178 link_last_sent(l_ptr));
Allan Stephensf9057302011-10-24 16:03:12 -04001179 u32 first = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001180
1181 while (buf && less(first, r_q_head)) {
1182 first = mod(first + 1);
1183 buf = buf->next;
1184 }
1185 l_ptr->retransm_queue_head = r_q_head = first;
1186 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1187 }
1188
1189 /* Continue retransmission now, if there is anything: */
Neil Hormanca509102010-03-15 07:58:45 +00001190 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001191 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001192 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001193 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1194 l_ptr->retransm_queue_head = mod(++r_q_head);
1195 l_ptr->retransm_queue_size = --r_q_size;
1196 l_ptr->stats.retransmitted++;
1197 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001198 }
1199
1200 /* Send deferred protocol message, if any: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001201 buf = l_ptr->proto_msg_queue;
1202 if (buf) {
1203 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +00001204 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001205 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1206 l_ptr->unacked_window = 0;
1207 kfree_skb(buf);
1208 l_ptr->proto_msg_queue = NULL;
1209 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001210 }
1211
1212 /* Send one deferred data message, if send window not full: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001213 buf = l_ptr->next_out;
1214 if (buf) {
1215 struct tipc_msg *msg = buf_msg(buf);
1216 u32 next = msg_seqno(msg);
Allan Stephensf9057302011-10-24 16:03:12 -04001217 u32 first = buf_seqno(l_ptr->first_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001218
1219 if (mod(next - first) < l_ptr->queue_limit[0]) {
1220 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001221 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001222 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1223 if (msg_user(msg) == MSG_BUNDLER)
1224 msg_set_type(msg, CLOSED_MSG);
1225 l_ptr->next_out = buf->next;
1226 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001227 }
1228 }
Ying Xue3c294cb2012-11-15 11:34:45 +08001229 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001230}
1231
1232/*
1233 * push_queue(): push out the unsent messages of a link where
1234 * congestion has abated. Node is locked
1235 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001236void tipc_link_push_queue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001237{
1238 u32 res;
1239
Per Lidenb97bf3f2006-01-02 19:04:38 +01001240 do {
Per Liden4323add2006-01-18 00:38:21 +01001241 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001242 } while (!res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001243}
1244
Allan Stephensd356eeb2006-06-25 23:40:01 -07001245static void link_reset_all(unsigned long addr)
1246{
David S. Miller6c000552008-09-02 23:38:32 -07001247 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001248 char addr_string[16];
1249 u32 i;
1250
1251 read_lock_bh(&tipc_net_lock);
1252 n_ptr = tipc_node_find((u32)addr);
1253 if (!n_ptr) {
1254 read_unlock_bh(&tipc_net_lock);
1255 return; /* node no longer exists */
1256 }
1257
1258 tipc_node_lock(n_ptr);
1259
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001260 pr_warn("Resetting all links to %s\n",
1261 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -07001262
1263 for (i = 0; i < MAX_BEARERS; i++) {
1264 if (n_ptr->links[i]) {
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001265 link_print(n_ptr->links[i], "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001266 tipc_link_reset(n_ptr->links[i]);
1267 }
1268 }
1269
1270 tipc_node_unlock(n_ptr);
1271 read_unlock_bh(&tipc_net_lock);
1272}
1273
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001274static void link_retransmit_failure(struct tipc_link *l_ptr,
Paul Gortmakerae8509c2013-06-17 10:54:47 -04001275 struct sk_buff *buf)
Allan Stephensd356eeb2006-06-25 23:40:01 -07001276{
1277 struct tipc_msg *msg = buf_msg(buf);
1278
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001279 pr_warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001280
1281 if (l_ptr->addr) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001282 /* Handle failure on standard link */
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001283 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001284 tipc_link_reset(l_ptr);
1285
1286 } else {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001287 /* Handle failure on broadcast link */
David S. Miller6c000552008-09-02 23:38:32 -07001288 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001289 char addr_string[16];
1290
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001291 pr_info("Msg seq number: %u, ", msg_seqno(msg));
1292 pr_cont("Outstanding acks: %lu\n",
1293 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -07001294
Allan Stephens01d83ed2011-01-18 13:53:16 -05001295 n_ptr = tipc_bclink_retransmit_to();
Allan Stephensd356eeb2006-06-25 23:40:01 -07001296 tipc_node_lock(n_ptr);
1297
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001298 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001299 pr_info("Broadcast link info for %s\n", addr_string);
Ying Xue389dd9b2012-11-16 13:51:30 +08001300 pr_info("Reception permitted: %d, Acked: %u\n",
1301 n_ptr->bclink.recv_permitted,
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001302 n_ptr->bclink.acked);
1303 pr_info("Last in: %u, Oos state: %u, Last sent: %u\n",
1304 n_ptr->bclink.last_in,
1305 n_ptr->bclink.oos_state,
1306 n_ptr->bclink.last_sent);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001307
1308 tipc_k_signal((Handler)link_reset_all, (unsigned long)n_ptr->addr);
1309
1310 tipc_node_unlock(n_ptr);
1311
1312 l_ptr->stale_count = 0;
1313 }
1314}
1315
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001316void tipc_link_retransmit(struct tipc_link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001317 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001318{
1319 struct tipc_msg *msg;
1320
Allan Stephensd356eeb2006-06-25 23:40:01 -07001321 if (!buf)
1322 return;
1323
1324 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001325
Erik Hugne512137e2013-12-06 10:08:00 -05001326 /* Detect repeated retransmit failures */
1327 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1328 if (++l_ptr->stale_count > 100) {
1329 link_retransmit_failure(l_ptr, buf);
1330 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001331 }
1332 } else {
Erik Hugne512137e2013-12-06 10:08:00 -05001333 l_ptr->last_retransmitted = msg_seqno(msg);
1334 l_ptr->stale_count = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001335 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001336
Neil Hormanca509102010-03-15 07:58:45 +00001337 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001338 msg = buf_msg(buf);
1339 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001340 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue3c294cb2012-11-15 11:34:45 +08001341 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
1342 buf = buf->next;
1343 retransmits--;
1344 l_ptr->stats.retransmitted++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001345 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001346
Per Lidenb97bf3f2006-01-02 19:04:38 +01001347 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1348}
1349
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001350/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001351 * link_insert_deferred_queue - insert deferred messages back into receive chain
1352 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001353static struct sk_buff *link_insert_deferred_queue(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001354 struct sk_buff *buf)
1355{
1356 u32 seq_no;
1357
1358 if (l_ptr->oldest_deferred_in == NULL)
1359 return buf;
1360
Allan Stephensf9057302011-10-24 16:03:12 -04001361 seq_no = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001362 if (seq_no == mod(l_ptr->next_in_no)) {
1363 l_ptr->newest_deferred_in->next = buf;
1364 buf = l_ptr->oldest_deferred_in;
1365 l_ptr->oldest_deferred_in = NULL;
1366 l_ptr->deferred_inqueue_sz = 0;
1367 }
1368 return buf;
1369}
1370
Allan Stephens85035562008-04-15 19:04:54 -07001371/**
1372 * link_recv_buf_validate - validate basic format of received message
1373 *
1374 * This routine ensures a TIPC message has an acceptable header, and at least
1375 * as much data as the header indicates it should. The routine also ensures
1376 * that the entire message header is stored in the main fragment of the message
1377 * buffer, to simplify future access to message header fields.
1378 *
1379 * Note: Having extra info present in the message header or data areas is OK.
1380 * TIPC will ignore the excess, under the assumption that it is optional info
1381 * introduced by a later release of the protocol.
1382 */
Allan Stephens85035562008-04-15 19:04:54 -07001383static int link_recv_buf_validate(struct sk_buff *buf)
1384{
1385 static u32 min_data_hdr_size[8] = {
Allan Stephens741d9eb2011-05-31 15:03:18 -04001386 SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,
Allan Stephens85035562008-04-15 19:04:54 -07001387 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1388 };
1389
1390 struct tipc_msg *msg;
1391 u32 tipc_hdr[2];
1392 u32 size;
1393 u32 hdr_size;
1394 u32 min_hdr_size;
1395
1396 if (unlikely(buf->len < MIN_H_SIZE))
1397 return 0;
1398
1399 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1400 if (msg == NULL)
1401 return 0;
1402
1403 if (unlikely(msg_version(msg) != TIPC_VERSION))
1404 return 0;
1405
1406 size = msg_size(msg);
1407 hdr_size = msg_hdr_sz(msg);
1408 min_hdr_size = msg_isdata(msg) ?
1409 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1410
1411 if (unlikely((hdr_size < min_hdr_size) ||
1412 (size < hdr_size) ||
1413 (buf->len < size) ||
1414 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1415 return 0;
1416
1417 return pskb_may_pull(buf, hdr_size);
1418}
1419
Allan Stephensb02b69c2010-08-17 11:00:07 +00001420/**
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001421 * tipc_rcv - process TIPC packets/messages arriving from off-node
Allan Stephensb02b69c2010-08-17 11:00:07 +00001422 * @head: pointer to message buffer chain
1423 * @tb_ptr: pointer to bearer message arrived on
1424 *
1425 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1426 * structure (i.e. cannot be NULL), but bearer can be inactive.
1427 */
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001428void tipc_rcv(struct sk_buff *head, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001429{
Per Liden4323add2006-01-18 00:38:21 +01001430 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001431 while (head) {
David S. Miller6c000552008-09-02 23:38:32 -07001432 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001433 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001434 struct sk_buff *crs;
1435 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001436 struct tipc_msg *msg;
1437 u32 seq_no;
1438 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001439 u32 released = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001440
Per Lidenb97bf3f2006-01-02 19:04:38 +01001441 head = head->next;
Erik Hugne732256b2014-01-07 15:51:36 -05001442 buf->next = NULL;
Allan Stephens85035562008-04-15 19:04:54 -07001443
Allan Stephensb02b69c2010-08-17 11:00:07 +00001444 /* Ensure bearer is still enabled */
Allan Stephensb02b69c2010-08-17 11:00:07 +00001445 if (unlikely(!b_ptr->active))
Ying Xue3af390e2013-10-30 11:26:57 +08001446 goto discard;
Allan Stephensb02b69c2010-08-17 11:00:07 +00001447
Allan Stephens85035562008-04-15 19:04:54 -07001448 /* Ensure message is well-formed */
Allan Stephens85035562008-04-15 19:04:54 -07001449 if (unlikely(!link_recv_buf_validate(buf)))
Ying Xue3af390e2013-10-30 11:26:57 +08001450 goto discard;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001451
Allan Stephensfe13dda2008-04-15 19:03:23 -07001452 /* Ensure message data is a single contiguous unit */
Allan Stephens5f6d9122011-11-04 13:24:29 -04001453 if (unlikely(skb_linearize(buf)))
Ying Xue3af390e2013-10-30 11:26:57 +08001454 goto discard;
Allan Stephensfe13dda2008-04-15 19:03:23 -07001455
Allan Stephens85035562008-04-15 19:04:54 -07001456 /* Handle arrival of a non-unicast link message */
Allan Stephens85035562008-04-15 19:04:54 -07001457 msg = buf_msg(buf);
1458
Per Lidenb97bf3f2006-01-02 19:04:38 +01001459 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001460 if (msg_user(msg) == LINK_CONFIG)
1461 tipc_disc_recv_msg(buf, b_ptr);
1462 else
1463 tipc_bclink_recv_pkt(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001464 continue;
1465 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001466
Allan Stephensed33a9c2011-04-05 15:15:04 -04001467 /* Discard unicast link messages destined for another node */
Allan Stephens26008242006-06-25 23:39:31 -07001468 if (unlikely(!msg_short(msg) &&
1469 (msg_destnode(msg) != tipc_own_addr)))
Ying Xue3af390e2013-10-30 11:26:57 +08001470 goto discard;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001471
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001472 /* Locate neighboring node that sent message */
Per Liden4323add2006-01-18 00:38:21 +01001473 n_ptr = tipc_node_find(msg_prevnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001474 if (unlikely(!n_ptr))
Ying Xue3af390e2013-10-30 11:26:57 +08001475 goto discard;
Per Liden4323add2006-01-18 00:38:21 +01001476 tipc_node_lock(n_ptr);
Allan Stephens85035562008-04-15 19:04:54 -07001477
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001478 /* Locate unicast link endpoint that should handle message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001479 l_ptr = n_ptr->links[b_ptr->identity];
Ying Xue3af390e2013-10-30 11:26:57 +08001480 if (unlikely(!l_ptr))
1481 goto unlock_discard;
Allan Stephens85035562008-04-15 19:04:54 -07001482
Allan Stephensb4b56102011-05-27 11:00:51 -04001483 /* Verify that communication with node is currently allowed */
Allan Stephensb4b56102011-05-27 11:00:51 -04001484 if ((n_ptr->block_setup & WAIT_PEER_DOWN) &&
1485 msg_user(msg) == LINK_PROTOCOL &&
1486 (msg_type(msg) == RESET_MSG ||
1487 msg_type(msg) == ACTIVATE_MSG) &&
1488 !msg_redundant_link(msg))
1489 n_ptr->block_setup &= ~WAIT_PEER_DOWN;
1490
Ying Xue3af390e2013-10-30 11:26:57 +08001491 if (n_ptr->block_setup)
1492 goto unlock_discard;
Allan Stephensb4b56102011-05-27 11:00:51 -04001493
Allan Stephens85035562008-04-15 19:04:54 -07001494 /* Validate message sequence number info */
Allan Stephens85035562008-04-15 19:04:54 -07001495 seq_no = msg_seqno(msg);
1496 ackd = msg_ack(msg);
1497
1498 /* Release acked messages */
Ying Xue389dd9b2012-11-16 13:51:30 +08001499 if (n_ptr->bclink.recv_permitted)
Allan Stephens365595912011-10-24 15:26:24 -04001500 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001501
1502 crs = l_ptr->first_out;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001503 while ((crs != l_ptr->next_out) &&
Allan Stephensf9057302011-10-24 16:03:12 -04001504 less_eq(buf_seqno(crs), ackd)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001505 struct sk_buff *next = crs->next;
1506
Allan Stephens5f6d9122011-11-04 13:24:29 -04001507 kfree_skb(crs);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001508 crs = next;
1509 released++;
1510 }
1511 if (released) {
1512 l_ptr->first_out = crs;
1513 l_ptr->out_queue_size -= released;
1514 }
Allan Stephens85035562008-04-15 19:04:54 -07001515
1516 /* Try sending any messages link endpoint has pending */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001517 if (unlikely(l_ptr->next_out))
Per Liden4323add2006-01-18 00:38:21 +01001518 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001519 if (unlikely(!list_empty(&l_ptr->waiting_ports)))
Per Liden4323add2006-01-18 00:38:21 +01001520 tipc_link_wakeup_ports(l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001521 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1522 l_ptr->stats.sent_acks++;
Per Liden4323add2006-01-18 00:38:21 +01001523 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001524 }
1525
Allan Stephens85035562008-04-15 19:04:54 -07001526 /* Now (finally!) process the incoming message */
Ying Xue3af390e2013-10-30 11:26:57 +08001527 if (unlikely(!link_working_working(l_ptr))) {
1528 if (msg_user(msg) == LINK_PROTOCOL) {
1529 link_recv_proto_msg(l_ptr, buf);
1530 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001531 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001532 continue;
1533 }
Ying Xue3af390e2013-10-30 11:26:57 +08001534
1535 /* Traffic message. Conditionally activate link */
1536 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1537
1538 if (link_working_working(l_ptr)) {
1539 /* Re-insert buffer in front of queue */
1540 buf->next = head;
1541 head = buf;
1542 tipc_node_unlock(n_ptr);
1543 continue;
1544 }
1545 goto unlock_discard;
1546 }
1547
1548 /* Link is now in state WORKING_WORKING */
1549 if (unlikely(seq_no != mod(l_ptr->next_in_no))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001550 link_handle_out_of_seq_msg(l_ptr, buf);
1551 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001552 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001553 continue;
1554 }
Ying Xue3af390e2013-10-30 11:26:57 +08001555 l_ptr->next_in_no++;
1556 if (unlikely(l_ptr->oldest_deferred_in))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001557 head = link_insert_deferred_queue(l_ptr, head);
Ying Xue3af390e2013-10-30 11:26:57 +08001558deliver:
1559 if (likely(msg_isdata(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01001560 tipc_node_unlock(n_ptr);
Ying Xue3af390e2013-10-30 11:26:57 +08001561 tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001562 continue;
1563 }
Ying Xue3af390e2013-10-30 11:26:57 +08001564 switch (msg_user(msg)) {
1565 int ret;
1566 case MSG_BUNDLER:
1567 l_ptr->stats.recv_bundles++;
1568 l_ptr->stats.recv_bundled += msg_msgcnt(msg);
1569 tipc_node_unlock(n_ptr);
1570 tipc_link_recv_bundle(buf);
1571 continue;
1572 case NAME_DISTRIBUTOR:
1573 n_ptr->bclink.recv_permitted = true;
1574 tipc_node_unlock(n_ptr);
1575 tipc_named_recv(buf);
1576 continue;
1577 case BCAST_PROTOCOL:
1578 tipc_link_recv_sync(n_ptr, buf);
Per Liden4323add2006-01-18 00:38:21 +01001579 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001580 continue;
Ying Xue3af390e2013-10-30 11:26:57 +08001581 case CONN_MANAGER:
1582 tipc_node_unlock(n_ptr);
1583 tipc_port_recv_proto_msg(buf);
1584 continue;
1585 case MSG_FRAGMENTER:
1586 l_ptr->stats.recv_fragments++;
Jon Paul Maloy03b92012014-02-13 17:29:05 -05001587 ret = tipc_link_frag_rcv(&l_ptr->reasm_head,
1588 &l_ptr->reasm_tail,
1589 &buf);
Erik Hugne40ba3cd2013-11-06 09:28:06 +01001590 if (ret == LINK_REASM_COMPLETE) {
Ying Xue3af390e2013-10-30 11:26:57 +08001591 l_ptr->stats.recv_fragmented++;
Erik Hugne40ba3cd2013-11-06 09:28:06 +01001592 msg = buf_msg(buf);
Ying Xue3af390e2013-10-30 11:26:57 +08001593 goto deliver;
1594 }
Erik Hugne40ba3cd2013-11-06 09:28:06 +01001595 if (ret == LINK_REASM_ERROR)
Erik Hugnea715b492013-11-06 09:28:07 +01001596 tipc_link_reset(l_ptr);
Erik Hugne528f6f42013-11-06 09:28:05 +01001597 tipc_node_unlock(n_ptr);
1598 continue;
Ying Xue3af390e2013-10-30 11:26:57 +08001599 case CHANGEOVER_PROTOCOL:
Jon Paul Maloy1dab3d52014-02-13 17:29:10 -05001600 if (!tipc_link_tunnel_rcv(&l_ptr, &buf))
1601 break;
1602 msg = buf_msg(buf);
1603 seq_no = msg_seqno(msg);
1604 goto deliver;
Ying Xue3af390e2013-10-30 11:26:57 +08001605 default:
1606 kfree_skb(buf);
1607 buf = NULL;
1608 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001609 }
Per Liden4323add2006-01-18 00:38:21 +01001610 tipc_node_unlock(n_ptr);
Ying Xue3af390e2013-10-30 11:26:57 +08001611 tipc_net_route_msg(buf);
1612 continue;
1613unlock_discard:
1614
1615 tipc_node_unlock(n_ptr);
1616discard:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001617 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001618 }
Per Liden4323add2006-01-18 00:38:21 +01001619 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001620}
1621
Ben Hutchings2c530402012-07-10 10:55:09 +00001622/**
Allan Stephens8809b252011-10-25 10:44:35 -04001623 * tipc_link_defer_pkt - Add out-of-sequence message to deferred reception queue
1624 *
1625 * Returns increase in queue length (i.e. 0 or 1)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001626 */
Allan Stephens8809b252011-10-25 10:44:35 -04001627u32 tipc_link_defer_pkt(struct sk_buff **head, struct sk_buff **tail,
Per Liden4323add2006-01-18 00:38:21 +01001628 struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001629{
Allan Stephens8809b252011-10-25 10:44:35 -04001630 struct sk_buff *queue_buf;
1631 struct sk_buff **prev;
Allan Stephensf9057302011-10-24 16:03:12 -04001632 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001633
1634 buf->next = NULL;
1635
1636 /* Empty queue ? */
1637 if (*head == NULL) {
1638 *head = *tail = buf;
1639 return 1;
1640 }
1641
1642 /* Last ? */
Allan Stephensf9057302011-10-24 16:03:12 -04001643 if (less(buf_seqno(*tail), seq_no)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001644 (*tail)->next = buf;
1645 *tail = buf;
1646 return 1;
1647 }
1648
Allan Stephens8809b252011-10-25 10:44:35 -04001649 /* Locate insertion point in queue, then insert; discard if duplicate */
1650 prev = head;
1651 queue_buf = *head;
1652 for (;;) {
1653 u32 curr_seqno = buf_seqno(queue_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001654
Allan Stephens8809b252011-10-25 10:44:35 -04001655 if (seq_no == curr_seqno) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001656 kfree_skb(buf);
Allan Stephens8809b252011-10-25 10:44:35 -04001657 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001658 }
Allan Stephens8809b252011-10-25 10:44:35 -04001659
1660 if (less(seq_no, curr_seqno))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001661 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001662
Allan Stephens8809b252011-10-25 10:44:35 -04001663 prev = &queue_buf->next;
1664 queue_buf = queue_buf->next;
1665 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001666
Allan Stephens8809b252011-10-25 10:44:35 -04001667 buf->next = queue_buf;
1668 *prev = buf;
1669 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001670}
1671
Allan Stephens8809b252011-10-25 10:44:35 -04001672/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001673 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1674 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001675static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001676 struct sk_buff *buf)
1677{
Allan Stephensf9057302011-10-24 16:03:12 -04001678 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001679
1680 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
1681 link_recv_proto_msg(l_ptr, buf);
1682 return;
1683 }
1684
Per Lidenb97bf3f2006-01-02 19:04:38 +01001685 /* Record OOS packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001686 l_ptr->checkpoint--;
1687
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001688 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001689 * Discard packet if a duplicate; otherwise add it to deferred queue
1690 * and notify peer of gap as per protocol specification
1691 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001692 if (less(seq_no, mod(l_ptr->next_in_no))) {
1693 l_ptr->stats.duplicates++;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001694 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001695 return;
1696 }
1697
Per Liden4323add2006-01-18 00:38:21 +01001698 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1699 &l_ptr->newest_deferred_in, buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001700 l_ptr->deferred_inqueue_sz++;
1701 l_ptr->stats.deferred_recv++;
1702 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
Per Liden4323add2006-01-18 00:38:21 +01001703 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001704 } else
1705 l_ptr->stats.duplicates++;
1706}
1707
1708/*
1709 * Send protocol message to the other endpoint.
1710 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001711void tipc_link_send_proto_msg(struct tipc_link *l_ptr, u32 msg_typ,
Paul Gortmakerae8509c2013-06-17 10:54:47 -04001712 int probe_msg, u32 gap, u32 tolerance,
1713 u32 priority, u32 ack_mtu)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001714{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001715 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001716 struct tipc_msg *msg = l_ptr->pmsg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001717 u32 msg_size = sizeof(l_ptr->proto_msg);
Allan Stephens75f0aa42011-02-28 15:30:20 -05001718 int r_flag;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001719
Allan Stephens92d2c902011-10-25 11:20:26 -04001720 /* Discard any previous message that was deferred due to congestion */
Allan Stephens92d2c902011-10-25 11:20:26 -04001721 if (l_ptr->proto_msg_queue) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001722 kfree_skb(l_ptr->proto_msg_queue);
Allan Stephens92d2c902011-10-25 11:20:26 -04001723 l_ptr->proto_msg_queue = NULL;
1724 }
1725
Ying Xue77a7e072013-12-10 20:45:44 -08001726 /* Don't send protocol message during link changeover */
1727 if (l_ptr->exp_msg_count)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001728 return;
Allan Stephensb4b56102011-05-27 11:00:51 -04001729
1730 /* Abort non-RESET send if communication with node is prohibited */
Allan Stephensb4b56102011-05-27 11:00:51 -04001731 if ((l_ptr->owner->block_setup) && (msg_typ != RESET_MSG))
1732 return;
1733
Allan Stephens92d2c902011-10-25 11:20:26 -04001734 /* Create protocol message with "out-of-sequence" sequence number */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001735 msg_set_type(msg, msg_typ);
1736 msg_set_net_plane(msg, l_ptr->b_ptr->net_plane);
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001737 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001738 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
Per Lidenb97bf3f2006-01-02 19:04:38 +01001739
1740 if (msg_typ == STATE_MSG) {
1741 u32 next_sent = mod(l_ptr->next_out_no);
1742
Per Liden4323add2006-01-18 00:38:21 +01001743 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001744 return;
1745 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -04001746 next_sent = buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001747 msg_set_next_sent(msg, next_sent);
1748 if (l_ptr->oldest_deferred_in) {
Allan Stephensf9057302011-10-24 16:03:12 -04001749 u32 rec = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001750 gap = mod(rec - mod(l_ptr->next_in_no));
1751 }
1752 msg_set_seq_gap(msg, gap);
1753 if (gap)
1754 l_ptr->stats.sent_nacks++;
1755 msg_set_link_tolerance(msg, tolerance);
1756 msg_set_linkprio(msg, priority);
1757 msg_set_max_pkt(msg, ack_mtu);
1758 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1759 msg_set_probe(msg, probe_msg != 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001760 if (probe_msg) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001761 u32 mtu = l_ptr->max_pkt;
1762
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001763 if ((mtu < l_ptr->max_pkt_target) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001764 link_working_working(l_ptr) &&
1765 l_ptr->fsm_msg_cnt) {
1766 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001767 if (l_ptr->max_pkt_probes == 10) {
1768 l_ptr->max_pkt_target = (msg_size - 4);
1769 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001770 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001771 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001772 l_ptr->max_pkt_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001773 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001774
1775 l_ptr->stats.sent_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001776 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001777 l_ptr->stats.sent_states++;
1778 } else { /* RESET_MSG or ACTIVATE_MSG */
1779 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
1780 msg_set_seq_gap(msg, 0);
1781 msg_set_next_sent(msg, 1);
Allan Stephensf23d9bf2011-01-18 15:15:34 -05001782 msg_set_probe(msg, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001783 msg_set_link_tolerance(msg, l_ptr->tolerance);
1784 msg_set_linkprio(msg, l_ptr->priority);
1785 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
1786 }
1787
Allan Stephens75f0aa42011-02-28 15:30:20 -05001788 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
1789 msg_set_redundant_link(msg, r_flag);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001790 msg_set_linkprio(msg, l_ptr->priority);
Allan Stephens92d2c902011-10-25 11:20:26 -04001791 msg_set_size(msg, msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001792
1793 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
1794
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001795 buf = tipc_buf_acquire(msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001796 if (!buf)
1797 return;
1798
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001799 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
Ying Xue796c75d2013-06-17 10:54:48 -04001800 buf->priority = TC_PRIO_CONTROL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001801
Ying Xue3c294cb2012-11-15 11:34:45 +08001802 tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr);
Allan Stephens92d2c902011-10-25 11:20:26 -04001803 l_ptr->unacked_window = 0;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001804 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001805}
1806
1807/*
1808 * Receive protocol message :
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001809 * Note that network plane id propagates through the network, and may
1810 * change at any time. The node with lowest address rules
Per Lidenb97bf3f2006-01-02 19:04:38 +01001811 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001812static void link_recv_proto_msg(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001813{
1814 u32 rec_gap = 0;
1815 u32 max_pkt_info;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001816 u32 max_pkt_ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001817 u32 msg_tol;
1818 struct tipc_msg *msg = buf_msg(buf);
1819
Ying Xue77a7e072013-12-10 20:45:44 -08001820 /* Discard protocol message during link changeover */
1821 if (l_ptr->exp_msg_count)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001822 goto exit;
1823
1824 /* record unnumbered packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001825 l_ptr->checkpoint--;
1826
1827 if (l_ptr->b_ptr->net_plane != msg_net_plane(msg))
1828 if (tipc_own_addr > msg_prevnode(msg))
1829 l_ptr->b_ptr->net_plane = msg_net_plane(msg);
1830
Per Lidenb97bf3f2006-01-02 19:04:38 +01001831 switch (msg_type(msg)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001832
Per Lidenb97bf3f2006-01-02 19:04:38 +01001833 case RESET_MSG:
Allan Stephensa686e682008-06-04 17:29:39 -07001834 if (!link_working_unknown(l_ptr) &&
1835 (l_ptr->peer_session != INVALID_SESSION)) {
Allan Stephens641c2182011-04-07 09:54:43 -04001836 if (less_eq(msg_session(msg), l_ptr->peer_session))
1837 break; /* duplicate or old reset: ignore */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001838 }
Allan Stephensb4b56102011-05-27 11:00:51 -04001839
1840 if (!msg_redundant_link(msg) && (link_working_working(l_ptr) ||
1841 link_working_unknown(l_ptr))) {
1842 /*
1843 * peer has lost contact -- don't allow peer's links
1844 * to reactivate before we recognize loss & clean up
1845 */
1846 l_ptr->owner->block_setup = WAIT_NODE_DOWN;
1847 }
1848
Allan Stephens47361c82011-10-26 10:55:16 -04001849 link_state_event(l_ptr, RESET_MSG);
1850
Per Lidenb97bf3f2006-01-02 19:04:38 +01001851 /* fall thru' */
1852 case ACTIVATE_MSG:
1853 /* Update link settings according other endpoint's values */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001854 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
1855
Allan Stephens2db99832010-12-31 18:59:33 +00001856 msg_tol = msg_link_tolerance(msg);
1857 if (msg_tol > l_ptr->tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001858 link_set_supervision_props(l_ptr, msg_tol);
1859
1860 if (msg_linkprio(msg) > l_ptr->priority)
1861 l_ptr->priority = msg_linkprio(msg);
1862
1863 max_pkt_info = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001864 if (max_pkt_info) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001865 if (max_pkt_info < l_ptr->max_pkt_target)
1866 l_ptr->max_pkt_target = max_pkt_info;
1867 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
1868 l_ptr->max_pkt = l_ptr->max_pkt_target;
1869 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001870 l_ptr->max_pkt = l_ptr->max_pkt_target;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001871 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001872
Allan Stephens4d753132011-10-25 12:19:05 -04001873 /* Synchronize broadcast link info, if not done previously */
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001874 if (!tipc_node_is_up(l_ptr->owner)) {
1875 l_ptr->owner->bclink.last_sent =
1876 l_ptr->owner->bclink.last_in =
1877 msg_last_bcast(msg);
1878 l_ptr->owner->bclink.oos_state = 0;
1879 }
Allan Stephens4d753132011-10-25 12:19:05 -04001880
Per Lidenb97bf3f2006-01-02 19:04:38 +01001881 l_ptr->peer_session = msg_session(msg);
1882 l_ptr->peer_bearer_id = msg_bearer_id(msg);
Allan Stephens47361c82011-10-26 10:55:16 -04001883
1884 if (msg_type(msg) == ACTIVATE_MSG)
1885 link_state_event(l_ptr, ACTIVATE_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001886 break;
1887 case STATE_MSG:
1888
Allan Stephens2db99832010-12-31 18:59:33 +00001889 msg_tol = msg_link_tolerance(msg);
1890 if (msg_tol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001891 link_set_supervision_props(l_ptr, msg_tol);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001892
1893 if (msg_linkprio(msg) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001894 (msg_linkprio(msg) != l_ptr->priority)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001895 pr_warn("%s<%s>, priority change %u->%u\n",
1896 link_rst_msg, l_ptr->name, l_ptr->priority,
1897 msg_linkprio(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001898 l_ptr->priority = msg_linkprio(msg);
Per Liden4323add2006-01-18 00:38:21 +01001899 tipc_link_reset(l_ptr); /* Enforce change to take effect */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001900 break;
1901 }
1902 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1903 l_ptr->stats.recv_states++;
1904 if (link_reset_unknown(l_ptr))
1905 break;
1906
1907 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001908 rec_gap = mod(msg_next_sent(msg) -
Per Lidenb97bf3f2006-01-02 19:04:38 +01001909 mod(l_ptr->next_in_no));
1910 }
1911
1912 max_pkt_ack = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001913 if (max_pkt_ack > l_ptr->max_pkt) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001914 l_ptr->max_pkt = max_pkt_ack;
1915 l_ptr->max_pkt_probes = 0;
1916 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001917
1918 max_pkt_ack = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001919 if (msg_probe(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001920 l_ptr->stats.recv_probes++;
Allan Stephensa0168922010-12-31 18:59:35 +00001921 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001922 max_pkt_ack = msg_size(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001923 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001924
1925 /* Protocol message before retransmits, reduce loss risk */
Ying Xue389dd9b2012-11-16 13:51:30 +08001926 if (l_ptr->owner->bclink.recv_permitted)
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001927 tipc_bclink_update_link_state(l_ptr->owner,
1928 msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001929
1930 if (rec_gap || (msg_probe(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01001931 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
1932 0, rec_gap, 0, 0, max_pkt_ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001933 }
1934 if (msg_seq_gap(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001935 l_ptr->stats.recv_nacks++;
Per Liden4323add2006-01-18 00:38:21 +01001936 tipc_link_retransmit(l_ptr, l_ptr->first_out,
1937 msg_seq_gap(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001938 }
1939 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001940 }
1941exit:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001942 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001943}
1944
1945
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001946/* tipc_link_tunnel_xmit(): Tunnel one packet via a link belonging to
1947 * a different bearer. Owner node is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001948 */
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001949static void tipc_link_tunnel_xmit(struct tipc_link *l_ptr,
1950 struct tipc_msg *tunnel_hdr,
1951 struct tipc_msg *msg,
1952 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001953{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001954 struct tipc_link *tunnel;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001955 struct sk_buff *buf;
1956 u32 length = msg_size(msg);
1957
1958 tunnel = l_ptr->owner->active_links[selector & 1];
Allan Stephens5392d642006-06-25 23:52:50 -07001959 if (!tipc_link_is_up(tunnel)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001960 pr_warn("%stunnel link no longer available\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001961 return;
Allan Stephens5392d642006-06-25 23:52:50 -07001962 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001963 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001964 buf = tipc_buf_acquire(length + INT_H_SIZE);
Allan Stephens5392d642006-06-25 23:52:50 -07001965 if (!buf) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001966 pr_warn("%sunable to send tunnel msg\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001967 return;
Allan Stephens5392d642006-06-25 23:52:50 -07001968 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001969 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
1970 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
Per Liden4323add2006-01-18 00:38:21 +01001971 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001972}
1973
1974
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001975/* tipc_link_failover_send_queue(): A link has gone down, but a second
1976 * link is still active. We can do failover. Tunnel the failing link's
1977 * whole send queue via the remaining link. This way, we don't lose
1978 * any packets, and sequence order is preserved for subsequent traffic
1979 * sent over the remaining link. Owner node is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001980 */
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001981void tipc_link_failover_send_queue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001982{
1983 u32 msgcount = l_ptr->out_queue_size;
1984 struct sk_buff *crs = l_ptr->first_out;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001985 struct tipc_link *tunnel = l_ptr->owner->active_links[0];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001986 struct tipc_msg tunnel_hdr;
Allan Stephens5392d642006-06-25 23:52:50 -07001987 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001988
1989 if (!tunnel)
1990 return;
1991
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001992 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07001993 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001994 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
1995 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07001996
Per Lidenb97bf3f2006-01-02 19:04:38 +01001997 if (!l_ptr->first_out) {
1998 struct sk_buff *buf;
1999
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002000 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002001 if (buf) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002002 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002003 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Per Liden4323add2006-01-18 00:38:21 +01002004 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002005 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002006 pr_warn("%sunable to send changeover msg\n",
2007 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002008 }
2009 return;
2010 }
Allan Stephensf1310722006-06-25 23:51:37 -07002011
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002012 split_bundles = (l_ptr->owner->active_links[0] !=
Allan Stephens5392d642006-06-25 23:52:50 -07002013 l_ptr->owner->active_links[1]);
2014
Per Lidenb97bf3f2006-01-02 19:04:38 +01002015 while (crs) {
2016 struct tipc_msg *msg = buf_msg(crs);
2017
2018 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002019 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00002020 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002021
Florian Westphald788d802007-08-02 19:28:06 -07002022 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002023 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00002024 msg_set_seqno(m, msg_seqno(msg));
Jon Paul Maloy170b3922014-01-07 17:02:41 -05002025 tipc_link_tunnel_xmit(l_ptr, &tunnel_hdr, m,
2026 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002027 pos += align(msg_size(m));
2028 m = (struct tipc_msg *)pos;
2029 }
2030 } else {
Jon Paul Maloy170b3922014-01-07 17:02:41 -05002031 tipc_link_tunnel_xmit(l_ptr, &tunnel_hdr, msg,
2032 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002033 }
2034 crs = crs->next;
2035 }
2036}
2037
Jon Paul Maloy170b3922014-01-07 17:02:41 -05002038/* tipc_link_dup_send_queue(): A second link has become active. Tunnel a
2039 * duplicate of the first link's send queue via the new link. This way, we
2040 * are guaranteed that currently queued packets from a socket are delivered
2041 * before future traffic from the same socket, even if this is using the
2042 * new link. The last arriving copy of each duplicate packet is dropped at
2043 * the receiving end by the regular protocol check, so packet cardinality
2044 * and sequence order is preserved per sender/receiver socket pair.
2045 * Owner node is locked.
2046 */
2047void tipc_link_dup_send_queue(struct tipc_link *l_ptr,
2048 struct tipc_link *tunnel)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002049{
2050 struct sk_buff *iter;
2051 struct tipc_msg tunnel_hdr;
2052
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002053 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002054 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002055 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
2056 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2057 iter = l_ptr->first_out;
2058 while (iter) {
2059 struct sk_buff *outbuf;
2060 struct tipc_msg *msg = buf_msg(iter);
2061 u32 length = msg_size(msg);
2062
2063 if (msg_user(msg) == MSG_BUNDLER)
2064 msg_set_type(msg, CLOSED_MSG);
2065 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002066 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002067 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002068 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002069 if (outbuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002070 pr_warn("%sunable to send duplicate msg\n",
2071 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002072 return;
2073 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002074 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
2075 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
2076 length);
Per Liden4323add2006-01-18 00:38:21 +01002077 tipc_link_send_buf(tunnel, outbuf);
2078 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002079 return;
2080 iter = iter->next;
2081 }
2082}
2083
Per Lidenb97bf3f2006-01-02 19:04:38 +01002084/**
2085 * buf_extract - extracts embedded TIPC message from another message
2086 * @skb: encapsulating message buffer
2087 * @from_pos: offset to extract from
2088 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002089 * Returns a new message buffer containing an embedded message. The
Per Lidenb97bf3f2006-01-02 19:04:38 +01002090 * encapsulating message itself is left unchanged.
2091 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002092static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
2093{
2094 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
2095 u32 size = msg_size(msg);
2096 struct sk_buff *eb;
2097
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002098 eb = tipc_buf_acquire(size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002099 if (eb)
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002100 skb_copy_to_linear_data(eb, msg, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002101 return eb;
2102}
2103
Jon Paul Maloy1dab3d52014-02-13 17:29:10 -05002104
2105
2106/* tipc_link_dup_rcv(): Receive a tunnelled DUPLICATE_MSG packet.
2107 * Owner node is locked.
2108 */
2109static void tipc_link_dup_rcv(struct tipc_link *l_ptr,
2110 struct sk_buff *t_buf)
2111{
2112 struct sk_buff *buf;
2113
2114 if (!tipc_link_is_up(l_ptr))
2115 return;
2116
2117 buf = buf_extract(t_buf, INT_H_SIZE);
2118 if (buf == NULL) {
2119 pr_warn("%sfailed to extract inner dup pkt\n", link_co_err);
2120 return;
2121 }
2122
2123 /* Add buffer to deferred queue, if applicable: */
2124 link_handle_out_of_seq_msg(l_ptr, buf);
2125}
2126
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05002127/* tipc_link_failover_rcv(): Receive a tunnelled ORIGINAL_MSG packet
2128 * Owner node is locked.
2129 */
2130static struct sk_buff *tipc_link_failover_rcv(struct tipc_link *l_ptr,
2131 struct sk_buff *t_buf)
2132{
2133 struct tipc_msg *t_msg = buf_msg(t_buf);
2134 struct sk_buff *buf = NULL;
2135 struct tipc_msg *msg;
2136
2137 if (tipc_link_is_up(l_ptr))
2138 tipc_link_reset(l_ptr);
2139
2140 /* First failover packet? */
2141 if (l_ptr->exp_msg_count == START_CHANGEOVER)
2142 l_ptr->exp_msg_count = msg_msgcnt(t_msg);
2143
2144 /* Should there be an inner packet? */
2145 if (l_ptr->exp_msg_count) {
2146 l_ptr->exp_msg_count--;
2147 buf = buf_extract(t_buf, INT_H_SIZE);
2148 if (buf == NULL) {
2149 pr_warn("%sno inner failover pkt\n", link_co_err);
2150 goto exit;
2151 }
2152 msg = buf_msg(buf);
2153
2154 if (less(msg_seqno(msg), l_ptr->reset_checkpoint)) {
2155 kfree_skb(buf);
2156 buf = NULL;
2157 goto exit;
2158 }
2159 if (msg_user(msg) == MSG_FRAGMENTER) {
2160 l_ptr->stats.recv_fragments++;
2161 tipc_link_frag_rcv(&l_ptr->reasm_head,
2162 &l_ptr->reasm_tail,
2163 &buf);
2164 }
2165 }
2166
2167exit:
2168 return buf;
2169}
2170
Jon Paul Maloy1dab3d52014-02-13 17:29:10 -05002171/* tipc_link_tunnel_rcv(): Receive a tunnelled packet, sent
Jon Paul Maloy170b3922014-01-07 17:02:41 -05002172 * via other link as result of a failover (ORIGINAL_MSG) or
2173 * a new active link (DUPLICATE_MSG). Failover packets are
2174 * returned to the active link for delivery upwards.
2175 * Owner node is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002176 */
Jon Paul Maloy170b3922014-01-07 17:02:41 -05002177static int tipc_link_tunnel_rcv(struct tipc_link **l_ptr,
2178 struct sk_buff **buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002179{
2180 struct sk_buff *tunnel_buf = *buf;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002181 struct tipc_link *dest_link;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002182 struct tipc_msg *tunnel_msg = buf_msg(tunnel_buf);
2183 u32 msg_typ = msg_type(tunnel_msg);
Dan Carpentercb4b102f2013-05-06 08:28:41 +00002184 u32 bearer_id = msg_bearer_id(tunnel_msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002185
Dan Carpentercb4b102f2013-05-06 08:28:41 +00002186 if (bearer_id >= MAX_BEARERS)
2187 goto exit;
Jon Paul Maloy1dab3d52014-02-13 17:29:10 -05002188
Dan Carpentercb4b102f2013-05-06 08:28:41 +00002189 dest_link = (*l_ptr)->owner->links[bearer_id];
Allan Stephensb29f1422010-12-31 18:59:25 +00002190 if (!dest_link)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002191 goto exit;
Allan Stephensf1310722006-06-25 23:51:37 -07002192 if (dest_link == *l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002193 pr_err("Unexpected changeover message on link <%s>\n",
2194 (*l_ptr)->name);
Allan Stephensf1310722006-06-25 23:51:37 -07002195 goto exit;
2196 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002197 *l_ptr = dest_link;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002198
2199 if (msg_typ == DUPLICATE_MSG) {
Jon Paul Maloy1dab3d52014-02-13 17:29:10 -05002200 tipc_link_dup_rcv(dest_link, tunnel_buf);
2201 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002202 }
2203
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05002204 if (msg_type(tunnel_msg) == ORIGINAL_MSG) {
2205 *buf = tipc_link_failover_rcv(dest_link, tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002206
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05002207 /* Do we have a buffer/buffer chain to return? */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002208 if (*buf != NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002209 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002210 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002211 }
2212 }
2213exit:
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002214 *buf = NULL;
Allan Stephens5f6d9122011-11-04 13:24:29 -04002215 kfree_skb(tunnel_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002216 return 0;
2217}
2218
2219/*
2220 * Bundler functionality:
2221 */
Per Liden4323add2006-01-18 00:38:21 +01002222void tipc_link_recv_bundle(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002223{
2224 u32 msgcount = msg_msgcnt(buf_msg(buf));
2225 u32 pos = INT_H_SIZE;
2226 struct sk_buff *obuf;
2227
Per Lidenb97bf3f2006-01-02 19:04:38 +01002228 while (msgcount--) {
2229 obuf = buf_extract(buf, pos);
2230 if (obuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002231 pr_warn("Link unable to unbundle message(s)\n");
Allan Stephensa10bd922006-06-25 23:52:17 -07002232 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002233 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002234 pos += align(msg_size(buf_msg(obuf)));
Per Liden4323add2006-01-18 00:38:21 +01002235 tipc_net_route_msg(obuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002236 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002237 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002238}
2239
2240/*
2241 * Fragmentation/defragmentation:
2242 */
2243
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002244/*
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002245 * link_send_long_buf: Entry for buffers needing fragmentation.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002246 * The buffer is complete, inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002247 * Returns user data length.
2248 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002249static int link_send_long_buf(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002250{
Allan Stephens77561552011-04-17 13:06:23 -04002251 struct sk_buff *buf_chain = NULL;
2252 struct sk_buff *buf_chain_tail = (struct sk_buff *)&buf_chain;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002253 struct tipc_msg *inmsg = buf_msg(buf);
2254 struct tipc_msg fragm_hdr;
2255 u32 insize = msg_size(inmsg);
2256 u32 dsz = msg_data_sz(inmsg);
2257 unchar *crs = buf->data;
2258 u32 rest = insize;
Allan Stephens15e979d2010-05-11 14:30:10 +00002259 u32 pack_sz = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002260 u32 fragm_sz = pack_sz - INT_H_SIZE;
Allan Stephens77561552011-04-17 13:06:23 -04002261 u32 fragm_no = 0;
Allan Stephens9c396a72008-06-04 17:36:58 -07002262 u32 destaddr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002263
2264 if (msg_short(inmsg))
2265 destaddr = l_ptr->addr;
Allan Stephens9c396a72008-06-04 17:36:58 -07002266 else
2267 destaddr = msg_destnode(inmsg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002268
Per Lidenb97bf3f2006-01-02 19:04:38 +01002269 /* Prepare reusable fragment header: */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002270 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07002271 INT_H_SIZE, destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002272
2273 /* Chop up message: */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002274 while (rest > 0) {
2275 struct sk_buff *fragm;
2276
2277 if (rest <= fragm_sz) {
2278 fragm_sz = rest;
2279 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
2280 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002281 fragm = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002282 if (fragm == NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002283 kfree_skb(buf);
Ying Xued77b3832013-12-10 20:45:38 -08002284 kfree_skb_list(buf_chain);
Allan Stephens77561552011-04-17 13:06:23 -04002285 return -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002286 }
2287 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
Allan Stephens77561552011-04-17 13:06:23 -04002288 fragm_no++;
2289 msg_set_fragm_no(&fragm_hdr, fragm_no);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002290 skb_copy_to_linear_data(fragm, &fragm_hdr, INT_H_SIZE);
2291 skb_copy_to_linear_data_offset(fragm, INT_H_SIZE, crs,
2292 fragm_sz);
Allan Stephens77561552011-04-17 13:06:23 -04002293 buf_chain_tail->next = fragm;
2294 buf_chain_tail = fragm;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002295
Per Lidenb97bf3f2006-01-02 19:04:38 +01002296 rest -= fragm_sz;
2297 crs += fragm_sz;
2298 msg_set_type(&fragm_hdr, FRAGMENT);
2299 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04002300 kfree_skb(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002301
2302 /* Append chain of fragments to send queue & send them */
Allan Stephens77561552011-04-17 13:06:23 -04002303 l_ptr->long_msg_seq_no++;
2304 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
2305 l_ptr->stats.sent_fragments += fragm_no;
2306 l_ptr->stats.sent_fragmented++;
2307 tipc_link_push_queue(l_ptr);
2308
Per Lidenb97bf3f2006-01-02 19:04:38 +01002309 return dsz;
2310}
2311
Jon Paul Maloy03b92012014-02-13 17:29:05 -05002312/* tipc_link_frag_rcv(): Called with node lock on. Returns
Per Lidenb97bf3f2006-01-02 19:04:38 +01002313 * the reassembled buffer if message is complete.
2314 */
Jon Paul Maloy03b92012014-02-13 17:29:05 -05002315int tipc_link_frag_rcv(struct sk_buff **head, struct sk_buff **tail,
2316 struct sk_buff **fbuf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002317{
Erik Hugne40ba3cd2013-11-06 09:28:06 +01002318 struct sk_buff *frag = *fbuf;
2319 struct tipc_msg *msg = buf_msg(frag);
2320 u32 fragid = msg_type(msg);
2321 bool headstolen;
2322 int delta;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002323
Erik Hugne40ba3cd2013-11-06 09:28:06 +01002324 skb_pull(frag, msg_hdr_sz(msg));
2325 if (fragid == FIRST_FRAGMENT) {
2326 if (*head || skb_unclone(frag, GFP_ATOMIC))
2327 goto out_free;
2328 *head = frag;
2329 skb_frag_list_init(*head);
Jon Paul Maloy03b92012014-02-13 17:29:05 -05002330 *fbuf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002331 return 0;
Erik Hugne3db0a192013-11-13 09:35:11 +01002332 } else if (*head &&
2333 skb_try_coalesce(*head, frag, &headstolen, &delta)) {
Erik Hugne40ba3cd2013-11-06 09:28:06 +01002334 kfree_skb_partial(frag, headstolen);
2335 } else {
2336 if (!*head)
2337 goto out_free;
2338 if (!skb_has_frag_list(*head))
2339 skb_shinfo(*head)->frag_list = frag;
2340 else
2341 (*tail)->next = frag;
2342 *tail = frag;
2343 (*head)->truesize += frag->truesize;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002344 }
Erik Hugne40ba3cd2013-11-06 09:28:06 +01002345 if (fragid == LAST_FRAGMENT) {
2346 *fbuf = *head;
2347 *tail = *head = NULL;
2348 return LINK_REASM_COMPLETE;
2349 }
Jon Paul Maloy03b92012014-02-13 17:29:05 -05002350 *fbuf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002351 return 0;
Erik Hugne40ba3cd2013-11-06 09:28:06 +01002352out_free:
2353 pr_warn_ratelimited("Link unable to reassemble fragmented message\n");
2354 kfree_skb(*fbuf);
Jon Paul Maloy03b92012014-02-13 17:29:05 -05002355 *fbuf = NULL;
Erik Hugne40ba3cd2013-11-06 09:28:06 +01002356 return LINK_REASM_ERROR;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002357}
2358
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002359static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002360{
Allan Stephens5413b4c2011-01-18 13:24:55 -05002361 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
2362 return;
2363
Per Lidenb97bf3f2006-01-02 19:04:38 +01002364 l_ptr->tolerance = tolerance;
2365 l_ptr->continuity_interval =
2366 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
2367 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
2368}
2369
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002370void tipc_link_set_queue_limits(struct tipc_link *l_ptr, u32 window)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002371{
2372 /* Data messages from this node, inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002373 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
2374 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
2375 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
2376 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002377 /* Transiting data messages,inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002378 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
2379 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
2380 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
2381 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002382 l_ptr->queue_limit[CONN_MANAGER] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002383 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
2384 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
2385 /* FRAGMENT and LAST_FRAGMENT packets */
2386 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
2387}
2388
2389/**
2390 * link_find_link - locate link by name
Ben Hutchings2c530402012-07-10 10:55:09 +00002391 * @name: ptr to link name string
2392 * @node: ptr to area to be filled with ptr to associated node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002393 *
Per Liden4323add2006-01-18 00:38:21 +01002394 * Caller must hold 'tipc_net_lock' to ensure node and bearer are not deleted;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002395 * this also prevents link deletion.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002396 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002397 * Returns pointer to link (or 0 if invalid link name).
2398 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002399static struct tipc_link *link_find_link(const char *name,
2400 struct tipc_node **node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002401{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002402 struct tipc_link *l_ptr;
Erik Hugnebbfbe472013-10-18 07:23:21 +02002403 struct tipc_node *n_ptr;
2404 int i;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002405
Erik Hugnebbfbe472013-10-18 07:23:21 +02002406 list_for_each_entry(n_ptr, &tipc_node_list, list) {
2407 for (i = 0; i < MAX_BEARERS; i++) {
2408 l_ptr = n_ptr->links[i];
2409 if (l_ptr && !strcmp(l_ptr->name, name))
2410 goto found;
2411 }
2412 }
2413 l_ptr = NULL;
2414 n_ptr = NULL;
2415found:
2416 *node = n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002417 return l_ptr;
2418}
2419
Allan Stephens5c216e12011-10-18 11:34:29 -04002420/**
2421 * link_value_is_valid -- validate proposed link tolerance/priority/window
2422 *
Ben Hutchings2c530402012-07-10 10:55:09 +00002423 * @cmd: value type (TIPC_CMD_SET_LINK_*)
2424 * @new_value: the new value
Allan Stephens5c216e12011-10-18 11:34:29 -04002425 *
2426 * Returns 1 if value is within range, 0 if not.
2427 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002428static int link_value_is_valid(u16 cmd, u32 new_value)
2429{
2430 switch (cmd) {
2431 case TIPC_CMD_SET_LINK_TOL:
2432 return (new_value >= TIPC_MIN_LINK_TOL) &&
2433 (new_value <= TIPC_MAX_LINK_TOL);
2434 case TIPC_CMD_SET_LINK_PRI:
2435 return (new_value <= TIPC_MAX_LINK_PRI);
2436 case TIPC_CMD_SET_LINK_WINDOW:
2437 return (new_value >= TIPC_MIN_LINK_WIN) &&
2438 (new_value <= TIPC_MAX_LINK_WIN);
2439 }
2440 return 0;
2441}
2442
Allan Stephens5c216e12011-10-18 11:34:29 -04002443/**
2444 * link_cmd_set_value - change priority/tolerance/window for link/bearer/media
Ben Hutchings2c530402012-07-10 10:55:09 +00002445 * @name: ptr to link, bearer, or media name
2446 * @new_value: new value of link, bearer, or media setting
2447 * @cmd: which link, bearer, or media attribute to set (TIPC_CMD_SET_LINK_*)
Allan Stephens5c216e12011-10-18 11:34:29 -04002448 *
2449 * Caller must hold 'tipc_net_lock' to ensure link/bearer/media is not deleted.
2450 *
2451 * Returns 0 if value updated and negative value on error.
2452 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002453static int link_cmd_set_value(const char *name, u32 new_value, u16 cmd)
2454{
2455 struct tipc_node *node;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002456 struct tipc_link *l_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002457 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -05002458 struct tipc_media *m_ptr;
Ying Xue636c0372013-10-18 07:23:20 +02002459 int res = 0;
Allan Stephens5c216e12011-10-18 11:34:29 -04002460
2461 l_ptr = link_find_link(name, &node);
2462 if (l_ptr) {
2463 /*
2464 * acquire node lock for tipc_link_send_proto_msg().
2465 * see "TIPC locking policy" in net.c.
2466 */
2467 tipc_node_lock(node);
2468 switch (cmd) {
2469 case TIPC_CMD_SET_LINK_TOL:
2470 link_set_supervision_props(l_ptr, new_value);
2471 tipc_link_send_proto_msg(l_ptr,
2472 STATE_MSG, 0, 0, new_value, 0, 0);
2473 break;
2474 case TIPC_CMD_SET_LINK_PRI:
2475 l_ptr->priority = new_value;
2476 tipc_link_send_proto_msg(l_ptr,
2477 STATE_MSG, 0, 0, 0, new_value, 0);
2478 break;
2479 case TIPC_CMD_SET_LINK_WINDOW:
2480 tipc_link_set_queue_limits(l_ptr, new_value);
2481 break;
Ying Xue636c0372013-10-18 07:23:20 +02002482 default:
2483 res = -EINVAL;
2484 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002485 }
2486 tipc_node_unlock(node);
Ying Xue636c0372013-10-18 07:23:20 +02002487 return res;
Allan Stephens5c216e12011-10-18 11:34:29 -04002488 }
2489
2490 b_ptr = tipc_bearer_find(name);
2491 if (b_ptr) {
2492 switch (cmd) {
2493 case TIPC_CMD_SET_LINK_TOL:
2494 b_ptr->tolerance = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002495 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002496 case TIPC_CMD_SET_LINK_PRI:
2497 b_ptr->priority = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002498 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002499 case TIPC_CMD_SET_LINK_WINDOW:
2500 b_ptr->window = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002501 break;
2502 default:
2503 res = -EINVAL;
2504 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002505 }
Ying Xue636c0372013-10-18 07:23:20 +02002506 return res;
Allan Stephens5c216e12011-10-18 11:34:29 -04002507 }
2508
2509 m_ptr = tipc_media_find(name);
2510 if (!m_ptr)
2511 return -ENODEV;
2512 switch (cmd) {
2513 case TIPC_CMD_SET_LINK_TOL:
2514 m_ptr->tolerance = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002515 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002516 case TIPC_CMD_SET_LINK_PRI:
2517 m_ptr->priority = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002518 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002519 case TIPC_CMD_SET_LINK_WINDOW:
2520 m_ptr->window = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002521 break;
2522 default:
2523 res = -EINVAL;
2524 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002525 }
Ying Xue636c0372013-10-18 07:23:20 +02002526 return res;
Allan Stephens5c216e12011-10-18 11:34:29 -04002527}
2528
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002529struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
Per Liden4323add2006-01-18 00:38:21 +01002530 u16 cmd)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002531{
2532 struct tipc_link_config *args;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002533 u32 new_value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002534 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002535
2536 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
Per Liden4323add2006-01-18 00:38:21 +01002537 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002538
2539 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2540 new_value = ntohl(args->value);
2541
Allan Stephens5c216e12011-10-18 11:34:29 -04002542 if (!link_value_is_valid(cmd, new_value))
2543 return tipc_cfg_reply_error_string(
2544 "cannot change, value invalid");
2545
Per Liden4323add2006-01-18 00:38:21 +01002546 if (!strcmp(args->name, tipc_bclink_name)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002547 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
Per Liden4323add2006-01-18 00:38:21 +01002548 (tipc_bclink_set_queue_limits(new_value) == 0))
2549 return tipc_cfg_reply_none();
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002550 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
Per Liden4323add2006-01-18 00:38:21 +01002551 " (cannot change setting on broadcast link)");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002552 }
2553
Per Liden4323add2006-01-18 00:38:21 +01002554 read_lock_bh(&tipc_net_lock);
Allan Stephens5c216e12011-10-18 11:34:29 -04002555 res = link_cmd_set_value(args->name, new_value, cmd);
Per Liden4323add2006-01-18 00:38:21 +01002556 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002557 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002558 return tipc_cfg_reply_error_string("cannot change link setting");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002559
Per Liden4323add2006-01-18 00:38:21 +01002560 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002561}
2562
2563/**
2564 * link_reset_statistics - reset link statistics
2565 * @l_ptr: pointer to link
2566 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002567static void link_reset_statistics(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002568{
2569 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2570 l_ptr->stats.sent_info = l_ptr->next_out_no;
2571 l_ptr->stats.recv_info = l_ptr->next_in_no;
2572}
2573
Per Liden4323add2006-01-18 00:38:21 +01002574struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002575{
2576 char *link_name;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002577 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002578 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002579
2580 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002581 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002582
2583 link_name = (char *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +01002584 if (!strcmp(link_name, tipc_bclink_name)) {
2585 if (tipc_bclink_reset_stats())
2586 return tipc_cfg_reply_error_string("link not found");
2587 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002588 }
2589
Per Liden4323add2006-01-18 00:38:21 +01002590 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002591 l_ptr = link_find_link(link_name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002592 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002593 read_unlock_bh(&tipc_net_lock);
2594 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002595 }
2596
Per Liden4323add2006-01-18 00:38:21 +01002597 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002598 link_reset_statistics(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +01002599 tipc_node_unlock(node);
2600 read_unlock_bh(&tipc_net_lock);
2601 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002602}
2603
2604/**
2605 * percent - convert count to a percentage of total (rounding up or down)
2606 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002607static u32 percent(u32 count, u32 total)
2608{
2609 return (count * 100 + (total / 2)) / total;
2610}
2611
2612/**
Per Liden4323add2006-01-18 00:38:21 +01002613 * tipc_link_stats - print link statistics
Per Lidenb97bf3f2006-01-02 19:04:38 +01002614 * @name: link name
2615 * @buf: print buffer area
2616 * @buf_size: size of print buffer area
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002617 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002618 * Returns length of print buffer data string (or 0 if error)
2619 */
Per Liden4323add2006-01-18 00:38:21 +01002620static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002621{
Erik Hugnedc1aed32012-06-29 00:50:23 -04002622 struct tipc_link *l;
2623 struct tipc_stats *s;
David S. Miller6c000552008-09-02 23:38:32 -07002624 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002625 char *status;
2626 u32 profile_total = 0;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002627 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002628
Per Liden4323add2006-01-18 00:38:21 +01002629 if (!strcmp(name, tipc_bclink_name))
2630 return tipc_bclink_stats(buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002631
Per Liden4323add2006-01-18 00:38:21 +01002632 read_lock_bh(&tipc_net_lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002633 l = link_find_link(name, &node);
2634 if (!l) {
Per Liden4323add2006-01-18 00:38:21 +01002635 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002636 return 0;
2637 }
Per Liden4323add2006-01-18 00:38:21 +01002638 tipc_node_lock(node);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002639 s = &l->stats;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002640
Erik Hugnedc1aed32012-06-29 00:50:23 -04002641 if (tipc_link_is_active(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002642 status = "ACTIVE";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002643 else if (tipc_link_is_up(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002644 status = "STANDBY";
2645 else
2646 status = "DEFUNCT";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002647
2648 ret = tipc_snprintf(buf, buf_size, "Link <%s>\n"
2649 " %s MTU:%u Priority:%u Tolerance:%u ms"
2650 " Window:%u packets\n",
2651 l->name, status, l->max_pkt, l->priority,
2652 l->tolerance, l->queue_limit[0]);
2653
2654 ret += tipc_snprintf(buf + ret, buf_size - ret,
2655 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
2656 l->next_in_no - s->recv_info, s->recv_fragments,
2657 s->recv_fragmented, s->recv_bundles,
2658 s->recv_bundled);
2659
2660 ret += tipc_snprintf(buf + ret, buf_size - ret,
2661 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
2662 l->next_out_no - s->sent_info, s->sent_fragments,
2663 s->sent_fragmented, s->sent_bundles,
2664 s->sent_bundled);
2665
2666 profile_total = s->msg_length_counts;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002667 if (!profile_total)
2668 profile_total = 1;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002669
2670 ret += tipc_snprintf(buf + ret, buf_size - ret,
2671 " TX profile sample:%u packets average:%u octets\n"
2672 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
2673 "-16384:%u%% -32768:%u%% -66000:%u%%\n",
2674 s->msg_length_counts,
2675 s->msg_lengths_total / profile_total,
2676 percent(s->msg_length_profile[0], profile_total),
2677 percent(s->msg_length_profile[1], profile_total),
2678 percent(s->msg_length_profile[2], profile_total),
2679 percent(s->msg_length_profile[3], profile_total),
2680 percent(s->msg_length_profile[4], profile_total),
2681 percent(s->msg_length_profile[5], profile_total),
2682 percent(s->msg_length_profile[6], profile_total));
2683
2684 ret += tipc_snprintf(buf + ret, buf_size - ret,
2685 " RX states:%u probes:%u naks:%u defs:%u"
2686 " dups:%u\n", s->recv_states, s->recv_probes,
2687 s->recv_nacks, s->deferred_recv, s->duplicates);
2688
2689 ret += tipc_snprintf(buf + ret, buf_size - ret,
2690 " TX states:%u probes:%u naks:%u acks:%u"
2691 " dups:%u\n", s->sent_states, s->sent_probes,
2692 s->sent_nacks, s->sent_acks, s->retransmitted);
2693
2694 ret += tipc_snprintf(buf + ret, buf_size - ret,
Ying Xue3c294cb2012-11-15 11:34:45 +08002695 " Congestion link:%u Send queue"
2696 " max:%u avg:%u\n", s->link_congs,
Erik Hugnedc1aed32012-06-29 00:50:23 -04002697 s->max_queue_sz, s->queue_sz_counts ?
2698 (s->accu_queue_sz / s->queue_sz_counts) : 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002699
Per Liden4323add2006-01-18 00:38:21 +01002700 tipc_node_unlock(node);
2701 read_unlock_bh(&tipc_net_lock);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002702 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002703}
2704
Per Liden4323add2006-01-18 00:38:21 +01002705struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002706{
2707 struct sk_buff *buf;
2708 struct tlv_desc *rep_tlv;
2709 int str_len;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002710 int pb_len;
2711 char *pb;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002712
2713 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002714 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002715
Erik Hugnedc1aed32012-06-29 00:50:23 -04002716 buf = tipc_cfg_reply_alloc(TLV_SPACE(ULTRA_STRING_MAX_LEN));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002717 if (!buf)
2718 return NULL;
2719
2720 rep_tlv = (struct tlv_desc *)buf->data;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002721 pb = TLV_DATA(rep_tlv);
2722 pb_len = ULTRA_STRING_MAX_LEN;
Per Liden4323add2006-01-18 00:38:21 +01002723 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
Erik Hugnedc1aed32012-06-29 00:50:23 -04002724 pb, pb_len);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002725 if (!str_len) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002726 kfree_skb(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002727 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002728 }
Erik Hugnedc1aed32012-06-29 00:50:23 -04002729 str_len += 1; /* for "\0" */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002730 skb_put(buf, TLV_SPACE(str_len));
2731 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
2732
2733 return buf;
2734}
2735
Per Lidenb97bf3f2006-01-02 19:04:38 +01002736/**
Per Liden4323add2006-01-18 00:38:21 +01002737 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
Per Lidenb97bf3f2006-01-02 19:04:38 +01002738 * @dest: network address of destination node
2739 * @selector: used to select from set of active links
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002740 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002741 * If no active link can be found, uses default maximum packet size.
2742 */
Per Liden4323add2006-01-18 00:38:21 +01002743u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002744{
David S. Miller6c000552008-09-02 23:38:32 -07002745 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002746 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002747 u32 res = MAX_PKT_DEFAULT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002748
Per Lidenb97bf3f2006-01-02 19:04:38 +01002749 if (dest == tipc_own_addr)
2750 return MAX_MSG_SIZE;
2751
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002752 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00002753 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002754 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002755 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002756 l_ptr = n_ptr->active_links[selector & 1];
2757 if (l_ptr)
Allan Stephens15e979d2010-05-11 14:30:10 +00002758 res = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01002759 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002760 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002761 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002762 return res;
2763}
2764
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002765static void link_print(struct tipc_link *l_ptr, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002766{
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002767 pr_info("%s Link %x<%s>:", str, l_ptr->addr, l_ptr->b_ptr->name);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002768
Per Lidenb97bf3f2006-01-02 19:04:38 +01002769 if (link_working_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002770 pr_cont(":WU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002771 else if (link_reset_reset(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002772 pr_cont(":RR\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002773 else if (link_reset_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002774 pr_cont(":RU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002775 else if (link_working_working(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002776 pr_cont(":WW\n");
2777 else
2778 pr_cont("\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002779}