blob: 8c81db7b17f9fae6272a96f044e476ef9e26e571 [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 Maloyc1336ee2015-03-13 16:08:08 -04004 * Copyright (c) 1996-2007, 2012-2015, 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"
Jon Paul Maloye3eea1e2015-03-13 16:08:11 -040038#include "subscr.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039#include "link.h"
Richard Alpe7be57fc2014-11-20 10:29:12 +010040#include "bcast.h"
Jon Paul Maloy9816f062014-05-14 05:39:15 -040041#include "socket.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010042#include "name_distr.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010043#include "discover.h"
Richard Alpe0655f6a2014-11-20 10:29:07 +010044#include "netlink.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010045
Ying Xue796c75d2013-06-17 10:54:48 -040046#include <linux/pkt_sched.h>
47
Erik Hugne2cf8aa12012-06-29 00:16:37 -040048/*
49 * Error message prefixes
50 */
51static const char *link_co_err = "Link changeover error, ";
52static const char *link_rst_msg = "Resetting link ";
53static const char *link_unk_evt = "Unknown link event ";
Per Lidenb97bf3f2006-01-02 19:04:38 +010054
Richard Alpe7be57fc2014-11-20 10:29:12 +010055static const struct nla_policy tipc_nl_link_policy[TIPC_NLA_LINK_MAX + 1] = {
56 [TIPC_NLA_LINK_UNSPEC] = { .type = NLA_UNSPEC },
57 [TIPC_NLA_LINK_NAME] = {
58 .type = NLA_STRING,
59 .len = TIPC_MAX_LINK_NAME
60 },
61 [TIPC_NLA_LINK_MTU] = { .type = NLA_U32 },
62 [TIPC_NLA_LINK_BROADCAST] = { .type = NLA_FLAG },
63 [TIPC_NLA_LINK_UP] = { .type = NLA_FLAG },
64 [TIPC_NLA_LINK_ACTIVE] = { .type = NLA_FLAG },
65 [TIPC_NLA_LINK_PROP] = { .type = NLA_NESTED },
66 [TIPC_NLA_LINK_STATS] = { .type = NLA_NESTED },
67 [TIPC_NLA_LINK_RX] = { .type = NLA_U32 },
68 [TIPC_NLA_LINK_TX] = { .type = NLA_U32 }
69};
70
Richard Alpe0655f6a2014-11-20 10:29:07 +010071/* Properties valid for media, bearar and link */
72static const struct nla_policy tipc_nl_prop_policy[TIPC_NLA_PROP_MAX + 1] = {
73 [TIPC_NLA_PROP_UNSPEC] = { .type = NLA_UNSPEC },
74 [TIPC_NLA_PROP_PRIO] = { .type = NLA_U32 },
75 [TIPC_NLA_PROP_TOL] = { .type = NLA_U32 },
76 [TIPC_NLA_PROP_WIN] = { .type = NLA_U32 }
77};
78
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090079/*
Jon Paul Maloyd9992972015-07-16 16:54:31 -040080 * Interval between NACKs when packets arrive out of order
81 */
82#define TIPC_NACK_INTV (TIPC_MIN_LINK_WIN * 2)
83/*
Allan Stephensa686e682008-06-04 17:29:39 -070084 * Out-of-range value for link session numbers
85 */
Jon Paul Maloyd3504c32015-07-16 16:54:25 -040086#define WILDCARD_SESSION 0x10000
Allan Stephensa686e682008-06-04 17:29:39 -070087
Jon Paul Maloyd3504c32015-07-16 16:54:25 -040088/* State value stored in 'failover_pkts'
Per Lidenb97bf3f2006-01-02 19:04:38 +010089 */
Jon Paul Maloydff29b12015-04-02 09:33:01 -040090#define FIRST_FAILOVER 0xffffu
Per Lidenb97bf3f2006-01-02 19:04:38 +010091
Jon Paul Maloyd3504c32015-07-16 16:54:25 -040092/* Link FSM states and events:
93 */
94enum {
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -040095 TIPC_LINK_WORKING,
96 TIPC_LINK_PROBING,
97 TIPC_LINK_RESETTING,
98 TIPC_LINK_ESTABLISHING
Jon Paul Maloyd3504c32015-07-16 16:54:25 -040099};
100
101enum {
102 PEER_RESET_EVT = RESET_MSG,
103 ACTIVATE_EVT = ACTIVATE_MSG,
104 TRAFFIC_EVT, /* Any other valid msg from peer */
105 SILENCE_EVT /* Peer was silent during last timer interval*/
106};
107
108/* Link FSM state checking routines
109 */
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400110static int link_working(struct tipc_link *l)
Jon Paul Maloyd3504c32015-07-16 16:54:25 -0400111{
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400112 return l->state == TIPC_LINK_WORKING;
Jon Paul Maloyd3504c32015-07-16 16:54:25 -0400113}
114
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400115static int link_probing(struct tipc_link *l)
Jon Paul Maloyd3504c32015-07-16 16:54:25 -0400116{
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400117 return l->state == TIPC_LINK_PROBING;
Jon Paul Maloyd3504c32015-07-16 16:54:25 -0400118}
119
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400120static int link_resetting(struct tipc_link *l)
Jon Paul Maloyd3504c32015-07-16 16:54:25 -0400121{
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400122 return l->state == TIPC_LINK_RESETTING;
Jon Paul Maloyd3504c32015-07-16 16:54:25 -0400123}
124
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400125static int link_establishing(struct tipc_link *l)
Jon Paul Maloyd3504c32015-07-16 16:54:25 -0400126{
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400127 return l->state == TIPC_LINK_ESTABLISHING;
Jon Paul Maloyd3504c32015-07-16 16:54:25 -0400128}
129
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400130static int tipc_link_proto_rcv(struct tipc_link *l, struct sk_buff *skb,
131 struct sk_buff_head *xmitq);
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -0400132static void tipc_link_build_proto_msg(struct tipc_link *l, int mtyp, bool probe,
133 u16 rcvgap, int tolerance, int priority,
134 struct sk_buff_head *xmitq);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500135static void link_reset_statistics(struct tipc_link *l_ptr);
136static void link_print(struct tipc_link *l_ptr, const char *str);
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400137static void tipc_link_build_bcast_sync_msg(struct tipc_link *l,
138 struct sk_buff_head *xmitq);
Ying Xue247f0f32014-02-18 16:06:46 +0800139static void tipc_link_sync_rcv(struct tipc_node *n, struct sk_buff *buf);
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400140static int tipc_link_input(struct tipc_link *l, struct sk_buff *skb);
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500141static bool tipc_data_input(struct tipc_link *l, struct sk_buff *skb);
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400142static int tipc_link_failover_rcv(struct tipc_link *l, struct sk_buff **skb);
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400143
Per Lidenb97bf3f2006-01-02 19:04:38 +0100144/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800145 * Simple link routines
Per Lidenb97bf3f2006-01-02 19:04:38 +0100146 */
Sam Ravnborg05790c62006-03-20 22:37:04 -0800147static unsigned int align(unsigned int i)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100148{
149 return (i + 3) & ~3u;
150}
151
Jon Paul Maloy8b4ed862015-03-25 12:07:26 -0400152static struct tipc_link *tipc_parallel_link(struct tipc_link *l)
153{
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400154 struct tipc_node *n = l->owner;
155
156 if (node_active_link(n, 0) != l)
157 return node_active_link(n, 0);
158 return node_active_link(n, 1);
Jon Paul Maloy8b4ed862015-03-25 12:07:26 -0400159}
160
Per Lidenb97bf3f2006-01-02 19:04:38 +0100161/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800162 * Simple non-static link routines (i.e. referenced outside this file)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100163 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500164int tipc_link_is_up(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100165{
166 if (!l_ptr)
167 return 0;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400168 return link_working(l_ptr) || link_probing(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100169}
170
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400171int tipc_link_is_active(struct tipc_link *l)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100172{
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400173 struct tipc_node *n = l->owner;
174
175 return (node_active_link(n, 0) == l) || (node_active_link(n, 1) == l);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100176}
177
178/**
Per Liden4323add2006-01-18 00:38:21 +0100179 * tipc_link_create - create a new link
Allan Stephens37b9c082011-02-28 11:32:27 -0500180 * @n_ptr: pointer to associated node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100181 * @b_ptr: pointer to associated bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100182 * @media_addr: media address to use when sending messages over link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900183 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100184 * Returns pointer to link.
185 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500186struct tipc_link *tipc_link_create(struct tipc_node *n_ptr,
Ying Xuec61dd612014-02-13 17:29:09 -0500187 struct tipc_bearer *b_ptr,
Jon Paul Maloyd39bbd42015-07-16 16:54:21 -0400188 const struct tipc_media_addr *media_addr,
189 struct sk_buff_head *inputq,
190 struct sk_buff_head *namedq)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100191{
Ying Xue34747532015-01-09 15:27:10 +0800192 struct tipc_net *tn = net_generic(n_ptr->net, tipc_net_id);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500193 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100194 struct tipc_msg *msg;
195 char *if_name;
Allan Stephens37b9c082011-02-28 11:32:27 -0500196 char addr_string[16];
197 u32 peer = n_ptr->addr;
198
Holger Brunck0372bf52014-11-14 18:33:19 +0100199 if (n_ptr->link_cnt >= MAX_BEARERS) {
Allan Stephens37b9c082011-02-28 11:32:27 -0500200 tipc_addr_string_fill(addr_string, n_ptr->addr);
Jon Paul Maloya97b9d32015-05-14 10:46:15 -0400201 pr_err("Cannot establish %uth link to %s. Max %u allowed.\n",
202 n_ptr->link_cnt, addr_string, MAX_BEARERS);
Allan Stephens37b9c082011-02-28 11:32:27 -0500203 return NULL;
204 }
205
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400206 if (n_ptr->links[b_ptr->identity].link) {
Allan Stephens37b9c082011-02-28 11:32:27 -0500207 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400208 pr_err("Attempt to establish second link on <%s> to %s\n",
209 b_ptr->name, addr_string);
Allan Stephens37b9c082011-02-28 11:32:27 -0500210 return NULL;
211 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100212
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700213 l_ptr = kzalloc(sizeof(*l_ptr), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100214 if (!l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400215 pr_warn("Link creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100216 return NULL;
217 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100218 l_ptr->addr = peer;
Allan Stephens2d627b92011-01-07 13:00:11 -0500219 if_name = strchr(b_ptr->name, ':') + 1;
Allan Stephens062b4c92011-04-07 09:28:47 -0400220 sprintf(l_ptr->name, "%u.%u.%u:%s-%u.%u.%u:unknown",
Ying Xue34747532015-01-09 15:27:10 +0800221 tipc_zone(tn->own_addr), tipc_cluster(tn->own_addr),
222 tipc_node(tn->own_addr),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100223 if_name,
224 tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
Allan Stephens062b4c92011-04-07 09:28:47 -0400225 /* note: peer i/f name is updated by reset/activate message */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100226 memcpy(&l_ptr->media_addr, media_addr, sizeof(*media_addr));
Allan Stephens37b9c082011-02-28 11:32:27 -0500227 l_ptr->owner = n_ptr;
Jon Paul Maloyd3504c32015-07-16 16:54:25 -0400228 l_ptr->peer_session = WILDCARD_SESSION;
Ying Xue7a2f7d12014-04-21 10:55:46 +0800229 l_ptr->bearer_id = b_ptr->identity;
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -0400230 l_ptr->tolerance = b_ptr->tolerance;
Jon Paul Maloycbeb83c2015-07-30 18:24:15 -0400231 l_ptr->snd_nxt = 1;
232 l_ptr->rcv_nxt = 1;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400233 l_ptr->state = TIPC_LINK_RESETTING;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100234
235 l_ptr->pmsg = (struct tipc_msg *)&l_ptr->proto_msg;
236 msg = l_ptr->pmsg;
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500237 tipc_msg_init(tn->own_addr, msg, LINK_PROTOCOL, RESET_MSG, INT_H_SIZE,
Ying Xue34747532015-01-09 15:27:10 +0800238 l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100239 msg_set_size(msg, sizeof(l_ptr->proto_msg));
Ying Xuebafa29e2015-01-09 15:27:12 +0800240 msg_set_session(msg, (tn->random & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100241 msg_set_bearer_id(msg, b_ptr->identity);
242 strcpy((char *)msg_data(msg), if_name);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800243 l_ptr->net_plane = b_ptr->net_plane;
Jon Paul Maloyed193ec2015-04-02 09:33:02 -0400244 l_ptr->advertised_mtu = b_ptr->mtu;
245 l_ptr->mtu = l_ptr->advertised_mtu;
Jon Paul Maloye3eea1e2015-03-13 16:08:11 -0400246 l_ptr->priority = b_ptr->priority;
247 tipc_link_set_queue_limits(l_ptr, b_ptr->window);
Jon Paul Maloya97b9d32015-05-14 10:46:15 -0400248 l_ptr->snd_nxt = 1;
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400249 __skb_queue_head_init(&l_ptr->transmq);
250 __skb_queue_head_init(&l_ptr->backlogq);
251 __skb_queue_head_init(&l_ptr->deferdq);
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500252 skb_queue_head_init(&l_ptr->wakeupq);
Jon Paul Maloyd39bbd42015-07-16 16:54:21 -0400253 l_ptr->inputq = inputq;
254 l_ptr->namedq = namedq;
255 skb_queue_head_init(l_ptr->inputq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100256 link_reset_statistics(l_ptr);
Allan Stephens37b9c082011-02-28 11:32:27 -0500257 tipc_node_attach_link(n_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100258 return l_ptr;
259}
260
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400261/* tipc_link_build_bcast_sync_msg() - synchronize broadcast link endpoints.
262 *
263 * Give a newly added peer node the sequence number where it should
264 * start receiving and acking broadcast packets.
265 */
266static void tipc_link_build_bcast_sync_msg(struct tipc_link *l,
267 struct sk_buff_head *xmitq)
268{
269 struct sk_buff *skb;
270 struct sk_buff_head list;
Jon Maloy5a4c3552015-07-29 18:28:01 -0400271 u16 last_sent;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400272
273 skb = tipc_msg_create(BCAST_PROTOCOL, STATE_MSG, INT_H_SIZE,
274 0, l->addr, link_own_addr(l), 0, 0, 0);
275 if (!skb)
276 return;
Jon Maloy5a4c3552015-07-29 18:28:01 -0400277 last_sent = tipc_bclink_get_last_sent(l->owner->net);
278 msg_set_last_bcast(buf_msg(skb), last_sent);
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400279 __skb_queue_head_init(&list);
280 __skb_queue_tail(&list, skb);
281 tipc_link_xmit(l, &list, xmitq);
282}
283
Per Lidenb97bf3f2006-01-02 19:04:38 +0100284/**
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400285 * tipc_link_fsm_evt - link finite state machine
286 * @l: pointer to link
287 * @evt: state machine event to be processed
288 * @xmitq: queue to prepend created protocol message, if any
289 */
290static int tipc_link_fsm_evt(struct tipc_link *l, int evt,
291 struct sk_buff_head *xmitq)
292{
293 int mtyp = 0, rc = 0;
294 struct tipc_link *pl;
295 enum {
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400296 LINK_RESET = 1,
297 LINK_ACTIVATE = (1 << 1),
298 SND_PROBE = (1 << 2),
299 SND_STATE = (1 << 3),
300 SND_RESET = (1 << 4),
301 SND_ACTIVATE = (1 << 5),
302 SND_BCAST_SYNC = (1 << 6)
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400303 } actions = 0;
304
305 if (l->exec_mode == TIPC_LINK_BLOCKED)
306 return rc;
307
308 switch (l->state) {
309 case TIPC_LINK_WORKING:
310 switch (evt) {
311 case TRAFFIC_EVT:
312 case ACTIVATE_EVT:
313 break;
314 case SILENCE_EVT:
315 l->state = TIPC_LINK_PROBING;
316 actions |= SND_PROBE;
317 break;
318 case PEER_RESET_EVT:
319 actions |= LINK_RESET | SND_ACTIVATE;
320 break;
321 default:
322 pr_debug("%s%u WORKING\n", link_unk_evt, evt);
323 }
324 break;
325 case TIPC_LINK_PROBING:
326 switch (evt) {
327 case TRAFFIC_EVT:
328 case ACTIVATE_EVT:
329 l->state = TIPC_LINK_WORKING;
330 break;
331 case PEER_RESET_EVT:
332 actions |= LINK_RESET | SND_ACTIVATE;
333 break;
334 case SILENCE_EVT:
335 if (l->silent_intv_cnt <= l->abort_limit) {
336 actions |= SND_PROBE;
337 break;
338 }
339 actions |= LINK_RESET | SND_RESET;
340 break;
341 default:
342 pr_err("%s%u PROBING\n", link_unk_evt, evt);
343 }
344 break;
345 case TIPC_LINK_RESETTING:
346 switch (evt) {
347 case TRAFFIC_EVT:
348 break;
349 case ACTIVATE_EVT:
350 pl = node_active_link(l->owner, 0);
351 if (pl && link_probing(pl))
352 break;
Jon Paul Maloycbeb83c2015-07-30 18:24:15 -0400353 l->state = TIPC_LINK_WORKING;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400354 actions |= LINK_ACTIVATE;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400355 if (!l->owner->working_links)
356 actions |= SND_BCAST_SYNC;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400357 break;
358 case PEER_RESET_EVT:
359 l->state = TIPC_LINK_ESTABLISHING;
360 actions |= SND_ACTIVATE;
361 break;
362 case SILENCE_EVT:
363 actions |= SND_RESET;
364 break;
365 default:
366 pr_err("%s%u in RESETTING\n", link_unk_evt, evt);
367 }
368 break;
369 case TIPC_LINK_ESTABLISHING:
370 switch (evt) {
371 case TRAFFIC_EVT:
372 case ACTIVATE_EVT:
373 pl = node_active_link(l->owner, 0);
374 if (pl && link_probing(pl))
375 break;
Jon Paul Maloycbeb83c2015-07-30 18:24:15 -0400376 l->state = TIPC_LINK_WORKING;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400377 actions |= LINK_ACTIVATE;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400378 if (!l->owner->working_links)
379 actions |= SND_BCAST_SYNC;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400380 break;
381 case PEER_RESET_EVT:
382 break;
383 case SILENCE_EVT:
384 actions |= SND_ACTIVATE;
385 break;
386 default:
387 pr_err("%s%u ESTABLISHING\n", link_unk_evt, evt);
388 }
389 break;
390 default:
391 pr_err("Unknown link state %u/%u\n", l->state, evt);
392 }
393
394 /* Perform actions as decided by FSM */
395 if (actions & LINK_RESET) {
396 l->exec_mode = TIPC_LINK_BLOCKED;
397 rc |= TIPC_LINK_DOWN_EVT;
398 }
399 if (actions & LINK_ACTIVATE) {
400 l->exec_mode = TIPC_LINK_OPEN;
401 rc |= TIPC_LINK_UP_EVT;
402 }
403 if (actions & (SND_STATE | SND_PROBE))
404 mtyp = STATE_MSG;
405 if (actions & SND_RESET)
406 mtyp = RESET_MSG;
407 if (actions & SND_ACTIVATE)
408 mtyp = ACTIVATE_MSG;
409 if (actions & (SND_PROBE | SND_STATE | SND_RESET | SND_ACTIVATE))
410 tipc_link_build_proto_msg(l, mtyp, actions & SND_PROBE,
411 0, 0, 0, xmitq);
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400412 if (actions & SND_BCAST_SYNC)
413 tipc_link_build_bcast_sync_msg(l, xmitq);
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400414 return rc;
415}
416
Jon Paul Maloy333ef692015-07-16 16:54:28 -0400417/* link_profile_stats - update statistical profiling of traffic
418 */
419static void link_profile_stats(struct tipc_link *l)
420{
421 struct sk_buff *skb;
422 struct tipc_msg *msg;
423 int length;
424
425 /* Update counters used in statistical profiling of send traffic */
426 l->stats.accu_queue_sz += skb_queue_len(&l->transmq);
427 l->stats.queue_sz_counts++;
428
429 skb = skb_peek(&l->transmq);
430 if (!skb)
431 return;
432 msg = buf_msg(skb);
433 length = msg_size(msg);
434
435 if (msg_user(msg) == MSG_FRAGMENTER) {
436 if (msg_type(msg) != FIRST_FRAGMENT)
437 return;
438 length = msg_size(msg_get_wrapped(msg));
439 }
440 l->stats.msg_lengths_total += length;
441 l->stats.msg_length_counts++;
442 if (length <= 64)
443 l->stats.msg_length_profile[0]++;
444 else if (length <= 256)
445 l->stats.msg_length_profile[1]++;
446 else if (length <= 1024)
447 l->stats.msg_length_profile[2]++;
448 else if (length <= 4096)
449 l->stats.msg_length_profile[3]++;
450 else if (length <= 16384)
451 l->stats.msg_length_profile[4]++;
452 else if (length <= 32768)
453 l->stats.msg_length_profile[5]++;
454 else
455 l->stats.msg_length_profile[6]++;
456}
457
458/* tipc_link_timeout - perform periodic task as instructed from node timeout
459 */
460int tipc_link_timeout(struct tipc_link *l, struct sk_buff_head *xmitq)
461{
462 int rc = 0;
463
464 link_profile_stats(l);
465 if (l->silent_intv_cnt)
466 rc = tipc_link_fsm_evt(l, SILENCE_EVT, xmitq);
467 else if (link_working(l) && tipc_bclink_acks_missing(l->owner))
468 tipc_link_build_proto_msg(l, STATE_MSG, 0, 0, 0, 0, xmitq);
469 l->silent_intv_cnt++;
470 return rc;
471}
472
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400473/**
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400474 * link_schedule_user - schedule a message sender for wakeup after congestion
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400475 * @link: congested link
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400476 * @list: message that was attempted sent
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400477 * Create pseudo msg to send back to user when congestion abates
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400478 * Does not consume buffer list
Per Lidenb97bf3f2006-01-02 19:04:38 +0100479 */
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400480static int link_schedule_user(struct tipc_link *link, struct sk_buff_head *list)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100481{
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400482 struct tipc_msg *msg = buf_msg(skb_peek(list));
483 int imp = msg_importance(msg);
484 u32 oport = msg_origport(msg);
485 u32 addr = link_own_addr(link);
486 struct sk_buff *skb;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100487
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400488 /* This really cannot happen... */
489 if (unlikely(imp > TIPC_CRITICAL_IMPORTANCE)) {
490 pr_warn("%s<%s>, send queue full", link_rst_msg, link->name);
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400491 return -ENOBUFS;
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400492 }
493 /* Non-blocking sender: */
494 if (TIPC_SKB_CB(skb_peek(list))->wakeup_pending)
495 return -ELINKCONG;
496
497 /* Create and schedule wakeup pseudo message */
498 skb = tipc_msg_create(SOCK_WAKEUP, 0, INT_H_SIZE, 0,
499 addr, addr, oport, 0, 0);
500 if (!skb)
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400501 return -ENOBUFS;
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400502 TIPC_SKB_CB(skb)->chain_sz = skb_queue_len(list);
503 TIPC_SKB_CB(skb)->chain_imp = imp;
504 skb_queue_tail(&link->wakeupq, skb);
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400505 link->stats.link_congs++;
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400506 return -ELINKCONG;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100507}
508
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400509/**
510 * link_prepare_wakeup - prepare users for wakeup after congestion
511 * @link: congested link
512 * Move a number of waiting users, as permitted by available space in
513 * the send queue, from link wait queue to node wait queue for wakeup
514 */
Jon Paul Maloy1f66d162015-03-25 12:07:24 -0400515void link_prepare_wakeup(struct tipc_link *l)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100516{
Jon Paul Maloy1f66d162015-03-25 12:07:24 -0400517 int pnd[TIPC_SYSTEM_IMPORTANCE + 1] = {0,};
518 int imp, lim;
Ying Xue58d78b32014-11-26 11:41:51 +0800519 struct sk_buff *skb, *tmp;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100520
Jon Paul Maloy1f66d162015-03-25 12:07:24 -0400521 skb_queue_walk_safe(&l->wakeupq, skb, tmp) {
522 imp = TIPC_SKB_CB(skb)->chain_imp;
523 lim = l->window + l->backlog[imp].limit;
524 pnd[imp] += TIPC_SKB_CB(skb)->chain_sz;
525 if ((pnd[imp] + l->backlog[imp].len) >= lim)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100526 break;
Jon Paul Maloy1f66d162015-03-25 12:07:24 -0400527 skb_unlink(skb, &l->wakeupq);
Jon Paul Maloyd39bbd42015-07-16 16:54:21 -0400528 skb_queue_tail(l->inputq, skb);
529 l->owner->inputq = l->inputq;
Jon Paul Maloy1f66d162015-03-25 12:07:24 -0400530 l->owner->action_flags |= TIPC_MSG_EVT;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100531 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100532}
533
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900534/**
Per Liden4323add2006-01-18 00:38:21 +0100535 * tipc_link_reset_fragments - purge link's inbound message fragments queue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100536 * @l_ptr: pointer to link
537 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500538void tipc_link_reset_fragments(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100539{
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400540 kfree_skb(l_ptr->reasm_buf);
541 l_ptr->reasm_buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100542}
543
Jon Paul Maloy7d967b62015-06-28 09:44:44 -0400544void tipc_link_purge_backlog(struct tipc_link *l)
Jon Paul Maloy1f66d162015-03-25 12:07:24 -0400545{
546 __skb_queue_purge(&l->backlogq);
547 l->backlog[TIPC_LOW_IMPORTANCE].len = 0;
548 l->backlog[TIPC_MEDIUM_IMPORTANCE].len = 0;
549 l->backlog[TIPC_HIGH_IMPORTANCE].len = 0;
550 l->backlog[TIPC_CRITICAL_IMPORTANCE].len = 0;
551 l->backlog[TIPC_SYSTEM_IMPORTANCE].len = 0;
552}
553
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900554/**
Jon Paul Maloy581465f2014-01-07 17:02:44 -0500555 * tipc_link_purge_queues - purge all pkt queues associated with link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100556 * @l_ptr: pointer to link
557 */
Jon Paul Maloy581465f2014-01-07 17:02:44 -0500558void tipc_link_purge_queues(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100559{
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400560 __skb_queue_purge(&l_ptr->deferdq);
561 __skb_queue_purge(&l_ptr->transmq);
Jon Paul Maloy1f66d162015-03-25 12:07:24 -0400562 tipc_link_purge_backlog(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100563 tipc_link_reset_fragments(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100564}
565
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500566void tipc_link_reset(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100567{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100568 u32 prev_state = l_ptr->state;
Allan Stephens5392d642006-06-25 23:52:50 -0700569 int was_active_link = tipc_link_is_active(l_ptr);
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400570 struct tipc_node *owner = l_ptr->owner;
Jon Paul Maloydff29b12015-04-02 09:33:01 -0400571 struct tipc_link *pl = tipc_parallel_link(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900572
Allan Stephensa686e682008-06-04 17:29:39 -0700573 msg_set_session(l_ptr->pmsg, ((msg_session(l_ptr->pmsg) + 1) & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100574
Allan Stephensa686e682008-06-04 17:29:39 -0700575 /* Link is down, accept any session */
Jon Paul Maloyd3504c32015-07-16 16:54:25 -0400576 l_ptr->peer_session = WILDCARD_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100577
Jon Paul Maloyed193ec2015-04-02 09:33:02 -0400578 /* Prepare for renewed mtu size negotiation */
579 l_ptr->mtu = l_ptr->advertised_mtu;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900580
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400581 l_ptr->state = TIPC_LINK_RESETTING;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100582
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400583 if ((prev_state == TIPC_LINK_RESETTING) ||
584 (prev_state == TIPC_LINK_ESTABLISHING))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100585 return;
586
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400587 tipc_node_link_down(l_ptr->owner, l_ptr->bearer_id);
Ying Xue7f9f95d2015-01-09 15:27:06 +0800588 tipc_bearer_remove_dest(owner->net, l_ptr->bearer_id, l_ptr->addr);
Paul Gortmaker7368ddf2010-10-12 14:25:58 +0000589
Jon Paul Maloydff29b12015-04-02 09:33:01 -0400590 if (was_active_link && tipc_node_is_up(l_ptr->owner) && (pl != l_ptr)) {
Jon Paul Maloyd3504c32015-07-16 16:54:25 -0400591 l_ptr->exec_mode = TIPC_LINK_BLOCKED;
Jon Paul Maloya97b9d32015-05-14 10:46:15 -0400592 l_ptr->failover_checkpt = l_ptr->rcv_nxt;
Jon Paul Maloydff29b12015-04-02 09:33:01 -0400593 pl->failover_pkts = FIRST_FAILOVER;
Jon Paul Maloya97b9d32015-05-14 10:46:15 -0400594 pl->failover_checkpt = l_ptr->rcv_nxt;
Jon Paul Maloydff29b12015-04-02 09:33:01 -0400595 pl->failover_skb = l_ptr->reasm_buf;
596 } else {
597 kfree_skb(l_ptr->reasm_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100598 }
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500599 /* Clean up all queues, except inputq: */
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400600 __skb_queue_purge(&l_ptr->transmq);
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400601 __skb_queue_purge(&l_ptr->deferdq);
Jon Paul Maloye6441ba2015-03-09 16:16:22 -0400602 if (!owner->inputq)
Jon Paul Maloyd39bbd42015-07-16 16:54:21 -0400603 owner->inputq = l_ptr->inputq;
Jon Paul Maloye6441ba2015-03-09 16:16:22 -0400604 skb_queue_splice_init(&l_ptr->wakeupq, owner->inputq);
605 if (!skb_queue_empty(owner->inputq))
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500606 owner->action_flags |= TIPC_MSG_EVT;
Jon Paul Maloy1f66d162015-03-25 12:07:24 -0400607 tipc_link_purge_backlog(l_ptr);
Jon Paul Maloydff29b12015-04-02 09:33:01 -0400608 l_ptr->reasm_buf = NULL;
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400609 l_ptr->rcv_unacked = 0;
Jon Paul Maloya97b9d32015-05-14 10:46:15 -0400610 l_ptr->snd_nxt = 1;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400611 l_ptr->rcv_nxt = 1;
Jon Paul Maloya97b9d32015-05-14 10:46:15 -0400612 l_ptr->silent_intv_cnt = 0;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400613 l_ptr->stats.recv_info = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100614 l_ptr->stale_count = 0;
615 link_reset_statistics(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100616}
617
Per Lidenb97bf3f2006-01-02 19:04:38 +0100618/**
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -0400619 * __tipc_link_xmit(): same as tipc_link_xmit, but destlink is known & locked
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500620 * @link: link to use
Ying Xuea6ca1092014-11-26 11:41:55 +0800621 * @list: chain of buffers containing message
622 *
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400623 * Consumes the buffer chain, except when returning an error code,
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400624 * Returns 0 if success, or errno: -ELINKCONG, -EMSGSIZE or -ENOBUFS
625 * Messages at TIPC_SYSTEM_IMPORTANCE are always accepted
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500626 */
Ying Xue7f9f95d2015-01-09 15:27:06 +0800627int __tipc_link_xmit(struct net *net, struct tipc_link *link,
628 struct sk_buff_head *list)
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500629{
Ying Xuea6ca1092014-11-26 11:41:55 +0800630 struct tipc_msg *msg = buf_msg(skb_peek(list));
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400631 unsigned int maxwin = link->window;
Jon Paul Maloyf21e8972015-05-14 10:46:17 -0400632 unsigned int i, imp = msg_importance(msg);
Jon Paul Maloyed193ec2015-04-02 09:33:02 -0400633 uint mtu = link->mtu;
Jon Paul Maloya97b9d32015-05-14 10:46:15 -0400634 u16 ack = mod(link->rcv_nxt - 1);
635 u16 seqno = link->snd_nxt;
Jon Paul Maloye4bf4f72015-05-14 10:46:14 -0400636 u16 bc_last_in = link->owner->bclink.last_in;
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500637 struct tipc_media_addr *addr = &link->media_addr;
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400638 struct sk_buff_head *transmq = &link->transmq;
639 struct sk_buff_head *backlogq = &link->backlogq;
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400640 struct sk_buff *skb, *bskb;
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500641
Jon Paul Maloyf21e8972015-05-14 10:46:17 -0400642 /* Match msg importance against this and all higher backlog limits: */
643 for (i = imp; i <= TIPC_SYSTEM_IMPORTANCE; i++) {
644 if (unlikely(link->backlog[i].len >= link->backlog[i].limit))
645 return link_schedule_user(link, list);
646 }
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400647 if (unlikely(msg_size(msg) > mtu))
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500648 return -EMSGSIZE;
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400649
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400650 /* Prepare each packet for sending, and add to relevant queue: */
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400651 while (skb_queue_len(list)) {
652 skb = skb_peek(list);
Ying Xue58dc55f2014-11-26 11:41:52 +0800653 msg = buf_msg(skb);
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400654 msg_set_seqno(msg, seqno);
655 msg_set_ack(msg, ack);
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500656 msg_set_bcast_ack(msg, bc_last_in);
657
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400658 if (likely(skb_queue_len(transmq) < maxwin)) {
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400659 __skb_dequeue(list);
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400660 __skb_queue_tail(transmq, skb);
661 tipc_bearer_send(net, link->bearer_id, skb, addr);
662 link->rcv_unacked = 0;
663 seqno++;
664 continue;
665 }
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400666 if (tipc_msg_bundle(skb_peek_tail(backlogq), msg, mtu)) {
667 kfree_skb(__skb_dequeue(list));
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500668 link->stats.sent_bundled++;
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500669 continue;
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400670 }
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400671 if (tipc_msg_make_bundle(&bskb, msg, mtu, link->addr)) {
672 kfree_skb(__skb_dequeue(list));
673 __skb_queue_tail(backlogq, bskb);
674 link->backlog[msg_importance(buf_msg(bskb))].len++;
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500675 link->stats.sent_bundled++;
676 link->stats.sent_bundles++;
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400677 continue;
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500678 }
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400679 link->backlog[imp].len += skb_queue_len(list);
680 skb_queue_splice_tail_init(list, backlogq);
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500681 }
Jon Paul Maloya97b9d32015-05-14 10:46:15 -0400682 link->snd_nxt = seqno;
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500683 return 0;
684}
685
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400686/**
687 * tipc_link_xmit(): enqueue buffer list according to queue situation
688 * @link: link to use
689 * @list: chain of buffers containing message
690 * @xmitq: returned list of packets to be sent by caller
691 *
692 * Consumes the buffer chain, except when returning -ELINKCONG,
693 * since the caller then may want to make more send attempts.
694 * Returns 0 if success, or errno: -ELINKCONG, -EMSGSIZE or -ENOBUFS
695 * Messages at TIPC_SYSTEM_IMPORTANCE are always accepted
696 */
697int tipc_link_xmit(struct tipc_link *l, struct sk_buff_head *list,
698 struct sk_buff_head *xmitq)
699{
700 struct tipc_msg *hdr = buf_msg(skb_peek(list));
701 unsigned int maxwin = l->window;
702 unsigned int i, imp = msg_importance(hdr);
703 unsigned int mtu = l->mtu;
704 u16 ack = l->rcv_nxt - 1;
705 u16 seqno = l->snd_nxt;
706 u16 bc_last_in = l->owner->bclink.last_in;
707 struct sk_buff_head *transmq = &l->transmq;
708 struct sk_buff_head *backlogq = &l->backlogq;
709 struct sk_buff *skb, *_skb, *bskb;
710
711 /* Match msg importance against this and all higher backlog limits: */
712 for (i = imp; i <= TIPC_SYSTEM_IMPORTANCE; i++) {
713 if (unlikely(l->backlog[i].len >= l->backlog[i].limit))
714 return link_schedule_user(l, list);
715 }
716 if (unlikely(msg_size(hdr) > mtu))
717 return -EMSGSIZE;
718
719 /* Prepare each packet for sending, and add to relevant queue: */
720 while (skb_queue_len(list)) {
721 skb = skb_peek(list);
722 hdr = buf_msg(skb);
723 msg_set_seqno(hdr, seqno);
724 msg_set_ack(hdr, ack);
725 msg_set_bcast_ack(hdr, bc_last_in);
726
727 if (likely(skb_queue_len(transmq) < maxwin)) {
728 _skb = skb_clone(skb, GFP_ATOMIC);
729 if (!_skb)
730 return -ENOBUFS;
731 __skb_dequeue(list);
732 __skb_queue_tail(transmq, skb);
733 __skb_queue_tail(xmitq, _skb);
734 l->rcv_unacked = 0;
735 seqno++;
736 continue;
737 }
738 if (tipc_msg_bundle(skb_peek_tail(backlogq), hdr, mtu)) {
739 kfree_skb(__skb_dequeue(list));
740 l->stats.sent_bundled++;
741 continue;
742 }
743 if (tipc_msg_make_bundle(&bskb, hdr, mtu, l->addr)) {
744 kfree_skb(__skb_dequeue(list));
745 __skb_queue_tail(backlogq, bskb);
746 l->backlog[msg_importance(buf_msg(bskb))].len++;
747 l->stats.sent_bundled++;
748 l->stats.sent_bundles++;
749 continue;
750 }
751 l->backlog[imp].len += skb_queue_len(list);
752 skb_queue_splice_tail_init(list, backlogq);
753 }
754 l->snd_nxt = seqno;
755 return 0;
756}
757
Ying Xuea6ca1092014-11-26 11:41:55 +0800758static void skb2list(struct sk_buff *skb, struct sk_buff_head *list)
759{
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500760 skb_queue_head_init(list);
Ying Xuea6ca1092014-11-26 11:41:55 +0800761 __skb_queue_tail(list, skb);
762}
763
764static int __tipc_link_xmit_skb(struct tipc_link *link, struct sk_buff *skb)
765{
766 struct sk_buff_head head;
767
768 skb2list(skb, &head);
Ying Xue7f9f95d2015-01-09 15:27:06 +0800769 return __tipc_link_xmit(link->owner->net, link, &head);
Ying Xuea6ca1092014-11-26 11:41:55 +0800770}
771
Jon Maloyc64f7a62012-11-16 13:51:31 +0800772/*
Ying Xue247f0f32014-02-18 16:06:46 +0800773 * tipc_link_sync_rcv - synchronize broadcast link endpoints.
Jon Maloyc64f7a62012-11-16 13:51:31 +0800774 * Receive the sequence number where we should start receiving and
775 * acking broadcast packets from a newly added peer node, and open
776 * up for reception of such packets.
777 *
778 * Called with node locked
779 */
Ying Xue247f0f32014-02-18 16:06:46 +0800780static void tipc_link_sync_rcv(struct tipc_node *n, struct sk_buff *buf)
Jon Maloyc64f7a62012-11-16 13:51:31 +0800781{
782 struct tipc_msg *msg = buf_msg(buf);
783
784 n->bclink.last_sent = n->bclink.last_in = msg_last_bcast(msg);
785 n->bclink.recv_permitted = true;
786 kfree_skb(buf);
787}
788
789/*
Ying Xue47b4c9a2014-11-26 11:41:48 +0800790 * tipc_link_push_packets - push unsent packets to bearer
791 *
792 * Push out the unsent messages of a link where congestion
793 * has abated. Node is locked.
794 *
795 * Called with node locked
Per Lidenb97bf3f2006-01-02 19:04:38 +0100796 */
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400797void tipc_link_push_packets(struct tipc_link *link)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100798{
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400799 struct sk_buff *skb;
Ying Xue47b4c9a2014-11-26 11:41:48 +0800800 struct tipc_msg *msg;
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400801 u16 seqno = link->snd_nxt;
Jon Paul Maloya97b9d32015-05-14 10:46:15 -0400802 u16 ack = mod(link->rcv_nxt - 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100803
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400804 while (skb_queue_len(&link->transmq) < link->window) {
805 skb = __skb_dequeue(&link->backlogq);
806 if (!skb)
Ying Xue47b4c9a2014-11-26 11:41:48 +0800807 break;
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400808 msg = buf_msg(skb);
Jon Paul Maloy1f66d162015-03-25 12:07:24 -0400809 link->backlog[msg_importance(msg)].len--;
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400810 msg_set_ack(msg, ack);
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400811 msg_set_seqno(msg, seqno);
812 seqno = mod(seqno + 1);
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400813 msg_set_bcast_ack(msg, link->owner->bclink.last_in);
814 link->rcv_unacked = 0;
815 __skb_queue_tail(&link->transmq, skb);
816 tipc_bearer_send(link->owner->net, link->bearer_id,
817 skb, &link->media_addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100818 }
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400819 link->snd_nxt = seqno;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100820}
821
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400822void tipc_link_advance_backlog(struct tipc_link *l, struct sk_buff_head *xmitq)
823{
824 struct sk_buff *skb, *_skb;
825 struct tipc_msg *hdr;
826 u16 seqno = l->snd_nxt;
827 u16 ack = l->rcv_nxt - 1;
828
829 while (skb_queue_len(&l->transmq) < l->window) {
830 skb = skb_peek(&l->backlogq);
831 if (!skb)
832 break;
833 _skb = skb_clone(skb, GFP_ATOMIC);
834 if (!_skb)
835 break;
836 __skb_dequeue(&l->backlogq);
837 hdr = buf_msg(skb);
838 l->backlog[msg_importance(hdr)].len--;
839 __skb_queue_tail(&l->transmq, skb);
840 __skb_queue_tail(xmitq, _skb);
841 msg_set_ack(hdr, ack);
842 msg_set_seqno(hdr, seqno);
843 msg_set_bcast_ack(hdr, l->owner->bclink.last_in);
844 l->rcv_unacked = 0;
845 seqno++;
846 }
847 l->snd_nxt = seqno;
848}
849
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500850static void link_retransmit_failure(struct tipc_link *l_ptr,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400851 struct sk_buff *buf)
Allan Stephensd356eeb2006-06-25 23:40:01 -0700852{
853 struct tipc_msg *msg = buf_msg(buf);
Ying Xue1da46562015-01-09 15:27:07 +0800854 struct net *net = l_ptr->owner->net;
Allan Stephensd356eeb2006-06-25 23:40:01 -0700855
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400856 pr_warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -0700857
858 if (l_ptr->addr) {
Allan Stephensd356eeb2006-06-25 23:40:01 -0700859 /* Handle failure on standard link */
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400860 link_print(l_ptr, "Resetting link ");
861 pr_info("Failed msg: usr %u, typ %u, len %u, err %u\n",
862 msg_user(msg), msg_type(msg), msg_size(msg),
863 msg_errcode(msg));
864 pr_info("sqno %u, prev: %x, src: %x\n",
865 msg_seqno(msg), msg_prevnode(msg), msg_orignode(msg));
Allan Stephensd356eeb2006-06-25 23:40:01 -0700866 } else {
Allan Stephensd356eeb2006-06-25 23:40:01 -0700867 /* Handle failure on broadcast link */
David S. Miller6c000552008-09-02 23:38:32 -0700868 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -0700869 char addr_string[16];
870
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400871 pr_info("Msg seq number: %u, ", msg_seqno(msg));
872 pr_cont("Outstanding acks: %lu\n",
873 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -0700874
Ying Xue1da46562015-01-09 15:27:07 +0800875 n_ptr = tipc_bclink_retransmit_to(net);
Allan Stephensd356eeb2006-06-25 23:40:01 -0700876
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000877 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400878 pr_info("Broadcast link info for %s\n", addr_string);
Ying Xue389dd9b2012-11-16 13:51:30 +0800879 pr_info("Reception permitted: %d, Acked: %u\n",
880 n_ptr->bclink.recv_permitted,
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400881 n_ptr->bclink.acked);
882 pr_info("Last in: %u, Oos state: %u, Last sent: %u\n",
883 n_ptr->bclink.last_in,
884 n_ptr->bclink.oos_state,
885 n_ptr->bclink.last_sent);
Allan Stephensd356eeb2006-06-25 23:40:01 -0700886
Ying Xueb952b2b2015-03-26 18:10:23 +0800887 n_ptr->action_flags |= TIPC_BCAST_RESET;
Allan Stephensd356eeb2006-06-25 23:40:01 -0700888 l_ptr->stale_count = 0;
889 }
890}
891
Ying Xue58dc55f2014-11-26 11:41:52 +0800892void tipc_link_retransmit(struct tipc_link *l_ptr, struct sk_buff *skb,
Per Liden4323add2006-01-18 00:38:21 +0100893 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100894{
895 struct tipc_msg *msg;
896
Ying Xue58dc55f2014-11-26 11:41:52 +0800897 if (!skb)
Allan Stephensd356eeb2006-06-25 23:40:01 -0700898 return;
899
Ying Xue58dc55f2014-11-26 11:41:52 +0800900 msg = buf_msg(skb);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900901
Erik Hugne512137e2013-12-06 10:08:00 -0500902 /* Detect repeated retransmit failures */
Jon Paul Maloya97b9d32015-05-14 10:46:15 -0400903 if (l_ptr->last_retransm == msg_seqno(msg)) {
Erik Hugne512137e2013-12-06 10:08:00 -0500904 if (++l_ptr->stale_count > 100) {
Ying Xue58dc55f2014-11-26 11:41:52 +0800905 link_retransmit_failure(l_ptr, skb);
Erik Hugne512137e2013-12-06 10:08:00 -0500906 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -0700907 }
908 } else {
Jon Paul Maloya97b9d32015-05-14 10:46:15 -0400909 l_ptr->last_retransm = msg_seqno(msg);
Erik Hugne512137e2013-12-06 10:08:00 -0500910 l_ptr->stale_count = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100911 }
Allan Stephensd356eeb2006-06-25 23:40:01 -0700912
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400913 skb_queue_walk_from(&l_ptr->transmq, skb) {
914 if (!retransmits)
Ying Xue58dc55f2014-11-26 11:41:52 +0800915 break;
916 msg = buf_msg(skb);
Jon Paul Maloya97b9d32015-05-14 10:46:15 -0400917 msg_set_ack(msg, mod(l_ptr->rcv_nxt - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900918 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue7f9f95d2015-01-09 15:27:06 +0800919 tipc_bearer_send(l_ptr->owner->net, l_ptr->bearer_id, skb,
920 &l_ptr->media_addr);
Ying Xue3c294cb2012-11-15 11:34:45 +0800921 retransmits--;
922 l_ptr->stats.retransmitted++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100923 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100924}
925
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400926static int tipc_link_retransm(struct tipc_link *l, int retransm,
927 struct sk_buff_head *xmitq)
928{
929 struct sk_buff *_skb, *skb = skb_peek(&l->transmq);
930 struct tipc_msg *hdr;
931
932 if (!skb)
933 return 0;
934
935 /* Detect repeated retransmit failures on same packet */
936 if (likely(l->last_retransm != buf_seqno(skb))) {
937 l->last_retransm = buf_seqno(skb);
938 l->stale_count = 1;
939 } else if (++l->stale_count > 100) {
940 link_retransmit_failure(l, skb);
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400941 l->exec_mode = TIPC_LINK_BLOCKED;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400942 return TIPC_LINK_DOWN_EVT;
943 }
944 skb_queue_walk(&l->transmq, skb) {
945 if (!retransm)
946 return 0;
947 hdr = buf_msg(skb);
948 _skb = __pskb_copy(skb, MIN_H_SIZE, GFP_ATOMIC);
949 if (!_skb)
950 return 0;
951 hdr = buf_msg(_skb);
952 msg_set_ack(hdr, l->rcv_nxt - 1);
953 msg_set_bcast_ack(hdr, l->owner->bclink.last_in);
954 _skb->priority = TC_PRIO_CONTROL;
955 __skb_queue_tail(xmitq, _skb);
956 retransm--;
957 l->stats.retransmitted++;
958 }
959 return 0;
960}
961
Jon Paul Maloy8b4ed862015-03-25 12:07:26 -0400962/* link_synch(): check if all packets arrived before the synch
963 * point have been consumed
964 * Returns true if the parallel links are synched, otherwise false
965 */
966static bool link_synch(struct tipc_link *l)
967{
968 unsigned int post_synch;
969 struct tipc_link *pl;
970
971 pl = tipc_parallel_link(l);
972 if (pl == l)
973 goto synched;
974
975 /* Was last pre-synch packet added to input queue ? */
Jon Paul Maloya97b9d32015-05-14 10:46:15 -0400976 if (less_eq(pl->rcv_nxt, l->synch_point))
Jon Paul Maloy8b4ed862015-03-25 12:07:26 -0400977 return false;
978
979 /* Is it still in the input queue ? */
Jon Paul Maloya97b9d32015-05-14 10:46:15 -0400980 post_synch = mod(pl->rcv_nxt - l->synch_point) - 1;
Jon Paul Maloyd39bbd42015-07-16 16:54:21 -0400981 if (skb_queue_len(pl->inputq) > post_synch)
Jon Paul Maloy8b4ed862015-03-25 12:07:26 -0400982 return false;
983synched:
Jon Paul Maloyd3504c32015-07-16 16:54:25 -0400984 l->exec_mode = TIPC_LINK_OPEN;
Jon Paul Maloy8b4ed862015-03-25 12:07:26 -0400985 return true;
986}
987
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500988/* tipc_data_input - deliver data and name distr msgs to upper layer
Erik Hugne7ae934b2014-07-01 10:22:40 +0200989 *
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500990 * Consumes buffer if message is of right type
Erik Hugne7ae934b2014-07-01 10:22:40 +0200991 * Node lock must be held
992 */
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500993static bool tipc_data_input(struct tipc_link *link, struct sk_buff *skb)
Erik Hugne7ae934b2014-07-01 10:22:40 +0200994{
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500995 struct tipc_node *node = link->owner;
996 struct tipc_msg *msg = buf_msg(skb);
997 u32 dport = msg_destport(msg);
Erik Hugne7ae934b2014-07-01 10:22:40 +0200998
999 switch (msg_user(msg)) {
1000 case TIPC_LOW_IMPORTANCE:
1001 case TIPC_MEDIUM_IMPORTANCE:
1002 case TIPC_HIGH_IMPORTANCE:
1003 case TIPC_CRITICAL_IMPORTANCE:
1004 case CONN_MANAGER:
Jon Paul Maloyd39bbd42015-07-16 16:54:21 -04001005 if (tipc_skb_queue_tail(link->inputq, skb, dport)) {
1006 node->inputq = link->inputq;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001007 node->action_flags |= TIPC_MSG_EVT;
1008 }
1009 return true;
Erik Hugne7ae934b2014-07-01 10:22:40 +02001010 case NAME_DISTRIBUTOR:
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001011 node->bclink.recv_permitted = true;
Jon Paul Maloyd39bbd42015-07-16 16:54:21 -04001012 node->namedq = link->namedq;
1013 skb_queue_tail(link->namedq, skb);
1014 if (skb_queue_len(link->namedq) == 1)
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001015 node->action_flags |= TIPC_NAMED_MSG_EVT;
1016 return true;
Erik Hugne7ae934b2014-07-01 10:22:40 +02001017 case MSG_BUNDLER:
Jon Paul Maloydff29b12015-04-02 09:33:01 -04001018 case TUNNEL_PROTOCOL:
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001019 case MSG_FRAGMENTER:
1020 case BCAST_PROTOCOL:
1021 return false;
1022 default:
1023 pr_warn("Dropping received illegal msg type\n");
1024 kfree_skb(skb);
1025 return false;
1026 };
1027}
1028
1029/* tipc_link_input - process packet that has passed link protocol check
1030 *
1031 * Consumes buffer
1032 * Node lock must be held
1033 */
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001034static int tipc_link_input(struct tipc_link *link, struct sk_buff *skb)
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001035{
1036 struct tipc_node *node = link->owner;
1037 struct tipc_msg *msg = buf_msg(skb);
1038 struct sk_buff *iskb;
1039 int pos = 0;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001040 int rc = 0;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001041
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001042 switch (msg_user(msg)) {
Jon Paul Maloydff29b12015-04-02 09:33:01 -04001043 case TUNNEL_PROTOCOL:
Jon Paul Maloy8b4ed862015-03-25 12:07:26 -04001044 if (msg_dup(msg)) {
Jon Paul Maloyd3504c32015-07-16 16:54:25 -04001045 link->exec_mode = TIPC_LINK_TUNNEL;
Jon Paul Maloy8b4ed862015-03-25 12:07:26 -04001046 link->synch_point = msg_seqno(msg_get_wrapped(msg));
Jon Paul Maloy2da71422015-04-02 09:33:00 -04001047 kfree_skb(skb);
1048 break;
Jon Paul Maloy8b4ed862015-03-25 12:07:26 -04001049 }
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001050 rc |= tipc_link_failover_rcv(link, &skb);
1051 if (!skb)
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001052 break;
1053 if (msg_user(buf_msg(skb)) != MSG_BUNDLER) {
1054 tipc_data_input(link, skb);
1055 break;
1056 }
1057 case MSG_BUNDLER:
1058 link->stats.recv_bundles++;
1059 link->stats.recv_bundled += msg_msgcnt(msg);
1060
1061 while (tipc_msg_extract(skb, &iskb, &pos))
1062 tipc_data_input(link, iskb);
1063 break;
1064 case MSG_FRAGMENTER:
1065 link->stats.recv_fragments++;
1066 if (tipc_buf_append(&link->reasm_buf, &skb)) {
1067 link->stats.recv_fragmented++;
1068 tipc_data_input(link, skb);
1069 } else if (!link->reasm_buf) {
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001070 link->exec_mode = TIPC_LINK_BLOCKED;
1071 rc |= TIPC_LINK_DOWN_EVT;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001072 }
1073 break;
1074 case BCAST_PROTOCOL:
1075 tipc_link_sync_rcv(node, skb);
Erik Hugne7ae934b2014-07-01 10:22:40 +02001076 break;
1077 default:
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001078 break;
1079 };
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001080 return rc;
Erik Hugne7ae934b2014-07-01 10:22:40 +02001081}
1082
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001083static bool tipc_link_release_pkts(struct tipc_link *l, u16 acked)
1084{
1085 bool released = false;
1086 struct sk_buff *skb, *tmp;
1087
1088 skb_queue_walk_safe(&l->transmq, skb, tmp) {
1089 if (more(buf_seqno(skb), acked))
1090 break;
1091 __skb_unlink(skb, &l->transmq);
1092 kfree_skb(skb);
1093 released = true;
1094 }
1095 return released;
1096}
1097
1098/* tipc_link_rcv - process TIPC packets/messages arriving from off-node
1099 * @link: the link that should handle the message
1100 * @skb: TIPC packet
1101 * @xmitq: queue to place packets to be sent after this call
1102 */
1103int tipc_link_rcv(struct tipc_link *l, struct sk_buff *skb,
1104 struct sk_buff_head *xmitq)
1105{
1106 struct sk_buff_head *arrvq = &l->deferdq;
1107 struct sk_buff *tmp;
1108 struct tipc_msg *hdr;
1109 u16 seqno, rcv_nxt;
1110 int rc = 0;
1111
1112 if (unlikely(!__tipc_skb_queue_sorted(arrvq, skb))) {
1113 if (!(skb_queue_len(arrvq) % TIPC_NACK_INTV))
1114 tipc_link_build_proto_msg(l, STATE_MSG, 0,
1115 0, 0, 0, xmitq);
1116 return rc;
1117 }
1118
1119 skb_queue_walk_safe(arrvq, skb, tmp) {
1120 hdr = buf_msg(skb);
1121
1122 /* Verify and update link state */
1123 if (unlikely(msg_user(hdr) == LINK_PROTOCOL)) {
1124 __skb_dequeue(arrvq);
1125 rc |= tipc_link_proto_rcv(l, skb, xmitq);
1126 continue;
1127 }
1128
1129 if (unlikely(!link_working(l))) {
1130 rc |= tipc_link_fsm_evt(l, TRAFFIC_EVT, xmitq);
1131 if (!link_working(l)) {
1132 kfree_skb(__skb_dequeue(arrvq));
1133 return rc;
1134 }
1135 }
1136
1137 l->silent_intv_cnt = 0;
1138
1139 /* Forward queues and wake up waiting users */
1140 if (likely(tipc_link_release_pkts(l, msg_ack(hdr)))) {
1141 tipc_link_advance_backlog(l, xmitq);
1142 if (unlikely(!skb_queue_empty(&l->wakeupq)))
1143 link_prepare_wakeup(l);
1144 }
1145
1146 /* Defer reception if there is a gap in the sequence */
1147 seqno = msg_seqno(hdr);
1148 rcv_nxt = l->rcv_nxt;
1149 if (unlikely(less(rcv_nxt, seqno))) {
1150 l->stats.deferred_recv++;
1151 return rc;
1152 }
1153
1154 __skb_dequeue(arrvq);
1155
1156 /* Drop if packet already received */
1157 if (unlikely(more(rcv_nxt, seqno))) {
1158 l->stats.duplicates++;
1159 kfree_skb(skb);
1160 return rc;
1161 }
1162
1163 /* Synchronize with parallel link if applicable */
1164 if (unlikely(l->exec_mode == TIPC_LINK_TUNNEL))
1165 if (!msg_dup(hdr) && !link_synch(l)) {
1166 kfree_skb(skb);
1167 return rc;
1168 }
1169
1170 /* Packet can be delivered */
1171 l->rcv_nxt++;
1172 l->stats.recv_info++;
1173 if (unlikely(!tipc_data_input(l, skb)))
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001174 rc |= tipc_link_input(l, skb);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001175
1176 /* Ack at regular intervals */
1177 if (unlikely(++l->rcv_unacked >= TIPC_MIN_LINK_WIN)) {
1178 l->rcv_unacked = 0;
1179 l->stats.sent_acks++;
1180 tipc_link_build_proto_msg(l, STATE_MSG,
1181 0, 0, 0, 0, xmitq);
1182 }
1183 }
1184 return rc;
1185}
1186
Erik Hugne7ae934b2014-07-01 10:22:40 +02001187/**
Allan Stephens8809b252011-10-25 10:44:35 -04001188 * tipc_link_defer_pkt - Add out-of-sequence message to deferred reception queue
1189 *
1190 * Returns increase in queue length (i.e. 0 or 1)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001191 */
Ying Xuebc6fecd2014-11-26 11:41:53 +08001192u32 tipc_link_defer_pkt(struct sk_buff_head *list, struct sk_buff *skb)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001193{
Ying Xuebc6fecd2014-11-26 11:41:53 +08001194 struct sk_buff *skb1;
Jon Paul Maloye4bf4f72015-05-14 10:46:14 -04001195 u16 seq_no = buf_seqno(skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001196
1197 /* Empty queue ? */
Ying Xuebc6fecd2014-11-26 11:41:53 +08001198 if (skb_queue_empty(list)) {
1199 __skb_queue_tail(list, skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001200 return 1;
1201 }
1202
1203 /* Last ? */
Ying Xuebc6fecd2014-11-26 11:41:53 +08001204 if (less(buf_seqno(skb_peek_tail(list)), seq_no)) {
1205 __skb_queue_tail(list, skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001206 return 1;
1207 }
1208
Allan Stephens8809b252011-10-25 10:44:35 -04001209 /* Locate insertion point in queue, then insert; discard if duplicate */
Ying Xuebc6fecd2014-11-26 11:41:53 +08001210 skb_queue_walk(list, skb1) {
Jon Paul Maloye4bf4f72015-05-14 10:46:14 -04001211 u16 curr_seqno = buf_seqno(skb1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001212
Allan Stephens8809b252011-10-25 10:44:35 -04001213 if (seq_no == curr_seqno) {
Ying Xuebc6fecd2014-11-26 11:41:53 +08001214 kfree_skb(skb);
Allan Stephens8809b252011-10-25 10:44:35 -04001215 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001216 }
Allan Stephens8809b252011-10-25 10:44:35 -04001217
1218 if (less(seq_no, curr_seqno))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001219 break;
Allan Stephens8809b252011-10-25 10:44:35 -04001220 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001221
Ying Xuebc6fecd2014-11-26 11:41:53 +08001222 __skb_queue_before(list, skb1, skb);
Allan Stephens8809b252011-10-25 10:44:35 -04001223 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001224}
1225
Allan Stephens8809b252011-10-25 10:44:35 -04001226/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001227 * Send protocol message to the other endpoint.
1228 */
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001229void tipc_link_proto_xmit(struct tipc_link *l, u32 msg_typ, int probe_msg,
Jon Paul Maloyed193ec2015-04-02 09:33:02 -04001230 u32 gap, u32 tolerance, u32 priority)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001231{
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001232 struct sk_buff *skb = NULL;
1233 struct sk_buff_head xmitq;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001234
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001235 __skb_queue_head_init(&xmitq);
1236 tipc_link_build_proto_msg(l, msg_typ, probe_msg, gap,
1237 tolerance, priority, &xmitq);
1238 skb = __skb_dequeue(&xmitq);
1239 if (!skb)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001240 return;
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001241 tipc_bearer_send(l->owner->net, l->bearer_id, skb, &l->media_addr);
1242 l->rcv_unacked = 0;
1243 kfree_skb(skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001244}
1245
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001246/* tipc_link_build_proto_msg: prepare link protocol message for transmission
1247 */
1248static void tipc_link_build_proto_msg(struct tipc_link *l, int mtyp, bool probe,
1249 u16 rcvgap, int tolerance, int priority,
1250 struct sk_buff_head *xmitq)
1251{
1252 struct sk_buff *skb = NULL;
1253 struct tipc_msg *hdr = l->pmsg;
1254 u16 snd_nxt = l->snd_nxt;
1255 u16 rcv_nxt = l->rcv_nxt;
1256 u16 rcv_last = rcv_nxt - 1;
1257 int node_up = l->owner->bclink.recv_permitted;
1258
1259 /* Don't send protocol message during reset or link failover */
1260 if (l->exec_mode == TIPC_LINK_BLOCKED)
1261 return;
1262
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001263 msg_set_type(hdr, mtyp);
1264 msg_set_net_plane(hdr, l->net_plane);
1265 msg_set_bcast_ack(hdr, l->owner->bclink.last_in);
1266 msg_set_last_bcast(hdr, tipc_bclink_get_last_sent(l->owner->net));
1267 msg_set_link_tolerance(hdr, tolerance);
1268 msg_set_linkprio(hdr, priority);
1269 msg_set_redundant_link(hdr, node_up);
1270 msg_set_seq_gap(hdr, 0);
1271
1272 /* Compatibility: created msg must not be in sequence with pkt flow */
1273 msg_set_seqno(hdr, snd_nxt + U16_MAX / 2);
1274
1275 if (mtyp == STATE_MSG) {
1276 if (!tipc_link_is_up(l))
1277 return;
1278 msg_set_next_sent(hdr, snd_nxt);
1279
1280 /* Override rcvgap if there are packets in deferred queue */
1281 if (!skb_queue_empty(&l->deferdq))
1282 rcvgap = buf_seqno(skb_peek(&l->deferdq)) - rcv_nxt;
1283 if (rcvgap) {
1284 msg_set_seq_gap(hdr, rcvgap);
1285 l->stats.sent_nacks++;
1286 }
1287 msg_set_ack(hdr, rcv_last);
1288 msg_set_probe(hdr, probe);
1289 if (probe)
1290 l->stats.sent_probes++;
1291 l->stats.sent_states++;
1292 } else {
1293 /* RESET_MSG or ACTIVATE_MSG */
1294 msg_set_max_pkt(hdr, l->advertised_mtu);
1295 msg_set_ack(hdr, l->failover_checkpt - 1);
1296 msg_set_next_sent(hdr, 1);
1297 }
1298 skb = tipc_buf_acquire(msg_size(hdr));
1299 if (!skb)
1300 return;
1301 skb_copy_to_linear_data(skb, hdr, msg_size(hdr));
1302 skb->priority = TC_PRIO_CONTROL;
1303 __skb_queue_head(xmitq, skb);
1304}
Per Lidenb97bf3f2006-01-02 19:04:38 +01001305
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001306/* tipc_link_tunnel_xmit(): Tunnel one packet via a link belonging to
1307 * a different bearer. Owner node is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001308 */
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001309static void tipc_link_tunnel_xmit(struct tipc_link *l_ptr,
1310 struct tipc_msg *tunnel_hdr,
1311 struct tipc_msg *msg,
1312 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001313{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001314 struct tipc_link *tunnel;
Ying Xuea6ca1092014-11-26 11:41:55 +08001315 struct sk_buff *skb;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001316 u32 length = msg_size(msg);
1317
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -04001318 tunnel = node_active_link(l_ptr->owner, selector & 1);
Allan Stephens5392d642006-06-25 23:52:50 -07001319 if (!tipc_link_is_up(tunnel)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001320 pr_warn("%stunnel link no longer available\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001321 return;
Allan Stephens5392d642006-06-25 23:52:50 -07001322 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001323 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
Ying Xuea6ca1092014-11-26 11:41:55 +08001324 skb = tipc_buf_acquire(length + INT_H_SIZE);
1325 if (!skb) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001326 pr_warn("%sunable to send tunnel msg\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001327 return;
Allan Stephens5392d642006-06-25 23:52:50 -07001328 }
Ying Xuea6ca1092014-11-26 11:41:55 +08001329 skb_copy_to_linear_data(skb, tunnel_hdr, INT_H_SIZE);
1330 skb_copy_to_linear_data_offset(skb, INT_H_SIZE, msg, length);
1331 __tipc_link_xmit_skb(tunnel, skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001332}
1333
1334
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001335/* tipc_link_failover_send_queue(): A link has gone down, but a second
1336 * link is still active. We can do failover. Tunnel the failing link's
1337 * whole send queue via the remaining link. This way, we don't lose
1338 * any packets, and sequence order is preserved for subsequent traffic
1339 * sent over the remaining link. Owner node is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001340 */
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001341void tipc_link_failover_send_queue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001342{
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -04001343 int msgcount;
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -04001344 struct tipc_link *tunnel = node_active_link(l_ptr->owner, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001345 struct tipc_msg tunnel_hdr;
Ying Xue58dc55f2014-11-26 11:41:52 +08001346 struct sk_buff *skb;
Allan Stephens5392d642006-06-25 23:52:50 -07001347 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001348
1349 if (!tunnel)
1350 return;
1351
Jon Paul Maloydff29b12015-04-02 09:33:01 -04001352 tipc_msg_init(link_own_addr(l_ptr), &tunnel_hdr, TUNNEL_PROTOCOL,
1353 FAILOVER_MSG, INT_H_SIZE, l_ptr->addr);
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -04001354
1355 skb_queue_walk(&l_ptr->backlogq, skb) {
1356 msg_set_seqno(buf_msg(skb), l_ptr->snd_nxt);
1357 l_ptr->snd_nxt = mod(l_ptr->snd_nxt + 1);
1358 }
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -04001359 skb_queue_splice_tail_init(&l_ptr->backlogq, &l_ptr->transmq);
Jon Paul Maloy1f66d162015-03-25 12:07:24 -04001360 tipc_link_purge_backlog(l_ptr);
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -04001361 msgcount = skb_queue_len(&l_ptr->transmq);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001362 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
1363 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07001364
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -04001365 if (skb_queue_empty(&l_ptr->transmq)) {
Ying Xue58dc55f2014-11-26 11:41:52 +08001366 skb = tipc_buf_acquire(INT_H_SIZE);
1367 if (skb) {
1368 skb_copy_to_linear_data(skb, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001369 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Ying Xuea6ca1092014-11-26 11:41:55 +08001370 __tipc_link_xmit_skb(tunnel, skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001371 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001372 pr_warn("%sunable to send changeover msg\n",
1373 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001374 }
1375 return;
1376 }
Allan Stephensf1310722006-06-25 23:51:37 -07001377
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -04001378 split_bundles = (node_active_link(l_ptr->owner, 0) !=
1379 node_active_link(l_ptr->owner, 0));
Allan Stephens5392d642006-06-25 23:52:50 -07001380
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -04001381 skb_queue_walk(&l_ptr->transmq, skb) {
Ying Xue58dc55f2014-11-26 11:41:52 +08001382 struct tipc_msg *msg = buf_msg(skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001383
1384 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001385 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00001386 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001387
Florian Westphald788d802007-08-02 19:28:06 -07001388 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001389 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00001390 msg_set_seqno(m, msg_seqno(msg));
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001391 tipc_link_tunnel_xmit(l_ptr, &tunnel_hdr, m,
1392 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001393 pos += align(msg_size(m));
1394 m = (struct tipc_msg *)pos;
1395 }
1396 } else {
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001397 tipc_link_tunnel_xmit(l_ptr, &tunnel_hdr, msg,
1398 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001399 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001400 }
1401}
1402
Ying Xue247f0f32014-02-18 16:06:46 +08001403/* tipc_link_dup_queue_xmit(): A second link has become active. Tunnel a
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001404 * duplicate of the first link's send queue via the new link. This way, we
1405 * are guaranteed that currently queued packets from a socket are delivered
1406 * before future traffic from the same socket, even if this is using the
1407 * new link. The last arriving copy of each duplicate packet is dropped at
1408 * the receiving end by the regular protocol check, so packet cardinality
1409 * and sequence order is preserved per sender/receiver socket pair.
1410 * Owner node is locked.
1411 */
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -04001412void tipc_link_dup_queue_xmit(struct tipc_link *link,
1413 struct tipc_link *tnl)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001414{
Ying Xue58dc55f2014-11-26 11:41:52 +08001415 struct sk_buff *skb;
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -04001416 struct tipc_msg tnl_hdr;
1417 struct sk_buff_head *queue = &link->transmq;
1418 int mcnt;
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -04001419 u16 seqno;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001420
Jon Paul Maloydff29b12015-04-02 09:33:01 -04001421 tipc_msg_init(link_own_addr(link), &tnl_hdr, TUNNEL_PROTOCOL,
1422 SYNCH_MSG, INT_H_SIZE, link->addr);
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -04001423 mcnt = skb_queue_len(&link->transmq) + skb_queue_len(&link->backlogq);
1424 msg_set_msgcnt(&tnl_hdr, mcnt);
1425 msg_set_bearer_id(&tnl_hdr, link->peer_bearer_id);
1426
1427tunnel_queue:
1428 skb_queue_walk(queue, skb) {
Ying Xue58dc55f2014-11-26 11:41:52 +08001429 struct sk_buff *outskb;
1430 struct tipc_msg *msg = buf_msg(skb);
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -04001431 u32 len = msg_size(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001432
Jon Paul Maloya97b9d32015-05-14 10:46:15 -04001433 msg_set_ack(msg, mod(link->rcv_nxt - 1));
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -04001434 msg_set_bcast_ack(msg, link->owner->bclink.last_in);
1435 msg_set_size(&tnl_hdr, len + INT_H_SIZE);
1436 outskb = tipc_buf_acquire(len + INT_H_SIZE);
Ying Xue58dc55f2014-11-26 11:41:52 +08001437 if (outskb == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001438 pr_warn("%sunable to send duplicate msg\n",
1439 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001440 return;
1441 }
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -04001442 skb_copy_to_linear_data(outskb, &tnl_hdr, INT_H_SIZE);
1443 skb_copy_to_linear_data_offset(outskb, INT_H_SIZE,
1444 skb->data, len);
1445 __tipc_link_xmit_skb(tnl, outskb);
1446 if (!tipc_link_is_up(link))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001447 return;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001448 }
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -04001449 if (queue == &link->backlogq)
1450 return;
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -04001451 seqno = link->snd_nxt;
1452 skb_queue_walk(&link->backlogq, skb) {
1453 msg_set_seqno(buf_msg(skb), seqno);
1454 seqno = mod(seqno + 1);
1455 }
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -04001456 queue = &link->backlogq;
1457 goto tunnel_queue;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001458}
1459
Jon Paul Maloydff29b12015-04-02 09:33:01 -04001460/* tipc_link_failover_rcv(): Receive a tunnelled FAILOVER_MSG packet
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05001461 * Owner node is locked.
1462 */
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001463static int tipc_link_failover_rcv(struct tipc_link *link,
1464 struct sk_buff **skb)
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05001465{
Jon Paul Maloy2da71422015-04-02 09:33:00 -04001466 struct tipc_msg *msg = buf_msg(*skb);
1467 struct sk_buff *iskb = NULL;
Jon Paul Maloydff29b12015-04-02 09:33:01 -04001468 struct tipc_link *pl = NULL;
Jon Paul Maloy2da71422015-04-02 09:33:00 -04001469 int bearer_id = msg_bearer_id(msg);
Jon Paul Maloyc1336ee2015-03-13 16:08:08 -04001470 int pos = 0;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001471 int rc = 0;
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05001472
Jon Paul Maloydff29b12015-04-02 09:33:01 -04001473 if (msg_type(msg) != FAILOVER_MSG) {
Jon Paul Maloy2da71422015-04-02 09:33:00 -04001474 pr_warn("%sunknown tunnel pkt received\n", link_co_err);
1475 goto exit;
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05001476 }
Dan Carpentercb4b102f2013-05-06 08:28:41 +00001477 if (bearer_id >= MAX_BEARERS)
1478 goto exit;
Jon Paul Maloy1dab3d52014-02-13 17:29:10 -05001479
Jon Paul Maloydff29b12015-04-02 09:33:01 -04001480 if (bearer_id == link->bearer_id)
1481 goto exit;
1482
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -04001483 pl = link->owner->links[bearer_id].link;
Jon Paul Maloydff29b12015-04-02 09:33:01 -04001484
1485 if (link->failover_pkts == FIRST_FAILOVER)
1486 link->failover_pkts = msg_msgcnt(msg);
Jon Paul Maloy2da71422015-04-02 09:33:00 -04001487
1488 /* Should we expect an inner packet? */
Jon Paul Maloydff29b12015-04-02 09:33:01 -04001489 if (!link->failover_pkts)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001490 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001491
Jon Paul Maloy2da71422015-04-02 09:33:00 -04001492 if (!tipc_msg_extract(*skb, &iskb, &pos)) {
1493 pr_warn("%sno inner failover pkt\n", link_co_err);
1494 *skb = NULL;
1495 goto exit;
1496 }
Jon Paul Maloydff29b12015-04-02 09:33:01 -04001497 link->failover_pkts--;
Jon Paul Maloy2da71422015-04-02 09:33:00 -04001498 *skb = NULL;
1499
Jon Paul Maloydff29b12015-04-02 09:33:01 -04001500 /* Was this packet already delivered? */
1501 if (less(buf_seqno(iskb), link->failover_checkpt)) {
Jon Paul Maloy2da71422015-04-02 09:33:00 -04001502 kfree_skb(iskb);
1503 iskb = NULL;
1504 goto exit;
1505 }
1506 if (msg_user(buf_msg(iskb)) == MSG_FRAGMENTER) {
1507 link->stats.recv_fragments++;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001508 if (!tipc_buf_append(&link->failover_skb, &iskb) &&
1509 !link->failover_skb) {
1510 link->exec_mode = TIPC_LINK_BLOCKED;
1511 rc |= TIPC_LINK_DOWN_EVT;
1512 }
Jon Paul Maloy2da71422015-04-02 09:33:00 -04001513 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001514exit:
Jon Paul Maloydff29b12015-04-02 09:33:01 -04001515 if (!link->failover_pkts && pl)
Jon Paul Maloyd3504c32015-07-16 16:54:25 -04001516 pl->exec_mode = TIPC_LINK_OPEN;
Jon Paul Maloy2da71422015-04-02 09:33:00 -04001517 kfree_skb(*skb);
1518 *skb = iskb;
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001519 return rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001520}
1521
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001522/* tipc_link_proto_rcv(): receive link level protocol message :
1523 * Note that network plane id propagates through the network, and may
1524 * change at any time. The node with lowest numerical id determines
1525 * network plane
1526 */
1527static int tipc_link_proto_rcv(struct tipc_link *l, struct sk_buff *skb,
1528 struct sk_buff_head *xmitq)
1529{
1530 struct tipc_msg *hdr = buf_msg(skb);
1531 u16 rcvgap = 0;
1532 u16 nacked_gap = msg_seq_gap(hdr);
1533 u16 peers_snd_nxt = msg_next_sent(hdr);
1534 u16 peers_tol = msg_link_tolerance(hdr);
1535 u16 peers_prio = msg_linkprio(hdr);
1536 char *if_name;
1537 int rc = 0;
1538
1539 if (l->exec_mode == TIPC_LINK_BLOCKED)
1540 goto exit;
1541
1542 if (link_own_addr(l) > msg_prevnode(hdr))
1543 l->net_plane = msg_net_plane(hdr);
1544
1545 switch (msg_type(hdr)) {
1546 case RESET_MSG:
1547
1548 /* Ignore duplicate RESET with old session number */
1549 if ((less_eq(msg_session(hdr), l->peer_session)) &&
1550 (l->peer_session != WILDCARD_SESSION))
1551 break;
1552 /* fall thru' */
1553 case ACTIVATE_MSG:
1554
1555 /* Complete own link name with peer's interface name */
1556 if_name = strrchr(l->name, ':') + 1;
1557 if (sizeof(l->name) - (if_name - l->name) <= TIPC_MAX_IF_NAME)
1558 break;
1559 if (msg_data_sz(hdr) < TIPC_MAX_IF_NAME)
1560 break;
1561 strncpy(if_name, msg_data(hdr), TIPC_MAX_IF_NAME);
1562
1563 /* Update own tolerance if peer indicates a non-zero value */
1564 if (in_range(peers_tol, TIPC_MIN_LINK_TOL, TIPC_MAX_LINK_TOL))
1565 l->tolerance = peers_tol;
1566
1567 /* Update own priority if peer's priority is higher */
1568 if (in_range(peers_prio, l->priority + 1, TIPC_MAX_LINK_PRI))
1569 l->priority = peers_prio;
1570
1571 l->peer_session = msg_session(hdr);
1572 l->peer_bearer_id = msg_bearer_id(hdr);
1573 rc = tipc_link_fsm_evt(l, msg_type(hdr), xmitq);
1574 if (l->mtu > msg_max_pkt(hdr))
1575 l->mtu = msg_max_pkt(hdr);
1576 break;
1577 case STATE_MSG:
1578 /* Update own tolerance if peer indicates a non-zero value */
1579 if (in_range(peers_tol, TIPC_MIN_LINK_TOL, TIPC_MAX_LINK_TOL))
1580 l->tolerance = peers_tol;
1581
1582 l->silent_intv_cnt = 0;
1583 l->stats.recv_states++;
1584 if (msg_probe(hdr))
1585 l->stats.recv_probes++;
1586 rc = tipc_link_fsm_evt(l, TRAFFIC_EVT, xmitq);
1587 if (!tipc_link_is_up(l))
1588 break;
1589
1590 /* Has peer sent packets we haven't received yet ? */
1591 if (more(peers_snd_nxt, l->rcv_nxt))
1592 rcvgap = peers_snd_nxt - l->rcv_nxt;
1593 if (rcvgap || (msg_probe(hdr)))
1594 tipc_link_build_proto_msg(l, STATE_MSG, 0, rcvgap,
Jon Paul Maloy16040892015-07-21 06:42:28 -04001595 0, 0, xmitq);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001596 tipc_link_release_pkts(l, msg_ack(hdr));
1597
1598 /* If NACK, retransmit will now start at right position */
1599 if (nacked_gap) {
1600 rc |= tipc_link_retransm(l, nacked_gap, xmitq);
1601 l->stats.recv_nacks++;
1602 }
1603 tipc_link_advance_backlog(l, xmitq);
1604 if (unlikely(!skb_queue_empty(&l->wakeupq)))
1605 link_prepare_wakeup(l);
1606 }
1607exit:
1608 kfree_skb(skb);
1609 return rc;
1610}
1611
Jon Paul Maloye3eea1e2015-03-13 16:08:11 -04001612void tipc_link_set_queue_limits(struct tipc_link *l, u32 win)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001613{
Jon Paul Maloyed193ec2015-04-02 09:33:02 -04001614 int max_bulk = TIPC_MAX_PUBLICATIONS / (l->mtu / ITEM_SIZE);
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -04001615
Jon Paul Maloye3eea1e2015-03-13 16:08:11 -04001616 l->window = win;
Jon Paul Maloy1f66d162015-03-25 12:07:24 -04001617 l->backlog[TIPC_LOW_IMPORTANCE].limit = win / 2;
1618 l->backlog[TIPC_MEDIUM_IMPORTANCE].limit = win;
1619 l->backlog[TIPC_HIGH_IMPORTANCE].limit = win / 2 * 3;
1620 l->backlog[TIPC_CRITICAL_IMPORTANCE].limit = win * 2;
1621 l->backlog[TIPC_SYSTEM_IMPORTANCE].limit = max_bulk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001622}
1623
Jon Paul Maloye099e862014-02-13 17:29:18 -05001624/* tipc_link_find_owner - locate owner node of link by link's name
Ying Xuef2f98002015-01-09 15:27:05 +08001625 * @net: the applicable net namespace
Jon Paul Maloye099e862014-02-13 17:29:18 -05001626 * @name: pointer to link name string
1627 * @bearer_id: pointer to index in 'node->links' array where the link was found.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001628 *
Jon Paul Maloye099e862014-02-13 17:29:18 -05001629 * Returns pointer to node owning the link, or 0 if no matching link is found.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001630 */
Ying Xuef2f98002015-01-09 15:27:05 +08001631static struct tipc_node *tipc_link_find_owner(struct net *net,
1632 const char *link_name,
Jon Paul Maloye099e862014-02-13 17:29:18 -05001633 unsigned int *bearer_id)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001634{
Ying Xuef2f98002015-01-09 15:27:05 +08001635 struct tipc_net *tn = net_generic(net, tipc_net_id);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001636 struct tipc_link *l_ptr;
Erik Hugnebbfbe472013-10-18 07:23:21 +02001637 struct tipc_node *n_ptr;
Fabian Frederick886eaa12014-12-25 12:05:50 +01001638 struct tipc_node *found_node = NULL;
Erik Hugnebbfbe472013-10-18 07:23:21 +02001639 int i;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001640
Jon Paul Maloye099e862014-02-13 17:29:18 -05001641 *bearer_id = 0;
Ying Xue6c7a7622014-03-27 12:54:37 +08001642 rcu_read_lock();
Ying Xuef2f98002015-01-09 15:27:05 +08001643 list_for_each_entry_rcu(n_ptr, &tn->node_list, list) {
Jon Paul Maloya11607f2014-02-14 16:40:44 -05001644 tipc_node_lock(n_ptr);
Erik Hugnebbfbe472013-10-18 07:23:21 +02001645 for (i = 0; i < MAX_BEARERS; i++) {
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -04001646 l_ptr = n_ptr->links[i].link;
Jon Paul Maloye099e862014-02-13 17:29:18 -05001647 if (l_ptr && !strcmp(l_ptr->name, link_name)) {
1648 *bearer_id = i;
1649 found_node = n_ptr;
1650 break;
1651 }
Erik Hugnebbfbe472013-10-18 07:23:21 +02001652 }
Jon Paul Maloya11607f2014-02-14 16:40:44 -05001653 tipc_node_unlock(n_ptr);
Jon Paul Maloye099e862014-02-13 17:29:18 -05001654 if (found_node)
1655 break;
Erik Hugnebbfbe472013-10-18 07:23:21 +02001656 }
Ying Xue6c7a7622014-03-27 12:54:37 +08001657 rcu_read_unlock();
1658
Jon Paul Maloye099e862014-02-13 17:29:18 -05001659 return found_node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001660}
1661
Allan Stephens5c216e12011-10-18 11:34:29 -04001662/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001663 * link_reset_statistics - reset link statistics
1664 * @l_ptr: pointer to link
1665 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001666static void link_reset_statistics(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001667{
1668 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
Jon Paul Maloya97b9d32015-05-14 10:46:15 -04001669 l_ptr->stats.sent_info = l_ptr->snd_nxt;
1670 l_ptr->stats.recv_info = l_ptr->rcv_nxt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001671}
1672
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -04001673static void link_print(struct tipc_link *l, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001674{
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -04001675 struct sk_buff *hskb = skb_peek(&l->transmq);
1676 u16 head = hskb ? msg_seqno(buf_msg(hskb)) : l->snd_nxt;
1677 u16 tail = l->snd_nxt - 1;
Ying Xue7a2f7d12014-04-21 10:55:46 +08001678
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -04001679 pr_info("%s Link <%s>:", str, l->name);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001680
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -04001681 if (link_probing(l))
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -04001682 pr_cont(":P\n");
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -04001683 else if (link_establishing(l))
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -04001684 pr_cont(":E\n");
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -04001685 else if (link_resetting(l))
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -04001686 pr_cont(":R\n");
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -04001687 else if (link_working(l))
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -04001688 pr_cont(":W\n");
Paul Gortmaker5deedde2012-07-11 19:27:56 -04001689 else
1690 pr_cont("\n");
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -04001691
1692 pr_info("XMTQ: %u [%u-%u], BKLGQ: %u, SNDNX: %u, RCVNX: %u\n",
1693 skb_queue_len(&l->transmq), head, tail,
1694 skb_queue_len(&l->backlogq), l->snd_nxt, l->rcv_nxt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001695}
Richard Alpe0655f6a2014-11-20 10:29:07 +01001696
1697/* Parse and validate nested (link) properties valid for media, bearer and link
1698 */
1699int tipc_nl_parse_link_prop(struct nlattr *prop, struct nlattr *props[])
1700{
1701 int err;
1702
1703 err = nla_parse_nested(props, TIPC_NLA_PROP_MAX, prop,
1704 tipc_nl_prop_policy);
1705 if (err)
1706 return err;
1707
1708 if (props[TIPC_NLA_PROP_PRIO]) {
1709 u32 prio;
1710
1711 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
1712 if (prio > TIPC_MAX_LINK_PRI)
1713 return -EINVAL;
1714 }
1715
1716 if (props[TIPC_NLA_PROP_TOL]) {
1717 u32 tol;
1718
1719 tol = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
1720 if ((tol < TIPC_MIN_LINK_TOL) || (tol > TIPC_MAX_LINK_TOL))
1721 return -EINVAL;
1722 }
1723
1724 if (props[TIPC_NLA_PROP_WIN]) {
1725 u32 win;
1726
1727 win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
1728 if ((win < TIPC_MIN_LINK_WIN) || (win > TIPC_MAX_LINK_WIN))
1729 return -EINVAL;
1730 }
1731
1732 return 0;
1733}
Richard Alpe7be57fc2014-11-20 10:29:12 +01001734
Richard Alpef96ce7a2014-11-20 10:29:13 +01001735int tipc_nl_link_set(struct sk_buff *skb, struct genl_info *info)
1736{
1737 int err;
1738 int res = 0;
1739 int bearer_id;
1740 char *name;
1741 struct tipc_link *link;
1742 struct tipc_node *node;
1743 struct nlattr *attrs[TIPC_NLA_LINK_MAX + 1];
Richard Alpe37e2d482015-02-09 09:50:08 +01001744 struct net *net = sock_net(skb->sk);
Richard Alpef96ce7a2014-11-20 10:29:13 +01001745
1746 if (!info->attrs[TIPC_NLA_LINK])
1747 return -EINVAL;
1748
1749 err = nla_parse_nested(attrs, TIPC_NLA_LINK_MAX,
1750 info->attrs[TIPC_NLA_LINK],
1751 tipc_nl_link_policy);
1752 if (err)
1753 return err;
1754
1755 if (!attrs[TIPC_NLA_LINK_NAME])
1756 return -EINVAL;
1757
1758 name = nla_data(attrs[TIPC_NLA_LINK_NAME]);
1759
Richard Alpe670f4f82015-05-06 13:58:55 +02001760 if (strcmp(name, tipc_bclink_name) == 0)
1761 return tipc_nl_bc_link_set(net, attrs);
1762
Ying Xuef2f98002015-01-09 15:27:05 +08001763 node = tipc_link_find_owner(net, name, &bearer_id);
Richard Alpef96ce7a2014-11-20 10:29:13 +01001764 if (!node)
1765 return -EINVAL;
1766
1767 tipc_node_lock(node);
1768
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -04001769 link = node->links[bearer_id].link;
Richard Alpef96ce7a2014-11-20 10:29:13 +01001770 if (!link) {
1771 res = -EINVAL;
1772 goto out;
1773 }
1774
1775 if (attrs[TIPC_NLA_LINK_PROP]) {
1776 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
1777
1778 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_LINK_PROP],
1779 props);
1780 if (err) {
1781 res = err;
1782 goto out;
1783 }
1784
1785 if (props[TIPC_NLA_PROP_TOL]) {
1786 u32 tol;
1787
1788 tol = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
Jon Paul Maloy8a1577c2015-07-16 16:54:29 -04001789 link->tolerance = tol;
Jon Paul Maloyed193ec2015-04-02 09:33:02 -04001790 tipc_link_proto_xmit(link, STATE_MSG, 0, 0, tol, 0);
Richard Alpef96ce7a2014-11-20 10:29:13 +01001791 }
1792 if (props[TIPC_NLA_PROP_PRIO]) {
1793 u32 prio;
1794
1795 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
1796 link->priority = prio;
Jon Paul Maloyed193ec2015-04-02 09:33:02 -04001797 tipc_link_proto_xmit(link, STATE_MSG, 0, 0, 0, prio);
Richard Alpef96ce7a2014-11-20 10:29:13 +01001798 }
1799 if (props[TIPC_NLA_PROP_WIN]) {
1800 u32 win;
1801
1802 win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
1803 tipc_link_set_queue_limits(link, win);
1804 }
1805 }
1806
1807out:
1808 tipc_node_unlock(node);
1809
1810 return res;
1811}
Richard Alped8182802014-11-24 11:10:29 +01001812
1813static int __tipc_nl_add_stats(struct sk_buff *skb, struct tipc_stats *s)
Richard Alpe7be57fc2014-11-20 10:29:12 +01001814{
1815 int i;
1816 struct nlattr *stats;
1817
1818 struct nla_map {
1819 u32 key;
1820 u32 val;
1821 };
1822
1823 struct nla_map map[] = {
1824 {TIPC_NLA_STATS_RX_INFO, s->recv_info},
1825 {TIPC_NLA_STATS_RX_FRAGMENTS, s->recv_fragments},
1826 {TIPC_NLA_STATS_RX_FRAGMENTED, s->recv_fragmented},
1827 {TIPC_NLA_STATS_RX_BUNDLES, s->recv_bundles},
1828 {TIPC_NLA_STATS_RX_BUNDLED, s->recv_bundled},
1829 {TIPC_NLA_STATS_TX_INFO, s->sent_info},
1830 {TIPC_NLA_STATS_TX_FRAGMENTS, s->sent_fragments},
1831 {TIPC_NLA_STATS_TX_FRAGMENTED, s->sent_fragmented},
1832 {TIPC_NLA_STATS_TX_BUNDLES, s->sent_bundles},
1833 {TIPC_NLA_STATS_TX_BUNDLED, s->sent_bundled},
1834 {TIPC_NLA_STATS_MSG_PROF_TOT, (s->msg_length_counts) ?
1835 s->msg_length_counts : 1},
1836 {TIPC_NLA_STATS_MSG_LEN_CNT, s->msg_length_counts},
1837 {TIPC_NLA_STATS_MSG_LEN_TOT, s->msg_lengths_total},
1838 {TIPC_NLA_STATS_MSG_LEN_P0, s->msg_length_profile[0]},
1839 {TIPC_NLA_STATS_MSG_LEN_P1, s->msg_length_profile[1]},
1840 {TIPC_NLA_STATS_MSG_LEN_P2, s->msg_length_profile[2]},
1841 {TIPC_NLA_STATS_MSG_LEN_P3, s->msg_length_profile[3]},
1842 {TIPC_NLA_STATS_MSG_LEN_P4, s->msg_length_profile[4]},
1843 {TIPC_NLA_STATS_MSG_LEN_P5, s->msg_length_profile[5]},
1844 {TIPC_NLA_STATS_MSG_LEN_P6, s->msg_length_profile[6]},
1845 {TIPC_NLA_STATS_RX_STATES, s->recv_states},
1846 {TIPC_NLA_STATS_RX_PROBES, s->recv_probes},
1847 {TIPC_NLA_STATS_RX_NACKS, s->recv_nacks},
1848 {TIPC_NLA_STATS_RX_DEFERRED, s->deferred_recv},
1849 {TIPC_NLA_STATS_TX_STATES, s->sent_states},
1850 {TIPC_NLA_STATS_TX_PROBES, s->sent_probes},
1851 {TIPC_NLA_STATS_TX_NACKS, s->sent_nacks},
1852 {TIPC_NLA_STATS_TX_ACKS, s->sent_acks},
1853 {TIPC_NLA_STATS_RETRANSMITTED, s->retransmitted},
1854 {TIPC_NLA_STATS_DUPLICATES, s->duplicates},
1855 {TIPC_NLA_STATS_LINK_CONGS, s->link_congs},
1856 {TIPC_NLA_STATS_MAX_QUEUE, s->max_queue_sz},
1857 {TIPC_NLA_STATS_AVG_QUEUE, s->queue_sz_counts ?
1858 (s->accu_queue_sz / s->queue_sz_counts) : 0}
1859 };
1860
1861 stats = nla_nest_start(skb, TIPC_NLA_LINK_STATS);
1862 if (!stats)
1863 return -EMSGSIZE;
1864
1865 for (i = 0; i < ARRAY_SIZE(map); i++)
1866 if (nla_put_u32(skb, map[i].key, map[i].val))
1867 goto msg_full;
1868
1869 nla_nest_end(skb, stats);
1870
1871 return 0;
1872msg_full:
1873 nla_nest_cancel(skb, stats);
1874
1875 return -EMSGSIZE;
1876}
1877
1878/* Caller should hold appropriate locks to protect the link */
Ying Xue34747532015-01-09 15:27:10 +08001879static int __tipc_nl_add_link(struct net *net, struct tipc_nl_msg *msg,
Nicolas Dichtelf2f67392015-04-28 18:33:50 +02001880 struct tipc_link *link, int nlflags)
Richard Alpe7be57fc2014-11-20 10:29:12 +01001881{
1882 int err;
1883 void *hdr;
1884 struct nlattr *attrs;
1885 struct nlattr *prop;
Ying Xue34747532015-01-09 15:27:10 +08001886 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe7be57fc2014-11-20 10:29:12 +01001887
Richard Alpebfb3e5d2015-02-09 09:50:03 +01001888 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
Nicolas Dichtelf2f67392015-04-28 18:33:50 +02001889 nlflags, TIPC_NL_LINK_GET);
Richard Alpe7be57fc2014-11-20 10:29:12 +01001890 if (!hdr)
1891 return -EMSGSIZE;
1892
1893 attrs = nla_nest_start(msg->skb, TIPC_NLA_LINK);
1894 if (!attrs)
1895 goto msg_full;
1896
1897 if (nla_put_string(msg->skb, TIPC_NLA_LINK_NAME, link->name))
1898 goto attr_msg_full;
1899 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_DEST,
Ying Xue34747532015-01-09 15:27:10 +08001900 tipc_cluster_mask(tn->own_addr)))
Richard Alpe7be57fc2014-11-20 10:29:12 +01001901 goto attr_msg_full;
Jon Paul Maloyed193ec2015-04-02 09:33:02 -04001902 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_MTU, link->mtu))
Richard Alpe7be57fc2014-11-20 10:29:12 +01001903 goto attr_msg_full;
Jon Paul Maloya97b9d32015-05-14 10:46:15 -04001904 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_RX, link->rcv_nxt))
Richard Alpe7be57fc2014-11-20 10:29:12 +01001905 goto attr_msg_full;
Jon Paul Maloya97b9d32015-05-14 10:46:15 -04001906 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_TX, link->snd_nxt))
Richard Alpe7be57fc2014-11-20 10:29:12 +01001907 goto attr_msg_full;
1908
1909 if (tipc_link_is_up(link))
1910 if (nla_put_flag(msg->skb, TIPC_NLA_LINK_UP))
1911 goto attr_msg_full;
1912 if (tipc_link_is_active(link))
1913 if (nla_put_flag(msg->skb, TIPC_NLA_LINK_ACTIVE))
1914 goto attr_msg_full;
1915
1916 prop = nla_nest_start(msg->skb, TIPC_NLA_LINK_PROP);
1917 if (!prop)
1918 goto attr_msg_full;
1919 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, link->priority))
1920 goto prop_msg_full;
1921 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, link->tolerance))
1922 goto prop_msg_full;
1923 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN,
Jon Paul Maloy1f66d162015-03-25 12:07:24 -04001924 link->window))
Richard Alpe7be57fc2014-11-20 10:29:12 +01001925 goto prop_msg_full;
1926 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, link->priority))
1927 goto prop_msg_full;
1928 nla_nest_end(msg->skb, prop);
1929
1930 err = __tipc_nl_add_stats(msg->skb, &link->stats);
1931 if (err)
1932 goto attr_msg_full;
1933
1934 nla_nest_end(msg->skb, attrs);
1935 genlmsg_end(msg->skb, hdr);
1936
1937 return 0;
1938
1939prop_msg_full:
1940 nla_nest_cancel(msg->skb, prop);
1941attr_msg_full:
1942 nla_nest_cancel(msg->skb, attrs);
1943msg_full:
1944 genlmsg_cancel(msg->skb, hdr);
1945
1946 return -EMSGSIZE;
1947}
1948
1949/* Caller should hold node lock */
Ying Xue34747532015-01-09 15:27:10 +08001950static int __tipc_nl_add_node_links(struct net *net, struct tipc_nl_msg *msg,
1951 struct tipc_node *node, u32 *prev_link)
Richard Alpe7be57fc2014-11-20 10:29:12 +01001952{
1953 u32 i;
1954 int err;
1955
1956 for (i = *prev_link; i < MAX_BEARERS; i++) {
1957 *prev_link = i;
1958
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -04001959 if (!node->links[i].link)
Richard Alpe7be57fc2014-11-20 10:29:12 +01001960 continue;
1961
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -04001962 err = __tipc_nl_add_link(net, msg,
1963 node->links[i].link, NLM_F_MULTI);
Richard Alpe7be57fc2014-11-20 10:29:12 +01001964 if (err)
1965 return err;
1966 }
1967 *prev_link = 0;
1968
1969 return 0;
1970}
1971
1972int tipc_nl_link_dump(struct sk_buff *skb, struct netlink_callback *cb)
1973{
Ying Xuef2f98002015-01-09 15:27:05 +08001974 struct net *net = sock_net(skb->sk);
1975 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe7be57fc2014-11-20 10:29:12 +01001976 struct tipc_node *node;
1977 struct tipc_nl_msg msg;
1978 u32 prev_node = cb->args[0];
1979 u32 prev_link = cb->args[1];
1980 int done = cb->args[2];
1981 int err;
1982
1983 if (done)
1984 return 0;
1985
1986 msg.skb = skb;
1987 msg.portid = NETLINK_CB(cb->skb).portid;
1988 msg.seq = cb->nlh->nlmsg_seq;
1989
1990 rcu_read_lock();
Richard Alpe7be57fc2014-11-20 10:29:12 +01001991 if (prev_node) {
Ying Xuef2f98002015-01-09 15:27:05 +08001992 node = tipc_node_find(net, prev_node);
Richard Alpe7be57fc2014-11-20 10:29:12 +01001993 if (!node) {
1994 /* We never set seq or call nl_dump_check_consistent()
1995 * this means that setting prev_seq here will cause the
1996 * consistence check to fail in the netlink callback
1997 * handler. Resulting in the last NLMSG_DONE message
1998 * having the NLM_F_DUMP_INTR flag set.
1999 */
2000 cb->prev_seq = 1;
2001 goto out;
2002 }
Ying Xue8a0f6eb2015-03-26 18:10:24 +08002003 tipc_node_put(node);
Richard Alpe7be57fc2014-11-20 10:29:12 +01002004
Ying Xuef2f98002015-01-09 15:27:05 +08002005 list_for_each_entry_continue_rcu(node, &tn->node_list,
2006 list) {
Richard Alpe7be57fc2014-11-20 10:29:12 +01002007 tipc_node_lock(node);
Ying Xue34747532015-01-09 15:27:10 +08002008 err = __tipc_nl_add_node_links(net, &msg, node,
2009 &prev_link);
Richard Alpe7be57fc2014-11-20 10:29:12 +01002010 tipc_node_unlock(node);
2011 if (err)
2012 goto out;
2013
2014 prev_node = node->addr;
2015 }
2016 } else {
Ying Xue1da46562015-01-09 15:27:07 +08002017 err = tipc_nl_add_bc_link(net, &msg);
Richard Alpe7be57fc2014-11-20 10:29:12 +01002018 if (err)
2019 goto out;
2020
Ying Xuef2f98002015-01-09 15:27:05 +08002021 list_for_each_entry_rcu(node, &tn->node_list, list) {
Richard Alpe7be57fc2014-11-20 10:29:12 +01002022 tipc_node_lock(node);
Ying Xue34747532015-01-09 15:27:10 +08002023 err = __tipc_nl_add_node_links(net, &msg, node,
2024 &prev_link);
Richard Alpe7be57fc2014-11-20 10:29:12 +01002025 tipc_node_unlock(node);
2026 if (err)
2027 goto out;
2028
2029 prev_node = node->addr;
2030 }
2031 }
2032 done = 1;
2033out:
2034 rcu_read_unlock();
2035
2036 cb->args[0] = prev_node;
2037 cb->args[1] = prev_link;
2038 cb->args[2] = done;
2039
2040 return skb->len;
2041}
2042
2043int tipc_nl_link_get(struct sk_buff *skb, struct genl_info *info)
2044{
Ying Xuef2f98002015-01-09 15:27:05 +08002045 struct net *net = genl_info_net(info);
Richard Alpe7be57fc2014-11-20 10:29:12 +01002046 struct tipc_nl_msg msg;
Richard Alpe7be57fc2014-11-20 10:29:12 +01002047 char *name;
Richard Alpe7be57fc2014-11-20 10:29:12 +01002048 int err;
2049
Richard Alpe7be57fc2014-11-20 10:29:12 +01002050 msg.portid = info->snd_portid;
2051 msg.seq = info->snd_seq;
2052
Richard Alpe670f4f82015-05-06 13:58:55 +02002053 if (!info->attrs[TIPC_NLA_LINK_NAME])
2054 return -EINVAL;
2055 name = nla_data(info->attrs[TIPC_NLA_LINK_NAME]);
2056
2057 msg.skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
2058 if (!msg.skb)
2059 return -ENOMEM;
2060
2061 if (strcmp(name, tipc_bclink_name) == 0) {
2062 err = tipc_nl_add_bc_link(net, &msg);
2063 if (err) {
2064 nlmsg_free(msg.skb);
2065 return err;
2066 }
2067 } else {
2068 int bearer_id;
2069 struct tipc_node *node;
2070 struct tipc_link *link;
2071
2072 node = tipc_link_find_owner(net, name, &bearer_id);
2073 if (!node)
2074 return -EINVAL;
2075
2076 tipc_node_lock(node);
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -04002077 link = node->links[bearer_id].link;
Richard Alpe670f4f82015-05-06 13:58:55 +02002078 if (!link) {
2079 tipc_node_unlock(node);
2080 nlmsg_free(msg.skb);
2081 return -EINVAL;
2082 }
2083
2084 err = __tipc_nl_add_link(net, &msg, link, 0);
2085 tipc_node_unlock(node);
2086 if (err) {
2087 nlmsg_free(msg.skb);
2088 return err;
2089 }
Richard Alpe7be57fc2014-11-20 10:29:12 +01002090 }
2091
Richard Alpe670f4f82015-05-06 13:58:55 +02002092 return genlmsg_reply(msg.skb, info);
Richard Alpe7be57fc2014-11-20 10:29:12 +01002093}
Richard Alpeae363422014-11-20 10:29:14 +01002094
2095int tipc_nl_link_reset_stats(struct sk_buff *skb, struct genl_info *info)
2096{
2097 int err;
2098 char *link_name;
2099 unsigned int bearer_id;
2100 struct tipc_link *link;
2101 struct tipc_node *node;
2102 struct nlattr *attrs[TIPC_NLA_LINK_MAX + 1];
Richard Alpe18178772015-02-09 09:50:09 +01002103 struct net *net = sock_net(skb->sk);
Richard Alpeae363422014-11-20 10:29:14 +01002104
2105 if (!info->attrs[TIPC_NLA_LINK])
2106 return -EINVAL;
2107
2108 err = nla_parse_nested(attrs, TIPC_NLA_LINK_MAX,
2109 info->attrs[TIPC_NLA_LINK],
2110 tipc_nl_link_policy);
2111 if (err)
2112 return err;
2113
2114 if (!attrs[TIPC_NLA_LINK_NAME])
2115 return -EINVAL;
2116
2117 link_name = nla_data(attrs[TIPC_NLA_LINK_NAME]);
2118
2119 if (strcmp(link_name, tipc_bclink_name) == 0) {
Ying Xue1da46562015-01-09 15:27:07 +08002120 err = tipc_bclink_reset_stats(net);
Richard Alpeae363422014-11-20 10:29:14 +01002121 if (err)
2122 return err;
2123 return 0;
2124 }
2125
Ying Xuef2f98002015-01-09 15:27:05 +08002126 node = tipc_link_find_owner(net, link_name, &bearer_id);
Richard Alpeae363422014-11-20 10:29:14 +01002127 if (!node)
2128 return -EINVAL;
2129
2130 tipc_node_lock(node);
2131
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -04002132 link = node->links[bearer_id].link;
Richard Alpeae363422014-11-20 10:29:14 +01002133 if (!link) {
2134 tipc_node_unlock(node);
2135 return -EINVAL;
2136 }
2137
2138 link_reset_statistics(link);
2139
2140 tipc_node_unlock(node);
2141
2142 return 0;
2143}